Otter · Schema

ManagerOrderIssue

Issue codes for issues encountered when processing a manager order

RestaurantOrder ManagementDeliveryOnline OrderingMenu ManagementAnalytics

Properties

Name Type Description
code string The specific issues with this item
description string A friendly description describing what went wrong
View JSON Schema on GitHub

JSON Schema

public-api-manager-order-issue-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "ManagerOrderIssue",
  "description": "Issue codes for issues encountered when processing a manager order",
  "$id": "https://raw.githubusercontent.com/api-evangelist/otter/refs/heads/main/json-schema/public-api-manager-order-issue-schema.json",
  "type": "object",
  "properties": {
    "code": {
      "type": "string",
      "description": "The specific issues with this item",
      "enum": [
        "UNKNOWN",
        "MENU_RESOLUTION_FAILED",
        "NO_SUPPORTED_POS",
        "VALIDATION_ONLY",
        "POS_VENDOR_ERROR",
        "INTERNAL_ERROR",
        "MISCONFIGURED_INTEGRATION",
        "CANCEL_FAILED"
      ],
      "example": "MENU_RESOLUTION_FAILED"
    },
    "description": {
      "type": "string",
      "description": "A friendly description describing what went wrong",
      "example": "Order contains unreconciled items"
    }
  },
  "required": [
    "code"
  ]
}