Otter · JSON Structure

Public Api Item Tax Structure

The tax configuration.

Type: object Properties: 2 Required: 2
RestaurantOrder ManagementDeliveryOnline OrderingMenu ManagementAnalytics

ItemTax is a JSON Structure definition published by Otter, describing 2 properties, of which 2 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

percentageValue isValueAddedTax

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/otter/refs/heads/main/json-structure/public-api-item-tax-structure.json",
  "name": "ItemTax",
  "description": "The tax configuration.",
  "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"
  ]
}