Otter · Schema

TriggerMenu

TriggerMenu schema from Public API (Otter Public API).

RestaurantOrder ManagementDeliveryOnline OrderingMenu ManagementAnalytics

Properties

Name Type Description
entityId string The id of the entity.
entityType string The type of entity.
minimumPurchaseQuantity number Minimum quantity need to be purchased to activate the trigger.
View JSON Schema on GitHub

JSON Schema

public-api-trigger-menu-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "TriggerMenu",
  "description": "TriggerMenu schema from Public API (Otter Public API).",
  "$id": "https://raw.githubusercontent.com/api-evangelist/otter/refs/heads/main/json-schema/public-api-trigger-menu-schema.json",
  "type": "object",
  "properties": {
    "entityId": {
      "type": "string",
      "description": "The id of the entity.",
      "example": "someidstring"
    },
    "entityType": {
      "type": "string",
      "description": "The type of entity.",
      "example": "ITEM",
      "enum": [
        "ITEM",
        "CATEGORY"
      ]
    },
    "minimumPurchaseQuantity": {
      "type": "number",
      "description": "Minimum quantity need to be purchased to activate the trigger.",
      "example": 1
    }
  }
}