forked from WEB-IMB-WS2526/lab-development-imb
35 lines
505 B
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"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
} |