Otter · JSON Structure

Public Api Order Issue Structure

OrderIssue schema from Public API (Otter Public API).

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

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

Properties

type

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-issue-structure.json",
  "name": "OrderIssue",
  "description": "OrderIssue schema from Public API (Otter Public API).",
  "type": "object",
  "properties": {
    "type": {
      "type": "string",
      "description": "Order issue type.",
      "enum": [
        "MISSING_ITEM",
        "INCOMPLETE",
        "WRONG_INGREDIENTS",
        "WRONG_SIZE",
        "WRONG_INSTRUCTIONS",
        "TEMPERATURE_COLD",
        "WRONG_ORDER",
        "POOR_QUALITY",
        "HANDLED_POORLY",
        "WRONG_ITEM",
        "WRONG_QUANTITY",
        "LATE_TO_COURIER"
      ],
      "example": "MISSING_ITEM"
    }
  },
  "required": [
    "type"
  ]
}