Otter · Schema

Store

Store schema from Public API (Otter Public API).

RestaurantOrder ManagementDeliveryOnline OrderingMenu ManagementAnalytics

Properties

Name Type Description
id string Store identifier.
name string Store name.
address object
View JSON Schema on GitHub

JSON Schema

public-api-store-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "Store",
  "description": "Store schema from Public API (Otter Public API).",
  "$id": "https://raw.githubusercontent.com/api-evangelist/otter/refs/heads/main/json-schema/public-api-store-schema.json",
  "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"
  ]
}