-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdbt_project.yml
59 lines (47 loc) · 2.98 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
name: 'bcda_demo'
version: '1.0.0'
config-version: 2
profile: default
vars:
use_synthetic_data: true
input_database: bcda_synthetic
input_schema: raw_data
bcda_coverage_file_prefix: fhir_input\\\\coverage_
claims_enabled: true
model-paths: ["models"]
analysis-paths: ["analyses"]
test-paths: ["tests"]
seed-paths: ["seeds"]
macro-paths: ["macros"]
snapshot-paths: ["snapshots"]
clean-targets:
- "target"
- "dbt_packages"
seeds:
bcda_demo:
coverage_seed:
+post-hook: "{{ the_tuva_project.load_seed('tuva-public-resources/bcda_synthetic_large_advanced/august_2024','coverage.csv',headers=true) }}"
coverage_extension_seed:
+post-hook: "{{ the_tuva_project.load_seed('tuva-public-resources/bcda_synthetic_large_advanced/august_2024','coverage_extension.csv',headers=true) }}"
explanationofbenefit_seed:
+post-hook: "{{ the_tuva_project.load_seed('tuva-public-resources/bcda_synthetic_large_advanced/august_2024','explanation.csv',headers=true) }}"
explanationofbenefit_benefitbalance_0_financial_seed:
+post-hook: "{{ the_tuva_project.load_seed('tuva-public-resources/bcda_synthetic_large_advanced/august_2024','explanation_benefitBalance.0.financial.csv',headers=true) }}"
explanationofbenefit_careteam_seed:
+post-hook: "{{ the_tuva_project.load_seed('tuva-public-resources/bcda_synthetic_large_advanced/august_2024','explanation_careTeam.csv',headers=true) }}"
explanationofbenefit_diagnosis_seed:
+post-hook: "{{ the_tuva_project.load_seed('tuva-public-resources/bcda_synthetic_large_advanced/august_2024','explanation_diagnosis.csv',headers=true) }}"
explanationofbenefit_extension_seed:
+post-hook: "{{ the_tuva_project.load_seed('tuva-public-resources/bcda_synthetic_large_advanced/august_2024','explanation_extension.csv',headers=true) }}"
explanationofbenefit_item_0_adjudication_seed:
+post-hook: "{{ the_tuva_project.load_seed('tuva-public-resources/bcda_synthetic_large_advanced/august_2024','explanation_item.0.adjudication.csv',headers=true) }}"
explanationofbenefit_item_0_extension_seed:
+post-hook: "{{ the_tuva_project.load_seed('tuva-public-resources/bcda_synthetic_large_advanced/august_2024','explanation_item.0.extension.csv',headers=true) }}"
explanationofbenefit_procedure_seed:
+post-hook: "{{ the_tuva_project.load_seed('tuva-public-resources/bcda_synthetic_large_advanced/august_2024','explanation_procedure.csv',headers=true) }}"
explanationofbenefit_supportinginfo_seed:
+post-hook: "{{ the_tuva_project.load_seed('tuva-public-resources/bcda_synthetic_large_advanced/august_2024','explanation_supportingInfo.csv',headers=true) }}"
patient_seed:
+post-hook: "{{ the_tuva_project.load_seed('tuva-public-resources/bcda_synthetic_large_advanced/august_2024','patient.csv',headers=true) }}"
patient_identifier_seed:
+post-hook: "{{ the_tuva_project.load_seed('tuva-public-resources/bcda_synthetic_large_advanced/august_2024','patient_identifier.csv',headers=true) }}"