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": "Catalog",
"version": "1"
},
"components": {
"schemas": {
"Product": {
"type": "object",
"required": [
"id"
],
"properties": {
"id": {
"type": "integer",
"minimum": 1
},
"name": {
"type": "string",
"example": "Desk lamp"
},
"active": {
"type": "boolean"
},
"tags": {
"type": "array",
"items": {
"type": "string"
}
}
}
},
"Error": {
"type": "object",
"properties": {
…