Otter · Schema

BrandInfo

Represents the brand information.

RestaurantOrder ManagementDeliveryOnline OrderingMenu ManagementAnalytics

Properties

Name Type Description
id string Css brand id.
name string Css brand name.
createdAt string The date and time when the brand was created.
View JSON Schema on GitHub

JSON Schema

public-api-brand-info-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "BrandInfo",
  "description": "Represents the brand information.",
  "$id": "https://raw.githubusercontent.com/api-evangelist/otter/refs/heads/main/json-schema/public-api-brand-info-schema.json",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Css brand id.",
      "example": "store_123"
    },
    "name": {
      "type": "string",
      "description": "Css brand name.",
      "example": "Main Street Cafe"
    },
    "createdAt": {
      "type": "string",
      "format": "date-time",
      "description": "The date and time when the brand was created.",
      "example": "2023-01-15T10:00:00Z"
    }
  },
  "required": [
    "id",
    "name",
    "createdAt"
  ]
}