-
Notifications
You must be signed in to change notification settings - Fork 10
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Query parameters array "serialization" strategy #47
Comments
Unfortunately not, though we could add a specification extension to mark it if you are using your own tools to post process? |
That would be awesome ! As of now we are manually patching the schema to tag the appropriate field with an If you explain me to run the By the way: Where are located the source aws schema ( i guess in smithy format ) ? |
Apologies for the lack of proper docs. If you checkout https://github.com/aws/aws-sdk-js in a sibling directory to a checkout of |
Awesome thanks ! |
I don't think that package was available/open-source when
We try and create a generic best-case OpenAPI definition, we would have to be opinionated about what plugin options we set. |
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
The text was updated successfully, but these errors were encountered: