Montran · Schema

BalanceVerificationResponse

Result of account balance verification

BankingCentral BankingFinancial ServicesISO 20022Market InfrastructureMessagingPaymentsReal-Time PaymentsSWIFT

Properties

Name Type Description
sufficient boolean Whether the account has sufficient funds
verifiedAt string
View JSON Schema on GitHub

JSON Schema

montran-balanceverificationresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/BalanceVerificationResponse",
  "title": "BalanceVerificationResponse",
  "type": "object",
  "description": "Result of account balance verification",
  "properties": {
    "sufficient": {
      "type": "boolean",
      "description": "Whether the account has sufficient funds"
    },
    "verifiedAt": {
      "type": "string",
      "format": "date-time"
    }
  }
}