{ "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "PosOrderAck", "description": "PosOrderAck schema from Lunchbox POS API", "$id": "https://raw.githubusercontent.com/api-evangelist/lunchbox/refs/heads/main/json-schema/pos-pos-order-ack-schema.json", "type": "object", "properties": { "pos_store_id": { "type": "string", "example": "123456" }, "pos_order_id": { "type": "string", "example": 1234 }, "status": { "type": "object", "properties": { "is_completed": { "type": "boolean" } }, "example": {} } } }