Otter · Schema

ItemAddedModification

ItemAddedModification schema from Public API (Otter Public API).

RestaurantOrder ManagementDeliveryOnline OrderingMenu ManagementAnalytics

Properties

Name Type Description
addedItem object The customer item added to the order. Include any modifiers on this item via its modifiers array.
View JSON Schema on GitHub

JSON Schema

public-api-item-added-modification-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "ItemAddedModification",
  "description": "ItemAddedModification schema from Public API (Otter Public API).",
  "$id": "https://raw.githubusercontent.com/api-evangelist/otter/refs/heads/main/json-schema/public-api-item-added-modification-schema.json",
  "type": "object",
  "properties": {
    "addedItem": {
      "$ref": "https://raw.githubusercontent.com/api-evangelist/otter/refs/heads/main/json-schema/public-api-item-schema.json",
      "description": "The customer item added to the order. Include any modifiers on this item via its modifiers array."
    }
  },
  "required": [
    "addedItem"
  ]
}