Lunchbox · Schema

PosStore

PosStore schema from Lunchbox POS API

RestaurantOnline OrderingGuest EngagementCateringMenusOrdersLoyaltyEnterprise

Properties

Name Type Description
pos_store_id string
store_id string
name string
contact object
location object
View JSON Schema on GitHub

JSON Schema

pos-pos-store-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "PosStore",
  "description": "PosStore schema from Lunchbox POS API",
  "$id": "https://raw.githubusercontent.com/api-evangelist/lunchbox/refs/heads/main/json-schema/pos-pos-store-schema.json",
  "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"
    }
  }
}