From 2ec9a9fe4d63c21b108a6b645623eb5e36eed68c Mon Sep 17 00:00:00 2001 From: Timo Hocker Date: Fri, 4 Sep 2020 17:39:19 +0200 Subject: [PATCH] starting api spec --- spec/api.json | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 spec/api.json diff --git a/spec/api.json b/spec/api.json new file mode 100644 index 0000000..bc3c56f --- /dev/null +++ b/spec/api.json @@ -0,0 +1,28 @@ +{ + "openapi":"3.0.2", + "info": { + "title":"API Title", + "version":"1.0" + }, + "servers": [ + {"url":"https://appreports.scode.ovh/v1"} + ], + "paths": { + "/app": { + "get": { + "description": "list all apps", + "parameters": [], + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + + } + } + } + } + } + } + } +} \ No newline at end of file