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
The Swagger specification points out that you can set default values for parameters (https://swagger.io/docs/specification/describing-parameters/#default).
I tried adding some to my route definition, but it doesn't seem to do anything. Here's what mine looks like:
openapi.validPath({ // ... parameters: [ { in: 'query', name: 'perPage', schema: { type: 'integer', default: 24 }, }, ], // ... })
Does the library support default values?
The text was updated successfully, but these errors were encountered:
I don't think it does support them, but I would accept a PR for that for sure.
Sorry, something went wrong.
No branches or pull requests
The Swagger specification points out that you can set default values for parameters (https://swagger.io/docs/specification/describing-parameters/#default).
I tried adding some to my route definition, but it doesn't seem to do anything. Here's what mine looks like:
Does the library support default values?
The text was updated successfully, but these errors were encountered: