Store campaign start time
{ "$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" } } }