Montran · Schema

BeneficiaryCreate

BankingCentral BankingFinancial ServicesISO 20022Market InfrastructureMessagingPaymentsReal-Time PaymentsSWIFT

Properties

Name Type Description
name string Beneficiary name
accountIban string Beneficiary IBAN
accountNumber string
bankBic string
bankName string
country string
address string
View JSON Schema on GitHub

JSON Schema

montran-beneficiarycreate-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/BeneficiaryCreate",
  "title": "BeneficiaryCreate",
  "type": "object",
  "required": [
    "name",
    "accountIban"
  ],
  "properties": {
    "name": {
      "type": "string",
      "description": "Beneficiary name"
    },
    "accountIban": {
      "type": "string",
      "description": "Beneficiary IBAN"
    },
    "accountNumber": {
      "type": "string"
    },
    "bankBic": {
      "type": "string"
    },
    "bankName": {
      "type": "string"
    },
    "country": {
      "type": "string"
    },
    "address": {
      "type": "string"
    }
  }
}