{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/SalesTax",
"title": "SalesTax",
"type": "object",
"properties": {
"countryCode": {
"type": "string",
"description": "The country code enumeration value identifies the country to which this sales tax rate applies.
Note: Sales-tax tables are available only for the US and Canada marketplaces. Therefore, the only supported values are: For implementation help, refer to eBay API documentation"
},
"salesTaxJurisdictionId": {
"type": "string",
"description": "A unique ID that identifies the sales tax jurisdiction to which the sales tax rate applies.
Note: When the returned countryCode is US, the only supported return values for salesTaxJurisdictionId are:AS (American Samoa)GU (GuamMP Northern Mariana IslandsPW (Palau)VI (US Virgin Islands)
"
},
"salesTaxPercentage": {
"type": "string",
"description": "The sales tax rate that will be applied to sales price. The shippingAndHandlingTaxed value will indicate whether or not sales tax is also applied to shipping and handling charges
Although it is a string, a percentage value is returned here, such as 7.75"
},
"shippingAndHandlingTaxed": {
"type": "boolean",
"description": "If returned as true, sales tax is also applied to shipping and handling charges, and not just the total sales price of the order."
}
},
"description": "This type is used to provide sales tax settings for a specific tax jurisdiction."
}