lab-development-imb/web/05/demos/hello_post_string.json

35 lines
505 B
JSON

{
"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"
}
}
}
}
}
}