Montran · Schema
BankAccount
Bank account details
BankingCentral BankingFinancial ServicesISO 20022Market InfrastructureMessagingPaymentsReal-Time PaymentsSWIFT
Properties
| Name | Type | Description |
|---|---|---|
| accountId | string | |
| iban | string | |
| accountNumber | string | |
| currency | string | |
| bankId | string | |
| bankName | string | |
| bankBic | string | |
| accountName | string | |
| availableBalance | number | |
| bookedBalance | number | |
| lastUpdated | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/BankAccount",
"title": "BankAccount",
"type": "object",
"description": "Bank account details",
"properties": {
"accountId": {
"type": "string"
},
"iban": {
"type": "string"
},
"accountNumber": {
"type": "string"
},
"currency": {
"type": "string"
},
"bankId": {
"type": "string"
},
"bankName": {
"type": "string"
},
"bankBic": {
"type": "string"
},
"accountName": {
"type": "string"
},
"availableBalance": {
"type": "number",
"format": "double"
},
"bookedBalance": {
"type": "number",
"format": "double"
},
"lastUpdated": {
"type": "string",
"format": "date-time"
}
}
}