{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/flipdish/refs/heads/main/json-schema/orders-tax-item-schema.json",
"title": "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": {
"format": "double",
"description": "The tax rate applied to the item.",
"type": "number",
"example": 1.0
},
"Amount": {
"format": "double",
"description": "The amount of tax applied to the item.",
"type": "number",
"example": 12.5
}
}
}