PayPal · Schema

Taxes Override

The tax details.

BillingCommerceDisputesInvoicesOrdersPaymentsPayoutsSubscriptionsTokensWebhooks

Properties

Name Type Description
percentage object The tax percentage on the billing amount.
inclusive boolean Indicates whether the tax was already included in the billing amount.
View JSON Schema on GitHub

JSON Schema

paypal-taxes-override-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/taxes_override",
  "title": "Taxes Override",
  "description": "The tax details.",
  "type": "object",
  "properties": {
    "percentage": {
      "description": "The tax percentage on the billing amount.",
      "$ref": "#/components/schemas/percentage"
    },
    "inclusive": {
      "type": "boolean",
      "description": "Indicates whether the tax was already included in the billing amount."
    }
  }
}