Otter · JSON Structure

Public Api List Stores Response Structure

ListStoresResponse schema from Public API (Otter Public API).

Type: object Properties: 2 Required: 1
RestaurantOrder ManagementDeliveryOnline OrderingMenu ManagementAnalytics

ListStoresResponse is a JSON Structure definition published by Otter, describing 2 properties, of which 1 is required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

items offsetToken

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/otter/refs/heads/main/json-structure/public-api-list-stores-response-structure.json",
  "name": "ListStoresResponse",
  "description": "ListStoresResponse schema from Public API (Otter Public API).",
  "type": "object",
  "properties": {
    "items": {
      "type": "array",
      "description": "Array of Stores",
      "items": {
        "$ref": "https://raw.githubusercontent.com/api-evangelist/otter/refs/heads/main/json-schema/public-api-store-schema.json"
      }
    },
    "offsetToken": {
      "type": "string",
      "description": "Opaque token used to fetch the following page. If not set, no more stores are available.",
      "example": "H12MAF2fFaFFFa"
    }
  },
  "required": [
    "items"
  ]
}