Montran · Schema

AccountIdentification

Account identification using IBAN or proprietary account number

BankingCentral BankingFinancial ServicesISO 20022Market InfrastructureMessagingPaymentsReal-Time PaymentsSWIFT

Properties

Name Type Description
iban string International Bank Account Number
accountNumber string Proprietary account number
currency string Account currency (ISO 4217)
View JSON Schema on GitHub

JSON Schema

montran-accountidentification-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AccountIdentification",
  "title": "AccountIdentification",
  "type": "object",
  "description": "Account identification using IBAN or proprietary account number",
  "properties": {
    "iban": {
      "type": "string",
      "description": "International Bank Account Number",
      "pattern": "^[A-Z]{2}[0-9]{2}[A-Z0-9]{4,30}$"
    },
    "accountNumber": {
      "type": "string",
      "description": "Proprietary account number"
    },
    "currency": {
      "type": "string",
      "description": "Account currency (ISO 4217)",
      "pattern": "^[A-Z]{3}$"
    }
  }
}