Flipdish · Schema

PromotionAward

Promotion

RestaurantOnline OrderingMobile AppsPoint of SaleOrdersMenuPaymentsWebhooks

Properties

Name Type Description
PromotionAwardId integer Promotion Award Id
MenuItemPublicId string The public id of the menu item that will be awarded
View JSON Schema on GitHub

JSON Schema

marketing-promotion-award-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/flipdish/refs/heads/main/json-schema/marketing-promotion-award-schema.json",
  "title": "PromotionAward",
  "description": "Promotion",
  "type": "object",
  "properties": {
    "PromotionAwardId": {
      "format": "int32",
      "description": "Promotion Award Id",
      "type": "integer",
      "example": 500123
    },
    "MenuItemPublicId": {
      "format": "uuid",
      "description": "The public id of the menu item that will be awarded",
      "type": "string",
      "example": "00000000-0000-0000-0000-000000000000"
    }
  }
}