Properties
| Name | Type | Description |
|---|---|---|
| accountNumber | string | The bank account number, without separators or whitespace. The length and format depends on the bank or country. |
| additionalBankIdentification | object | Additional identification codes of the bank. Some banks may require these identifiers for cross-border transfers. |
| bic | string | The bank's 8- or 11-character BIC or SWIFT code. |
| type | string | **numberAndBic** |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/NumberAndBicAccountIdentification",
"title": "NumberAndBicAccountIdentification",
"additionalProperties": false,
"properties": {
"accountNumber": {
"description": "The bank account number, without separators or whitespace. The length and format depends on the bank or country.",
"maxLength": 34,
"type": "string"
},
"additionalBankIdentification": {
"description": "Additional identification codes of the bank. Some banks may require these identifiers for cross-border transfers.",
"$ref": "#/components/schemas/AdditionalBankIdentification"
},
"bic": {
"description": "The bank's 8- or 11-character BIC or SWIFT code.",
"maxLength": 11,
"minLength": 8,
"type": "string"
},
"type": {
"default": "numberAndBic",
"description": "**numberAndBic**",
"enum": [
"numberAndBic"
],
"type": "string"
}
},
"required": [
"type",
"accountNumber",
"bic"
]
}