{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/flipdish/refs/heads/main/json-structure/orders-tax-item-structure.json", "name": "TaxItem", "description": "A collection of tax items on the order.", "type": "object", "properties": { "Name": { "description": "The name of the tax item.", "type": "string", "example": "Example Name" }, "Rate": { "description": "The tax rate applied to the item.", "type": "double", "example": 1.0 }, "Amount": { "description": "The amount of tax applied to the item.", "type": "double", "example": 12.5 } } }