We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
need to support square bracket query params with OpenAPI 3.0 style: deepObject and explode: true spec
style: deepObject
explode: true
query example https://api.example.com/profiles/list?position[lat]=37.1&position[lng]=-122.1
https://api.example.com/profiles/list?position[lat]=37.1&position[lng]=-122.1
yaml example
openapi: 3.0.0 ... paths: /info: get: parameters: - in: query name: sort schema: type: object properties: name: type: integer example: 1 age: type: integer example: -1 style: deepObject explode: true responses: '200': description: OK
spec https://swagger.io/docs/specification/serialization/
The text was updated successfully, but these errors were encountered:
No branches or pull requests
need to support square bracket query params with OpenAPI 3.0
style: deepObject
andexplode: true
specquery example
https://api.example.com/profiles/list?position[lat]=37.1&position[lng]=-122.1
yaml example
spec
https://swagger.io/docs/specification/serialization/
The text was updated successfully, but these errors were encountered: