Naming Conventions
Time Columns
Overview
Time columns are designated to represent either a timestamp or a datetime value associated with an entity and a specific dimension. The suffix _at is used to denote a timestamp, whereas _datetime is used for datetime values. When a time column is localized, it will be explicitly indicated with the suffix _local_datetime to denote the local time context.
Time column name formula
{{ entity }}_{{ dimension }}_{{ suffix }}
Examples
order_processed_at
, whereorder
is theentity
,processed
is theattribute
, and_at
indicates a timestampcustomer_created_at_local_datetime
, wherecustomer
is theentity
,created_at
is thedimension
, and_local_datetime
indicates a localized datetime
Was this page helpful?