Otter · Schema

MenuPublishJobState

Information about the menu publish target.

RestaurantOrder ManagementDeliveryOnline OrderingMenu ManagementAnalytics

Properties

Name Type Description
status string Status of the menu publish.
message string Only present if status is FAILED. Contains the error message returned by our menu systems.
View JSON Schema on GitHub

JSON Schema

public-api-menu-publish-job-state-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "MenuPublishJobState",
  "description": "Information about the menu publish target.",
  "$id": "https://raw.githubusercontent.com/api-evangelist/otter/refs/heads/main/json-schema/public-api-menu-publish-job-state-schema.json",
  "type": "object",
  "properties": {
    "status": {
      "type": "string",
      "description": "Status of the menu publish.",
      "enum": [
        "PENDING",
        "FAILED",
        "SUCCESS",
        "UNKNOWN"
      ],
      "example": "PENDING"
    },
    "message": {
      "type": "string",
      "nullable": true,
      "description": "Only present if status is FAILED. Contains the error message returned by our menu systems.",
      "example": "string"
    }
  }
}