eBay · Schema

Taxes

The type that defines the tax fields.

AuctionsCommerceProductsMarketplaceFortune 500

Properties

Name Type Description
ebayCollectAndRemitTax boolean This field is only returned if true, and indicates that eBay will collect tax (sales tax, Goods and Services tax, or VAT) for at least one line item in the order, and remit the tax to the
includedInPrice boolean This indicates if tax was applied for the cost of the item.
shippingAndHandlingTaxed boolean This indicates if tax is applied for the shipping cost.
taxJurisdiction object The container that returns the tax jurisdiction.
taxPercentage string The percentage of tax.
taxType string This field indicates the type of tax that may be collected for the item. For implementation help, refer to eBay API documenta
View JSON Schema on GitHub

JSON Schema

ebay-taxes-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Taxes",
  "title": "Taxes",
  "type": "object",
  "properties": {
    "ebayCollectAndRemitTax": {
      "type": "boolean",
      "description": "This field is only returned if <code>true</code>, and indicates that eBay will collect tax (sales tax, Goods and Services tax, or VAT) for at least one line item in the order, and remit the tax to the taxing authority of the buyer's residence. "
    },
    "includedInPrice": {
      "type": "boolean",
      "description": "This indicates if tax was applied for the cost of the item."
    },
    "shippingAndHandlingTaxed": {
      "type": "boolean",
      "description": "This indicates if tax is applied for the shipping cost."
    },
    "taxJurisdiction": {
      "description": "The container that returns the tax jurisdiction.",
      "$ref": "#/components/schemas/TaxJurisdiction"
    },
    "taxPercentage": {
      "type": "string",
      "description": "The percentage of tax."
    },
    "taxType": {
      "type": "string",
      "description": "This field indicates the type of tax that may be collected for the item. For implementation help, refer to <a href='https://developer.ebay.com/api-docs/buy/browse/types/gct:TaxType'>eBay API documentation</a>"
    }
  },
  "description": "The type that defines the tax fields."
}