Otter · Schema

ItemSelector

Used to select a specific item.

RestaurantOrder ManagementDeliveryOnline OrderingMenu ManagementAnalytics

Properties

Name Type Description
id string Identifier of the item.
isModifier boolean True, if the item is used as a modifier.
View JSON Schema on GitHub

JSON Schema

public-api-item-selector-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "ItemSelector",
  "description": "Used to select a specific item.",
  "$id": "https://raw.githubusercontent.com/api-evangelist/otter/refs/heads/main/json-schema/public-api-item-selector-schema.json",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Identifier of the item.",
      "example": "06ef2722-cbf2-11ec-9d64-0242ac120002"
    },
    "isModifier": {
      "type": "boolean",
      "description": "True, if the item is used as a modifier.",
      "example": true
    }
  },
  "required": [
    "id"
  ]
}