Flipdish · Schema

MenuTaxRate

Tax Rates Associated with a Menu

RestaurantOnline OrderingMobile AppsPoint of SaleOrdersMenuPaymentsWebhooks

Properties

Name Type Description
TaxRateId integer Id of Tax Rate
Name string Name of Tax Rate
Rate number In Percentage
View JSON Schema on GitHub

JSON Schema

menus-menu-tax-rate-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/menus-menu-tax-rate-schema.json",
  "title": "MenuTaxRate",
  "description": "Tax Rates Associated with a Menu",
  "type": "object",
  "properties": {
    "TaxRateId": {
      "format": "int32",
      "description": "Id of Tax Rate",
      "type": "integer",
      "example": 500123
    },
    "Name": {
      "description": "Name of Tax Rate",
      "maxLength": 2048,
      "minLength": 0,
      "type": "string",
      "example": "Example Name"
    },
    "Rate": {
      "format": "double",
      "description": "In Percentage",
      "type": "number",
      "example": 1.0
    }
  }
}