Properties
| Name | Type | Description |
|---|---|---|
| bankAccountIdentificationTypes | array | List of bank account identification types: eg.; [iban , numberAndBic] |
| description | string | Specifies the bank account details for a particular route per required field in this object depending on the country of the bank account and the currency of the transfer. |
| type | string | **bankAccountIdentificationTypeRequirement** |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/BankAccountIdentificationTypeRequirement",
"title": "BankAccountIdentificationTypeRequirement",
"additionalProperties": false,
"properties": {
"bankAccountIdentificationTypes": {
"description": "List of bank account identification types: eg.; [iban , numberAndBic]",
"items": {
"enum": [
"auLocal",
"brLocal",
"caLocal",
"czLocal",
"dkLocal",
"hkLocal",
"huLocal",
"iban",
"legacy",
"noLocal",
"numberAndBic",
"nzLocal",
"plLocal",
"seLocal",
"sgLocal",
"ukLocal",
"usLocal"
],
"type": "string"
},
"type": "array"
},
"description": {
"description": "Specifies the bank account details for a particular route per required field in this object depending on the country of the bank account and the currency of the transfer.",
"type": "string"
},
"type": {
"default": "bankAccountIdentificationTypeRequirement",
"description": "**bankAccountIdentificationTypeRequirement**",
"enum": [
"bankAccountIdentificationTypeRequirement"
],
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}