Lunchbox · JSON Structure

Management Store Page Structure

StorePage schema from Lunchbox Management API

Type: object Properties: 4
RestaurantOnline OrderingGuest EngagementCateringMenusOrdersLoyaltyEnterprise

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

Properties

current_page next_page previous_page results

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/management-store-page-structure.json",
  "name": "StorePage",
  "description": "StorePage schema from Lunchbox Management API",
  "type": "object",
  "properties": {
    "current_page": {
      "type": "int32",
      "example": 1
    },
    "next_page": {
      "type": "int32",
      "nullable": true,
      "example": 1
    },
    "previous_page": {
      "type": "int32",
      "nullable": true,
      "example": 1
    },
    "results": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/ManagedStoreSummary"
      },
      "example": []
    }
  }
}