Properties
| Name | Type | Description |
|---|---|---|
| accountNumber | string | The 9- to 15-character bank account number (alphanumeric), without separators or whitespace. Starts with the 3-digit branch code. |
| clearingCode | string | The 3-digit clearing code, without separators or whitespace. |
| type | string | **hkLocal** |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/HKLocalAccountIdentification",
"title": "HKLocalAccountIdentification",
"additionalProperties": false,
"properties": {
"accountNumber": {
"description": "The 9- to 15-character bank account number (alphanumeric), without separators or whitespace. Starts with the 3-digit branch code.",
"maxLength": 15,
"minLength": 9,
"type": "string"
},
"clearingCode": {
"description": "The 3-digit clearing code, without separators or whitespace.",
"maxLength": 3,
"minLength": 3,
"type": "string"
},
"type": {
"default": "hkLocal",
"description": "**hkLocal**",
"enum": [
"hkLocal"
],
"type": "string"
}
},
"required": [
"type",
"accountNumber",
"clearingCode"
],
"type": "object"
}