-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathdbt_project.yml
63 lines (57 loc) · 1.2 KB
/
dbt_project.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
name: "synthea_omop_etl"
version: "0.1.0"
config-version: 2
profile: "synthea_omop_etl"
asset-paths: ["assets"]
docs-paths: ["docs"]
model-paths: ["models"]
analysis-paths: ["analyses"]
test-paths: ["tests"]
seed-paths: ["seeds"]
macro-paths: ["macros"]
snapshot-paths: ["snapshots"]
clean-targets: # directories to be removed by `dbt clean`
- "target"
vars:
seed_source: true
models:
synthea_omop_etl:
intermediate:
+materialized: table
+docs:
node_color: '#FBC511'
omop:
+materialized: table
+docs:
node_color: '#EB6622'
staging:
synthea:
+materialized: view
+docs:
node_color: '#336B91'
vocabulary:
+materialized: view
+docs:
node_color: '#336B91'
map:
+materialized: view
+docs:
node_color: '#336B91'
seeds:
+quote_columns: true
synthea_omop_etl:
map:
+enabled: true
+schema: map_seeds
+docs:
node_color: '#69AED5'
vocabulary:
+enabled: true
+schema: vocab_seeds
+docs:
node_color: '#69AED5'
synthea:
+enabled: true
+schema: synthea_seeds
+docs:
node_color: '#69AED5'