-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathdbt_project.yml
More file actions
92 lines (82 loc) · 2.64 KB
/
dbt_project.yml
File metadata and controls
92 lines (82 loc) · 2.64 KB
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
config-version: 2
name: 'edu_edfi_source'
version: '0.6.2'
require-dbt-version: [">=1.0.0", "<2.0.0"]
# This setting configures which "profile" dbt uses for this project.
profile: 'edu_edfi_source'
model-paths: ["models"]
analysis-paths: ["analyses"]
test-paths: ["tests"]
seed-paths: ["seeds"]
macro-paths: ["macros"]
snapshot-paths: ["snapshots"]
target-path: "target" # directory which will store compiled SQL files
clean-targets: # directories to be removed by `dbt clean`
- "target"
- "dbt_packages"
models:
edu_edfi_source:
+copy_grants: true
staging:
+schema: stage
edfi_3:
base:
+materialized: view
intermediate:
+materialized: ephemeral
int_ef3__deduped_descriptors:
+materialized: table
+tags: ['bypass_rls']
stage:
+materialized: table
tpdm:
base:
+materialized: view
stage:
+materialized: table
sedm:
base:
+materialized: view
stage:
+materialized: table
vars:
extensions: null
predefined_extensions:
tpdm:
stg_ef3__credentials:
tpdm_certification_route_descriptor:
name: 'tpdm:certificationRouteDescriptor'
dtype: 'varchar'
tpdm_credential_status_descriptor:
name: 'tpdm:credentialStatusDescriptor'
dtype: 'varchar'
tpdm_educator_role_descriptor:
name: 'tpdm:educatorRoleDescriptor'
dtype: 'varchar'
tpdm_board_certification_indicator:
name: 'tpdm:boardCertificationIndicator'
dtype: 'boolean'
tpdm_credential_certification_title:
name: 'tpdm:certificationTitle'
dtype: 'varchar'
tpdm_credential_status_date:
name: 'tpdm:credentialStatusDate'
dtype: 'timestamp'
tpdm_person_reference_person_id:
name: 'tpdm:personReference:PersonId'
dtype: 'varchar'
tpdm_v_student_academic_records:
name: 'tpdm:studentAcademicRecords'
dtype: 'variant'
stg_ef3__schools:
tpdm_post_secondary_institution_reference_post_secondary_institution_id:
name: 'tpdm:postSecondaryInstitutionReference:postSecondaryInstitutionId'
dtype: 'int'
stg_ef3__survey_responses:
tpdm_person_reference_person_id:
name: 'tpdm:personReference:PersonId'
dtype: 'varchar'
# student discipline participation codes that map to non-offenders
'edu:discipline:non_offender_codes': ['Victim', 'Witness', 'Reporter']
# epdm extension default disabled
'src:predefined_extensions:tpdm:enabled': False