Otter · JSON Structure

Public Api Store Info Structure

Represents the store information.

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

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

Properties

id name createdAt currency orgInfo brandInfo

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-info-structure.json",
  "name": "StoreInfo",
  "description": "Represents the store information.",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Css store id.",
      "example": "store_123"
    },
    "name": {
      "type": "string",
      "description": "Css Store name.",
      "example": "Main Street Cafe"
    },
    "createdAt": {
      "type": "datetime",
      "description": "The date and time when the store was created.",
      "example": "2023-01-15T10:00:00Z"
    },
    "currency": {
      "type": "string",
      "description": "The currency code used by the store.",
      "example": "USD"
    },
    "orgInfo": {
      "$ref": "https://raw.githubusercontent.com/api-evangelist/otter/refs/heads/main/json-schema/public-api-org-info-schema.json"
    },
    "brandInfo": {
      "$ref": "https://raw.githubusercontent.com/api-evangelist/otter/refs/heads/main/json-schema/public-api-brand-info-schema.json"
    }
  },
  "required": [
    "id",
    "name",
    "createdAt",
    "currency",
    "brandInfo",
    "orgInfo"
  ]
}