Example
The Sample button loads a small specification chosen for this operation. Running it produces the same structured fields shown in the output panel.
{
"openapi": "3.0.3",
"info": {
"title": "Pet API",
"version": "1.0.0"
},
"paths": {
"/pets": {
"get": {
"operationId": "listPets",
"tags": [
"pets"
],
"responses": {
"200": {
"description": "OK"
}
}
},
"post": {
"operationId": "createPet",
"responses": {
"201": {
"description": "Created"
}
}
}
},
"/pets/{id}": {
"get": {
"operationId": "getPet",
"parameters": [
{
"name": "id",
"in": "path",
"required": true,
"schema": {
…