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]