Montran · Schema
ClearingSystemDetail
Clearing and settlement system details
BankingCentral BankingFinancial ServicesISO 20022Market InfrastructureMessagingPaymentsReal-Time PaymentsSWIFT
Properties
| Name | Type | Description |
|---|---|---|
| systemId | string | |
| name | string | Clearing system name |
| type | string | System type |
| country | string | Country of the clearing system |
| status | string | |
| supportedFormats | array | |
| supportedMessageTypes | array | |
| operatingHours | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/ClearingSystemDetail",
"title": "ClearingSystemDetail",
"type": "object",
"description": "Clearing and settlement system details",
"properties": {
"systemId": {
"type": "string"
},
"name": {
"type": "string",
"description": "Clearing system name"
},
"type": {
"type": "string",
"description": "System type",
"enum": [
"RTGS",
"ACH",
"INSTANT",
"HYBRID"
]
},
"country": {
"type": "string",
"description": "Country of the clearing system"
},
"status": {
"type": "string",
"enum": [
"connected",
"disconnected",
"maintenance"
]
},
"supportedFormats": {
"type": "array",
"items": {
"type": "string"
}
},
"supportedMessageTypes": {
"type": "array",
"items": {
"type": "string"
}
},
"operatingHours": {
"type": "object",
"properties": {
"is24x7": {
"type": "boolean"
},
"openTime": {
"type": "string"
},
"closeTime": {
"type": "string"
},
"timezone": {
"type": "string"
}
}
}
}
}