Example
The Sample button loads a small specification chosen for this operation. Running it produces the same structured fields shown in the output panel.
{
"before": {
"openapi": "3.0.3",
"info": {
"title": "Store",
"version": "1"
},
"paths": {
"/items": {
"get": {
"parameters": [
{
"name": "limit",
"in": "query",
"schema": {
"type": "integer"
}
}
],
"responses": {
"200": {
"description": "OK"
}
}
},
"post": {
"responses": {
"201": {
"description": "Created"
}
}
}
}
}
},
"after": {
"openapi": "3.0.3",
"info": {
"title":
…