Flipdish · Schema
MenuTaxDetails
Tax information for Menu
RestaurantOnline OrderingMobile AppsPoint of SaleOrdersMenuPaymentsWebhooks
Properties
| Name | Type | Description |
|---|---|---|
| TaxRates | array | Tax Rates |
| DisplayTax | boolean | Display tax for Menu |
| TaxType | string | TaxType |
| ItemTaxes | object | ItemIds and TaxIds |
| SetItemTaxes | object | SetItemIds and TaxIds |
JSON Schema
{
"$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-details-schema.json",
"title": "MenuTaxDetails",
"description": "Tax information for Menu",
"type": "object",
"properties": {
"TaxRates": {
"description": "Tax Rates",
"type": "array",
"items": {
"$ref": "#/components/schemas/MenuTaxRate"
},
"example": []
},
"DisplayTax": {
"description": "Display tax for Menu",
"type": "boolean",
"example": true
},
"TaxType": {
"description": "TaxType",
"enum": [
"IncludedInBasePrice",
"ExcludedFromBasePrice"
],
"type": "string",
"example": "IncludedInBasePrice"
},
"ItemTaxes": {
"description": "ItemIds and TaxIds",
"type": "object",
"additionalProperties": {
"format": "int32",
"type": "integer"
}
},
"SetItemTaxes": {
"description": "SetItemIds and TaxIds",
"type": "object",
"additionalProperties": {
"format": "int32",
"type": "integer"
}
}
}
}