forked from WEB-IMB-WS2526/lab-development-imb
36 lines
584 B
JSON
36 lines
584 B
JSON
{
|
|
"openapi": "3.0.0",
|
|
"info": {
|
|
"title": "Hello API",
|
|
"version": "1.0.0"
|
|
},
|
|
"servers": [
|
|
{
|
|
"url": "http://localhost:8080"
|
|
}
|
|
],
|
|
"paths": {
|
|
"/hello": {
|
|
"get": {
|
|
"summary": "Begrüßt jeden mit Namen oder die Welt",
|
|
"parameters": [
|
|
{
|
|
"name": "name",
|
|
"in": "query",
|
|
"required": true,
|
|
"description": "Name der zu begrüßenden Person",
|
|
"schema": {
|
|
"type": "string"
|
|
},
|
|
"example": "Farhad"
|
|
}
|
|
],
|
|
"responses": {
|
|
"200": {
|
|
"description": "Erfolgreiche Antwort"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
} |