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
openapi.yaml
When you specify a query parameter as taking an array of ints in openapi.yaml, the rendered API docs page indicates that it takes a single int.
STEP 1: Generate docs based on this openapi.yaml:
openapi: 3.0.0 info: title: Dummy API version: 1.0.0 paths: /v2/conversations: delete: operationId: deleteConversations parameters: - name: ids in: query required: true style: form explode: false schema: type: array items: type: integer responses: '204': description: Conversations deleted successfully.
STEP 2: Look at the rendered docs page for that path. It shows the ids parameter as taking a single integer instead of an array of integers.
ids
The rendered docs page should indicate that the ids parameter takes an array of integers.
0.44.11
The text was updated successfully, but these errors were encountered:
dsinghvi
No branches or pull requests
Describe the bug
When you specify a query parameter as taking an array of ints in
openapi.yaml
, the rendered API docs page indicates that it takes a single int.To reproduce
STEP 1: Generate docs based on this
openapi.yaml
:STEP 2: Look at the rendered docs page for that path. It shows the
ids
parameter as taking a single integer instead of an array of integers.Expected behavior
The rendered docs page should indicate that the
ids
parameter takes an array of integers.Screenshots
CLI Version
0.44.11
The text was updated successfully, but these errors were encountered: