Otter · Schema

OrderIssue

OrderIssue schema from Public API (Otter Public API).

RestaurantOrder ManagementDeliveryOnline OrderingMenu ManagementAnalytics

Properties

Name Type Description
type string Order issue type.
View JSON Schema on GitHub

JSON Schema

public-api-order-issue-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "OrderIssue",
  "description": "OrderIssue schema from Public API (Otter Public API).",
  "$id": "https://raw.githubusercontent.com/api-evangelist/otter/refs/heads/main/json-schema/public-api-order-issue-schema.json",
  "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"
  ]
}