Lunchbox · Schema

ManagedStoreSummary

ManagedStoreSummary schema from Lunchbox Management API

RestaurantOnline OrderingGuest EngagementCateringMenusOrdersLoyaltyEnterprise

Properties

Name Type Description
store_id string
rest_id integer
rest_name string
status string
setup_type string
address1 string
city string
state_name string
state_code string
state_id integer
zip_code string
timezone string
View JSON Schema on GitHub

JSON Schema

management-managed-store-summary-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "ManagedStoreSummary",
  "description": "ManagedStoreSummary schema from Lunchbox Management API",
  "$id": "https://raw.githubusercontent.com/api-evangelist/lunchbox/refs/heads/main/json-schema/management-managed-store-summary-schema.json",
  "type": "object",
  "properties": {
    "store_id": {
      "type": "string",
      "example": "123456"
    },
    "rest_id": {
      "type": "integer",
      "example": 1234
    },
    "rest_name": {
      "type": "string",
      "example": "Sample"
    },
    "status": {
      "type": "string",
      "example": "string"
    },
    "setup_type": {
      "type": "string",
      "example": "string"
    },
    "address1": {
      "type": "string",
      "example": "1216 Broadway"
    },
    "city": {
      "type": "string",
      "example": "New York"
    },
    "state_name": {
      "type": "string",
      "example": "NY"
    },
    "state_code": {
      "type": "string",
      "example": "NY"
    },
    "state_id": {
      "type": "integer",
      "example": 1234
    },
    "zip_code": {
      "type": "string",
      "example": "10001"
    },
    "timezone": {
      "type": "string",
      "example": "string"
    }
  }
}