Skip to main content

parameter-explode-only-for-array-or-object-types

Overview

This rule belongs to the openapi-v3-standards-linting ruleset and states that:

When parameter explode is true, parameter values of type array or object generate separate parameters for each value of the array or key-value pair of the map. For other types of parameters this property has no effect.

PropertyValue
EnabledYes
Maximum SeverityInformation
MessageProperty explode will have no effect on parameter of this type.
CodeOPENAPI3STANDARDS_L063
TypeLinting
Rule SystemSemantic
Broad CategoryParameters
Products ImpactedAPI Transformer, Code Generation, Developer Experience Portal
Tagsopenapi3 openapi standards semantic linting explode parameter array object

Suggested Fixes

  • Remove property explode from the current Parameter Object.
  • Change the parameter type to array or object if you still intend to use the explode option.

For More Information