Skip to content
Snippets Groups Projects
Commit a4c852ba authored by Andreas Huber's avatar Andreas Huber
Browse files

#35 Info/Test Resource hinzufügen

parent 209508e2
No related branches found
No related tags found
No related merge requests found
......@@ -1097,6 +1097,60 @@
}
]
}
},
"/info": {
"get": {
"summary": "Get Info",
"tags": [],
"responses": {
"200": {
"description": "OK",
"content": {
"application/json": {
"schema": {
"type": "object",
"properties": {
"version": {
"type": "object",
"properties": {
"major": {
"type": "integer"
},
"minor": {
"type": "integer"
},
"micro": {
"type": "integer"
}
}
}
}
},
"examples": {
"example-1": {
"value": {
"version": {
"major": 0,
"minor": 7,
"micro": 0
}
}
}
}
}
}
}
},
"operationId": "get-info",
"security": [
{
"OAuth20": [
"destination:send"
]
}
],
"description": "Gibt Informationen über den Server aus. Kann zu Testzwecken aufgerufen werden (Test der Erreichbarkeit und Zugriffaberechtigung)."
}
}
},
"tags": [
......
......@@ -1497,6 +1497,61 @@
}
]
}
},
"/info": {
"get": {
"summary": "Get Info",
"tags": [],
"responses": {
"200": {
"description": "OK",
"content": {
"application/json": {
"schema": {
"type": "object",
"properties": {
"version": {
"type": "object",
"properties": {
"major": {
"type": "integer"
},
"minor": {
"type": "integer"
},
"micro": {
"type": "integer"
}
}
}
}
},
"examples": {
"example-1": {
"value": {
"version": {
"major": 0,
"minor": 7,
"micro": 0
}
}
}
}
}
}
}
},
"operationId": "get-info",
"security": [
{
"OAuth20": [
"destination:manage",
"destination:subscribe"
]
}
],
"description": "Gibt Informationen über den Server aus. Kann zu Testzwecken aufgerufen werden (Test der Erreichbarkeit und Zugriffaberechtigung)."
}
}
},
"tags": [
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment