{
"openapi": "3.1.0",
"info": {
"title": "Test",
"version": "1.0.0"
},
"paths": {
"/echo": {
"post": {
"operationId": "echo",
"requestBody": {
"required": true,
"content": {
"text/plain": {
"schema": {
"type": "string"
}
}
}
},
"responses": {
"200": {
"description": "Echo response"
}
}
}
}
},
"components": {
"schemas": {
"DummySchema": {
"type": "object",
"properties": {
"id": {
"type": "string"
}
}
}
}
}
}