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": "Health",
"version": "1"
},
"paths": {
"/health": {
"get": {
"operationId": "health",
"responses": {
"200": {
"description": "Healthy",
"content": {
"application/json": {
"schema": {
"type": "object",
"properties": {
"status": {
"type": "string",
"example": "ok"
},
"uptime": {
"type": "integer",
"minimum": 0
}
}
}
…