{ "$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" ] }