Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Update OpenAPI] Merge openapi dev using openapi-merge-cli #632

Closed
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
51 changes: 51 additions & 0 deletions infra/apim_v2/api/ms_internal_api/v1/openapi.dev.json
Original file line number Diff line number Diff line change
@@ -1186,6 +1186,49 @@
]
}
},
"/tokens/contract-report": {
"get": {
"tags": [],
"summary": "Check if contract signed is a CADES file",
"description": "Check if contract signed is a CADES file even if is not .p7m",
"operationId": "reportContractSigned",
"parameters": [
{
"name": "onboardingId",
"in": "query",
"required": true,
"schema": {
"type": "string"
}
}
],
"responses": {
"200": {
"description": "OK",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ContractSignedReport"
}
}
}
},
"401": {
"description": "Not Authorized"
},
"403": {
"description": "Not Allowed"
}
},
"security": [
{
"apiKeyHeader": [
"global"
]
}
]
}
},
"/tokens/contract-signed": {
"put": {
"tags": [],
@@ -3356,6 +3399,14 @@
"$ref": "#/components/schemas/DataProtectionOfficerRequest1"
}
}
},
"ContractSignedReport": {
"type": "object",
"properties": {
"cades": {
"type": "boolean"
}
}
}
},
"securitySchemes": {
Original file line number Diff line number Diff line change
@@ -235,6 +235,12 @@
},
"isAggregator": {
"type": "boolean"
},
"createdAt": {
"$ref": "#/components/schemas/LocalDateTime"
},
"updatedAt": {
"$ref": "#/components/schemas/LocalDateTime"
}
}
},
@@ -363,6 +369,9 @@
"legalRegisterName": {
"type": "string"
},
"longTermPayments": {
"type": "boolean"
},
"abiCode": {
"type": "string"
},
@@ -470,6 +479,11 @@
}
}
},
"LocalDateTime": {
"format": "date-time",
"type": "string",
"example": "2022-03-10T12:15:50"
},
"OnboardingPgRequest": {
"required": [
"productId",
Original file line number Diff line number Diff line change
@@ -1372,6 +1372,7 @@
"enum": [
"AS",
"CON",
"GPU",
"GSP",
"PA",
"PG",