diff options
Diffstat (limited to 'swagger.json')
-rw-r--r-- | swagger.json | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/swagger.json b/swagger.json index f8269a2da..46998c340 100644 --- a/swagger.json +++ b/swagger.json @@ -10,6 +10,35 @@ "http" ], "paths": { + "/sos": { + "post": { + "consumes": [ + "application/json" + ], + "produces": [ + "application/json" + ], + "parameters": [ + { + "name": "body", + "in": "body", + "required": true, + "schema": { + "$ref": "#/definitions/Command" + } + } + ], + "responses": { + "200": { + "description": "OK", + "headers": {}, + "schema": { + "$ref": "#/definitions/Command" + } + } + } + } + }, "/commands": { "post": { "consumes": [ |