Lunchbox · JSON Structure

Pos Order Update Event Structure

OrderUpdateEvent schema from Lunchbox POS API

Type: object Properties: 3 Required: 3
RestaurantOnline OrderingGuest EngagementCateringMenusOrdersLoyaltyEnterprise

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

Properties

event_type pos_store_id pos_order_id

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/lunchbox/refs/heads/main/json-structure/pos-order-update-event-structure.json",
  "name": "OrderUpdateEvent",
  "description": "OrderUpdateEvent schema from Lunchbox POS API",
  "type": "object",
  "properties": {
    "event_type": {
      "type": "string",
      "enum": [
        "order_update"
      ],
      "example": "order_update"
    },
    "pos_store_id": {
      "type": "string",
      "example": "123456"
    },
    "pos_order_id": {
      "type": "string",
      "example": 1234
    }
  },
  "required": [
    "event_type",
    "pos_store_id",
    "pos_order_id"
  ]
}