PayPal · Schema

Beneficial_owners

Beneficial owners of the entity.

BillingCommerceDisputesInvoicesOrdersPaymentsPayoutsSubscriptionsTokensWebhooks

Properties

Name Type Description
individual_beneficial_owners array Individual beneficial owners.
business_beneficial_owners array Business beneficial owners.
View JSON Schema on GitHub

JSON Schema

paypal-beneficial-owners-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/beneficial_owners",
  "title": "Beneficial_owners",
  "type": "object",
  "description": "Beneficial owners of the entity.",
  "properties": {
    "individual_beneficial_owners": {
      "description": "Individual beneficial owners.",
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/individual_beneficial_owner"
      },
      "minItems": 0,
      "maxItems": 5
    },
    "business_beneficial_owners": {
      "description": "Business beneficial owners.",
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/business_beneficial_owner"
      },
      "minItems": 0,
      "maxItems": 5
    }
  }
}