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": "#/components/schemas/SELocalAccountIdentification",
"title": "SELocalAccountIdentification",
"additionalProperties": false,
"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"
]
}