Otter · Schema

StoreInfo

Represents the store information.

RestaurantOrder ManagementDeliveryOnline OrderingMenu ManagementAnalytics

Properties

Name Type Description
id string Css store id.
name string Css Store name.
createdAt string The date and time when the store was created.
currency string The currency code used by the store.
orgInfo object
brandInfo object
View JSON Schema on GitHub

JSON Schema

public-api-store-info-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "StoreInfo",
  "description": "Represents the store information.",
  "$id": "https://raw.githubusercontent.com/api-evangelist/otter/refs/heads/main/json-schema/public-api-store-info-schema.json",
  "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": "string",
      "format": "date-time",
      "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"
  ]
}