Adyen · Schema
UKLocalAccountIdentification
UKLocalAccountIdentification schema from Adyen API
PaymentsFinancial ServicesFintech
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": "https://raw.githubusercontent.com/api-evangelist/adyen/refs/heads/main/json-schema/configuration-uk-local-account-identification-schema.json",
"title": "UKLocalAccountIdentification",
"description": "UKLocalAccountIdentification schema from Adyen API",
"type": "object",
"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"
],
"additionalProperties": false
}