{ "$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" ] }