Otter · Schema

ItemTax

The tax configuration.

RestaurantOrder ManagementDeliveryOnline OrderingMenu ManagementAnalytics

Properties

Name Type Description
percentageValue object Specify the percentage value of the tax.
isValueAddedTax boolean Whether this tax is a value-added tax.
View JSON Schema on GitHub

JSON Schema

public-api-item-tax-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "ItemTax",
  "description": "The tax configuration.",
  "$id": "https://raw.githubusercontent.com/api-evangelist/otter/refs/heads/main/json-schema/public-api-item-tax-schema.json",
  "type": "object",
  "properties": {
    "percentageValue": {
      "$ref": "https://raw.githubusercontent.com/api-evangelist/otter/refs/heads/main/json-schema/public-api-percentage-value-schema.json",
      "description": "Specify the percentage value of the tax."
    },
    "isValueAddedTax": {
      "type": "boolean",
      "description": "Whether this tax is a value-added tax.",
      "example": true
    }
  },
  "required": [
    "percentageValue",
    "isValueAddedTax"
  ]
}