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
It looks like that file users.json is not resolved.. Archi:
users.json
// swagger.json { "openapi": "3.1.0", "info": { "title": "Mon API", "version": "1.0.0" }, "paths": { "/users": { "$ref": "users.json" } } }
// users.json { "get": { "tags": ["pet"], "summary": "Finds Pets by status", "description": "Multiple status values can be provided with comma separated strings", "operationId": "findPetsByStatus", "parameters": [ { "name": "status", "in": "query", "description": "Status values that need to be considered for filter", "required": false, "explode": true, "schema": { "type": "string", "default": "available", "enum": ["available", "pending", "sold"] } } ], "responses": { "200": { "description": "successful operation", "content": { "application/xml": { "schema": { "type": "array", "items": { "$ref": "#/components/schemas/Pet" } } }, "application/json": { "schema": { "type": "array", "items": { "$ref": "#/components/schemas/Pet" } } } } }, "400": { "description": "Invalid status value" } }, "security": [ { "petstore_auth": ["write:pets", "read:pets"] } ] } }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
It looks like that file
users.json
is not resolved..Archi:
The text was updated successfully, but these errors were encountered: