A conceptual overview of the ideas behind the Report Builder service, and how they fit together. This explains the mental model, not the steps. For exact parameters, see the API reference; for operating the service, see the release runbook.
Most teams build the same report over and over: someone opens a data source, pulls the numbers, formats them, and sends the result, every week, by hand. It is slow, easy to get wrong, and it stops the moment that person is out.
Report Builder removes the manual step. You describe a report once, point it at a data source, and optionally give it a schedule. After that, the service produces the report whenever it is asked, or automatically on the cadence you set. The work of defining the report is done a single time; the work of running it disappears.
Three ideas do most of the work. Understanding how they relate is enough to understand the whole service.
A data source is the system the numbers come from. Report Builder reads from it but never changes it. One data source can feed many different reports, so connecting a source once makes it available everywhere.
A report is not a one-time export. It is a saved object with its own ID, a name, the data source it draws from, and an optional schedule. Because it is a durable object, a report can be retrieved later, paused and resumed, and audited. It has a lifecycle, not just a moment of existence.
A schedule is an optional rule that tells Report Builder when to generate a report on its own, written as a cron expression. A report with no schedule is generated only when something asks for it. A report with a schedule is also generated automatically on that cadence. The schedule is a property of the report, which is why one report can be paused without touching the data source or any other report.
Whether it runs on a schedule or on demand, every report follows the same path. Keeping a single path means a report behaves identically no matter how it was triggered.
The same definition always produces a comparable report, so re-running one is safe and predictable.
A few deliberate choices explain most of how the service behaves.
This page is the mental model. The companion documents cover the specifics: