Lunchbox · JSON Structure

Pos Pos Store Structure

PosStore schema from Lunchbox POS API

Type: object Properties: 5
RestaurantOnline OrderingGuest EngagementCateringMenusOrdersLoyaltyEnterprise

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

Properties

pos_store_id store_id name contact location

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-store-structure.json",
  "name": "PosStore",
  "description": "PosStore schema from Lunchbox POS API",
  "type": "object",
  "properties": {
    "pos_store_id": {
      "type": "string",
      "example": "123456"
    },
    "store_id": {
      "type": "string",
      "example": "123456"
    },
    "name": {
      "type": "string",
      "example": "Sample"
    },
    "contact": {
      "$ref": "#/components/schemas/PosContact"
    },
    "location": {
      "$ref": "#/components/schemas/PosLocation"
    }
  }
}