Adyen · Schema

HKLocalAccountIdentification

HKLocalAccountIdentification schema from Adyen API

PaymentsFinancial ServicesFintech

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**
View JSON Schema on GitHub

JSON Schema

legal-entity-hk-local-account-identification-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/adyen/refs/heads/main/json-schema/legal-entity-hk-local-account-identification-schema.json",
  "title": "HKLocalAccountIdentification",
  "description": "HKLocalAccountIdentification schema from Adyen API",
  "type": "object",
  "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"
  ],
  "additionalProperties": false
}