PayPal · Schema

Tax Information

The tax ID of the customer. The customer is also known as the payer. Both `tax_id` and `tax_id_type` are required.

BillingCommerceDisputesInvoicesOrdersPaymentsPayoutsSubscriptionsTokensWebhooks

Properties

Name Type Description
tax_id string The customer's tax ID value.
tax_id_type string The customer's tax ID type.
View JSON Schema on GitHub

JSON Schema

paypal-tax-info-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/tax_info",
  "title": "Tax Information",
  "type": "object",
  "description": "The tax ID of the customer. The customer is also known as the payer. Both `tax_id` and `tax_id_type` are required.",
  "properties": {
    "tax_id": {
      "type": "string",
      "description": "The customer's tax ID value.",
      "maxLength": 14
    },
    "tax_id_type": {
      "type": "string",
      "description": "The customer's tax ID type.",
      "enum": [
        "BR_CPF",
        "BR_CNPJ"
      ]
    }
  },
  "required": [
    "tax_id",
    "tax_id_type"
  ]
}