Otter · Schema

ManagerItemIssue

A detailed issue encountered with this item or modifier

RestaurantOrder ManagementDeliveryOnline OrderingMenu ManagementAnalytics

Properties

Name Type Description
code string The error code indicating the type of error
description string A friendly description describing what went wrong
View JSON Schema on GitHub

JSON Schema

public-api-manager-item-issue-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "ManagerItemIssue",
  "description": "A detailed issue encountered with this item or modifier",
  "$id": "https://raw.githubusercontent.com/api-evangelist/otter/refs/heads/main/json-schema/public-api-manager-item-issue-schema.json",
  "type": "object",
  "properties": {
    "code": {
      "type": "string",
      "description": "The error code indicating the type of error",
      "enum": [
        "UNKNOWN",
        "ITEM_MISMATCH",
        "INCOMPLETE_MENU",
        "NO_PARENT_ENTITY",
        "MULTIPLE_PARENT_ENTITIES",
        "MISCONFIGURED_INTEGRATION",
        "INVALID_PARENT_ENTITY_SETUP",
        "CATEGORY_MISSING",
        "EXTERNAL_MODIFIER_GROUP_MISSING",
        "INTERNAL_MODIFIER_GROUP_MISSING"
      ],
      "example": "ITEM_MISMATCH"
    },
    "description": {
      "type": "string",
      "description": "A friendly description describing what went wrong",
      "example": "Item not found"
    }
  },
  "required": [
    "code"
  ]
}