TaxExemption

Tax exemption rules for products, services, or customers. Defines conditions under which taxes do not apply.

8 properties
Schema

Properties

PropertyTypeModeDescriptionRequired
taxTax
stored

Reference to the Tax that can be exempted

Required
exemptionTypestring
enum

Type of exemption

Values: category_based, customer_based, amount_threshold, certificate_based, location_based, temporary

Example: "category_based"

Required
exemptionCategoriesstring[]
stored

Product/service categories that are exempt

Example: ["essential_goods","education","healthcare"]

Optional
customerTypesstring[]
stored

Customer types that are exempt (non_profit, government, diplomatic, etc.)

Example: ["non_profit","government","diplomatic"]

Optional
thresholdAmountMonetaryAmount
stored

Amount threshold for exemption

Optional
certificateRequiredboolean
stored

Whether a tax exemption certificate is required

Example: true

Optional
effectiveFromDate
stored

Date from which this exemption is effective

Example: "2024-01-01"

Optional
effectiveUntilDate
stored

Date until which this exemption is effective (null if indefinite)

Example: "2024-12-31"

Optional

Examples

Example 1

{
  "@type": "TaxExemption",
  "tax": {
    "@type": "Tax",
    "code": "VAT-STD-20"
  },
  "exemptionType": "category_based",
  "exemptionCategories": [
    "essential_goods",
    "basic_food",
    "medicine"
  ],
  "certificateRequired": false,
  "effectiveFrom": "2024-01-01"
}

Example 2

{
  "@type": "TaxExemption",
  "tax": {
    "@type": "Tax",
    "code": "US-SALES-TAX"
  },
  "exemptionType": "customer_based",
  "customerTypes": [
    "non_profit",
    "government",
    "diplomatic"
  ],
  "certificateRequired": true,
  "effectiveFrom": "2024-01-01"
}

Example 3

{
  "@type": "TaxExemption",
  "tax": {
    "@type": "Tax",
    "code": "IMPORT-DUTY"
  },
  "exemptionType": "amount_threshold",
  "thresholdAmount": {
    "value": 150,
    "currency": "EUR"
  },
  "certificateRequired": false,
  "effectiveFrom": "2024-01-01",
  "effectiveUntil": "2024-12-31"
}