Lunchbox · JSON Structure

Core Store Structure

Store schema from Lunchbox Core API

Type: object Properties: 11
RestaurantOnline OrderingGuest EngagementCateringMenusOrdersLoyaltyEnterprise

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

Properties

store_id rest_id rest_name address1 city state_code zip_code timezone latitude longitude enable_loyalty

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/core-store-structure.json",
  "name": "Store",
  "description": "Store schema from Lunchbox Core API",
  "type": "object",
  "properties": {
    "store_id": {
      "type": "string",
      "example": "123456"
    },
    "rest_id": {
      "type": "int32",
      "example": 1234
    },
    "rest_name": {
      "type": "string",
      "example": "Sample"
    },
    "address1": {
      "type": "string",
      "example": "1216 Broadway"
    },
    "city": {
      "type": "string",
      "example": "New York"
    },
    "state_code": {
      "type": "string",
      "example": "NY"
    },
    "zip_code": {
      "type": "string",
      "example": "10001"
    },
    "timezone": {
      "type": "string",
      "example": "string"
    },
    "latitude": {
      "type": "double",
      "example": 40.74661
    },
    "longitude": {
      "type": "double",
      "example": -73.98833
    },
    "enable_loyalty": {
      "type": "boolean",
      "example": true
    }
  }
}