{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ProductTaxProperty", "title": "ProductTaxProperty", "type": "object", "description": "A collection of tax property values associated with a product.", "properties": { "product_id": { "type": "integer", "description": "A reference to the product that the product tax properties are associated with.", "example": 157 }, "tax_properties": { "type": "object", "description": "A simple key-value pairing. The tax property must be defined to associate a value. These values will be sent to the active tax provider during Tax Provider API operations whenever the associated product is included in the operation.", "example": { "A-123456789": "26", "B-6731789": "200" } } }, "required": [ "product_id", "tax_properties" ] }