Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions dbt_project.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,10 @@ vars:

claims_enabled: true
clinical_enabled: true
provider_attribution_enabled: true

hedis_measures_enabled: true

provider_attribution_enabled: false

## CMS HCC data mart vars
# Setting the payment year to year needed for the demo data
Expand All @@ -34,7 +37,7 @@ seeds:
appointment:
+post-hook: "{{ the_tuva_project.load_seed('tuva-public-resources/versioned_tuva_synthetic_data/0.15.0','appointment.csv',headers=true) }}"
eligibility:
+post-hook: "{{ the_tuva_project.load_seed('tuva-public-resources/versioned_tuva_synthetic_data/0.15.0','eligibility.csv',headers=true) }}"
+post-hook: "{{ the_tuva_project.load_seed('tuva-public-resources/versioned_tuva_synthetic_data/0.16.0','eligibility.csv',headers=true) }}"
immunization:
+post-hook: "{{ the_tuva_project.load_seed('tuva-public-resources/versioned_tuva_synthetic_data/0.15.0','immunization.csv',headers=true) }}"
lab_result:
Expand Down
4 changes: 2 additions & 2 deletions packages.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
packages:
- package: tuva-health/the_tuva_project
version: [">=0.15.0","<0.16.0"]
version: [">=0.15.0","<0.17.0"]
- package: dbt-labs/dbt_utils
version: [ ">=0.9.2" ]
version: [">=0.9.2"]
2 changes: 2 additions & 0 deletions seeds/_seeds.yml
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,8 @@ seeds:
{%- if target.type in ("bigquery", "databricks") -%} string {%- else -%} varchar(255) {%- endif -%}
medicare_status_code: |
{%- if target.type in ("bigquery", "databricks") -%} string {%- else -%} varchar(255) {%- endif -%}
enrollment_status: |
{%- if target.type in ("bigquery", "databricks") -%} string {%- else -%} varchar(255) {%- endif -%}
group_id: |
{%- if target.type in ("bigquery", "databricks") -%} string {%- else -%} varchar(255) {%- endif -%}
group_name: |
Expand Down
2 changes: 1 addition & 1 deletion seeds/eligibility.csv
Original file line number Diff line number Diff line change
@@ -1 +1 @@
person_id,member_id,subscriber_id,gender,race,birth_date,death_date,death_flag,enrollment_start_date,enrollment_end_date,payer,payer_type,plan,original_reason_entitlement_code,dual_status_code,medicare_status_code,group_id,group_name,name_suffix,first_name,middle_name,last_name,social_security_number,subscriber_relation,address,city,state,zip_code,phone,email,ethnicity,data_source,file_name,file_date,ingest_datetime
person_id,member_id,subscriber_id,gender,race,birth_date,death_date,death_flag,enrollment_start_date,enrollment_end_date,payer,payer_type,plan,original_reason_entitlement_code,dual_status_code,medicare_status_code,group_id,group_name,name_suffix,first_name,middle_name,last_name,social_security_number,subscriber_relation,address,city,state,zip_code,phone,email,ethnicity,data_source,file_name,file_date,ingest_datetime,hospice_flag,institutional_snp_flag,long_term_institutional_flag,enrollment_status
Loading