Otter · JSON Structure

Public Api Order Item Information Structure

OrderItemInformation schema from Public API (Otter Public API).

Type: object Properties: 3 Required: 1
RestaurantOrder ManagementDeliveryOnline OrderingMenu ManagementAnalytics

OrderItemInformation is a JSON Structure definition published by Otter, describing 3 properties, of which 1 is required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

id name issues

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/otter/refs/heads/main/json-structure/public-api-order-item-information-structure.json",
  "name": "OrderItemInformation",
  "description": "OrderItemInformation schema from Public API (Otter Public API).",
  "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"
  ]
}