Adyen · Schema

PartyIdentification-2

PaymentsFinancial ServicesFintech

Properties

Name Type Description
address object Address of the bank account owner.
firstName string First name of the individual. Required when `type` is **individual**.
fullName string The name of the entity.
lastName string Last name of the individual. Required when `type` is **individual**.
type string The type of entity that owns the bank account. Possible values: **individual**, **organization**, or **unknown**.
View JSON Schema on GitHub

JSON Schema

adyen-partyidentification-2-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PartyIdentification-2",
  "title": "PartyIdentification-2",
  "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"
  ]
}