Adyen · Schema
SELocalAccountIdentification
SELocalAccountIdentification schema from Adyen API
PaymentsFinancial ServicesFintech
Properties
| Name | Type | Description |
|---|---|---|
| accountNumber | string | The 7- to 10-digit bank account number ([Bankkontonummer](https://sv.wikipedia.org/wiki/Bankkonto)), without the clearing number, separators, or whitespace. |
| clearingNumber | string | The 4- to 5-digit clearing number ([Clearingnummer](https://sv.wikipedia.org/wiki/Clearingnummer)), without separators or whitespace. |
| type | string | **seLocal** |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/adyen/refs/heads/main/json-schema/legal-entity-se-local-account-identification-schema.json",
"title": "SELocalAccountIdentification",
"description": "SELocalAccountIdentification schema from Adyen API",
"type": "object",
"properties": {
"accountNumber": {
"description": "The 7- to 10-digit bank account number ([Bankkontonummer](https://sv.wikipedia.org/wiki/Bankkonto)), without the clearing number, separators, or whitespace.",
"maxLength": 10,
"minLength": 7,
"type": "string"
},
"clearingNumber": {
"description": "The 4- to 5-digit clearing number ([Clearingnummer](https://sv.wikipedia.org/wiki/Clearingnummer)), without separators or whitespace.",
"maxLength": 5,
"minLength": 4,
"type": "string"
},
"type": {
"default": "seLocal",
"description": "**seLocal**",
"enum": [
"seLocal"
],
"type": "string"
}
},
"required": [
"type",
"accountNumber",
"clearingNumber"
],
"additionalProperties": false
}