Lunchbox · JSON Structure

Pos Pos Order Ack Structure

PosOrderAck schema from Lunchbox POS API

Type: object Properties: 3
RestaurantOnline OrderingGuest EngagementCateringMenusOrdersLoyaltyEnterprise

PosOrderAck is a JSON Structure definition published by Lunchbox, describing 3 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

pos_store_id pos_order_id status

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-pos-order-ack-structure.json",
  "name": "PosOrderAck",
  "description": "PosOrderAck schema from Lunchbox POS API",
  "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": {}
    }
  }
}