Lunchbox · JSON Structure

Pos Store Update Event Structure

StoreUpdateEvent schema from Lunchbox POS API

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

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

Properties

event_type pos_store_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-store-update-event-structure.json",
  "name": "StoreUpdateEvent",
  "description": "StoreUpdateEvent schema from Lunchbox POS API",
  "type": "object",
  "properties": {
    "event_type": {
      "type": "string",
      "enum": [
        "store_update"
      ],
      "example": "store_update"
    },
    "pos_store_id": {
      "type": "string",
      "example": "123456"
    }
  },
  "required": [
    "event_type",
    "pos_store_id"
  ]
}