{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/request-item-tax-property", "title": "TaxProperty", "type": "object", "description": "A simple key value pairing allowing merchants to provide an additional input into a tax provider\u02bcs tax calculation.", "properties": { "code": { "type": "string", "description": "Used by tax providers to programmatically identify a specific calculation input.", "example": "alcohol-percentage" }, "value": { "type": "string", "description": "The value that will be factored into the tax provider\u02bcs tax calculation rules, where supported.", "example": "4.9" } }, "required": [ "code", "value" ], "x-internal": false }