dvt-core 1.11.0b4__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of dvt-core might be problematic. Click here for more details.

Files changed (261) hide show
  1. dvt/__init__.py +7 -0
  2. dvt/_pydantic_shim.py +26 -0
  3. dvt/adapters/__init__.py +16 -0
  4. dvt/adapters/multi_adapter_manager.py +268 -0
  5. dvt/artifacts/__init__.py +0 -0
  6. dvt/artifacts/exceptions/__init__.py +1 -0
  7. dvt/artifacts/exceptions/schemas.py +31 -0
  8. dvt/artifacts/resources/__init__.py +116 -0
  9. dvt/artifacts/resources/base.py +68 -0
  10. dvt/artifacts/resources/types.py +93 -0
  11. dvt/artifacts/resources/v1/analysis.py +10 -0
  12. dvt/artifacts/resources/v1/catalog.py +23 -0
  13. dvt/artifacts/resources/v1/components.py +275 -0
  14. dvt/artifacts/resources/v1/config.py +282 -0
  15. dvt/artifacts/resources/v1/documentation.py +11 -0
  16. dvt/artifacts/resources/v1/exposure.py +52 -0
  17. dvt/artifacts/resources/v1/function.py +53 -0
  18. dvt/artifacts/resources/v1/generic_test.py +32 -0
  19. dvt/artifacts/resources/v1/group.py +22 -0
  20. dvt/artifacts/resources/v1/hook.py +11 -0
  21. dvt/artifacts/resources/v1/macro.py +30 -0
  22. dvt/artifacts/resources/v1/metric.py +173 -0
  23. dvt/artifacts/resources/v1/model.py +146 -0
  24. dvt/artifacts/resources/v1/owner.py +10 -0
  25. dvt/artifacts/resources/v1/saved_query.py +112 -0
  26. dvt/artifacts/resources/v1/seed.py +42 -0
  27. dvt/artifacts/resources/v1/semantic_layer_components.py +72 -0
  28. dvt/artifacts/resources/v1/semantic_model.py +315 -0
  29. dvt/artifacts/resources/v1/singular_test.py +14 -0
  30. dvt/artifacts/resources/v1/snapshot.py +92 -0
  31. dvt/artifacts/resources/v1/source_definition.py +85 -0
  32. dvt/artifacts/resources/v1/sql_operation.py +10 -0
  33. dvt/artifacts/resources/v1/unit_test_definition.py +78 -0
  34. dvt/artifacts/schemas/__init__.py +0 -0
  35. dvt/artifacts/schemas/base.py +191 -0
  36. dvt/artifacts/schemas/batch_results.py +24 -0
  37. dvt/artifacts/schemas/catalog/__init__.py +12 -0
  38. dvt/artifacts/schemas/catalog/v1/__init__.py +0 -0
  39. dvt/artifacts/schemas/catalog/v1/catalog.py +60 -0
  40. dvt/artifacts/schemas/freshness/__init__.py +1 -0
  41. dvt/artifacts/schemas/freshness/v3/__init__.py +0 -0
  42. dvt/artifacts/schemas/freshness/v3/freshness.py +159 -0
  43. dvt/artifacts/schemas/manifest/__init__.py +2 -0
  44. dvt/artifacts/schemas/manifest/v12/__init__.py +0 -0
  45. dvt/artifacts/schemas/manifest/v12/manifest.py +212 -0
  46. dvt/artifacts/schemas/results.py +148 -0
  47. dvt/artifacts/schemas/run/__init__.py +2 -0
  48. dvt/artifacts/schemas/run/v5/__init__.py +0 -0
  49. dvt/artifacts/schemas/run/v5/run.py +184 -0
  50. dvt/artifacts/schemas/upgrades/__init__.py +4 -0
  51. dvt/artifacts/schemas/upgrades/upgrade_manifest.py +174 -0
  52. dvt/artifacts/schemas/upgrades/upgrade_manifest_dbt_version.py +2 -0
  53. dvt/artifacts/utils/validation.py +153 -0
  54. dvt/cli/__init__.py +1 -0
  55. dvt/cli/context.py +16 -0
  56. dvt/cli/exceptions.py +56 -0
  57. dvt/cli/flags.py +558 -0
  58. dvt/cli/main.py +971 -0
  59. dvt/cli/option_types.py +121 -0
  60. dvt/cli/options.py +79 -0
  61. dvt/cli/params.py +803 -0
  62. dvt/cli/requires.py +478 -0
  63. dvt/cli/resolvers.py +32 -0
  64. dvt/cli/types.py +40 -0
  65. dvt/clients/__init__.py +0 -0
  66. dvt/clients/checked_load.py +82 -0
  67. dvt/clients/git.py +164 -0
  68. dvt/clients/jinja.py +206 -0
  69. dvt/clients/jinja_static.py +245 -0
  70. dvt/clients/registry.py +192 -0
  71. dvt/clients/yaml_helper.py +68 -0
  72. dvt/compilation.py +833 -0
  73. dvt/compute/__init__.py +26 -0
  74. dvt/compute/base.py +288 -0
  75. dvt/compute/engines/__init__.py +13 -0
  76. dvt/compute/engines/duckdb_engine.py +368 -0
  77. dvt/compute/engines/spark_engine.py +273 -0
  78. dvt/compute/query_analyzer.py +212 -0
  79. dvt/compute/router.py +483 -0
  80. dvt/config/__init__.py +4 -0
  81. dvt/config/catalogs.py +95 -0
  82. dvt/config/compute_config.py +406 -0
  83. dvt/config/profile.py +411 -0
  84. dvt/config/profiles_v2.py +464 -0
  85. dvt/config/project.py +893 -0
  86. dvt/config/renderer.py +232 -0
  87. dvt/config/runtime.py +491 -0
  88. dvt/config/selectors.py +209 -0
  89. dvt/config/utils.py +78 -0
  90. dvt/connectors/.gitignore +6 -0
  91. dvt/connectors/README.md +306 -0
  92. dvt/connectors/catalog.yml +217 -0
  93. dvt/connectors/download_connectors.py +300 -0
  94. dvt/constants.py +29 -0
  95. dvt/context/__init__.py +0 -0
  96. dvt/context/base.py +746 -0
  97. dvt/context/configured.py +136 -0
  98. dvt/context/context_config.py +350 -0
  99. dvt/context/docs.py +82 -0
  100. dvt/context/exceptions_jinja.py +179 -0
  101. dvt/context/macro_resolver.py +195 -0
  102. dvt/context/macros.py +171 -0
  103. dvt/context/manifest.py +73 -0
  104. dvt/context/providers.py +2198 -0
  105. dvt/context/query_header.py +14 -0
  106. dvt/context/secret.py +59 -0
  107. dvt/context/target.py +74 -0
  108. dvt/contracts/__init__.py +0 -0
  109. dvt/contracts/files.py +413 -0
  110. dvt/contracts/graph/__init__.py +0 -0
  111. dvt/contracts/graph/manifest.py +1904 -0
  112. dvt/contracts/graph/metrics.py +98 -0
  113. dvt/contracts/graph/model_config.py +71 -0
  114. dvt/contracts/graph/node_args.py +42 -0
  115. dvt/contracts/graph/nodes.py +1806 -0
  116. dvt/contracts/graph/semantic_manifest.py +233 -0
  117. dvt/contracts/graph/unparsed.py +812 -0
  118. dvt/contracts/project.py +417 -0
  119. dvt/contracts/results.py +53 -0
  120. dvt/contracts/selection.py +23 -0
  121. dvt/contracts/sql.py +86 -0
  122. dvt/contracts/state.py +69 -0
  123. dvt/contracts/util.py +46 -0
  124. dvt/deprecations.py +347 -0
  125. dvt/deps/__init__.py +0 -0
  126. dvt/deps/base.py +153 -0
  127. dvt/deps/git.py +196 -0
  128. dvt/deps/local.py +80 -0
  129. dvt/deps/registry.py +131 -0
  130. dvt/deps/resolver.py +149 -0
  131. dvt/deps/tarball.py +121 -0
  132. dvt/docs/source/_ext/dbt_click.py +118 -0
  133. dvt/docs/source/conf.py +32 -0
  134. dvt/env_vars.py +64 -0
  135. dvt/event_time/event_time.py +40 -0
  136. dvt/event_time/sample_window.py +60 -0
  137. dvt/events/__init__.py +16 -0
  138. dvt/events/base_types.py +37 -0
  139. dvt/events/core_types_pb2.py +2 -0
  140. dvt/events/logging.py +109 -0
  141. dvt/events/types.py +2534 -0
  142. dvt/exceptions.py +1487 -0
  143. dvt/flags.py +89 -0
  144. dvt/graph/__init__.py +11 -0
  145. dvt/graph/cli.py +248 -0
  146. dvt/graph/graph.py +172 -0
  147. dvt/graph/queue.py +213 -0
  148. dvt/graph/selector.py +375 -0
  149. dvt/graph/selector_methods.py +976 -0
  150. dvt/graph/selector_spec.py +223 -0
  151. dvt/graph/thread_pool.py +18 -0
  152. dvt/hooks.py +21 -0
  153. dvt/include/README.md +49 -0
  154. dvt/include/__init__.py +3 -0
  155. dvt/include/global_project.py +4 -0
  156. dvt/include/starter_project/.gitignore +4 -0
  157. dvt/include/starter_project/README.md +15 -0
  158. dvt/include/starter_project/__init__.py +3 -0
  159. dvt/include/starter_project/analyses/.gitkeep +0 -0
  160. dvt/include/starter_project/dvt_project.yml +36 -0
  161. dvt/include/starter_project/macros/.gitkeep +0 -0
  162. dvt/include/starter_project/models/example/my_first_dbt_model.sql +27 -0
  163. dvt/include/starter_project/models/example/my_second_dbt_model.sql +6 -0
  164. dvt/include/starter_project/models/example/schema.yml +21 -0
  165. dvt/include/starter_project/seeds/.gitkeep +0 -0
  166. dvt/include/starter_project/snapshots/.gitkeep +0 -0
  167. dvt/include/starter_project/tests/.gitkeep +0 -0
  168. dvt/internal_deprecations.py +27 -0
  169. dvt/jsonschemas/__init__.py +3 -0
  170. dvt/jsonschemas/jsonschemas.py +309 -0
  171. dvt/jsonschemas/project/0.0.110.json +4717 -0
  172. dvt/jsonschemas/project/0.0.85.json +2015 -0
  173. dvt/jsonschemas/resources/0.0.110.json +2636 -0
  174. dvt/jsonschemas/resources/0.0.85.json +2536 -0
  175. dvt/jsonschemas/resources/latest.json +6773 -0
  176. dvt/links.py +4 -0
  177. dvt/materializations/__init__.py +0 -0
  178. dvt/materializations/incremental/__init__.py +0 -0
  179. dvt/materializations/incremental/microbatch.py +235 -0
  180. dvt/mp_context.py +8 -0
  181. dvt/node_types.py +37 -0
  182. dvt/parser/__init__.py +23 -0
  183. dvt/parser/analysis.py +21 -0
  184. dvt/parser/base.py +549 -0
  185. dvt/parser/common.py +267 -0
  186. dvt/parser/docs.py +52 -0
  187. dvt/parser/fixtures.py +51 -0
  188. dvt/parser/functions.py +30 -0
  189. dvt/parser/generic_test.py +100 -0
  190. dvt/parser/generic_test_builders.py +334 -0
  191. dvt/parser/hooks.py +119 -0
  192. dvt/parser/macros.py +137 -0
  193. dvt/parser/manifest.py +2204 -0
  194. dvt/parser/models.py +574 -0
  195. dvt/parser/partial.py +1179 -0
  196. dvt/parser/read_files.py +445 -0
  197. dvt/parser/schema_generic_tests.py +423 -0
  198. dvt/parser/schema_renderer.py +111 -0
  199. dvt/parser/schema_yaml_readers.py +936 -0
  200. dvt/parser/schemas.py +1467 -0
  201. dvt/parser/search.py +149 -0
  202. dvt/parser/seeds.py +28 -0
  203. dvt/parser/singular_test.py +20 -0
  204. dvt/parser/snapshots.py +44 -0
  205. dvt/parser/sources.py +557 -0
  206. dvt/parser/sql.py +63 -0
  207. dvt/parser/unit_tests.py +622 -0
  208. dvt/plugins/__init__.py +20 -0
  209. dvt/plugins/contracts.py +10 -0
  210. dvt/plugins/exceptions.py +2 -0
  211. dvt/plugins/manager.py +164 -0
  212. dvt/plugins/manifest.py +21 -0
  213. dvt/profiler.py +20 -0
  214. dvt/py.typed +1 -0
  215. dvt/runners/__init__.py +2 -0
  216. dvt/runners/exposure_runner.py +7 -0
  217. dvt/runners/no_op_runner.py +46 -0
  218. dvt/runners/saved_query_runner.py +7 -0
  219. dvt/selected_resources.py +8 -0
  220. dvt/task/__init__.py +0 -0
  221. dvt/task/base.py +504 -0
  222. dvt/task/build.py +197 -0
  223. dvt/task/clean.py +57 -0
  224. dvt/task/clone.py +162 -0
  225. dvt/task/compile.py +151 -0
  226. dvt/task/compute.py +366 -0
  227. dvt/task/debug.py +650 -0
  228. dvt/task/deps.py +280 -0
  229. dvt/task/docs/__init__.py +3 -0
  230. dvt/task/docs/generate.py +408 -0
  231. dvt/task/docs/index.html +250 -0
  232. dvt/task/docs/serve.py +28 -0
  233. dvt/task/freshness.py +323 -0
  234. dvt/task/function.py +122 -0
  235. dvt/task/group_lookup.py +46 -0
  236. dvt/task/init.py +374 -0
  237. dvt/task/list.py +237 -0
  238. dvt/task/printer.py +176 -0
  239. dvt/task/profiles.py +256 -0
  240. dvt/task/retry.py +175 -0
  241. dvt/task/run.py +1146 -0
  242. dvt/task/run_operation.py +142 -0
  243. dvt/task/runnable.py +802 -0
  244. dvt/task/seed.py +104 -0
  245. dvt/task/show.py +150 -0
  246. dvt/task/snapshot.py +57 -0
  247. dvt/task/sql.py +111 -0
  248. dvt/task/test.py +464 -0
  249. dvt/tests/fixtures/__init__.py +1 -0
  250. dvt/tests/fixtures/project.py +620 -0
  251. dvt/tests/util.py +651 -0
  252. dvt/tracking.py +529 -0
  253. dvt/utils/__init__.py +3 -0
  254. dvt/utils/artifact_upload.py +151 -0
  255. dvt/utils/utils.py +408 -0
  256. dvt/version.py +249 -0
  257. dvt_core-1.11.0b4.dist-info/METADATA +252 -0
  258. dvt_core-1.11.0b4.dist-info/RECORD +261 -0
  259. dvt_core-1.11.0b4.dist-info/WHEEL +5 -0
  260. dvt_core-1.11.0b4.dist-info/entry_points.txt +2 -0
  261. dvt_core-1.11.0b4.dist-info/top_level.txt +1 -0
@@ -0,0 +1,2536 @@
1
+ {
2
+ "$schema": "http://json-schema.org/draft-07/schema#",
3
+ "title": "DbtSchemaFiles",
4
+ "type": "object",
5
+ "additionalProperties": false,
6
+ "properties": {
7
+ "analyses": {
8
+ "type": [
9
+ "array",
10
+ "null"
11
+ ],
12
+ "items": {
13
+ "$ref": "#/definitions/_Analyses"
14
+ }
15
+ },
16
+ "exposures": {
17
+ "type": [
18
+ "array",
19
+ "null"
20
+ ],
21
+ "items": {
22
+ "$ref": "#/definitions/_Exposures"
23
+ }
24
+ },
25
+ "groups": {
26
+ "type": [
27
+ "array",
28
+ "null"
29
+ ],
30
+ "items": {
31
+ "$ref": "#/definitions/_Groups"
32
+ }
33
+ },
34
+ "macros": {
35
+ "type": [
36
+ "array",
37
+ "null"
38
+ ],
39
+ "items": {
40
+ "$ref": "#/definitions/_Macros"
41
+ }
42
+ },
43
+ "metrics": {
44
+ "type": [
45
+ "array",
46
+ "null"
47
+ ],
48
+ "items": {
49
+ "$ref": "#/definitions/_Metrics"
50
+ }
51
+ },
52
+ "models": {
53
+ "type": [
54
+ "array",
55
+ "null"
56
+ ],
57
+ "items": {
58
+ "$ref": "#/definitions/_Models"
59
+ }
60
+ },
61
+ "saved_queries": {
62
+ "type": [
63
+ "array",
64
+ "null"
65
+ ],
66
+ "items": {
67
+ "$ref": "#/definitions/_SavedQueries"
68
+ }
69
+ },
70
+ "seeds": {
71
+ "type": [
72
+ "array",
73
+ "null"
74
+ ],
75
+ "items": {
76
+ "$ref": "#/definitions/_Seeds"
77
+ }
78
+ },
79
+ "semantic_models": {
80
+ "type": [
81
+ "array",
82
+ "null"
83
+ ],
84
+ "items": {
85
+ "$ref": "#/definitions/_SemanticModels"
86
+ }
87
+ },
88
+ "snapshots": {
89
+ "type": [
90
+ "array",
91
+ "null"
92
+ ],
93
+ "items": {
94
+ "$ref": "#/definitions/_Snapshots"
95
+ }
96
+ },
97
+ "sources": {
98
+ "type": [
99
+ "array",
100
+ "null"
101
+ ],
102
+ "items": {
103
+ "$ref": "#/definitions/_Sources"
104
+ }
105
+ },
106
+ "unit_tests": {
107
+ "type": [
108
+ "array",
109
+ "null"
110
+ ],
111
+ "items": {
112
+ "$ref": "#/definitions/_UnitTests"
113
+ }
114
+ },
115
+ "version": {
116
+ "anyOf": [
117
+ {
118
+ "$ref": "#/definitions/FloatOrString"
119
+ },
120
+ {
121
+ "type": "null"
122
+ }
123
+ ]
124
+ }
125
+ },
126
+ "definitions": {
127
+ "AcceptedValuesTest": {
128
+ "type": "object",
129
+ "required": [
130
+ "accepted_values"
131
+ ],
132
+ "properties": {
133
+ "accepted_values": true
134
+ }
135
+ },
136
+ "AggregationTypeParams": {
137
+ "type": "object",
138
+ "properties": {
139
+ "percentile": {
140
+ "type": [
141
+ "number",
142
+ "null"
143
+ ],
144
+ "format": "float"
145
+ },
146
+ "use_approximate_percentile": {
147
+ "type": [
148
+ "boolean",
149
+ "null"
150
+ ]
151
+ },
152
+ "use_discrete_percentile": {
153
+ "type": [
154
+ "boolean",
155
+ "null"
156
+ ]
157
+ }
158
+ }
159
+ },
160
+ "AnyValue": true,
161
+ "BooleanOrJinjaString": {
162
+ "anyOf": [
163
+ {
164
+ "type": "string"
165
+ },
166
+ {
167
+ "type": "boolean"
168
+ }
169
+ ]
170
+ },
171
+ "ColumnProperties": {
172
+ "type": "object",
173
+ "required": [
174
+ "name"
175
+ ],
176
+ "properties": {
177
+ "constraints": {
178
+ "type": [
179
+ "array",
180
+ "null"
181
+ ],
182
+ "items": true
183
+ },
184
+ "data_tests": {
185
+ "type": [
186
+ "array",
187
+ "null"
188
+ ],
189
+ "items": {
190
+ "$ref": "#/definitions/DataTests"
191
+ }
192
+ },
193
+ "data_type": {
194
+ "type": [
195
+ "string",
196
+ "null"
197
+ ]
198
+ },
199
+ "description": {
200
+ "type": [
201
+ "string",
202
+ "null"
203
+ ]
204
+ },
205
+ "granularity": {
206
+ "anyOf": [
207
+ {
208
+ "$ref": "#/definitions/_ColumnPropertiesGranularity"
209
+ },
210
+ {
211
+ "type": "null"
212
+ }
213
+ ]
214
+ },
215
+ "meta": true,
216
+ "name": {
217
+ "type": "string"
218
+ },
219
+ "policy_tags": {
220
+ "type": [
221
+ "array",
222
+ "null"
223
+ ],
224
+ "items": {
225
+ "type": "string"
226
+ }
227
+ },
228
+ "quote": {
229
+ "anyOf": [
230
+ {
231
+ "$ref": "#/definitions/BooleanOrJinjaString"
232
+ },
233
+ {
234
+ "type": "null"
235
+ }
236
+ ]
237
+ },
238
+ "tags": {
239
+ "anyOf": [
240
+ {
241
+ "$ref": "#/definitions/StringOrArrayOfStrings"
242
+ },
243
+ {
244
+ "type": "null"
245
+ }
246
+ ]
247
+ },
248
+ "tests": {
249
+ "type": [
250
+ "array",
251
+ "null"
252
+ ],
253
+ "items": {
254
+ "$ref": "#/definitions/DataTests"
255
+ }
256
+ }
257
+ }
258
+ },
259
+ "CustomGranularity": {
260
+ "type": "object",
261
+ "required": [
262
+ "name"
263
+ ],
264
+ "properties": {
265
+ "column_name": {
266
+ "type": [
267
+ "string",
268
+ "null"
269
+ ]
270
+ },
271
+ "name": {
272
+ "type": "string"
273
+ }
274
+ }
275
+ },
276
+ "DataTests": {
277
+ "anyOf": [
278
+ {
279
+ "type": "string"
280
+ },
281
+ {
282
+ "$ref": "#/definitions/UniqueTest"
283
+ },
284
+ {
285
+ "$ref": "#/definitions/NotNullTest"
286
+ },
287
+ {
288
+ "$ref": "#/definitions/RelationshipsTest"
289
+ },
290
+ {
291
+ "$ref": "#/definitions/AcceptedValuesTest"
292
+ },
293
+ true
294
+ ]
295
+ },
296
+ "Dimension": {
297
+ "type": "object",
298
+ "required": [
299
+ "name",
300
+ "type"
301
+ ],
302
+ "properties": {
303
+ "config": true,
304
+ "description": {
305
+ "type": [
306
+ "string",
307
+ "null"
308
+ ]
309
+ },
310
+ "expr": {
311
+ "anyOf": [
312
+ {
313
+ "$ref": "#/definitions/_DimensionExpr"
314
+ },
315
+ {
316
+ "type": "null"
317
+ }
318
+ ]
319
+ },
320
+ "is_partition": {
321
+ "type": [
322
+ "boolean",
323
+ "null"
324
+ ]
325
+ },
326
+ "label": {
327
+ "type": [
328
+ "string",
329
+ "null"
330
+ ]
331
+ },
332
+ "name": {
333
+ "type": "string"
334
+ },
335
+ "type": {
336
+ "$ref": "#/definitions/_DimensionType_"
337
+ },
338
+ "type_params": {
339
+ "anyOf": [
340
+ {
341
+ "$ref": "#/definitions/DimensionTypeParams"
342
+ },
343
+ {
344
+ "type": "null"
345
+ }
346
+ ]
347
+ }
348
+ }
349
+ },
350
+ "DimensionTypeParams": {
351
+ "type": "object",
352
+ "required": [
353
+ "time_granularity"
354
+ ],
355
+ "properties": {
356
+ "time_granularity": {
357
+ "type": "string"
358
+ },
359
+ "validity_params": {
360
+ "anyOf": [
361
+ {
362
+ "$ref": "#/definitions/ValidityParams"
363
+ },
364
+ {
365
+ "type": "null"
366
+ }
367
+ ]
368
+ }
369
+ }
370
+ },
371
+ "DocsConfig": {
372
+ "type": "object",
373
+ "properties": {
374
+ "node_color": {
375
+ "type": [
376
+ "string",
377
+ "null"
378
+ ]
379
+ },
380
+ "show": {
381
+ "type": [
382
+ "boolean",
383
+ "null"
384
+ ]
385
+ }
386
+ }
387
+ },
388
+ "Entity": {
389
+ "type": "object",
390
+ "required": [
391
+ "name",
392
+ "type"
393
+ ],
394
+ "properties": {
395
+ "config": true,
396
+ "description": {
397
+ "type": [
398
+ "string",
399
+ "null"
400
+ ]
401
+ },
402
+ "entity": {
403
+ "type": [
404
+ "string",
405
+ "null"
406
+ ]
407
+ },
408
+ "expr": {
409
+ "anyOf": [
410
+ {
411
+ "$ref": "#/definitions/_EntityExpr"
412
+ },
413
+ {
414
+ "type": "null"
415
+ }
416
+ ]
417
+ },
418
+ "label": {
419
+ "type": [
420
+ "string",
421
+ "null"
422
+ ]
423
+ },
424
+ "name": {
425
+ "type": "string"
426
+ },
427
+ "type": {
428
+ "$ref": "#/definitions/_EntityType_"
429
+ }
430
+ }
431
+ },
432
+ "Export": {
433
+ "type": "object",
434
+ "required": [
435
+ "name"
436
+ ],
437
+ "properties": {
438
+ "config": {
439
+ "anyOf": [
440
+ {
441
+ "$ref": "#/definitions/_ExportConfig"
442
+ },
443
+ {
444
+ "type": "null"
445
+ }
446
+ ]
447
+ },
448
+ "name": {
449
+ "type": "string"
450
+ }
451
+ }
452
+ },
453
+ "ExposurePropertiesConfigs": {
454
+ "type": "object",
455
+ "additionalProperties": false,
456
+ "properties": {
457
+ "enabled": {
458
+ "anyOf": [
459
+ {
460
+ "$ref": "#/definitions/BooleanOrJinjaString"
461
+ },
462
+ {
463
+ "type": "null"
464
+ }
465
+ ]
466
+ },
467
+ "meta": true
468
+ }
469
+ },
470
+ "FloatOrString": {
471
+ "anyOf": [
472
+ {
473
+ "type": "number",
474
+ "format": "float"
475
+ },
476
+ {
477
+ "type": "string"
478
+ }
479
+ ]
480
+ },
481
+ "FreshnessDefinition": {
482
+ "anyOf": [
483
+ true
484
+ ]
485
+ },
486
+ "HookConfig": {
487
+ "type": "object",
488
+ "properties": {
489
+ "sql": {
490
+ "type": [
491
+ "string",
492
+ "null"
493
+ ]
494
+ },
495
+ "transaction": {
496
+ "type": [
497
+ "boolean",
498
+ "null"
499
+ ]
500
+ }
501
+ }
502
+ },
503
+ "Hooks": {
504
+ "anyOf": [
505
+ {
506
+ "type": "string"
507
+ },
508
+ {
509
+ "type": "array",
510
+ "items": {
511
+ "type": "string"
512
+ }
513
+ },
514
+ {
515
+ "$ref": "#/definitions/HookConfig"
516
+ },
517
+ {
518
+ "type": "array",
519
+ "items": true
520
+ }
521
+ ]
522
+ },
523
+ "Measure": {
524
+ "type": "object",
525
+ "required": [
526
+ "agg",
527
+ "name"
528
+ ],
529
+ "properties": {
530
+ "agg": {
531
+ "$ref": "#/definitions/_MeasureAgg"
532
+ },
533
+ "agg_params": {
534
+ "anyOf": [
535
+ {
536
+ "$ref": "#/definitions/AggregationTypeParams"
537
+ },
538
+ {
539
+ "type": "null"
540
+ }
541
+ ]
542
+ },
543
+ "agg_time_dimension": {
544
+ "type": [
545
+ "string",
546
+ "null"
547
+ ]
548
+ },
549
+ "config": true,
550
+ "create_metric": {
551
+ "type": [
552
+ "boolean",
553
+ "null"
554
+ ]
555
+ },
556
+ "create_metric_display_name": {
557
+ "type": [
558
+ "string",
559
+ "null"
560
+ ]
561
+ },
562
+ "description": {
563
+ "type": [
564
+ "string",
565
+ "null"
566
+ ]
567
+ },
568
+ "expr": {
569
+ "anyOf": [
570
+ {
571
+ "$ref": "#/definitions/_MeasureExpr"
572
+ },
573
+ {
574
+ "type": "null"
575
+ }
576
+ ]
577
+ },
578
+ "label": {
579
+ "type": [
580
+ "string",
581
+ "null"
582
+ ]
583
+ },
584
+ "name": {
585
+ "type": "string"
586
+ },
587
+ "non_additive_dimension": {
588
+ "anyOf": [
589
+ {
590
+ "$ref": "#/definitions/NonAdditiveDimension"
591
+ },
592
+ {
593
+ "type": "null"
594
+ }
595
+ ]
596
+ }
597
+ }
598
+ },
599
+ "ModelPropertiesConfigs": {
600
+ "type": "object",
601
+ "additionalProperties": false,
602
+ "properties": {
603
+ "auto_refresh": {
604
+ "anyOf": [
605
+ {
606
+ "$ref": "#/definitions/BooleanOrJinjaString"
607
+ },
608
+ {
609
+ "type": "null"
610
+ }
611
+ ]
612
+ },
613
+ "backup": {
614
+ "anyOf": [
615
+ {
616
+ "$ref": "#/definitions/BooleanOrJinjaString"
617
+ },
618
+ {
619
+ "type": "null"
620
+ }
621
+ ]
622
+ },
623
+ "batch_size": {
624
+ "type": [
625
+ "string",
626
+ "null"
627
+ ]
628
+ },
629
+ "begin": {
630
+ "type": [
631
+ "string",
632
+ "null"
633
+ ]
634
+ },
635
+ "contract": {
636
+ "anyOf": [
637
+ {
638
+ "$ref": "#/definitions/_ModelPropertiesConfigsContract"
639
+ },
640
+ {
641
+ "type": "null"
642
+ }
643
+ ]
644
+ },
645
+ "docs": {
646
+ "anyOf": [
647
+ {
648
+ "$ref": "#/definitions/DocsConfig"
649
+ },
650
+ {
651
+ "type": "null"
652
+ }
653
+ ]
654
+ },
655
+ "enabled": {
656
+ "anyOf": [
657
+ {
658
+ "$ref": "#/definitions/BooleanOrJinjaString"
659
+ },
660
+ {
661
+ "type": "null"
662
+ }
663
+ ]
664
+ },
665
+ "event_time": {
666
+ "type": [
667
+ "string",
668
+ "null"
669
+ ]
670
+ },
671
+ "file_format": {
672
+ "type": [
673
+ "string",
674
+ "null"
675
+ ]
676
+ },
677
+ "grant_access_to": {
678
+ "type": [
679
+ "array",
680
+ "null"
681
+ ],
682
+ "items": {
683
+ "$ref": "#/definitions/_GrantAccessTo"
684
+ }
685
+ },
686
+ "grants": true,
687
+ "group": {
688
+ "type": [
689
+ "string",
690
+ "null"
691
+ ]
692
+ },
693
+ "hours_to_expiration": {
694
+ "type": [
695
+ "number",
696
+ "null"
697
+ ],
698
+ "format": "float"
699
+ },
700
+ "include_full_name_in_path": {
701
+ "anyOf": [
702
+ {
703
+ "$ref": "#/definitions/BooleanOrJinjaString"
704
+ },
705
+ {
706
+ "type": "null"
707
+ }
708
+ ]
709
+ },
710
+ "incremental_strategy": {
711
+ "type": [
712
+ "string",
713
+ "null"
714
+ ]
715
+ },
716
+ "kms_key_name": {
717
+ "type": [
718
+ "string",
719
+ "null"
720
+ ]
721
+ },
722
+ "labels": true,
723
+ "location": {
724
+ "type": [
725
+ "string",
726
+ "null"
727
+ ]
728
+ },
729
+ "location_root": {
730
+ "type": [
731
+ "string",
732
+ "null"
733
+ ]
734
+ },
735
+ "lookback": {
736
+ "type": [
737
+ "number",
738
+ "null"
739
+ ],
740
+ "format": "float"
741
+ },
742
+ "materialized": {
743
+ "type": [
744
+ "string",
745
+ "null"
746
+ ]
747
+ },
748
+ "meta": true,
749
+ "on_configuration_change": {
750
+ "type": [
751
+ "string",
752
+ "null"
753
+ ]
754
+ },
755
+ "on_schema_change": {
756
+ "type": [
757
+ "string",
758
+ "null"
759
+ ]
760
+ },
761
+ "snowflake_warehouse": {
762
+ "type": [
763
+ "string",
764
+ "null"
765
+ ]
766
+ },
767
+ "sql_header": {
768
+ "type": [
769
+ "string",
770
+ "null"
771
+ ]
772
+ },
773
+ "table_format": {
774
+ "type": [
775
+ "string",
776
+ "null"
777
+ ]
778
+ },
779
+ "tags": {
780
+ "anyOf": [
781
+ {
782
+ "$ref": "#/definitions/StringOrArrayOfStrings"
783
+ },
784
+ {
785
+ "type": "null"
786
+ }
787
+ ]
788
+ },
789
+ "target_lag": {
790
+ "type": [
791
+ "string",
792
+ "null"
793
+ ]
794
+ },
795
+ "tblproperties": true,
796
+ "unique_key": {
797
+ "anyOf": [
798
+ {
799
+ "$ref": "#/definitions/StringOrArrayOfStrings"
800
+ },
801
+ {
802
+ "type": "null"
803
+ }
804
+ ]
805
+ }
806
+ }
807
+ },
808
+ "NonAdditiveDimension": {
809
+ "type": "object",
810
+ "required": [
811
+ "name"
812
+ ],
813
+ "properties": {
814
+ "name": {
815
+ "type": "string"
816
+ },
817
+ "window_choice": {
818
+ "anyOf": [
819
+ {
820
+ "$ref": "#/definitions/_NonAdditiveDimensionWindowChoice"
821
+ },
822
+ {
823
+ "type": "null"
824
+ }
825
+ ]
826
+ },
827
+ "window_groupings": {
828
+ "type": [
829
+ "array",
830
+ "null"
831
+ ],
832
+ "items": {
833
+ "type": "string"
834
+ }
835
+ }
836
+ }
837
+ },
838
+ "NotNullTest": {
839
+ "type": "object",
840
+ "required": [
841
+ "not_null"
842
+ ],
843
+ "properties": {
844
+ "not_null": true
845
+ }
846
+ },
847
+ "PersistDocsConfig": {
848
+ "type": "object",
849
+ "properties": {
850
+ "columns": {
851
+ "anyOf": [
852
+ {
853
+ "$ref": "#/definitions/BooleanOrJinjaString"
854
+ },
855
+ {
856
+ "type": "null"
857
+ }
858
+ ]
859
+ },
860
+ "relation": {
861
+ "anyOf": [
862
+ {
863
+ "$ref": "#/definitions/BooleanOrJinjaString"
864
+ },
865
+ {
866
+ "type": "null"
867
+ }
868
+ ]
869
+ }
870
+ }
871
+ },
872
+ "RelationshipsTest": {
873
+ "type": "object",
874
+ "required": [
875
+ "relationships"
876
+ ],
877
+ "properties": {
878
+ "relationships": true
879
+ }
880
+ },
881
+ "StringOrArrayOfStrings": {
882
+ "anyOf": [
883
+ {
884
+ "type": "string"
885
+ },
886
+ {
887
+ "type": "array",
888
+ "items": {
889
+ "type": "string"
890
+ }
891
+ }
892
+ ]
893
+ },
894
+ "UniqueTest": {
895
+ "type": "object",
896
+ "required": [
897
+ "unique"
898
+ ],
899
+ "properties": {
900
+ "unique": true
901
+ }
902
+ },
903
+ "ValidityParams": {
904
+ "type": "object",
905
+ "properties": {
906
+ "is_end": {
907
+ "type": [
908
+ "boolean",
909
+ "null"
910
+ ]
911
+ },
912
+ "is_start": {
913
+ "type": [
914
+ "boolean",
915
+ "null"
916
+ ]
917
+ }
918
+ }
919
+ },
920
+ "_Analyses": {
921
+ "type": "object",
922
+ "required": [
923
+ "name"
924
+ ],
925
+ "properties": {
926
+ "columns": {
927
+ "type": [
928
+ "array",
929
+ "null"
930
+ ],
931
+ "items": {
932
+ "$ref": "#/definitions/_Columns"
933
+ }
934
+ },
935
+ "config": {
936
+ "anyOf": [
937
+ {
938
+ "$ref": "#/definitions/__AnalysesConfig"
939
+ },
940
+ {
941
+ "type": "null"
942
+ }
943
+ ]
944
+ },
945
+ "description": {
946
+ "type": [
947
+ "string",
948
+ "null"
949
+ ]
950
+ },
951
+ "docs": {
952
+ "anyOf": [
953
+ {
954
+ "$ref": "#/definitions/DocsConfig"
955
+ },
956
+ {
957
+ "type": "null"
958
+ }
959
+ ]
960
+ },
961
+ "group": {
962
+ "type": [
963
+ "string",
964
+ "null"
965
+ ]
966
+ },
967
+ "name": {
968
+ "type": "string"
969
+ }
970
+ }
971
+ },
972
+ "_Arguments": {
973
+ "type": "object",
974
+ "required": [
975
+ "name"
976
+ ],
977
+ "properties": {
978
+ "description": {
979
+ "type": [
980
+ "string",
981
+ "null"
982
+ ]
983
+ },
984
+ "name": {
985
+ "type": "string"
986
+ },
987
+ "type": {
988
+ "type": [
989
+ "string",
990
+ "null"
991
+ ]
992
+ }
993
+ }
994
+ },
995
+ "_ColumnPropertiesGranularity": {
996
+ "type": "string",
997
+ "enum": [
998
+ "nanosecond",
999
+ "microsecond",
1000
+ "millisecond",
1001
+ "second",
1002
+ "minute",
1003
+ "hour",
1004
+ "day",
1005
+ "week",
1006
+ "month",
1007
+ "quarter",
1008
+ "year"
1009
+ ]
1010
+ },
1011
+ "_Columns": {
1012
+ "type": "object",
1013
+ "required": [
1014
+ "name"
1015
+ ],
1016
+ "properties": {
1017
+ "data_type": {
1018
+ "type": [
1019
+ "string",
1020
+ "null"
1021
+ ]
1022
+ },
1023
+ "description": {
1024
+ "type": [
1025
+ "string",
1026
+ "null"
1027
+ ]
1028
+ },
1029
+ "name": {
1030
+ "type": "string"
1031
+ }
1032
+ }
1033
+ },
1034
+ "_DimensionExpr": {
1035
+ "anyOf": [
1036
+ {
1037
+ "type": "string"
1038
+ },
1039
+ {
1040
+ "type": "boolean"
1041
+ }
1042
+ ]
1043
+ },
1044
+ "_DimensionType_": {
1045
+ "type": "string",
1046
+ "enum": [
1047
+ "CATEGORICAL",
1048
+ "TIME",
1049
+ "categorical",
1050
+ "time"
1051
+ ]
1052
+ },
1053
+ "_EntityExpr": {
1054
+ "anyOf": [
1055
+ {
1056
+ "type": "string"
1057
+ },
1058
+ {
1059
+ "type": "boolean"
1060
+ }
1061
+ ]
1062
+ },
1063
+ "_EntityType_": {
1064
+ "type": "string",
1065
+ "enum": [
1066
+ "PRIMARY",
1067
+ "UNIQUE",
1068
+ "FOREIGN",
1069
+ "NATURAL",
1070
+ "primary",
1071
+ "unique",
1072
+ "foreign",
1073
+ "natural"
1074
+ ]
1075
+ },
1076
+ "_ExportConfig": {
1077
+ "type": "object",
1078
+ "properties": {
1079
+ "alias": {
1080
+ "type": [
1081
+ "string",
1082
+ "null"
1083
+ ]
1084
+ },
1085
+ "export_as": {
1086
+ "anyOf": [
1087
+ {
1088
+ "$ref": "#/definitions/__ExportConfigExportAs"
1089
+ },
1090
+ {
1091
+ "type": "null"
1092
+ }
1093
+ ]
1094
+ },
1095
+ "schema": {
1096
+ "type": [
1097
+ "string",
1098
+ "null"
1099
+ ]
1100
+ }
1101
+ },
1102
+ "additionalProperties": true
1103
+ },
1104
+ "_Exposures": {
1105
+ "type": "object",
1106
+ "additionalProperties": false,
1107
+ "required": [
1108
+ "name",
1109
+ "owner",
1110
+ "type"
1111
+ ],
1112
+ "properties": {
1113
+ "config": {
1114
+ "anyOf": [
1115
+ {
1116
+ "$ref": "#/definitions/ExposurePropertiesConfigs"
1117
+ },
1118
+ {
1119
+ "type": "null"
1120
+ }
1121
+ ]
1122
+ },
1123
+ "depends_on": {
1124
+ "type": [
1125
+ "array",
1126
+ "null"
1127
+ ],
1128
+ "items": {
1129
+ "type": "string"
1130
+ }
1131
+ },
1132
+ "description": {
1133
+ "type": [
1134
+ "string",
1135
+ "null"
1136
+ ]
1137
+ },
1138
+ "label": {
1139
+ "type": [
1140
+ "string",
1141
+ "null"
1142
+ ]
1143
+ },
1144
+ "maturity": {
1145
+ "type": [
1146
+ "string",
1147
+ "null"
1148
+ ]
1149
+ },
1150
+ "meta": true,
1151
+ "name": {
1152
+ "type": "string"
1153
+ },
1154
+ "owner": {
1155
+ "$ref": "#/definitions/__ExposuresOwner"
1156
+ },
1157
+ "tags": {
1158
+ "anyOf": [
1159
+ {
1160
+ "$ref": "#/definitions/StringOrArrayOfStrings"
1161
+ },
1162
+ {
1163
+ "type": "null"
1164
+ }
1165
+ ]
1166
+ },
1167
+ "type": {
1168
+ "type": "string"
1169
+ },
1170
+ "url": {
1171
+ "type": [
1172
+ "string",
1173
+ "null"
1174
+ ]
1175
+ }
1176
+ }
1177
+ },
1178
+ "_Given": {
1179
+ "type": "object",
1180
+ "properties": {
1181
+ "fixture": {
1182
+ "type": [
1183
+ "string",
1184
+ "null"
1185
+ ]
1186
+ },
1187
+ "format": {
1188
+ "type": [
1189
+ "string",
1190
+ "null"
1191
+ ]
1192
+ },
1193
+ "input": {
1194
+ "type": [
1195
+ "string",
1196
+ "null"
1197
+ ]
1198
+ },
1199
+ "rows": true
1200
+ }
1201
+ },
1202
+ "_GrantAccessTo": {
1203
+ "type": "object",
1204
+ "properties": {
1205
+ "dataset": {
1206
+ "type": [
1207
+ "string",
1208
+ "null"
1209
+ ]
1210
+ },
1211
+ "project": {
1212
+ "type": [
1213
+ "string",
1214
+ "null"
1215
+ ]
1216
+ }
1217
+ }
1218
+ },
1219
+ "_Groups": {
1220
+ "type": "object",
1221
+ "required": [
1222
+ "name",
1223
+ "owner"
1224
+ ],
1225
+ "properties": {
1226
+ "name": {
1227
+ "type": "string"
1228
+ },
1229
+ "owner": {
1230
+ "$ref": "#/definitions/__GroupsOwner"
1231
+ }
1232
+ }
1233
+ },
1234
+ "_Macros": {
1235
+ "type": "object",
1236
+ "additionalProperties": false,
1237
+ "required": [
1238
+ "name"
1239
+ ],
1240
+ "properties": {
1241
+ "arguments": {
1242
+ "type": [
1243
+ "array",
1244
+ "null"
1245
+ ],
1246
+ "items": {
1247
+ "$ref": "#/definitions/_Arguments"
1248
+ }
1249
+ },
1250
+ "description": {
1251
+ "type": [
1252
+ "string",
1253
+ "null"
1254
+ ]
1255
+ },
1256
+ "docs": {
1257
+ "anyOf": [
1258
+ {
1259
+ "$ref": "#/definitions/DocsConfig"
1260
+ },
1261
+ {
1262
+ "type": "null"
1263
+ }
1264
+ ]
1265
+ },
1266
+ "name": {
1267
+ "type": "string"
1268
+ }
1269
+ }
1270
+ },
1271
+ "_MeasureAgg": {
1272
+ "type": "string",
1273
+ "enum": [
1274
+ "SUM",
1275
+ "MIN",
1276
+ "MAX",
1277
+ "AVERAGE",
1278
+ "COUNT_DISTINCT",
1279
+ "SUM_BOOLEAN",
1280
+ "COUNT",
1281
+ "PERCENTILE",
1282
+ "MEDIAN",
1283
+ "sum",
1284
+ "min",
1285
+ "max",
1286
+ "average",
1287
+ "count_distinct",
1288
+ "sum_boolean",
1289
+ "count",
1290
+ "percentile",
1291
+ "median"
1292
+ ]
1293
+ },
1294
+ "_MeasureExpr": {
1295
+ "anyOf": [
1296
+ {
1297
+ "type": "string"
1298
+ },
1299
+ {
1300
+ "type": "integer",
1301
+ "format": "int32"
1302
+ },
1303
+ {
1304
+ "type": "boolean"
1305
+ }
1306
+ ]
1307
+ },
1308
+ "_Metrics": {
1309
+ "type": "object",
1310
+ "properties": {
1311
+ "__additional_properties__": {
1312
+ "type": "object",
1313
+ "additionalProperties": {
1314
+ "$ref": "#/definitions/AnyValue"
1315
+ }
1316
+ }
1317
+ }
1318
+ },
1319
+ "_ModelPropertiesConfigsContract": {
1320
+ "type": "object",
1321
+ "properties": {
1322
+ "alias_types": {
1323
+ "anyOf": [
1324
+ {
1325
+ "$ref": "#/definitions/BooleanOrJinjaString"
1326
+ },
1327
+ {
1328
+ "type": "null"
1329
+ }
1330
+ ]
1331
+ },
1332
+ "enforced": {
1333
+ "anyOf": [
1334
+ {
1335
+ "$ref": "#/definitions/BooleanOrJinjaString"
1336
+ },
1337
+ {
1338
+ "type": "null"
1339
+ }
1340
+ ]
1341
+ }
1342
+ }
1343
+ },
1344
+ "_Models": {
1345
+ "type": "object",
1346
+ "additionalProperties": false,
1347
+ "required": [
1348
+ "name"
1349
+ ],
1350
+ "properties": {
1351
+ "access": {
1352
+ "type": [
1353
+ "string",
1354
+ "null"
1355
+ ]
1356
+ },
1357
+ "columns": {
1358
+ "type": [
1359
+ "array",
1360
+ "null"
1361
+ ],
1362
+ "items": {
1363
+ "$ref": "#/definitions/ColumnProperties"
1364
+ }
1365
+ },
1366
+ "config": {
1367
+ "anyOf": [
1368
+ {
1369
+ "$ref": "#/definitions/ModelPropertiesConfigs"
1370
+ },
1371
+ {
1372
+ "type": "null"
1373
+ }
1374
+ ]
1375
+ },
1376
+ "constraints": {
1377
+ "type": [
1378
+ "array",
1379
+ "null"
1380
+ ],
1381
+ "items": true
1382
+ },
1383
+ "data_tests": {
1384
+ "type": [
1385
+ "array",
1386
+ "null"
1387
+ ],
1388
+ "items": {
1389
+ "$ref": "#/definitions/DataTests"
1390
+ }
1391
+ },
1392
+ "deprecation_date": {
1393
+ "type": [
1394
+ "string",
1395
+ "null"
1396
+ ]
1397
+ },
1398
+ "description": {
1399
+ "type": [
1400
+ "string",
1401
+ "null"
1402
+ ]
1403
+ },
1404
+ "docs": {
1405
+ "anyOf": [
1406
+ {
1407
+ "$ref": "#/definitions/DocsConfig"
1408
+ },
1409
+ {
1410
+ "type": "null"
1411
+ }
1412
+ ]
1413
+ },
1414
+ "group": {
1415
+ "type": [
1416
+ "string",
1417
+ "null"
1418
+ ]
1419
+ },
1420
+ "identifier": {
1421
+ "type": [
1422
+ "string",
1423
+ "null"
1424
+ ]
1425
+ },
1426
+ "latest_version": {
1427
+ "type": [
1428
+ "number",
1429
+ "null"
1430
+ ],
1431
+ "format": "float"
1432
+ },
1433
+ "meta": true,
1434
+ "name": {
1435
+ "type": "string"
1436
+ },
1437
+ "tests": {
1438
+ "type": [
1439
+ "array",
1440
+ "null"
1441
+ ],
1442
+ "items": {
1443
+ "$ref": "#/definitions/DataTests"
1444
+ }
1445
+ },
1446
+ "time_spine": {
1447
+ "anyOf": [
1448
+ {
1449
+ "$ref": "#/definitions/__ModelsTimeSpine"
1450
+ },
1451
+ {
1452
+ "type": "null"
1453
+ }
1454
+ ]
1455
+ },
1456
+ "versions": {
1457
+ "type": [
1458
+ "array",
1459
+ "null"
1460
+ ],
1461
+ "items": {
1462
+ "$ref": "#/definitions/_Versions"
1463
+ }
1464
+ }
1465
+ }
1466
+ },
1467
+ "_NonAdditiveDimensionWindowChoice": {
1468
+ "type": "string",
1469
+ "enum": [
1470
+ "MIN",
1471
+ "MAX",
1472
+ "min",
1473
+ "max"
1474
+ ]
1475
+ },
1476
+ "_SavedQueries": {
1477
+ "type": "object",
1478
+ "additionalProperties": false,
1479
+ "required": [
1480
+ "name",
1481
+ "query_params"
1482
+ ],
1483
+ "properties": {
1484
+ "config": {
1485
+ "anyOf": [
1486
+ {
1487
+ "$ref": "#/definitions/__SavedQueriesConfig"
1488
+ },
1489
+ {
1490
+ "type": "null"
1491
+ }
1492
+ ]
1493
+ },
1494
+ "description": {
1495
+ "type": [
1496
+ "string",
1497
+ "null"
1498
+ ]
1499
+ },
1500
+ "exports": {
1501
+ "type": [
1502
+ "array",
1503
+ "null"
1504
+ ],
1505
+ "items": {
1506
+ "$ref": "#/definitions/Export"
1507
+ }
1508
+ },
1509
+ "label": {
1510
+ "type": [
1511
+ "string",
1512
+ "null"
1513
+ ]
1514
+ },
1515
+ "name": {
1516
+ "type": "string"
1517
+ },
1518
+ "query_params": {
1519
+ "type": "object",
1520
+ "properties": {
1521
+ "dimensions": {
1522
+ "type": [
1523
+ "array",
1524
+ "null"
1525
+ ],
1526
+ "items": {
1527
+ "type": "string"
1528
+ }
1529
+ },
1530
+ "group_by": {
1531
+ "type": [
1532
+ "array",
1533
+ "null"
1534
+ ],
1535
+ "items": {
1536
+ "type": "string"
1537
+ }
1538
+ },
1539
+ "metrics": {
1540
+ "type": [
1541
+ "array",
1542
+ "null"
1543
+ ],
1544
+ "items": {
1545
+ "type": "string"
1546
+ }
1547
+ },
1548
+ "where": {
1549
+ "type": [
1550
+ "array",
1551
+ "null"
1552
+ ],
1553
+ "items": {
1554
+ "type": "string"
1555
+ }
1556
+ }
1557
+ }
1558
+ }
1559
+ }
1560
+ },
1561
+ "_Seeds": {
1562
+ "type": "object",
1563
+ "additionalProperties": false,
1564
+ "required": [
1565
+ "name"
1566
+ ],
1567
+ "properties": {
1568
+ "columns": {
1569
+ "type": [
1570
+ "array",
1571
+ "null"
1572
+ ],
1573
+ "items": {
1574
+ "$ref": "#/definitions/ColumnProperties"
1575
+ }
1576
+ },
1577
+ "config": {
1578
+ "anyOf": [
1579
+ {
1580
+ "$ref": "#/definitions/__SeedsConfig"
1581
+ },
1582
+ {
1583
+ "type": "null"
1584
+ }
1585
+ ]
1586
+ },
1587
+ "data_tests": {
1588
+ "type": [
1589
+ "array",
1590
+ "null"
1591
+ ],
1592
+ "items": {
1593
+ "$ref": "#/definitions/DataTests"
1594
+ }
1595
+ },
1596
+ "description": {
1597
+ "type": [
1598
+ "string",
1599
+ "null"
1600
+ ]
1601
+ },
1602
+ "docs": {
1603
+ "anyOf": [
1604
+ {
1605
+ "$ref": "#/definitions/DocsConfig"
1606
+ },
1607
+ {
1608
+ "type": "null"
1609
+ }
1610
+ ]
1611
+ },
1612
+ "group": {
1613
+ "type": [
1614
+ "string",
1615
+ "null"
1616
+ ]
1617
+ },
1618
+ "name": {
1619
+ "type": "string"
1620
+ },
1621
+ "tests": {
1622
+ "type": [
1623
+ "array",
1624
+ "null"
1625
+ ],
1626
+ "items": {
1627
+ "$ref": "#/definitions/DataTests"
1628
+ }
1629
+ }
1630
+ }
1631
+ },
1632
+ "_SemanticModels": {
1633
+ "type": "object",
1634
+ "additionalProperties": false,
1635
+ "required": [
1636
+ "model",
1637
+ "name"
1638
+ ],
1639
+ "properties": {
1640
+ "config": {
1641
+ "anyOf": [
1642
+ {
1643
+ "$ref": "#/definitions/ModelPropertiesConfigs"
1644
+ },
1645
+ {
1646
+ "type": "null"
1647
+ }
1648
+ ]
1649
+ },
1650
+ "defaults": {
1651
+ "anyOf": [
1652
+ {
1653
+ "$ref": "#/definitions/__SemanticModelsDefaults"
1654
+ },
1655
+ {
1656
+ "type": "null"
1657
+ }
1658
+ ]
1659
+ },
1660
+ "description": {
1661
+ "type": [
1662
+ "string",
1663
+ "null"
1664
+ ]
1665
+ },
1666
+ "dimensions": {
1667
+ "type": [
1668
+ "array",
1669
+ "null"
1670
+ ],
1671
+ "items": {
1672
+ "$ref": "#/definitions/Dimension"
1673
+ }
1674
+ },
1675
+ "entities": {
1676
+ "type": [
1677
+ "array",
1678
+ "null"
1679
+ ],
1680
+ "items": {
1681
+ "$ref": "#/definitions/Entity"
1682
+ }
1683
+ },
1684
+ "label": {
1685
+ "type": [
1686
+ "string",
1687
+ "null"
1688
+ ]
1689
+ },
1690
+ "measures": {
1691
+ "type": [
1692
+ "array",
1693
+ "null"
1694
+ ],
1695
+ "items": {
1696
+ "$ref": "#/definitions/Measure"
1697
+ }
1698
+ },
1699
+ "model": {
1700
+ "type": "string"
1701
+ },
1702
+ "name": {
1703
+ "type": "string"
1704
+ },
1705
+ "primary_entity": {
1706
+ "type": [
1707
+ "string",
1708
+ "null"
1709
+ ]
1710
+ }
1711
+ }
1712
+ },
1713
+ "_Snapshots": {
1714
+ "type": "object",
1715
+ "additionalProperties": false,
1716
+ "required": [
1717
+ "name"
1718
+ ],
1719
+ "properties": {
1720
+ "columns": {
1721
+ "type": [
1722
+ "array",
1723
+ "null"
1724
+ ],
1725
+ "items": {
1726
+ "$ref": "#/definitions/ColumnProperties"
1727
+ }
1728
+ },
1729
+ "config": {
1730
+ "anyOf": [
1731
+ {
1732
+ "$ref": "#/definitions/__SnapshotsConfig"
1733
+ },
1734
+ {
1735
+ "type": "null"
1736
+ }
1737
+ ]
1738
+ },
1739
+ "data_tests": {
1740
+ "type": [
1741
+ "array",
1742
+ "null"
1743
+ ],
1744
+ "items": {
1745
+ "$ref": "#/definitions/DataTests"
1746
+ }
1747
+ },
1748
+ "description": {
1749
+ "type": [
1750
+ "string",
1751
+ "null"
1752
+ ]
1753
+ },
1754
+ "docs": {
1755
+ "anyOf": [
1756
+ {
1757
+ "$ref": "#/definitions/DocsConfig"
1758
+ },
1759
+ {
1760
+ "type": "null"
1761
+ }
1762
+ ]
1763
+ },
1764
+ "group": {
1765
+ "type": [
1766
+ "string",
1767
+ "null"
1768
+ ]
1769
+ },
1770
+ "meta": true,
1771
+ "name": {
1772
+ "type": "string"
1773
+ },
1774
+ "relation": {
1775
+ "type": [
1776
+ "string",
1777
+ "null"
1778
+ ]
1779
+ },
1780
+ "tests": {
1781
+ "type": [
1782
+ "array",
1783
+ "null"
1784
+ ],
1785
+ "items": {
1786
+ "$ref": "#/definitions/DataTests"
1787
+ }
1788
+ }
1789
+ }
1790
+ },
1791
+ "_Sources": {
1792
+ "type": "object",
1793
+ "additionalProperties": false,
1794
+ "required": [
1795
+ "name"
1796
+ ],
1797
+ "properties": {
1798
+ "config": true,
1799
+ "database": {
1800
+ "type": [
1801
+ "string",
1802
+ "null"
1803
+ ]
1804
+ },
1805
+ "description": {
1806
+ "type": [
1807
+ "string",
1808
+ "null"
1809
+ ]
1810
+ },
1811
+ "freshness": {
1812
+ "anyOf": [
1813
+ {
1814
+ "$ref": "#/definitions/FreshnessDefinition"
1815
+ },
1816
+ {
1817
+ "type": "null"
1818
+ }
1819
+ ]
1820
+ },
1821
+ "loaded_at_field": {
1822
+ "type": [
1823
+ "string",
1824
+ "null"
1825
+ ]
1826
+ },
1827
+ "loaded_at_query": {
1828
+ "type": [
1829
+ "string",
1830
+ "null"
1831
+ ]
1832
+ },
1833
+ "loader": {
1834
+ "type": [
1835
+ "string",
1836
+ "null"
1837
+ ]
1838
+ },
1839
+ "meta": true,
1840
+ "name": {
1841
+ "type": "string"
1842
+ },
1843
+ "overrides": {
1844
+ "type": [
1845
+ "string",
1846
+ "null"
1847
+ ]
1848
+ },
1849
+ "quoting": {
1850
+ "anyOf": [
1851
+ {
1852
+ "$ref": "#/definitions/__SourcesQuoting"
1853
+ },
1854
+ {
1855
+ "type": "null"
1856
+ }
1857
+ ]
1858
+ },
1859
+ "schema": {
1860
+ "type": [
1861
+ "string",
1862
+ "null"
1863
+ ]
1864
+ },
1865
+ "tables": {
1866
+ "type": [
1867
+ "array",
1868
+ "null"
1869
+ ],
1870
+ "items": {
1871
+ "$ref": "#/definitions/_Tables"
1872
+ }
1873
+ },
1874
+ "tags": {
1875
+ "anyOf": [
1876
+ {
1877
+ "$ref": "#/definitions/StringOrArrayOfStrings"
1878
+ },
1879
+ {
1880
+ "type": "null"
1881
+ }
1882
+ ]
1883
+ }
1884
+ }
1885
+ },
1886
+ "_Tables": {
1887
+ "type": "object",
1888
+ "additionalProperties": false,
1889
+ "required": [
1890
+ "name"
1891
+ ],
1892
+ "properties": {
1893
+ "columns": {
1894
+ "type": [
1895
+ "array",
1896
+ "null"
1897
+ ],
1898
+ "items": {
1899
+ "$ref": "#/definitions/ColumnProperties"
1900
+ }
1901
+ },
1902
+ "config": {
1903
+ "anyOf": [
1904
+ {
1905
+ "$ref": "#/definitions/__TablesConfig"
1906
+ },
1907
+ {
1908
+ "type": "null"
1909
+ }
1910
+ ]
1911
+ },
1912
+ "data_tests": {
1913
+ "type": [
1914
+ "array",
1915
+ "null"
1916
+ ],
1917
+ "items": {
1918
+ "$ref": "#/definitions/DataTests"
1919
+ }
1920
+ },
1921
+ "description": {
1922
+ "type": [
1923
+ "string",
1924
+ "null"
1925
+ ]
1926
+ },
1927
+ "external": true,
1928
+ "freshness": {
1929
+ "anyOf": [
1930
+ {
1931
+ "$ref": "#/definitions/FreshnessDefinition"
1932
+ },
1933
+ {
1934
+ "type": "null"
1935
+ }
1936
+ ]
1937
+ },
1938
+ "identifier": {
1939
+ "type": [
1940
+ "string",
1941
+ "null"
1942
+ ]
1943
+ },
1944
+ "loaded_at_field": {
1945
+ "type": [
1946
+ "string",
1947
+ "null"
1948
+ ]
1949
+ },
1950
+ "loaded_at_query": {
1951
+ "type": [
1952
+ "string",
1953
+ "null"
1954
+ ]
1955
+ },
1956
+ "loader": {
1957
+ "type": [
1958
+ "string",
1959
+ "null"
1960
+ ]
1961
+ },
1962
+ "meta": true,
1963
+ "name": {
1964
+ "type": "string"
1965
+ },
1966
+ "quoting": {
1967
+ "anyOf": [
1968
+ {
1969
+ "$ref": "#/definitions/__TablesQuoting"
1970
+ },
1971
+ {
1972
+ "type": "null"
1973
+ }
1974
+ ]
1975
+ },
1976
+ "tags": {
1977
+ "anyOf": [
1978
+ {
1979
+ "$ref": "#/definitions/StringOrArrayOfStrings"
1980
+ },
1981
+ {
1982
+ "type": "null"
1983
+ }
1984
+ ]
1985
+ },
1986
+ "tests": {
1987
+ "type": [
1988
+ "array",
1989
+ "null"
1990
+ ],
1991
+ "items": {
1992
+ "$ref": "#/definitions/DataTests"
1993
+ }
1994
+ }
1995
+ }
1996
+ },
1997
+ "_UnitTests": {
1998
+ "type": "object",
1999
+ "additionalProperties": false,
2000
+ "required": [
2001
+ "expect",
2002
+ "model",
2003
+ "name"
2004
+ ],
2005
+ "properties": {
2006
+ "config": {
2007
+ "anyOf": [
2008
+ {
2009
+ "$ref": "#/definitions/__UnitTestsConfig"
2010
+ },
2011
+ {
2012
+ "type": "null"
2013
+ }
2014
+ ]
2015
+ },
2016
+ "description": {
2017
+ "type": [
2018
+ "string",
2019
+ "null"
2020
+ ]
2021
+ },
2022
+ "expect": {
2023
+ "$ref": "#/definitions/__UnitTestsExpect"
2024
+ },
2025
+ "given": {
2026
+ "type": [
2027
+ "array",
2028
+ "null"
2029
+ ],
2030
+ "items": {
2031
+ "$ref": "#/definitions/_Given"
2032
+ }
2033
+ },
2034
+ "model": {
2035
+ "type": "string"
2036
+ },
2037
+ "name": {
2038
+ "type": "string"
2039
+ },
2040
+ "overrides": {
2041
+ "anyOf": [
2042
+ {
2043
+ "$ref": "#/definitions/__UnitTestsOverrides"
2044
+ },
2045
+ {
2046
+ "type": "null"
2047
+ }
2048
+ ]
2049
+ },
2050
+ "versions": true
2051
+ }
2052
+ },
2053
+ "_Versions": {
2054
+ "type": "object",
2055
+ "additionalProperties": true
2056
+ },
2057
+ "__AnalysesConfig": {
2058
+ "type": "object",
2059
+ "properties": {
2060
+ "tags": {
2061
+ "anyOf": [
2062
+ {
2063
+ "$ref": "#/definitions/StringOrArrayOfStrings"
2064
+ },
2065
+ {
2066
+ "type": "null"
2067
+ }
2068
+ ]
2069
+ }
2070
+ }
2071
+ },
2072
+ "__ExportConfigExportAs": {
2073
+ "type": "string",
2074
+ "enum": [
2075
+ "table",
2076
+ "view",
2077
+ "cache"
2078
+ ]
2079
+ },
2080
+ "__ExposuresOwner": {
2081
+ "type": "object",
2082
+ "properties": {
2083
+ "email": {
2084
+ "type": [
2085
+ "string",
2086
+ "null"
2087
+ ]
2088
+ },
2089
+ "name": {
2090
+ "type": [
2091
+ "string",
2092
+ "null"
2093
+ ]
2094
+ }
2095
+ }
2096
+ },
2097
+ "__GroupsOwner": {
2098
+ "type": "object",
2099
+ "properties": {
2100
+ "email": {
2101
+ "type": [
2102
+ "string",
2103
+ "null"
2104
+ ]
2105
+ },
2106
+ "name": {
2107
+ "type": [
2108
+ "string",
2109
+ "null"
2110
+ ]
2111
+ }
2112
+ },
2113
+ "additionalProperties": true
2114
+ },
2115
+ "__ModelsTimeSpine": {
2116
+ "type": "object",
2117
+ "required": [
2118
+ "standard_granularity_column"
2119
+ ],
2120
+ "properties": {
2121
+ "custom_granularities": {
2122
+ "type": [
2123
+ "array",
2124
+ "null"
2125
+ ],
2126
+ "items": {
2127
+ "$ref": "#/definitions/CustomGranularity"
2128
+ }
2129
+ },
2130
+ "standard_granularity_column": {
2131
+ "type": "string"
2132
+ }
2133
+ }
2134
+ },
2135
+ "__SavedQueriesConfig": {
2136
+ "type": "object",
2137
+ "properties": {
2138
+ "cache": {
2139
+ "anyOf": [
2140
+ {
2141
+ "$ref": "#/definitions/___SavedQueriesConfigCache"
2142
+ },
2143
+ {
2144
+ "type": "null"
2145
+ }
2146
+ ]
2147
+ },
2148
+ "enabled": {
2149
+ "anyOf": [
2150
+ {
2151
+ "$ref": "#/definitions/BooleanOrJinjaString"
2152
+ },
2153
+ {
2154
+ "type": "null"
2155
+ }
2156
+ ]
2157
+ },
2158
+ "meta": true
2159
+ },
2160
+ "additionalProperties": false
2161
+ },
2162
+ "__SeedsConfig": {
2163
+ "type": "object",
2164
+ "properties": {
2165
+ "column_types": true,
2166
+ "copy_grants": {
2167
+ "anyOf": [
2168
+ {
2169
+ "$ref": "#/definitions/BooleanOrJinjaString"
2170
+ },
2171
+ {
2172
+ "type": "null"
2173
+ }
2174
+ ]
2175
+ },
2176
+ "database": {
2177
+ "type": [
2178
+ "string",
2179
+ "null"
2180
+ ]
2181
+ },
2182
+ "enabled": {
2183
+ "anyOf": [
2184
+ {
2185
+ "$ref": "#/definitions/BooleanOrJinjaString"
2186
+ },
2187
+ {
2188
+ "type": "null"
2189
+ }
2190
+ ]
2191
+ },
2192
+ "grants": true,
2193
+ "quote_columns": {
2194
+ "anyOf": [
2195
+ {
2196
+ "$ref": "#/definitions/BooleanOrJinjaString"
2197
+ },
2198
+ {
2199
+ "type": "null"
2200
+ }
2201
+ ]
2202
+ },
2203
+ "schema": {
2204
+ "type": [
2205
+ "string",
2206
+ "null"
2207
+ ]
2208
+ }
2209
+ }
2210
+ },
2211
+ "__SemanticModelsDefaults": {
2212
+ "type": "object",
2213
+ "properties": {
2214
+ "agg_time_dimension": {
2215
+ "type": [
2216
+ "string",
2217
+ "null"
2218
+ ]
2219
+ }
2220
+ }
2221
+ },
2222
+ "__SnapshotsConfig": {
2223
+ "type": "object",
2224
+ "additionalProperties": false,
2225
+ "properties": {
2226
+ "alias": {
2227
+ "type": [
2228
+ "string",
2229
+ "null"
2230
+ ]
2231
+ },
2232
+ "check_cols": {
2233
+ "anyOf": [
2234
+ {
2235
+ "$ref": "#/definitions/StringOrArrayOfStrings"
2236
+ },
2237
+ {
2238
+ "type": "null"
2239
+ }
2240
+ ]
2241
+ },
2242
+ "dbt_valid_to_current": {
2243
+ "type": [
2244
+ "string",
2245
+ "null"
2246
+ ]
2247
+ },
2248
+ "enabled": {
2249
+ "anyOf": [
2250
+ {
2251
+ "$ref": "#/definitions/BooleanOrJinjaString"
2252
+ },
2253
+ {
2254
+ "type": "null"
2255
+ }
2256
+ ]
2257
+ },
2258
+ "grants": true,
2259
+ "meta": true,
2260
+ "persist_docs": {
2261
+ "anyOf": [
2262
+ {
2263
+ "$ref": "#/definitions/PersistDocsConfig"
2264
+ },
2265
+ {
2266
+ "type": "null"
2267
+ }
2268
+ ]
2269
+ },
2270
+ "post-hook": {
2271
+ "anyOf": [
2272
+ {
2273
+ "$ref": "#/definitions/Hooks"
2274
+ },
2275
+ {
2276
+ "type": "null"
2277
+ }
2278
+ ]
2279
+ },
2280
+ "pre-hook": {
2281
+ "anyOf": [
2282
+ {
2283
+ "$ref": "#/definitions/Hooks"
2284
+ },
2285
+ {
2286
+ "type": "null"
2287
+ }
2288
+ ]
2289
+ },
2290
+ "quote_columns": {
2291
+ "anyOf": [
2292
+ {
2293
+ "$ref": "#/definitions/BooleanOrJinjaString"
2294
+ },
2295
+ {
2296
+ "type": "null"
2297
+ }
2298
+ ]
2299
+ },
2300
+ "snapshot_meta_column_names": {
2301
+ "anyOf": [
2302
+ {
2303
+ "$ref": "#/definitions/___SnapshotsConfigSnapshotMetaColumnNames"
2304
+ },
2305
+ {
2306
+ "type": "null"
2307
+ }
2308
+ ]
2309
+ },
2310
+ "strategy": {
2311
+ "type": [
2312
+ "string",
2313
+ "null"
2314
+ ]
2315
+ },
2316
+ "tags": {
2317
+ "anyOf": [
2318
+ {
2319
+ "$ref": "#/definitions/StringOrArrayOfStrings"
2320
+ },
2321
+ {
2322
+ "type": "null"
2323
+ }
2324
+ ]
2325
+ },
2326
+ "target_database": {
2327
+ "type": [
2328
+ "string",
2329
+ "null"
2330
+ ]
2331
+ },
2332
+ "target_schema": {
2333
+ "type": [
2334
+ "string",
2335
+ "null"
2336
+ ]
2337
+ },
2338
+ "unique_key": {
2339
+ "anyOf": [
2340
+ {
2341
+ "$ref": "#/definitions/StringOrArrayOfStrings"
2342
+ },
2343
+ {
2344
+ "type": "null"
2345
+ }
2346
+ ]
2347
+ },
2348
+ "updated_at": {
2349
+ "type": [
2350
+ "string",
2351
+ "null"
2352
+ ]
2353
+ }
2354
+ }
2355
+ },
2356
+ "__SourcesQuoting": {
2357
+ "type": "object",
2358
+ "properties": {
2359
+ "database": {
2360
+ "anyOf": [
2361
+ {
2362
+ "$ref": "#/definitions/BooleanOrJinjaString"
2363
+ },
2364
+ {
2365
+ "type": "null"
2366
+ }
2367
+ ]
2368
+ },
2369
+ "identifier": {
2370
+ "anyOf": [
2371
+ {
2372
+ "$ref": "#/definitions/BooleanOrJinjaString"
2373
+ },
2374
+ {
2375
+ "type": "null"
2376
+ }
2377
+ ]
2378
+ },
2379
+ "schema": {
2380
+ "anyOf": [
2381
+ {
2382
+ "$ref": "#/definitions/BooleanOrJinjaString"
2383
+ },
2384
+ {
2385
+ "type": "null"
2386
+ }
2387
+ ]
2388
+ }
2389
+ }
2390
+ },
2391
+ "__TablesConfig": {
2392
+ "type": "object",
2393
+ "properties": {
2394
+ "event_time": {
2395
+ "type": [
2396
+ "string",
2397
+ "null"
2398
+ ]
2399
+ }
2400
+ },
2401
+ "additionalProperties": true
2402
+ },
2403
+ "__TablesQuoting": {
2404
+ "type": "object",
2405
+ "properties": {
2406
+ "database": {
2407
+ "anyOf": [
2408
+ {
2409
+ "$ref": "#/definitions/BooleanOrJinjaString"
2410
+ },
2411
+ {
2412
+ "type": "null"
2413
+ }
2414
+ ]
2415
+ },
2416
+ "identifier": {
2417
+ "anyOf": [
2418
+ {
2419
+ "$ref": "#/definitions/BooleanOrJinjaString"
2420
+ },
2421
+ {
2422
+ "type": "null"
2423
+ }
2424
+ ]
2425
+ },
2426
+ "schema": {
2427
+ "anyOf": [
2428
+ {
2429
+ "$ref": "#/definitions/BooleanOrJinjaString"
2430
+ },
2431
+ {
2432
+ "type": "null"
2433
+ }
2434
+ ]
2435
+ }
2436
+ }
2437
+ },
2438
+ "__UnitTestsConfig": {
2439
+ "type": "object",
2440
+ "additionalProperties": false,
2441
+ "properties": {
2442
+ "enabled": {
2443
+ "anyOf": [
2444
+ {
2445
+ "$ref": "#/definitions/BooleanOrJinjaString"
2446
+ },
2447
+ {
2448
+ "type": "null"
2449
+ }
2450
+ ]
2451
+ },
2452
+ "meta": true,
2453
+ "tags": {
2454
+ "anyOf": [
2455
+ {
2456
+ "$ref": "#/definitions/StringOrArrayOfStrings"
2457
+ },
2458
+ {
2459
+ "type": "null"
2460
+ }
2461
+ ]
2462
+ }
2463
+ }
2464
+ },
2465
+ "__UnitTestsExpect": {
2466
+ "type": "object",
2467
+ "properties": {
2468
+ "fixture": {
2469
+ "type": [
2470
+ "string",
2471
+ "null"
2472
+ ]
2473
+ },
2474
+ "format": {
2475
+ "type": [
2476
+ "string",
2477
+ "null"
2478
+ ]
2479
+ },
2480
+ "rows": true
2481
+ }
2482
+ },
2483
+ "__UnitTestsOverrides": {
2484
+ "type": "object",
2485
+ "properties": {
2486
+ "env_vars": true,
2487
+ "macros": true,
2488
+ "vars": true
2489
+ }
2490
+ },
2491
+ "___SavedQueriesConfigCache": {
2492
+ "type": "object",
2493
+ "properties": {
2494
+ "enabled": {
2495
+ "anyOf": [
2496
+ {
2497
+ "$ref": "#/definitions/BooleanOrJinjaString"
2498
+ },
2499
+ {
2500
+ "type": "null"
2501
+ }
2502
+ ]
2503
+ }
2504
+ }
2505
+ },
2506
+ "___SnapshotsConfigSnapshotMetaColumnNames": {
2507
+ "type": "object",
2508
+ "properties": {
2509
+ "dbt_scd_id": {
2510
+ "type": [
2511
+ "string",
2512
+ "null"
2513
+ ]
2514
+ },
2515
+ "dbt_updated_at": {
2516
+ "type": [
2517
+ "string",
2518
+ "null"
2519
+ ]
2520
+ },
2521
+ "dbt_valid_from": {
2522
+ "type": [
2523
+ "string",
2524
+ "null"
2525
+ ]
2526
+ },
2527
+ "dbt_valid_to": {
2528
+ "type": [
2529
+ "string",
2530
+ "null"
2531
+ ]
2532
+ }
2533
+ }
2534
+ }
2535
+ }
2536
+ }