Adyen · JSON Structure

Accounting Notifications Sg Local Account Identification Structure

SGLocalAccountIdentification schema from Adyen API

Type: object Properties: 3 Required: 2
PaymentsFinancial ServicesFintech

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

Properties

accountNumber 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/accounting-notifications-sg-local-account-identification-structure.json",
  "description": "SGLocalAccountIdentification schema from Adyen API",
  "properties": {
    "accountNumber": {
      "description": "The 4- to 19-digit bank account number, without separators or whitespace.",
      "maxLength": 19,
      "minLength": 4,
      "type": "string"
    },
    "bic": {
      "description": "The bank's 8- or 11-character BIC or SWIFT code.",
      "maxLength": 11,
      "minLength": 8,
      "type": "string"
    },
    "type": {
      "default": "sgLocal",
      "description": "**sgLocal**",
      "enum": [
        "sgLocal"
      ],
      "type": "string"
    }
  },
  "required": [
    "accountNumber",
    "bic"
  ],
  "additionalProperties": false,
  "type": "object",
  "name": "SGLocalAccountIdentification"
}