{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/response-item", "title": "Item", "type": "object", "description": "The tax liabilities calculated for a specific item.\n\nNote: Tax liabilities should be calculated with **quantity** accounted for.", "properties": { "id": { "type": "string", "description": "A unique identifier for the line item these tax liabilities are calculated for. Must match the corresponding request line item ID." }, "price": { "$ref": "#/components/schemas/response-taxprice" } }, "required": [ "id", "price" ], "x-internal": false }