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": "Private API",
"version": "1"
},
"components": {
"securitySchemes": {
"bearerAuth": {
"type": "http",
"scheme": "bearer",
"bearerFormat": "JWT"
},
"apiKey": {
"type": "apiKey",
"in": "header",
"name": "X-API-Key"
}
}
},
"security": [
{
"bearerAuth": []
}
],
"paths": {
"/public": {
"get": {
"security": [],
"responses": {}
}
},
"/private": {
"get": {
"responses": {}
}
}
}
}