Otter · Schema

OrderItemInformation

OrderItemInformation schema from Public API (Otter Public API).

RestaurantOrder ManagementDeliveryOnline OrderingMenu ManagementAnalytics

Properties

Name Type Description
id string Regular item identifier.
name string Item name
issues array Order issues that relate to this item.
View JSON Schema on GitHub

JSON Schema

public-api-order-item-information-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "OrderItemInformation",
  "description": "OrderItemInformation schema from Public API (Otter Public API).",
  "$id": "https://raw.githubusercontent.com/api-evangelist/otter/refs/heads/main/json-schema/public-api-order-item-information-schema.json",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Regular item identifier.",
      "example": "store_123"
    },
    "name": {
      "type": "string",
      "nullable": true,
      "description": "Item name",
      "example": "Sample Name"
    },
    "issues": {
      "type": "array",
      "nullable": true,
      "description": "Order issues that relate to this item.",
      "items": {
        "$ref": "https://raw.githubusercontent.com/api-evangelist/otter/refs/heads/main/json-schema/public-api-order-issue-schema.json"
      }
    }
  },
  "required": [
    "id"
  ]
}