From 75ec35c8a24a47fbafa1eca0553423c7608277af Mon Sep 17 00:00:00 2001 From: lipflip010 <lipflip@posteo.de> Date: Thu, 4 Aug 2022 13:15:09 +0200 Subject: [PATCH] add test api.yaml --- api.yaml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 api.yaml diff --git a/api.yaml b/api.yaml new file mode 100644 index 0000000..2cb826f --- /dev/null +++ b/api.yaml @@ -0,0 +1,26 @@ +openapi: 3.0.3 +info: + title: Aina + description: Aina + version: 1.0.0 +servers: + - url: 'http://localhost:8080' + +paths: + /classifier: + get: + operationId: getClassifier + responses: + '200': + content: + application/json: + schema: + $ref: "#/components/schemas/OkayResponse" + description: OK + +components: + schemas: + OkayResponse: + properties: + response: + type: string \ No newline at end of file -- GitLab