Otter · Schema

MenuPublishResponseMenuPublishTargets

Only present if the request fails. Meant to help debugging why the request failed.

RestaurantOrder ManagementDeliveryOnline OrderingMenu ManagementAnalytics

Properties

Name Type Description
menuPublishTargets object Map of MenuPublishTarget names to their targets. The target can only be published to if the status is READY.
View JSON Schema on GitHub

JSON Schema

public-api-menu-publish-response-menu-publish-targets-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "MenuPublishResponseMenuPublishTargets",
  "description": "Only present if the request fails. Meant to help debugging why the request failed.",
  "$id": "https://raw.githubusercontent.com/api-evangelist/otter/refs/heads/main/json-schema/public-api-menu-publish-response-menu-publish-targets-schema.json",
  "type": "object",
  "properties": {
    "menuPublishTargets": {
      "type": "object",
      "additionalProperties": {
        "x-additionalPropertiesName": "menuPublishTargetName",
        "$ref": "https://raw.githubusercontent.com/api-evangelist/otter/refs/heads/main/json-schema/public-api-menu-publish-target-schema.json"
      },
      "description": "Map of MenuPublishTarget names to their targets. The target can only be published to if the status is READY.",
      "example": {
        "rappi": {
          "status": "PUBLISH_IN_PROGRESS"
        }
      }
    }
  }
}