Otter · Schema

Brand

Brand schema from Public API (Otter Public API).

RestaurantOrder ManagementDeliveryOnline OrderingMenu ManagementAnalytics

Properties

Name Type Description
id string Brand identifier.
name string Brand name.
View JSON Schema on GitHub

JSON Schema

public-api-brand-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "Brand",
  "description": "Brand schema from Public API (Otter Public API).",
  "$id": "https://raw.githubusercontent.com/api-evangelist/otter/refs/heads/main/json-schema/public-api-brand-schema.json",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Brand identifier.",
      "example": "9208071e-5f7a-444a-b3a7-4a57ff3f614e"
    },
    "name": {
      "type": "string",
      "description": "Brand name.",
      "example": "Brand name 1"
    }
  },
  "required": [
    "id",
    "name"
  ]
}