1 Minute Interval
This event is the same as Zone Occupancy, but the data is aggregated at 1-minute granularity and smoothed to produce a single occupancy number for that minute.
We recompute 1-minute occupancy at a 1-minute cadence, looking back a few minutes to account for potential delays. This can produce repeated data over a rolling ~5-minute window. You may see duplicate events, updated counts for previous minutes, and small discrepancies between initial and recomputed values. When processing events, store by unique timestamp, prefer the latest data for a given minute, and implement deduplication or caching.
Granularity & smoothing
Granularity: 1 minute per event.
Smoothing: Multiple samples within the minute are aggregated into a single minute-level occupancy value.
Payload
See Zone Occupancy for more details
{
"type": "ZONE_OCCUPANCY_1MIN",
// same as ZONE_OCCUPANCY
}
Last updated