From 6b1224bf9739b899d9d4d786008df9bea8b94111 Mon Sep 17 00:00:00 2001 From: dylan Date: Fri, 31 Jan 2025 15:32:37 +0100 Subject: [PATCH] Remove hello in OpenAPI and change session tag to token --- openapi.yml | 29 ++--------------------------- 1 file changed, 2 insertions(+), 27 deletions(-) diff --git a/openapi.yml b/openapi.yml index 10928c5..020794f 100644 --- a/openapi.yml +++ b/openapi.yml @@ -16,8 +16,6 @@ externalDocs: servers: - url: "" tags: - - name: hello - description: "" - name: token description: "" - name: signing-request @@ -26,20 +24,6 @@ tags: description: "" paths: - /hello: - get: - tags: - - hello - summary: Get a hello from me - operationId: getHello - responses: - 200: - description: "Hello" - content: - application/json: - schema: - $ref: "#/components/schemas/HelloResponse" - /signing-request/{id}: get: tags: @@ -139,7 +123,7 @@ paths: /token: post: tags: - - session + - token summary: Create a bearer token operationId: createToken requestBody: @@ -163,12 +147,6 @@ paths: components: schemas: - HelloResponse: - type: object - properties: - value: - type: string - CreateSessionRequest: type: object required: @@ -242,7 +220,4 @@ components: description: Human-readable error message code: type: integer - description: Machine-readable error code - details: - type: object - description: Additional error details when available \ No newline at end of file + description: Machine-readable error code \ No newline at end of file