@@ -15,6 +15,28 @@ models:
15
15
description : The duration of time in minutes for the model to run.
16
16
- name : model_materialization
17
17
18
+ - name : fct_dbt__exposures_updates
19
+ description : A table of exposures and models feeding them. Latest update time for each models is provided.
20
+ columns :
21
+ - name : latest_generation
22
+ description : Timestamp of when the source artifact was generated.
23
+ - name : node_id
24
+ description : Unique id for the node, in the form of exposure.[package_name].[exposure_name]
25
+ - name : name
26
+ description : User-defined name of the exposure.
27
+ - name : type
28
+ description : User-defined type of the exposure.
29
+ - name : owner
30
+ description : User-defined owner of the exposure.
31
+ - name : maturity
32
+ description : User-defined name of the exposure.
33
+ - name : package_name
34
+ description : Source package in which each feed of an exposure was defined.
35
+ - name : output_feeds
36
+ description : Unique id for each feed of an exposure, in the form of model.[package_name].[model_name]
37
+ - name : feed_latest_update
38
+ description : Timestamp of the latest update of each feed of an exposure.
39
+
18
40
- name : fct_dbt__latest_full_model_executions
19
41
description : A list of all models and executions times from the most recent, incremental run.
20
42
columns :
@@ -104,6 +126,33 @@ models:
104
126
- name : env_*
105
127
description : Columns for the environment variables set when the command was executed.
106
128
129
+ - name : dim_dbt__exposures
130
+ description : All dbt exposures metadata from every manifest.json.
131
+ columns :
132
+ - name : manifest_model_id
133
+ description : Primary key generated from the command_invocation_id and checksum.
134
+ tests :
135
+ - unique
136
+ - not_null
137
+ - name : command_invocation_id
138
+ description : The id of the command which resulted in the source artifact's generation.
139
+ - name : artifact_generated_at
140
+ description : Timestamp of when the source artifact was generated.
141
+ - name : node_id
142
+ description : Unique id for the node, in the form of exposure.[package_name].[exposure_name]
143
+ - name : name
144
+ description : User-defined name of the exposure.
145
+ - name : type
146
+ description : User-defined type of the exposure.
147
+ - name : owner
148
+ description : User-defined owner of the exposure.
149
+ - name : maturity
150
+ description : User-defined name of the exposure.
151
+ - name : output_feeds
152
+ description : Unique id for each feed of an exposure, in the form of model.[package_name].[model_name]
153
+ - name : package_name
154
+ description : Source package in which each feed of an exposure was defined.
155
+
107
156
- name : dim_dbt__models
108
157
description : All dbt model metadata from every manifest.json.
109
158
columns :
0 commit comments