From 9575a95074a6affa3addb5a205c09b57d76322b4 Mon Sep 17 00:00:00 2001 From: selfcare-github-bot <146744076+selfcare-github-bot@users.noreply.github.com> Date: Tue, 15 Oct 2024 09:29:04 +0200 Subject: [PATCH] [Update OpenAPI] Merge openapi: added Billing Portal API PROD (#426) Co-authored-by: manuraf <12083207+manuraf@users.noreply.github.com> --- .../billing-portal-api/v1/openapi.prod.json | 26 +++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 infra/apim_v2/api/billing-portal-api/v1/openapi.prod.json diff --git a/infra/apim_v2/api/billing-portal-api/v1/openapi.prod.json b/infra/apim_v2/api/billing-portal-api/v1/openapi.prod.json new file mode 100644 index 00000000..505ff1d6 --- /dev/null +++ b/infra/apim_v2/api/billing-portal-api/v1/openapi.prod.json @@ -0,0 +1,26 @@ +{ + "openapi": "3.0.3", + "info": { + "title": "Billing Portal API service", + "description": "This service is the proxy for the billing portal", + "version": "1.0.0" + }, + "servers": [ + { + "url": "https://${host}/${basePath}" + } + ], + "tags": [], + "paths": {}, + "components": { + "schemas": {}, + "securitySchemes": { + "bearerAuth": { + "type": "http", + "description": "A bearer token in the format of a JWS and conformed to the specifications included in [RFC8725](https://tools.ietf.org/html/RFC8725)", + "scheme": "bearer", + "bearerFormat": "JWT" + } + } + } +} \ No newline at end of file