PayPal · Schema

Recipient type

The ID type that identifies the payment receiver.

BillingCommerceDisputesInvoicesOrdersPaymentsPayoutsSubscriptionsTokensWebhooks
View JSON Schema on GitHub

JSON Schema

paypal-recipient-enum-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/recipient_enum",
  "title": "Recipient type",
  "description": "The ID type that identifies the payment receiver.",
  "type": "string",
  "minLength": 1,
  "maxLength": 36,
  "pattern": "^[0-9A-Z_]+$",
  "enum": [
    "EMAIL",
    "PHONE",
    "PAYPAL_ID"
  ]
}