From f4a10c418d4d0b612f738e042cddb09ca45dab00 Mon Sep 17 00:00:00 2001 From: Philippe Laflamme <484152+plaflamme@users.noreply.github.com> Date: Tue, 19 Mar 2024 11:30:54 -0400 Subject: [PATCH] docs: add end property documentation to model overview (#2300) --- docs/concepts/models/overview.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/docs/concepts/models/overview.md b/docs/concepts/models/overview.md index 644a928cad..102a207157 100644 --- a/docs/concepts/models/overview.md +++ b/docs/concepts/models/overview.md @@ -163,6 +163,9 @@ Name is ***required*** and must be ***unique***. ### start - Start is used to determine the earliest time needed to process the model. It can be an absolute date/time (`2022-01-01`), or a relative one (`1 year ago`). +### end +- End is used to determine the latest time needed to process the model. It can be an absolute date/time (`2022-01-01`), or a relative one (`1 year ago`). + ### cron - Cron is used to schedule your model to process or refresh at a certain interval. It uses [croniter](https://github.com/kiorky/croniter) under the hood, so expressions such as `@daily` can be used.