Otter · Schema

Organization

Organization schema from Public API (Otter Public API).

RestaurantOrder ManagementDeliveryOnline OrderingMenu ManagementAnalytics

Properties

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

JSON Schema

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