Properties
| Name | Type | Description |
|---|---|---|
| accountNumber | string | The 8-digit bank account number, without separators or whitespace. |
| sortCode | string | The 6-digit [sort code](https://en.wikipedia.org/wiki/Sort_code), without separators or whitespace. |
| type | string | **ukLocal** |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/UKLocalAccountIdentification",
"title": "UKLocalAccountIdentification",
"additionalProperties": false,
"properties": {
"accountNumber": {
"description": "The 8-digit bank account number, without separators or whitespace.",
"maxLength": 8,
"minLength": 8,
"type": "string"
},
"sortCode": {
"description": "The 6-digit [sort code](https://en.wikipedia.org/wiki/Sort_code), without separators or whitespace.",
"maxLength": 6,
"minLength": 6,
"type": "string"
},
"type": {
"default": "ukLocal",
"description": "**ukLocal**",
"enum": [
"ukLocal"
],
"type": "string"
}
},
"required": [
"type",
"accountNumber",
"sortCode"
]
}