{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/SalesTaxes", "title": "SalesTaxes", "type": "object", "properties": { "salesTaxes": { "type": "array", "description": "An array of one or more sales-tax rate entries for a specific marketplace (or all applicable marketplaces if the country_code query parameter is not used.

If no sales-tax rate entries are set up, no response payload is returned, but an HTTP status code of 204 No Content is returned.", "items": { "$ref": "#/components/schemas/SalesTax" } } }, "description": "This type is used by the root response of the getSalesTaxes method." }