forked from WEB-IMB-WS2526/lab-development-imb
43 lines
654 B
JSON
43 lines
654 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": {
|
|
"application/json": {
|
|
"schema": {
|
|
"type": "object",
|
|
"properties": {
|
|
"name": {
|
|
"type": "string",
|
|
"example": "Zoya"
|
|
}
|
|
},
|
|
"required": [
|
|
"name"
|
|
]
|
|
}
|
|
}
|
|
}
|
|
},
|
|
"responses": {
|
|
"200": {
|
|
"description": "Erfolgreiche Antwort"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
} |