# 1 Minute Interval

{% hint style="warning" %}
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.
{% endhint %}

## Granularity & smoothing

* **Granularity:** 1 minute per event.
* **Smoothing:** Multiple samples within the minute are aggregated into a single minute-level occupancy value.

## Payload

See [Room Occupancy](/real-time-occupancy/webhooks-overview/room-occupancy.md) for more details

```json
{
  "type": "ROOM_OCCUPANCY_1MIN",
  // same as ROOM_OCCUPANCY
}
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.butlr.io/real-time-occupancy/webhooks-overview/room-occupancy/floor-occupancy.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
