Otter · Schema

OrderComponentId

OrderComponentId schema from Public API (Otter Public API).

RestaurantOrder ManagementDeliveryOnline OrderingMenu ManagementAnalytics

Properties

Name Type Description
orderComponentId string The id of the order component for the order component ticket.
orderComponentOrderId string The id of the order for the order component ticket.
View JSON Schema on GitHub

JSON Schema

public-api-order-component-id-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "OrderComponentId",
  "description": "OrderComponentId schema from Public API (Otter Public API).",
  "$id": "https://raw.githubusercontent.com/api-evangelist/otter/refs/heads/main/json-schema/public-api-order-component-id-schema.json",
  "type": "object",
  "properties": {
    "orderComponentId": {
      "type": "string",
      "description": "The id of the order component for the order component ticket.",
      "example": "69f60a06-c335-46d9-b5a1-97f1a211c514"
    },
    "orderComponentOrderId": {
      "type": "string",
      "description": "The id of the order for the order component ticket.",
      "example": "69f60a06-c335-46d9-b5a1-97f1a211c514"
    }
  }
}