Montran · Schema

BalanceVerificationRequest

Request to verify account balance sufficiency

BankingCentral BankingFinancial ServicesISO 20022Market InfrastructureMessagingPaymentsReal-Time PaymentsSWIFT

Properties

Name Type Description
amount number Amount to verify against the account balance
currency string Currency of the amount
View JSON Schema on GitHub

JSON Schema

montran-balanceverificationrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/BalanceVerificationRequest",
  "title": "BalanceVerificationRequest",
  "type": "object",
  "description": "Request to verify account balance sufficiency",
  "required": [
    "amount",
    "currency"
  ],
  "properties": {
    "amount": {
      "type": "number",
      "format": "double",
      "description": "Amount to verify against the account balance",
      "minimum": 0.01
    },
    "currency": {
      "type": "string",
      "description": "Currency of the amount",
      "pattern": "^[A-Z]{3}$"
    }
  }
}