Otter · Schema

ListBrandsResponse

ListBrandsResponse schema from Public API (Otter Public API).

RestaurantOrder ManagementDeliveryOnline OrderingMenu ManagementAnalytics

Properties

Name Type Description
items array Array of brands.
offsetToken string Opaque token used to fetch the following page. If not set, no more brands are available.
View JSON Schema on GitHub

JSON Schema

public-api-list-brands-response-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "ListBrandsResponse",
  "description": "ListBrandsResponse schema from Public API (Otter Public API).",
  "$id": "https://raw.githubusercontent.com/api-evangelist/otter/refs/heads/main/json-schema/public-api-list-brands-response-schema.json",
  "type": "object",
  "properties": {
    "items": {
      "type": "array",
      "description": "Array of brands.",
      "items": {
        "$ref": "https://raw.githubusercontent.com/api-evangelist/otter/refs/heads/main/json-schema/public-api-brand-schema.json"
      }
    },
    "offsetToken": {
      "type": "string",
      "description": "Opaque token used to fetch the following page. If not set, no more brands are available.",
      "example": "H12MAF2fFaFFFa"
    }
  },
  "required": [
    "items"
  ]
}