Flipdish · JSON Structure

Marketing Promotion Details Structure

Promotion

Type: object Properties: 3
RestaurantOnline OrderingMobile AppsPoint of SaleOrdersMenuPaymentsWebhooks

PromotionDetails is a JSON Structure definition published by Flipdish, describing 3 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

PromotionId Name PromotionAwards

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/flipdish/refs/heads/main/json-structure/marketing-promotion-details-structure.json",
  "name": "PromotionDetails",
  "description": "Promotion",
  "type": "object",
  "properties": {
    "PromotionId": {
      "description": "Promotion Id",
      "type": "int32",
      "example": 500123
    },
    "Name": {
      "description": "The name of the promotion",
      "type": "string",
      "example": "Example Name"
    },
    "PromotionAwards": {
      "description": "The items that this promotion will award",
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/PromotionAward"
      },
      "example": []
    }
  }
}