Montran · Schema

Beneficiary

BankingCentral BankingFinancial ServicesISO 20022Market InfrastructureMessagingPaymentsReal-Time PaymentsSWIFT

Properties

Name Type Description
beneficiaryId string
name string
accountIban string
accountNumber string
bankBic string
bankName string
country string
status string
createdAt string
View JSON Schema on GitHub

JSON Schema

montran-beneficiary-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Beneficiary",
  "title": "Beneficiary",
  "type": "object",
  "properties": {
    "beneficiaryId": {
      "type": "string"
    },
    "name": {
      "type": "string"
    },
    "accountIban": {
      "type": "string"
    },
    "accountNumber": {
      "type": "string"
    },
    "bankBic": {
      "type": "string"
    },
    "bankName": {
      "type": "string"
    },
    "country": {
      "type": "string"
    },
    "status": {
      "type": "string",
      "enum": [
        "active",
        "inactive"
      ]
    },
    "createdAt": {
      "type": "string",
      "format": "date-time"
    }
  }
}