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
For example this swagger:
{ "swagger": "2.0", "info": { "title": "Sample API", "description": "API description in Markdown.", "version": "1.0.0" }, "host": "api.example.com", "basePath": "/v1", "schemes": [ "https" ], "paths": { "/users": { "get": { "summary": "Returns a list of users.", "description": "Optional extended description in Markdown.", "produces": [ "application/json" ], "responses": { "200": { "description": "OK" } } } } } }
The endpoint GET /users has a description Returns a list of users in the summary field but this information is not included in the generated doc.
GET /users
Returns a list of users
summary
The text was updated successfully, but these errors were encountered:
No branches or pull requests
For example this swagger:
The endpoint
GET /users
has a descriptionReturns a list of users
in thesummary
field but this information is not included in the generated doc.The text was updated successfully, but these errors were encountered: