Properties
| Name | Type | Description |
|---|---|---|
| code | string | The provider-specific tax code for this item. Items can be classified with tax codes relevant to each Tax Provider, configured by the merchant, and assigned to their products within BigCommerce. A tax |
| class_id | string | The ID of the tax class defined in the merchant’s BigCommerce store. May have a UUID value. |
| name | string | The human-readable name of this tax class in the merchant’s BigCommerce store. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/TaxClass",
"title": "TaxClass",
"type": "object",
"properties": {
"code": {
"type": "string",
"description": "The provider-specific tax code for this item. Items can be classified with tax codes relevant to each Tax Provider, configured by the merchant, and assigned to their products within BigCommerce. A tax code is intended to apply to multiple products. This code should match the tax codes provided by the third-party integration."
},
"class_id": {
"type": "string",
"description": "The ID of the tax class defined in the merchant\u2019s BigCommerce store. May have a UUID value."
},
"name": {
"type": "string",
"description": "The human-readable name of this tax class in the merchant\u2019s BigCommerce store."
}
},
"required": [
"code",
"class_id",
"name"
],
"x-internal": false
}