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? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
When using the router, the following definition is matched properly (the corresponding route is found):
paths: '/books/{id}': parameters: - schema: type: integer name: id in: path required: true get: # ...
But this doesn't:
paths: parameters: - schema: type: integer name: id in: path required: true '/books/{id}.json': get: # ...
The text was updated successfully, but these errors were encountered:
Looks like the path (.json) like got carried around by mistake? Looking at
kin-openapi/openapi3/server.go
Lines 23 to 35 in 41b6ab9
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
When using the router, the following definition is matched properly (the corresponding route is found):
But this doesn't:
The text was updated successfully, but these errors were encountered: