Flipdish · Schema

StoreCampaignStartTime

Store campaign start time

RestaurantOnline OrderingMobile AppsPoint-of-SaleOrderMenusPaymentsWebhook

Properties

Name Type Description
StoreId integer Store Id
TsStart string Campaign start time in Utc
View JSON Schema on GitHub

JSON Schema

marketing-store-campaign-start-time-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-store-campaign-start-time-schema.json",
  "title": "StoreCampaignStartTime",
  "description": "Store campaign start time",
  "type": "object",
  "properties": {
    "StoreId": {
      "format": "int32",
      "description": "Store Id",
      "type": "integer",
      "example": 500123
    },
    "TsStart": {
      "format": "date-time",
      "description": "Campaign start time in Utc",
      "type": "string",
      "example": "2026-06-02T12:00:00Z"
    }
  }
}