Adyen · Schema

DKLocalAccountIdentification

PaymentsFinancial ServicesFintech

Properties

Name Type Description
accountNumber string The 4-10 digits bank account number (Kontonummer) (without separators or whitespace).
bankCode string The 4-digit bank code (Registreringsnummer) (without separators or whitespace).
type string **dkLocal**
View JSON Schema on GitHub

JSON Schema

adyen-dklocalaccountidentification-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/DKLocalAccountIdentification",
  "title": "DKLocalAccountIdentification",
  "additionalProperties": false,
  "properties": {
    "accountNumber": {
      "description": "The 4-10 digits bank account number (Kontonummer) (without separators or whitespace).",
      "maxLength": 10,
      "minLength": 4,
      "type": "string"
    },
    "bankCode": {
      "description": "The 4-digit bank code (Registreringsnummer) (without separators or whitespace).",
      "maxLength": 4,
      "minLength": 4,
      "type": "string"
    },
    "type": {
      "default": "dkLocal",
      "description": "**dkLocal**",
      "enum": [
        "dkLocal"
      ],
      "type": "string"
    }
  },
  "required": [
    "type",
    "accountNumber",
    "bankCode"
  ]
}