Lunchbox · Schema

OrderUpdateEvent

OrderUpdateEvent schema from Lunchbox POS API

RestaurantOnline OrderingGuest EngagementCateringMenusOrdersLoyaltyEnterprise

Properties

Name Type Description
event_type string
pos_store_id string
pos_order_id string
View JSON Schema on GitHub

JSON Schema

pos-order-update-event-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "OrderUpdateEvent",
  "description": "OrderUpdateEvent schema from Lunchbox POS API",
  "$id": "https://raw.githubusercontent.com/api-evangelist/lunchbox/refs/heads/main/json-schema/pos-order-update-event-schema.json",
  "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"
  ]
}