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
Resulting collection description is undefined as this spec has no description.
As per OpenAPI spec title and version is required in info object. Rest are optional
Resulting Output:
OpenAPI Spec:
{ "openapi": "3.0.0", "info": { "version": "1.0.0", "title": "Swagger Petstore", "license": { "name": "MIT" }, "contact": { "name": "API Support", "url": "http://www.example.com/support", "email": "[email protected]" } }, "servers": [ { "url": "http://petstore.swagger.io/v1" } ], "paths": { "/pets": { "get": { "summary": "Info for a specific pet", "operationId": "showPetById", "tags": [ "pets" ], "responses": { "200": { "description": "Expected response to a valid request", "content": { "application/json": { "schema": { "type:": "integer", "format": "int32" } } } } } } } } }
The text was updated successfully, but these errors were encountered:
Resolved in 7.7.0!
Sorry, something went wrong.
No branches or pull requests
Resulting collection description is undefined as this spec has no description.
As per OpenAPI spec title and version is required in info object. Rest are optional
Resulting Output:
OpenAPI Spec:
The text was updated successfully, but these errors were encountered: