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
Example Swagger/OpenAPI definition:
openapi: 3.0.1 info: title: example version: v1 paths: /example: get: parameters: - name: page in: query description: Page number schema: type: integer format: int32 example: 1 responses: '200': description: OK
When a query param has the example set, if we try to remove the value to send an empty query string, validation fails like the field is required.
Steps to reproduce the behavior:
When example is set the query field must not be required.
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Q&A (please complete the following information)
Content & configuration
Example Swagger/OpenAPI definition:
Describe the bug you're encountering
When a query param has the example set, if we try to remove the value to send an empty query string, validation fails like the field is required.
To reproduce...
Steps to reproduce the behavior:
Expected behavior
When example is set the query field must not be required.
Screenshots
Additional context or thoughts
The text was updated successfully, but these errors were encountered: