Otter · Schema

OrgInfo

Represents the org information.

RestaurantOrder ManagementDeliveryOnline OrderingMenu ManagementAnalytics

Properties

Name Type Description
id string Css org id.
name string Css org name.
View JSON Schema on GitHub

JSON Schema

public-api-org-info-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "OrgInfo",
  "description": "Represents the org information.",
  "$id": "https://raw.githubusercontent.com/api-evangelist/otter/refs/heads/main/json-schema/public-api-org-info-schema.json",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Css org id.",
      "example": "store_123"
    },
    "name": {
      "type": "string",
      "description": "Css org name.",
      "example": "Main Street Cafe"
    }
  },
  "required": [
    "id",
    "name"
  ]
}