{ "openapi": "3.1.0", "info": { "title": "Petstore API", "version": "1.0.0", "description": "A sample API that uses a petstore as an example" }, "servers": [ { "url": "http://localhost:3000/v3" } ], "paths": { "/pets/{petId}": { "get": { "summary": "Find pet by ID", "operationId": "showPetById", "parameters": [ { "name": "petId", "in": "path", "required": true, "schema": { "type": "string" } } ], "responses": { "200": { "description": "Pet found", "content": { "application/json": { "schema": { "type": "object", "properties": { "id": { "type": "string" }, "name": { "type": "string" } } } } } } } } }, "/pets": { "get": { "summary": "List all pets", "operationId": "listPets", "responses": { "200": { "description": "A list of pets", "content": { "application/json": { "schema": { "type": "array", "items": { "type": "object", "properties": { "id": { "type": "string" }, "name": { "type": "string" } } } } } } } } }, "post": { "summary": "Create a pet", "operationId": "createPets", "responses": { "201": { "description": "Pet created" } } } } } }