Otter · Schema

SelectedMenuReward

Indicates the item the user want to redeem, if reward type is MENUS, this should be present.

RestaurantOrder ManagementDeliveryOnline OrderingMenu ManagementAnalytics

Properties

Name Type Description
entityId string The id of the selected item.
View JSON Schema on GitHub

JSON Schema

public-api-selected-menu-reward-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "SelectedMenuReward",
  "description": "Indicates the item the user want to redeem, if reward type is MENUS, this should be present.",
  "$id": "https://raw.githubusercontent.com/api-evangelist/otter/refs/heads/main/json-schema/public-api-selected-menu-reward-schema.json",
  "type": "object",
  "properties": {
    "entityId": {
      "type": "string",
      "description": "The id of the selected item.",
      "example": "someidstring"
    }
  }
}