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": "Search",
"version": "1"
},
"paths": {
"/search": {
"parameters": [
{
"name": "locale",
"in": "header",
"schema": {
"type": "string"
}
}
],
"get": {
"operationId": "search",
"parameters": [
{
"name": "q",
"in": "query",
"required": true,
"schema": {
"type": "string"
}
},
{
"name": "limit",
"in": "query",
"schema": {
"type": "integer",
"default": 20
}
…