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
Hi, could you help check is this a bug in redoc?
parameters: - in: query name: ids style: pipeDelimited explode: false schema: type: array items: type: string example: [10-A12345, 10-22]
Example: ids=10-A12345,10-22
ids=10-A12345,10-22
According to serialization, the delimiter should be pipe. So, ids=10-A12345|10-22
ids=10-A12345|10-22
2.0.0-rc.13
The text was updated successfully, but these errors were encountered:
Your example is on the wrong level. Move it to array level:
parameters: - in: query name: ids style: pipeDelimited explode: false schema: type: array example: [10-A12345, 10-22] items: type: string
Sorry, something went wrong.
No branches or pull requests
Hi, could you help check is this a bug in redoc?
Example
Result
Example:
ids=10-A12345,10-22
Expected Result
According to serialization, the delimiter should be pipe. So,
ids=10-A12345|10-22
Version
2.0.0-rc.13
The text was updated successfully, but these errors were encountered: