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
We should support exploded format of query strings in both the docs and the playground.
openapi: 3.0.0 info: title: Comma-Separated Query Parameters Example version: 1.0.0 paths: /example: get: summary: Example endpoint parameters: - name: items in: query description: Comma-separated list of items required: false style: form explode: false schema: type: array items: type: string responses: '200': description: Success
For a request to this API, the query string would look like:
GET /example?items=one,two,three
The server will parse items as an array: ['one', 'two', 'three'].
The text was updated successfully, but these errors were encountered:
No branches or pull requests
We should support exploded format of query strings in both the docs and the playground.
For a request to this API, the query string would look like:
The server will parse items as an array: ['one', 'two', 'three'].
The text was updated successfully, but these errors were encountered: