{ "openapi": "3.0.0", "info": { "version": "1.0.0", "title": "Swagger Petstore", "license": { "name": "MIT" } }, "servers": [ { "url": "http://petstore.swagger.io/v1" } ], "paths": { "/pets": { "get": { "summary": "List all pets", "operationId": "listPets", "parameters": [ { "name": "another", "in": "path", "required": true, "schema": { "type": "string" } }, { "name": "stays", "in": "path", "required": false, "schema": { "type": "string" } } ], "responses": { "200": { "description": "A paged array of pets", "content": { "application/json": { "schema": { "type": "string" } } } } } } } }, "components": { "schemas": { "Pets": { "type": "array", "items": { "$ref": "#/components/schemas/Pet" } } } } }