Flipdish · JSON Structure

Orders Tax Item Structure

A collection of tax items on the order.

Type: object Properties: 3
RestaurantOnline OrderingMobile AppsPoint of SaleOrdersMenuPaymentsWebhooks

TaxItem is a JSON Structure definition published by Flipdish, describing 3 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

Name Rate Amount

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$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
    }
  }
}