Adyen · JSON Structure

Configuration Number And Bic Account Identification Structure

NumberAndBicAccountIdentification schema from Adyen API

Type: object Properties: 4 Required: 3
PaymentsFinancial ServicesFintech

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

Properties

accountNumber additionalBankIdentification bic 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-number-and-bic-account-identification-structure.json",
  "description": "NumberAndBicAccountIdentification schema from Adyen API",
  "type": "object",
  "properties": {
    "accountNumber": {
      "description": "The bank account number, without separators or whitespace. The length and format depends on the bank or country.",
      "maxLength": 34,
      "type": "string"
    },
    "additionalBankIdentification": {
      "description": "Additional identification codes of the bank. Some banks may require these identifiers for cross-border transfers.",
      "$ref": "#/components/schemas/AdditionalBankIdentification"
    },
    "bic": {
      "description": "The bank's 8- or 11-character BIC or SWIFT code.",
      "maxLength": 11,
      "minLength": 8,
      "type": "string"
    },
    "type": {
      "default": "numberAndBic",
      "description": "**numberAndBic**",
      "enum": [
        "numberAndBic"
      ],
      "type": "string"
    }
  },
  "required": [
    "type",
    "accountNumber",
    "bic"
  ],
  "additionalProperties": false,
  "name": "NumberAndBicAccountIdentification"
}