{ "$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" ] }