Flipdish · Schema

TaxItem

A collection of tax items on the order.

RestaurantOnline OrderingMobile AppsPoint of SaleOrdersMenuPaymentsWebhooks

Properties

Name Type Description
Name string The name of the tax item.
Rate number The tax rate applied to the item.
Amount number The amount of tax applied to the item.
View JSON Schema on GitHub

JSON Schema

orders-tax-item-schema.json Raw ↑
{
  "$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
    }
  }
}