Adyen · JSON Structure

Accounting Notifications Party Identification 2 Structure

PartyIdentification-2 schema from Adyen API

Type: object Properties: 5 Required: 1
PaymentsFinancial ServicesFintech

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

Properties

address firstName fullName lastName 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-party-identification-2-structure.json",
  "description": "PartyIdentification-2 schema from Adyen API",
  "properties": {
    "address": {
      "description": "Address of the bank account owner.",
      "$ref": "#/components/schemas/Address-2"
    },
    "firstName": {
      "description": "First name of the individual. Required when `type` is **individual**.",
      "type": "string"
    },
    "fullName": {
      "description": "The name of the entity.",
      "type": "string"
    },
    "lastName": {
      "description": "Last name of the individual. Required when `type` is **individual**.",
      "type": "string"
    },
    "type": {
      "default": "unknown",
      "description": "The type of entity that owns the bank account.\n\n Possible values: **individual**, **organization**, or **unknown**.",
      "enum": [
        "individual",
        "organization",
        "unknown"
      ],
      "type": "string"
    }
  },
  "required": [
    "fullName"
  ],
  "type": "object",
  "name": "PartyIdentification-2"
}