{ "openapi": "3.0.0", "info": { "title": "Hello API", "version": "1.0.0" }, "servers": [ { "url": "http://localhost:8080" } ], "paths": { "/hello": { "post": { "summary": "Begrüßt jeden", "requestBody": { "required": true, "content": { "text/plain": { "schema": { "type": "string", "example": "Zoya" } } } }, "responses": { "200": { "description": "Erfolgreiche Antwort" } } } } } }