Adyen · JSON Structure

Transfers Uk Local Account Identification Structure

UKLocalAccountIdentification schema from Adyen API

Type: object Properties: 3 Required: 3
PaymentsFinancial ServicesFintech

UKLocalAccountIdentification 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 sortCode 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/transfers-uk-local-account-identification-structure.json",
  "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,
  "name": "UKLocalAccountIdentification"
}