Montran · Schema

AccountDetail

Payment account details

BankingCentral BankingFinancial ServicesISO 20022Market InfrastructureMessagingPaymentsReal-Time PaymentsSWIFT

Properties

Name Type Description
accountId string Unique account identifier
iban string International Bank Account Number
currency string Account currency (ISO 4217)
name string Account name or description
ownerName string Name of the account owner
product string Product name of the account
status string
View JSON Schema on GitHub

JSON Schema

montran-accountdetail-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AccountDetail",
  "title": "AccountDetail",
  "type": "object",
  "description": "Payment account details",
  "properties": {
    "accountId": {
      "type": "string",
      "description": "Unique account identifier"
    },
    "iban": {
      "type": "string",
      "description": "International Bank Account Number"
    },
    "currency": {
      "type": "string",
      "description": "Account currency (ISO 4217)"
    },
    "name": {
      "type": "string",
      "description": "Account name or description"
    },
    "ownerName": {
      "type": "string",
      "description": "Name of the account owner"
    },
    "product": {
      "type": "string",
      "description": "Product name of the account"
    },
    "status": {
      "type": "string",
      "enum": [
        "enabled",
        "deleted",
        "blocked"
      ]
    }
  }
}