Lunchbox · Schema

PosOrderAck

PosOrderAck schema from Lunchbox POS API

RestaurantOnline OrderingGuest EngagementCateringMenusOrdersLoyaltyEnterprise

Properties

Name Type Description
pos_store_id string
pos_order_id string
status object
View JSON Schema on GitHub

JSON Schema

pos-pos-order-ack-schema.json Raw ↑
{
  "$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": {}
    }
  }
}