Otter · JSON Structure

Public Api Store Structure

Store schema from Public API (Otter Public API).

Type: object Properties: 3 Required: 3
RestaurantOrder ManagementDeliveryOnline OrderingMenu ManagementAnalytics

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

Properties

id name address

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-store-structure.json",
  "name": "Store",
  "description": "Store schema from Public API (Otter Public API).",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Store identifier.",
      "example": "9208071e-5f7a-444a-b3a7-4a57ff3f614e"
    },
    "name": {
      "type": "string",
      "description": "Store name.",
      "example": "Store name 1"
    },
    "address": {
      "$ref": "https://raw.githubusercontent.com/api-evangelist/otter/refs/heads/main/json-schema/public-api-address-schema.json"
    }
  },
  "required": [
    "id",
    "name",
    "address"
  ]
}