Adyen · JSON Structure

Configuration Hk Local Account Identification Structure

HKLocalAccountIdentification schema from Adyen API

Type: object Properties: 3 Required: 3
PaymentsFinancial ServicesFintech

HKLocalAccountIdentification is a JSON Structure definition published by Adyen, describing 3 properties, of which 3 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

accountNumber clearingCode type

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/adyen/refs/heads/main/json-structure/configuration-hk-local-account-identification-structure.json",
  "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,
  "name": "HKLocalAccountIdentification"
}