Skip to content

Commit

Permalink
[Update OpenAPI] Merge openapi dev using openapi-merge-cli (#470)
Browse files Browse the repository at this point in the history
  • Loading branch information
selfcare-github-bot authored Oct 30, 2024
1 parent 30d07a8 commit 2cb44f6
Showing 1 changed file with 172 additions and 0 deletions.
172 changes: 172 additions & 0 deletions infra/apim_v2/api/ms_internal_api/v1/openapi.dev.json
Original file line number Diff line number Diff line change
Expand Up @@ -532,6 +532,75 @@
]
}
},
"/onboarding/import": {
"post": {
"tags": [],
"summary": "onboardingImport",
"description": "The service allows the onboarding of an institution through import",
"operationId": "onboardingImportUsingPOST",
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/OnboardingImportProductDto"
}
}
}
},
"responses": {
"201": {
"description": "Created"
},
"400": {
"description": "Bad Request",
"content": {
"application/problem+json": {
"schema": {
"$ref": "#/components/schemas/Problem"
}
}
}
},
"401": {
"description": "Unauthorized",
"content": {
"application/problem+json": {
"schema": {
"$ref": "#/components/schemas/Problem"
}
}
}
},
"403": {
"description": "Forbidden",
"content": {
"application/problem+json": {
"schema": {
"$ref": "#/components/schemas/Problem"
}
}
}
},
"500": {
"description": "Internal Server Error",
"content": {
"application/problem+json": {
"schema": {
"$ref": "#/components/schemas/Problem"
}
}
}
}
},
"security": [
{
"bearerAuth": [
"global"
]
}
]
}
},
"/onboarding/users": {
"post": {
"tags": [
Expand Down Expand Up @@ -1625,6 +1694,109 @@
}
}
},
"OnboardingImportProductDto": {
"title": "OnboardingImportProductDto",
"required": [
"geographicTaxonomies",
"institutionType",
"productId"
],
"type": "object",
"properties": {
"activatedAt": {
"type": "string",
"description": "Previous contract sign date for import",
"format": "date-time"
},
"additionalInformations": {
"description": "GSP institution's additional informations",
"$ref": "#/components/schemas/AdditionalInformationsDto"
},
"assistanceContacts": {
"description": "Institution's assistance contacts",
"$ref": "#/components/schemas/AssistanceContactsDto"
},
"billingData": {
"description": "Institution's billing information",
"$ref": "#/components/schemas/BillingDataDto"
},
"companyInformations": {
"description": "GPS, SCP, PT optional data",
"$ref": "#/components/schemas/CompanyInformationsDto"
},
"contractSigned": {
"type": "string",
"description": "Contract signed file path"
},
"geographicTaxonomies": {
"type": "array",
"description": "List of geographic Taxonomies",
"items": {
"$ref": "#/components/schemas/GeographicTaxonomyDto"
}
},
"institutionLocationData": {
"description": "Institution's location Data",
"$ref": "#/components/schemas/InstitutionLocationDataDto"
},
"institutionType": {
"type": "string",
"description": "Institution's type",
"enum": [
"AS",
"CON",
"GSP",
"PA",
"PG",
"PRV",
"PSP",
"PT",
"REC",
"SA",
"SCP"
]
},
"origin": {
"type": "string",
"description": "Institution data origin"
},
"originId": {
"type": "string",
"description": "Institution's details origin Id"
},
"pricingPlan": {
"type": "string",
"description": "Product's pricing plan"
},
"productId": {
"type": "string",
"description": "Product's unique identifier"
},
"pspData": {
"description": "Payment Service Provider (PSP) specific data",
"$ref": "#/components/schemas/PspDataDto"
},
"subunitCode": {
"type": "string",
"description": "Institutions AOO/UO unit Code"
},
"subunitType": {
"type": "string",
"description": "Institutions AOO/UO unit type"
},
"taxCode": {
"type": "string",
"description": "Institution's taxCode"
},
"users": {
"type": "array",
"description": "List of onboarding users",
"items": {
"$ref": "#/components/schemas/UserDto"
}
}
}
},
"RelationshipResult": {
"title": "RelationshipResult",
"type": "object",
Expand Down

0 comments on commit 2cb44f6

Please sign in to comment.