Some AWS services like CloudFormation allow to pass array of values as query parameters.
Exemple of this, the StackStatusFilter of the ListStacks action in CloudFormation api.
When "serializing" this array to form the final url, the AWS docs state that each individual item should be stored as following:
...&StackStatusFilter.member.1=CREATE_IN_PROGRESS&StackStatusFilter.member.2=DELETE_COMPLETE&...
The Open API 3.0 does not mention that "style" of serialization.
Do you know a workaround to have the generated OpenAPI work with such serialization scheme ?
Thanks
Some AWS services like CloudFormation allow to pass array of values as query parameters.
Exemple of this, the
StackStatusFilterof the ListStacks action in CloudFormation api.When "serializing" this array to form the final url, the AWS docs state that each individual item should be stored as following:
...&StackStatusFilter.member.1=CREATE_IN_PROGRESS&StackStatusFilter.member.2=DELETE_COMPLETE&...The Open API 3.0 does not mention that "style" of serialization.
Do you know a workaround to have the generated OpenAPI work with such serialization scheme ?
Thanks