From dff98ce5c6ca168cb3a40ae513588b5b5955809d Mon Sep 17 00:00:00 2001 From: Timotej Date: Thu, 29 Jan 2026 19:34:07 +0100 Subject: [PATCH] api docs --- docs/openapi.yaml | 19 ------------------- 1 file changed, 19 deletions(-) diff --git a/docs/openapi.yaml b/docs/openapi.yaml index 82e6042..9d883ea 100644 --- a/docs/openapi.yaml +++ b/docs/openapi.yaml @@ -3,24 +3,11 @@ info: title: CloudShopt Payment Service API version: 1.0.0 tags: - - name: Health - name: Diagnostics - name: Checkout - name: Webhooks paths: - /healthz: - get: - tags: [Health] - summary: Health check - responses: - "200": - description: OK - content: - application/json: - schema: - $ref: "#/components/schemas/StatusOkBool" - /info: get: tags: [Diagnostics] @@ -150,12 +137,6 @@ components: type: array items: { type: string } - StatusOkBool: - type: object - required: [ok] - properties: - ok: { type: boolean, example: true } - InfoResponse: type: object required: [ok, service, sha, time]