From a3fdbd671a4d20dabb90bf6f53f080381bb225d6 Mon Sep 17 00:00:00 2001 From: fivetran-catfritz <111930712+fivetran-catfritz@users.noreply.github.com> Date: Mon, 29 Apr 2024 14:21:38 -0500 Subject: [PATCH 1/4] Update stg_qualtrics__survey_response.sql --- models/stg_qualtrics__survey_response.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/models/stg_qualtrics__survey_response.sql b/models/stg_qualtrics__survey_response.sql index a6d638b..9c9f1e5 100644 --- a/models/stg_qualtrics__survey_response.sql +++ b/models/stg_qualtrics__survey_response.sql @@ -29,7 +29,7 @@ final as ( distribution_channel, duration_in_seconds, cast(end_date as {{ dbt.type_timestamp() }}) as finished_at, - cast(finished as {{ dbt.type_boolean() }}) as is_finished, + cast(case when finished = 0 then false else true end as {{ dbt.type_boolean() }}) as is_finished, id as response_id, ip_address, cast(last_modified_date as {{ dbt.type_timestamp() }}) as last_modified_at, From a64e0881c0d6532fe1c29c86dc8c14c73fbde9af Mon Sep 17 00:00:00 2001 From: fivetran-catfritz <111930712+fivetran-catfritz@users.noreply.github.com> Date: Mon, 29 Apr 2024 14:37:50 -0500 Subject: [PATCH 2/4] bugfix/cast-to-boolean --- CHANGELOG.md | 11 +++++++++++ dbt_project.yml | 2 +- integration_tests/dbt_project.yml | 2 +- integration_tests/seeds/survey_response.csv | 2 +- models/stg_qualtrics__survey_response.sql | 2 +- 5 files changed, 15 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f59b2a3..8f3b780 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,14 @@ +# v0.2.1 dbt_qualtrics_source + +[PR #6](https://github.com/fivetran/dbt_qualtrics_source/pull/6) includes the following updates: + +## Bug Fix +- Updated model `stg_qualtrics__survey_response` to use a case statement to determine the `is_finished` boolean value instead of a straight cast to boolean. + - This is necessary for warehouses that do not support the straight cast. + +## Under the Hood +- Updated the seed `survey_response_data` to test both possible values for `finished`. + # v0.2.0 dbt_qualtrics_source [PR #5](https://github.com/fivetran/dbt_qualtrics_source/pull/5) includes the following updates: diff --git a/dbt_project.yml b/dbt_project.yml index 7ec5177..014efca 100644 --- a/dbt_project.yml +++ b/dbt_project.yml @@ -1,5 +1,5 @@ name: 'qualtrics_source' -version: '0.2.0' +version: '0.2.1' config-version: 2 require-dbt-version: [">=1.3.0", "<2.0.0"] diff --git a/integration_tests/dbt_project.yml b/integration_tests/dbt_project.yml index 15cea8f..0aab8ea 100644 --- a/integration_tests/dbt_project.yml +++ b/integration_tests/dbt_project.yml @@ -1,5 +1,5 @@ name: 'qualtrics_source_integration_tests' -version: '0.2.0' +version: '0.2.1' profile: 'integration_tests' config-version: 2 diff --git a/integration_tests/seeds/survey_response.csv b/integration_tests/seeds/survey_response.csv index 1924c50..0536faf 100644 --- a/integration_tests/seeds/survey_response.csv +++ b/integration_tests/seeds/survey_response.csv @@ -3,4 +3,4 @@ R_3e9aZTqhcgXRH0o,2023-05-02 00:11:25.529000,email,9,2022-12-07 08:59:21.000000, R_2DUphVbjGZGkvkg,2023-05-02 00:11:13.034000,anonymous,118,2022-10-17 10:52:34.000000,0,182.69.177.103,2022-10-24 10:52:34.000000,,,12,,,,2022-10-24 10:52:34.000000,2022-10-17 10:50:36.000000,0,SV_6Jcja72TpOiHjdX,EN R_1LIOcMY4EdVCU3r,2023-05-02 00:11:25.566000,anonymous,26,2022-12-07 10:04:28.000000,0,182.69.177.44,2022-12-14 10:04:31.000000,,,20,,,,2022-12-14 10:04:31.000000,2022-12-07 10:04:01.000000,0,SV_6Jcja72TpOiHjdX,EN R_3q9HmgV7GfTQP6o,2023-05-02 00:11:25.381000,anonymous,8,2022-10-19 13:38:21.000000,0,49.204.210.134,2022-12-07 07:58:37.000000,,,32,,,,2022-10-26 14:47:34.000000,2022-10-19 13:38:13.000000,0,SV_6Jcja72TpOiHjdX,EN -R_3lDZ9xxqR5Ptexd,2023-05-02 00:11:43.953000,email,32,2023-02-28 12:40:15.000000,0,122.162.147.254,2023-03-21 12:47:06.000000,,,23,jatin.aggarwal1406@gmail.com,Jatin,Aggarwak=l,2023-02-28 12:44:17.000000,2023-02-28 12:39:43.000000,0,SV_6Jcja72TpOiHjdX,EN \ No newline at end of file +R_3lDZ9xxqR5Ptexd,2023-05-02 00:11:43.953000,email,32,2023-02-28 12:40:15.000000,1,122.162.147.254,2023-03-21 12:47:06.000000,,,23,jatin.aggarwal1406@gmail.com,Jatin,Aggarwak=l,2023-02-28 12:44:17.000000,2023-02-28 12:39:43.000000,0,SV_6Jcja72TpOiHjdX,EN \ No newline at end of file diff --git a/models/stg_qualtrics__survey_response.sql b/models/stg_qualtrics__survey_response.sql index 9c9f1e5..cf8651a 100644 --- a/models/stg_qualtrics__survey_response.sql +++ b/models/stg_qualtrics__survey_response.sql @@ -29,7 +29,7 @@ final as ( distribution_channel, duration_in_seconds, cast(end_date as {{ dbt.type_timestamp() }}) as finished_at, - cast(case when finished = 0 then false else true end as {{ dbt.type_boolean() }}) as is_finished, + cast(case when finished = 1 then true else false end as {{ dbt.type_boolean() }}) as is_finished, id as response_id, ip_address, cast(last_modified_date as {{ dbt.type_timestamp() }}) as last_modified_at, From 4d0c716ed6583e3e5ec7b5f419156c2a58799acf Mon Sep 17 00:00:00 2001 From: fivetran-catfritz <111930712+fivetran-catfritz@users.noreply.github.com> Date: Mon, 29 Apr 2024 14:38:44 -0500 Subject: [PATCH 3/4] update changelog --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8f3b780..9f865ec 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,7 +7,7 @@ - This is necessary for warehouses that do not support the straight cast. ## Under the Hood -- Updated the seed `survey_response_data` to test both possible values for `finished`. +- Updated the integration tests seed `survey_response` to test both possible values for `finished`. # v0.2.0 dbt_qualtrics_source From 580938f0f30ba55a3503b7463a3f4393e0721da7 Mon Sep 17 00:00:00 2001 From: fivetran-catfritz <111930712+fivetran-catfritz@users.noreply.github.com> Date: Mon, 29 Apr 2024 14:42:21 -0500 Subject: [PATCH 4/4] regen docs --- docs/catalog.json | 2 +- docs/index.html | 2 +- docs/manifest.json | 2 +- docs/run_results.json | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/catalog.json b/docs/catalog.json index 2150883..41f3219 100644 --- a/docs/catalog.json +++ b/docs/catalog.json @@ -1 +1 @@ -{"metadata": {"dbt_schema_version": "https://schemas.getdbt.com/dbt/catalog/v1.json", "dbt_version": "1.7.10", "generated_at": "2024-03-22T19:55:41.427611Z", "invocation_id": "a8724f2c-3ab8-47dc-a85e-17ac333dfaf6", "env": {}}, "nodes": {"seed.qualtrics_source_integration_tests.block": {"metadata": {"type": "BASE TABLE", "schema": "qualtrics_source_integration_tests", "name": "block", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "text", "index": 1, "name": "id", "comment": null}, "survey_id": {"type": "text", "index": 2, "name": "survey_id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 3, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 4, "name": "_fivetran_synced", "comment": null}, "block_locking": {"type": "integer", "index": 5, "name": "block_locking", "comment": null}, "block_visibility": {"type": "integer", "index": 6, "name": "block_visibility", "comment": null}, "description": {"type": "text", "index": 7, "name": "description", "comment": null}, "randomize_questions": {"type": "integer", "index": 8, "name": "randomize_questions", "comment": null}, "type": {"type": "text", "index": 9, "name": "type", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.qualtrics_source_integration_tests.block"}, "seed.qualtrics_source_integration_tests.block_question": {"metadata": {"type": "BASE TABLE", "schema": "qualtrics_source_integration_tests", "name": "block_question", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"block_id": {"type": "text", "index": 1, "name": "block_id", "comment": null}, "question_id": {"type": "text", "index": 2, "name": "question_id", "comment": null}, "survey_id": {"type": "text", "index": 3, "name": "survey_id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 4, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 5, "name": "_fivetran_synced", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.qualtrics_source_integration_tests.block_question"}, "seed.qualtrics_source_integration_tests.contact_mailing_list_membership": {"metadata": {"type": "BASE TABLE", "schema": "qualtrics_source_integration_tests", "name": "contact_mailing_list_membership", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"contact_lookup_id": {"type": "text", "index": 1, "name": "contact_lookup_id", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 2, "name": "_fivetran_synced", "comment": null}, "contact_id": {"type": "text", "index": 3, "name": "contact_id", "comment": null}, "directory_id": {"type": "text", "index": 4, "name": "directory_id", "comment": null}, "mailing_list_id": {"type": "text", "index": 5, "name": "mailing_list_id", "comment": null}, "name": {"type": "text", "index": 6, "name": "name", "comment": null}, "owner_id": {"type": "text", "index": 7, "name": "owner_id", "comment": null}, "unsubscribe_date": {"type": "integer", "index": 8, "name": "unsubscribe_date", "comment": null}, "unsubscribed": {"type": "boolean", "index": 9, "name": "unsubscribed", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.qualtrics_source_integration_tests.contact_mailing_list_membership"}, "seed.qualtrics_source_integration_tests.directory": {"metadata": {"type": "BASE TABLE", "schema": "qualtrics_source_integration_tests", "name": "directory", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "text", "index": 1, "name": "id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 2, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "deduplication_criteria_email": {"type": "boolean", "index": 4, "name": "deduplication_criteria_email", "comment": null}, "deduplication_criteria_external_data_reference": {"type": "boolean", "index": 5, "name": "deduplication_criteria_external_data_reference", "comment": null}, "deduplication_criteria_first_name": {"type": "boolean", "index": 6, "name": "deduplication_criteria_first_name", "comment": null}, "deduplication_criteria_last_name": {"type": "boolean", "index": 7, "name": "deduplication_criteria_last_name", "comment": null}, "deduplication_criteria_phone": {"type": "boolean", "index": 8, "name": "deduplication_criteria_phone", "comment": null}, "is_default": {"type": "boolean", "index": 9, "name": "is_default", "comment": null}, "name": {"type": "text", "index": 10, "name": "name", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.qualtrics_source_integration_tests.directory"}, "seed.qualtrics_source_integration_tests.directory_contact": {"metadata": {"type": "BASE TABLE", "schema": "qualtrics_source_integration_tests", "name": "directory_contact", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"directory_id": {"type": "text", "index": 1, "name": "directory_id", "comment": null}, "id": {"type": "text", "index": 2, "name": "id", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "creation_date": {"type": "text", "index": 4, "name": "creation_date", "comment": null}, "directory_unsubscribe_date": {"type": "timestamp without time zone", "index": 5, "name": "directory_unsubscribe_date", "comment": null}, "directory_unsubscribed": {"type": "boolean", "index": 6, "name": "directory_unsubscribed", "comment": null}, "email": {"type": "text", "index": 7, "name": "email", "comment": null}, "email_domain": {"type": "text", "index": 8, "name": "email_domain", "comment": null}, "embedded_data_last_active_time": {"type": "integer", "index": 9, "name": "embedded_data_last_active_time", "comment": null}, "embedded_data_last_response_date": {"type": "integer", "index": 10, "name": "embedded_data_last_response_date", "comment": null}, "embedded_data_login_date": {"type": "integer", "index": 11, "name": "embedded_data_login_date", "comment": null}, "ext_ref": {"type": "integer", "index": 12, "name": "ext_ref", "comment": null}, "first_name": {"type": "text", "index": 13, "name": "first_name", "comment": null}, "language": {"type": "integer", "index": 14, "name": "language", "comment": null}, "last_modified": {"type": "text", "index": 15, "name": "last_modified", "comment": null}, "last_name": {"type": "text", "index": 16, "name": "last_name", "comment": null}, "phone": {"type": "character varying", "index": 17, "name": "phone", "comment": null}, "write_blanks": {"type": "integer", "index": 18, "name": "write_blanks", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.qualtrics_source_integration_tests.directory_contact"}, "seed.qualtrics_source_integration_tests.directory_mailing_list": {"metadata": {"type": "BASE TABLE", "schema": "qualtrics_source_integration_tests", "name": "directory_mailing_list", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"directory_id": {"type": "text", "index": 1, "name": "directory_id", "comment": null}, "id": {"type": "text", "index": 2, "name": "id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 3, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 4, "name": "_fivetran_synced", "comment": null}, "creation_date": {"type": "text", "index": 5, "name": "creation_date", "comment": null}, "last_modified_date": {"type": "text", "index": 6, "name": "last_modified_date", "comment": null}, "name": {"type": "text", "index": 7, "name": "name", "comment": null}, "owner_id": {"type": "text", "index": 8, "name": "owner_id", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.qualtrics_source_integration_tests.directory_mailing_list"}, "seed.qualtrics_source_integration_tests.distribution": {"metadata": {"type": "BASE TABLE", "schema": "qualtrics_source_integration_tests", "name": "distribution", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "text", "index": 1, "name": "id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 2, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "created_date": {"type": "text", "index": 4, "name": "created_date", "comment": null}, "header_from_email": {"type": "text", "index": 5, "name": "header_from_email", "comment": null}, "header_from_name": {"type": "text", "index": 6, "name": "header_from_name", "comment": null}, "header_reply_to_email": {"type": "text", "index": 7, "name": "header_reply_to_email", "comment": null}, "header_subject": {"type": "text", "index": 8, "name": "header_subject", "comment": null}, "message_library_id": {"type": "integer", "index": 9, "name": "message_library_id", "comment": null}, "message_message_id": {"type": "integer", "index": 10, "name": "message_message_id", "comment": null}, "message_message_text": {"type": "integer", "index": 11, "name": "message_message_text", "comment": null}, "modified_date": {"type": "text", "index": 12, "name": "modified_date", "comment": null}, "organization_id": {"type": "text", "index": 13, "name": "organization_id", "comment": null}, "owner_id": {"type": "text", "index": 14, "name": "owner_id", "comment": null}, "parent_distribution_id": {"type": "integer", "index": 15, "name": "parent_distribution_id", "comment": null}, "recipient_contact_id": {"type": "text", "index": 16, "name": "recipient_contact_id", "comment": null}, "recipient_library_id": {"type": "text", "index": 17, "name": "recipient_library_id", "comment": null}, "recipient_mailing_list_id": {"type": "text", "index": 18, "name": "recipient_mailing_list_id", "comment": null}, "recipient_sample_id": {"type": "text", "index": 19, "name": "recipient_sample_id", "comment": null}, "request_status": {"type": "text", "index": 20, "name": "request_status", "comment": null}, "request_type": {"type": "text", "index": 21, "name": "request_type", "comment": null}, "send_date": {"type": "text", "index": 22, "name": "send_date", "comment": null}, "survey_link_expiration_date": {"type": "text", "index": 23, "name": "survey_link_expiration_date", "comment": null}, "survey_link_link_type": {"type": "text", "index": 24, "name": "survey_link_link_type", "comment": null}, "survey_link_survey_id": {"type": "text", "index": 25, "name": "survey_link_survey_id", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.qualtrics_source_integration_tests.distribution"}, "seed.qualtrics_source_integration_tests.distribution_contact": {"metadata": {"type": "BASE TABLE", "schema": "qualtrics_source_integration_tests", "name": "distribution_contact", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"contact_id": {"type": "text", "index": 1, "name": "contact_id", "comment": null}, "distribution_id": {"type": "text", "index": 2, "name": "distribution_id", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "contact_frequency_rule_id": {"type": "integer", "index": 4, "name": "contact_frequency_rule_id", "comment": null}, "contact_lookup_id": {"type": "text", "index": 5, "name": "contact_lookup_id", "comment": null}, "opened_at": {"type": "text", "index": 6, "name": "opened_at", "comment": null}, "response_completed_at": {"type": "timestamp without time zone", "index": 7, "name": "response_completed_at", "comment": null}, "response_id": {"type": "integer", "index": 8, "name": "response_id", "comment": null}, "response_started_at": {"type": "timestamp without time zone", "index": 9, "name": "response_started_at", "comment": null}, "sent_at": {"type": "text", "index": 10, "name": "sent_at", "comment": null}, "status": {"type": "text", "index": 11, "name": "status", "comment": null}, "survey_link": {"type": "text", "index": 12, "name": "survey_link", "comment": null}, "survey_session_id": {"type": "integer", "index": 13, "name": "survey_session_id", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.qualtrics_source_integration_tests.distribution_contact"}, "seed.qualtrics_source_integration_tests.question": {"metadata": {"type": "BASE TABLE", "schema": "qualtrics_source_integration_tests", "name": "question", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "text", "index": 1, "name": "id", "comment": null}, "survey_id": {"type": "text", "index": 2, "name": "survey_id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 3, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 4, "name": "_fivetran_synced", "comment": null}, "data_export_tag": {"type": "text", "index": 5, "name": "data_export_tag", "comment": null}, "data_visibility_hidden": {"type": "boolean", "index": 6, "name": "data_visibility_hidden", "comment": null}, "data_visibility_private": {"type": "boolean", "index": 7, "name": "data_visibility_private", "comment": null}, "next_answer_id": {"type": "integer", "index": 8, "name": "next_answer_id", "comment": null}, "next_choice_id": {"type": "integer", "index": 9, "name": "next_choice_id", "comment": null}, "question_description": {"type": "text", "index": 10, "name": "question_description", "comment": null}, "question_description_option": {"type": "text", "index": 11, "name": "question_description_option", "comment": null}, "question_text": {"type": "text", "index": 12, "name": "question_text", "comment": null}, "question_text_unsafe": {"type": "text", "index": 13, "name": "question_text_unsafe", "comment": null}, "question_type": {"type": "text", "index": 14, "name": "question_type", "comment": null}, "selector": {"type": "text", "index": 15, "name": "selector", "comment": null}, "sub_selector": {"type": "text", "index": 16, "name": "sub_selector", "comment": null}, "validation_setting_force_response": {"type": "integer", "index": 17, "name": "validation_setting_force_response", "comment": null}, "validation_setting_force_response_type": {"type": "integer", "index": 18, "name": "validation_setting_force_response_type", "comment": null}, "validation_setting_type": {"type": "text", "index": 19, "name": "validation_setting_type", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.qualtrics_source_integration_tests.question"}, "seed.qualtrics_source_integration_tests.question_option": {"metadata": {"type": "BASE TABLE", "schema": "qualtrics_source_integration_tests", "name": "question_option", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"key": {"type": "integer", "index": 1, "name": "key", "comment": null}, "question_id": {"type": "text", "index": 2, "name": "question_id", "comment": null}, "survey_id": {"type": "text", "index": 3, "name": "survey_id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 4, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 5, "name": "_fivetran_synced", "comment": null}, "recode_value": {"type": "integer", "index": 6, "name": "recode_value", "comment": null}, "text": {"type": "text", "index": 7, "name": "text", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.qualtrics_source_integration_tests.question_option"}, "seed.qualtrics_source_integration_tests.question_response": {"metadata": {"type": "BASE TABLE", "schema": "qualtrics_source_integration_tests", "name": "question_response", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"_fivetran_id": {"type": "text", "index": 1, "name": "_fivetran_id", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 2, "name": "_fivetran_synced", "comment": null}, "loop_id": {"type": "integer", "index": 3, "name": "loop_id", "comment": null}, "question": {"type": "text", "index": 4, "name": "question", "comment": null}, "question_id": {"type": "text", "index": 5, "name": "question_id", "comment": null}, "question_option_key": {"type": "integer", "index": 6, "name": "question_option_key", "comment": null}, "response_id": {"type": "text", "index": 7, "name": "response_id", "comment": null}, "sub_question_key": {"type": "integer", "index": 8, "name": "sub_question_key", "comment": null}, "sub_question_text": {"type": "integer", "index": 9, "name": "sub_question_text", "comment": null}, "value": {"type": "integer", "index": 10, "name": "value", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.qualtrics_source_integration_tests.question_response"}, "seed.qualtrics_source_integration_tests.sub_question": {"metadata": {"type": "BASE TABLE", "schema": "qualtrics_source_integration_tests", "name": "sub_question", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"key": {"type": "integer", "index": 1, "name": "key", "comment": null}, "question_id": {"type": "text", "index": 2, "name": "question_id", "comment": null}, "survey_id": {"type": "text", "index": 3, "name": "survey_id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 4, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 5, "name": "_fivetran_synced", "comment": null}, "choice_data_export_tag": {"type": "integer", "index": 6, "name": "choice_data_export_tag", "comment": null}, "text": {"type": "text", "index": 7, "name": "text", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.qualtrics_source_integration_tests.sub_question"}, "seed.qualtrics_source_integration_tests.survey": {"metadata": {"type": "BASE TABLE", "schema": "qualtrics_source_integration_tests", "name": "survey", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "text", "index": 1, "name": "id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 2, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "auto_scoring_category": {"type": "integer", "index": 4, "name": "auto_scoring_category", "comment": null}, "brand_base_url": {"type": "text", "index": 5, "name": "brand_base_url", "comment": null}, "brand_id": {"type": "text", "index": 6, "name": "brand_id", "comment": null}, "bundle_short_name": {"type": "integer", "index": 7, "name": "bundle_short_name", "comment": null}, "composition_type": {"type": "integer", "index": 8, "name": "composition_type", "comment": null}, "creator_id": {"type": "integer", "index": 9, "name": "creator_id", "comment": null}, "default_scoring_category": {"type": "integer", "index": 10, "name": "default_scoring_category", "comment": null}, "division_id": {"type": "integer", "index": 11, "name": "division_id", "comment": null}, "is_active": {"type": "integer", "index": 12, "name": "is_active", "comment": null}, "last_accessed": {"type": "timestamp without time zone", "index": 13, "name": "last_accessed", "comment": null}, "last_activated": {"type": "text", "index": 14, "name": "last_activated", "comment": null}, "last_modified": {"type": "text", "index": 15, "name": "last_modified", "comment": null}, "option_active_response_set": {"type": "text", "index": 16, "name": "option_active_response_set", "comment": null}, "option_anonymize_response": {"type": "integer", "index": 17, "name": "option_anonymize_response", "comment": null}, "option_auto_confirm_start": {"type": "integer", "index": 18, "name": "option_auto_confirm_start", "comment": null}, "option_autoadvance": {"type": "boolean", "index": 19, "name": "option_autoadvance", "comment": null}, "option_autoadvance_pages": {"type": "boolean", "index": 20, "name": "option_autoadvance_pages", "comment": null}, "option_autofocus": {"type": "boolean", "index": 21, "name": "option_autofocus", "comment": null}, "option_available_languages": {"type": "integer", "index": 22, "name": "option_available_languages", "comment": null}, "option_back_button": {"type": "boolean", "index": 23, "name": "option_back_button", "comment": null}, "option_ballot_box_stuffing_prevention": {"type": "boolean", "index": 24, "name": "option_ballot_box_stuffing_prevention", "comment": null}, "option_collect_geo_location": {"type": "integer", "index": 25, "name": "option_collect_geo_location", "comment": null}, "option_confirm_start": {"type": "integer", "index": 26, "name": "option_confirm_start", "comment": null}, "option_custom_styles": {"type": "text", "index": 27, "name": "option_custom_styles", "comment": null}, "option_email_thank_you": {"type": "integer", "index": 28, "name": "option_email_thank_you", "comment": null}, "option_eosredirect_url": {"type": "integer", "index": 29, "name": "option_eosredirect_url", "comment": null}, "option_highlight_questions": {"type": "text", "index": 30, "name": "option_highlight_questions", "comment": null}, "option_inactive_survey": {"type": "integer", "index": 31, "name": "option_inactive_survey", "comment": null}, "option_new_scoring": {"type": "integer", "index": 32, "name": "option_new_scoring", "comment": null}, "option_next_button": {"type": "text", "index": 33, "name": "option_next_button", "comment": null}, "option_no_index": {"type": "text", "index": 34, "name": "option_no_index", "comment": null}, "option_page_transition": {"type": "text", "index": 35, "name": "option_page_transition", "comment": null}, "option_partial_data": {"type": "text", "index": 36, "name": "option_partial_data", "comment": null}, "option_partial_data_close_after": {"type": "integer", "index": 37, "name": "option_partial_data_close_after", "comment": null}, "option_password_protection": {"type": "integer", "index": 38, "name": "option_password_protection", "comment": null}, "option_previous_button": {"type": "text", "index": 39, "name": "option_previous_button", "comment": null}, "option_progress_bar_display": {"type": "text", "index": 40, "name": "option_progress_bar_display", "comment": null}, "option_protect_selection_ids": {"type": "integer", "index": 41, "name": "option_protect_selection_ids", "comment": null}, "option_recaptcha_v_3": {"type": "integer", "index": 42, "name": "option_recaptcha_v_3", "comment": null}, "option_referer_check": {"type": "integer", "index": 43, "name": "option_referer_check", "comment": null}, "option_referer_url": {"type": "integer", "index": 44, "name": "option_referer_url", "comment": null}, "option_relevant_id": {"type": "integer", "index": 45, "name": "option_relevant_id", "comment": null}, "option_relevant_idlockout_period": {"type": "integer", "index": 46, "name": "option_relevant_idlockout_period", "comment": null}, "option_response_summary": {"type": "integer", "index": 47, "name": "option_response_summary", "comment": null}, "option_save_and_continue": {"type": "boolean", "index": 48, "name": "option_save_and_continue", "comment": null}, "option_secure_response_files": {"type": "boolean", "index": 49, "name": "option_secure_response_files", "comment": null}, "option_show_export_tags": {"type": "integer", "index": 50, "name": "option_show_export_tags", "comment": null}, "option_skin": {"type": "text", "index": 51, "name": "option_skin", "comment": null}, "option_skin_library": {"type": "text", "index": 52, "name": "option_skin_library", "comment": null}, "option_skin_question_width": {"type": "integer", "index": 53, "name": "option_skin_question_width", "comment": null}, "option_skin_type": {"type": "text", "index": 54, "name": "option_skin_type", "comment": null}, "option_survey_creation_date": {"type": "text", "index": 55, "name": "option_survey_creation_date", "comment": null}, "option_survey_expiration": {"type": "text", "index": 56, "name": "option_survey_expiration", "comment": null}, "option_survey_language": {"type": "text", "index": 57, "name": "option_survey_language", "comment": null}, "option_survey_meta_description": {"type": "integer", "index": 58, "name": "option_survey_meta_description", "comment": null}, "option_survey_name": {"type": "integer", "index": 59, "name": "option_survey_name", "comment": null}, "option_survey_protection": {"type": "text", "index": 60, "name": "option_survey_protection", "comment": null}, "option_survey_termination": {"type": "text", "index": 61, "name": "option_survey_termination", "comment": null}, "option_survey_title": {"type": "text", "index": 62, "name": "option_survey_title", "comment": null}, "option_validate_message": {"type": "integer", "index": 63, "name": "option_validate_message", "comment": null}, "owner_id": {"type": "text", "index": 64, "name": "owner_id", "comment": null}, "project_category": {"type": "text", "index": 65, "name": "project_category", "comment": null}, "project_type": {"type": "text", "index": 66, "name": "project_type", "comment": null}, "registry_sha": {"type": "integer", "index": 67, "name": "registry_sha", "comment": null}, "registry_version": {"type": "integer", "index": 68, "name": "registry_version", "comment": null}, "schema_version": {"type": "integer", "index": 69, "name": "schema_version", "comment": null}, "scoring_summary_after_questions": {"type": "boolean", "index": 70, "name": "scoring_summary_after_questions", "comment": null}, "scoring_summary_after_survey": {"type": "boolean", "index": 71, "name": "scoring_summary_after_survey", "comment": null}, "scoring_summary_category": {"type": "integer", "index": 72, "name": "scoring_summary_category", "comment": null}, "survey_name": {"type": "text", "index": 73, "name": "survey_name", "comment": null}, "survey_status": {"type": "text", "index": 74, "name": "survey_status", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.qualtrics_source_integration_tests.survey"}, "seed.qualtrics_source_integration_tests.survey_embedded_data": {"metadata": {"type": "BASE TABLE", "schema": "qualtrics_source_integration_tests", "name": "survey_embedded_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"import_id": {"type": "text", "index": 1, "name": "import_id", "comment": null}, "key": {"type": "text", "index": 2, "name": "key", "comment": null}, "response_id": {"type": "text", "index": 3, "name": "response_id", "comment": null}, "value": {"type": "integer", "index": 4, "name": "value", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 5, "name": "_fivetran_synced", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.qualtrics_source_integration_tests.survey_embedded_data"}, "seed.qualtrics_source_integration_tests.survey_response": {"metadata": {"type": "BASE TABLE", "schema": "qualtrics_source_integration_tests", "name": "survey_response", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "text", "index": 1, "name": "id", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 2, "name": "_fivetran_synced", "comment": null}, "distribution_channel": {"type": "text", "index": 3, "name": "distribution_channel", "comment": null}, "duration_in_seconds": {"type": "integer", "index": 4, "name": "duration_in_seconds", "comment": null}, "end_date": {"type": "text", "index": 5, "name": "end_date", "comment": null}, "finished": {"type": "integer", "index": 6, "name": "finished", "comment": null}, "ip_address": {"type": "text", "index": 7, "name": "ip_address", "comment": null}, "last_modified_date": {"type": "text", "index": 8, "name": "last_modified_date", "comment": null}, "location_latitude": {"type": "integer", "index": 9, "name": "location_latitude", "comment": null}, "location_longitude": {"type": "integer", "index": 10, "name": "location_longitude", "comment": null}, "progress": {"type": "integer", "index": 11, "name": "progress", "comment": null}, "recipient_email": {"type": "text", "index": 12, "name": "recipient_email", "comment": null}, "recipient_first_name": {"type": "text", "index": 13, "name": "recipient_first_name", "comment": null}, "recipient_last_name": {"type": "text", "index": 14, "name": "recipient_last_name", "comment": null}, "recorded_date": {"type": "text", "index": 15, "name": "recorded_date", "comment": null}, "start_date": {"type": "text", "index": 16, "name": "start_date", "comment": null}, "status": {"type": "integer", "index": 17, "name": "status", "comment": null}, "survey_id": {"type": "text", "index": 18, "name": "survey_id", "comment": null}, "user_language": {"type": "text", "index": 19, "name": "user_language", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.qualtrics_source_integration_tests.survey_response"}, "seed.qualtrics_source_integration_tests.survey_version": {"metadata": {"type": "BASE TABLE", "schema": "qualtrics_source_integration_tests", "name": "survey_version", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "integer", "index": 1, "name": "id", "comment": null}, "survey_id": {"type": "text", "index": 2, "name": "survey_id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 3, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 4, "name": "_fivetran_synced", "comment": null}, "creation_date": {"type": "text", "index": 5, "name": "creation_date", "comment": null}, "description": {"type": "text", "index": 6, "name": "description", "comment": null}, "published": {"type": "boolean", "index": 7, "name": "published", "comment": null}, "user_id": {"type": "text", "index": 8, "name": "user_id", "comment": null}, "version_number": {"type": "integer", "index": 9, "name": "version_number", "comment": null}, "was_published": {"type": "boolean", "index": 10, "name": "was_published", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.qualtrics_source_integration_tests.survey_version"}, "seed.qualtrics_source_integration_tests.user": {"metadata": {"type": "BASE TABLE", "schema": "qualtrics_source_integration_tests", "name": "user", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "text", "index": 1, "name": "id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 2, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "account_creation_date": {"type": "timestamp without time zone", "index": 4, "name": "account_creation_date", "comment": null}, "account_expiration_date": {"type": "timestamp without time zone", "index": 5, "name": "account_expiration_date", "comment": null}, "account_status": {"type": "text", "index": 6, "name": "account_status", "comment": null}, "division_id": {"type": "integer", "index": 7, "name": "division_id", "comment": null}, "email": {"type": "text", "index": 8, "name": "email", "comment": null}, "first_name": {"type": "text", "index": 9, "name": "first_name", "comment": null}, "language": {"type": "integer", "index": 10, "name": "language", "comment": null}, "last_login_date": {"type": "timestamp without time zone", "index": 11, "name": "last_login_date", "comment": null}, "last_name": {"type": "text", "index": 12, "name": "last_name", "comment": null}, "organization_id": {"type": "integer", "index": 13, "name": "organization_id", "comment": null}, "password_expiration_date": {"type": "timestamp without time zone", "index": 14, "name": "password_expiration_date", "comment": null}, "password_last_changed_date": {"type": "timestamp without time zone", "index": 15, "name": "password_last_changed_date", "comment": null}, "response_count_auditable": {"type": "integer", "index": 16, "name": "response_count_auditable", "comment": null}, "response_count_deleted": {"type": "integer", "index": 17, "name": "response_count_deleted", "comment": null}, "response_count_generated": {"type": "integer", "index": 18, "name": "response_count_generated", "comment": null}, "time_zone": {"type": "integer", "index": 19, "name": "time_zone", "comment": null}, "unsubscribed": {"type": "integer", "index": 20, "name": "unsubscribed", "comment": null}, "user_type": {"type": "text", "index": 21, "name": "user_type", "comment": null}, "username": {"type": "text", "index": 22, "name": "username", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.qualtrics_source_integration_tests.user"}, "model.qualtrics_source.stg_qualtrics__block": {"metadata": {"type": "BASE TABLE", "schema": "qualtrics_source_integration_tests_qualtrics_source", "name": "stg_qualtrics__block", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"is_locked": {"type": "integer", "index": 1, "name": "is_locked", "comment": null}, "block_visibility": {"type": "integer", "index": 2, "name": "block_visibility", "comment": null}, "description": {"type": "text", "index": 3, "name": "description", "comment": null}, "block_id": {"type": "text", "index": 4, "name": "block_id", "comment": null}, "randomize_questions": {"type": "integer", "index": 5, "name": "randomize_questions", "comment": null}, "survey_id": {"type": "text", "index": 6, "name": "survey_id", "comment": null}, "type": {"type": "text", "index": 7, "name": "type", "comment": null}, "is_deleted": {"type": "boolean", "index": 8, "name": "is_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 9, "name": "_fivetran_synced", "comment": null}, "source_relation": {"type": "text", "index": 10, "name": "source_relation", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.qualtrics_source.stg_qualtrics__block"}, "model.qualtrics_source.stg_qualtrics__block_question": {"metadata": {"type": "BASE TABLE", "schema": "qualtrics_source_integration_tests_qualtrics_source", "name": "stg_qualtrics__block_question", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"block_id": {"type": "text", "index": 1, "name": "block_id", "comment": null}, "question_id": {"type": "text", "index": 2, "name": "question_id", "comment": null}, "survey_id": {"type": "text", "index": 3, "name": "survey_id", "comment": null}, "is_deleted": {"type": "boolean", "index": 4, "name": "is_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 5, "name": "_fivetran_synced", "comment": null}, "source_relation": {"type": "text", "index": 6, "name": "source_relation", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.qualtrics_source.stg_qualtrics__block_question"}, "model.qualtrics_source.stg_qualtrics__block_question_tmp": {"metadata": {"type": "VIEW", "schema": "qualtrics_source_integration_tests_qualtrics_source", "name": "stg_qualtrics__block_question_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"block_id": {"type": "text", "index": 1, "name": "block_id", "comment": null}, "question_id": {"type": "text", "index": 2, "name": "question_id", "comment": null}, "survey_id": {"type": "text", "index": 3, "name": "survey_id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 4, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 5, "name": "_fivetran_synced", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.qualtrics_source.stg_qualtrics__block_question_tmp"}, "model.qualtrics_source.stg_qualtrics__block_tmp": {"metadata": {"type": "VIEW", "schema": "qualtrics_source_integration_tests_qualtrics_source", "name": "stg_qualtrics__block_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "text", "index": 1, "name": "id", "comment": null}, "survey_id": {"type": "text", "index": 2, "name": "survey_id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 3, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 4, "name": "_fivetran_synced", "comment": null}, "block_locking": {"type": "integer", "index": 5, "name": "block_locking", "comment": null}, "block_visibility": {"type": "integer", "index": 6, "name": "block_visibility", "comment": null}, "description": {"type": "text", "index": 7, "name": "description", "comment": null}, "randomize_questions": {"type": "integer", "index": 8, "name": "randomize_questions", "comment": null}, "type": {"type": "text", "index": 9, "name": "type", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.qualtrics_source.stg_qualtrics__block_tmp"}, "model.qualtrics_source.stg_qualtrics__contact_mailing_list_membership": {"metadata": {"type": "BASE TABLE", "schema": "qualtrics_source_integration_tests_qualtrics_source", "name": "stg_qualtrics__contact_mailing_list_membership", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"contact_id": {"type": "text", "index": 1, "name": "contact_id", "comment": null}, "contact_lookup_id": {"type": "text", "index": 2, "name": "contact_lookup_id", "comment": null}, "directory_id": {"type": "text", "index": 3, "name": "directory_id", "comment": null}, "mailing_list_id": {"type": "text", "index": 4, "name": "mailing_list_id", "comment": null}, "name": {"type": "text", "index": 5, "name": "name", "comment": null}, "owner_user_id": {"type": "text", "index": 6, "name": "owner_user_id", "comment": null}, "unsubscribed_at": {"type": "integer", "index": 7, "name": "unsubscribed_at", "comment": null}, "is_unsubscribed": {"type": "boolean", "index": 8, "name": "is_unsubscribed", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 9, "name": "_fivetran_synced", "comment": null}, "source_relation": {"type": "text", "index": 10, "name": "source_relation", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.qualtrics_source.stg_qualtrics__contact_mailing_list_membership"}, "model.qualtrics_source.stg_qualtrics__contact_mailing_list_membership_tmp": {"metadata": {"type": "VIEW", "schema": "qualtrics_source_integration_tests_qualtrics_source", "name": "stg_qualtrics__contact_mailing_list_membership_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"contact_lookup_id": {"type": "text", "index": 1, "name": "contact_lookup_id", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 2, "name": "_fivetran_synced", "comment": null}, "contact_id": {"type": "text", "index": 3, "name": "contact_id", "comment": null}, "directory_id": {"type": "text", "index": 4, "name": "directory_id", "comment": null}, "mailing_list_id": {"type": "text", "index": 5, "name": "mailing_list_id", "comment": null}, "name": {"type": "text", "index": 6, "name": "name", "comment": null}, "owner_id": {"type": "text", "index": 7, "name": "owner_id", "comment": null}, "unsubscribe_date": {"type": "integer", "index": 8, "name": "unsubscribe_date", "comment": null}, "unsubscribed": {"type": "boolean", "index": 9, "name": "unsubscribed", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.qualtrics_source.stg_qualtrics__contact_mailing_list_membership_tmp"}, "model.qualtrics_source.stg_qualtrics__directory": {"metadata": {"type": "BASE TABLE", "schema": "qualtrics_source_integration_tests_qualtrics_source", "name": "stg_qualtrics__directory", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"is_deduped_on_email": {"type": "boolean", "index": 1, "name": "is_deduped_on_email", "comment": null}, "is_deduped_on_ext_ref": {"type": "boolean", "index": 2, "name": "is_deduped_on_ext_ref", "comment": null}, "is_deduped_on_first_name": {"type": "boolean", "index": 3, "name": "is_deduped_on_first_name", "comment": null}, "is_deduped_on_last_name": {"type": "boolean", "index": 4, "name": "is_deduped_on_last_name", "comment": null}, "is_deduped_on_phone": {"type": "boolean", "index": 5, "name": "is_deduped_on_phone", "comment": null}, "directory_id": {"type": "text", "index": 6, "name": "directory_id", "comment": null}, "is_default": {"type": "boolean", "index": 7, "name": "is_default", "comment": null}, "name": {"type": "text", "index": 8, "name": "name", "comment": null}, "is_deleted": {"type": "boolean", "index": 9, "name": "is_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 10, "name": "_fivetran_synced", "comment": null}, "source_relation": {"type": "text", "index": 11, "name": "source_relation", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.qualtrics_source.stg_qualtrics__directory"}, "model.qualtrics_source.stg_qualtrics__directory_contact": {"metadata": {"type": "BASE TABLE", "schema": "qualtrics_source_integration_tests_qualtrics_source", "name": "stg_qualtrics__directory_contact", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"created_at": {"type": "timestamp without time zone", "index": 1, "name": "created_at", "comment": null}, "directory_id": {"type": "text", "index": 2, "name": "directory_id", "comment": null}, "unsubscribed_from_directory_at": {"type": "timestamp without time zone", "index": 3, "name": "unsubscribed_from_directory_at", "comment": null}, "is_unsubscribed_from_directory": {"type": "boolean", "index": 4, "name": "is_unsubscribed_from_directory", "comment": null}, "email": {"type": "text", "index": 5, "name": "email", "comment": null}, "email_domain": {"type": "text", "index": 6, "name": "email_domain", "comment": null}, "ext_ref": {"type": "integer", "index": 7, "name": "ext_ref", "comment": null}, "first_name": {"type": "text", "index": 8, "name": "first_name", "comment": null}, "last_name": {"type": "text", "index": 9, "name": "last_name", "comment": null}, "phone": {"type": "text", "index": 10, "name": "phone", "comment": null}, "contact_id": {"type": "text", "index": 11, "name": "contact_id", "comment": null}, "language": {"type": "integer", "index": 12, "name": "language", "comment": null}, "last_modified_at": {"type": "timestamp without time zone", "index": 13, "name": "last_modified_at", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 14, "name": "_fivetran_synced", "comment": null}, "source_relation": {"type": "text", "index": 15, "name": "source_relation", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.qualtrics_source.stg_qualtrics__directory_contact"}, "model.qualtrics_source.stg_qualtrics__directory_contact_tmp": {"metadata": {"type": "VIEW", "schema": "qualtrics_source_integration_tests_qualtrics_source", "name": "stg_qualtrics__directory_contact_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"directory_id": {"type": "text", "index": 1, "name": "directory_id", "comment": null}, "id": {"type": "text", "index": 2, "name": "id", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "creation_date": {"type": "text", "index": 4, "name": "creation_date", "comment": null}, "directory_unsubscribe_date": {"type": "timestamp without time zone", "index": 5, "name": "directory_unsubscribe_date", "comment": null}, "directory_unsubscribed": {"type": "boolean", "index": 6, "name": "directory_unsubscribed", "comment": null}, "email": {"type": "text", "index": 7, "name": "email", "comment": null}, "email_domain": {"type": "text", "index": 8, "name": "email_domain", "comment": null}, "embedded_data_last_active_time": {"type": "integer", "index": 9, "name": "embedded_data_last_active_time", "comment": null}, "embedded_data_last_response_date": {"type": "integer", "index": 10, "name": "embedded_data_last_response_date", "comment": null}, "embedded_data_login_date": {"type": "integer", "index": 11, "name": "embedded_data_login_date", "comment": null}, "ext_ref": {"type": "integer", "index": 12, "name": "ext_ref", "comment": null}, "first_name": {"type": "text", "index": 13, "name": "first_name", "comment": null}, "language": {"type": "integer", "index": 14, "name": "language", "comment": null}, "last_modified": {"type": "text", "index": 15, "name": "last_modified", "comment": null}, "last_name": {"type": "text", "index": 16, "name": "last_name", "comment": null}, "phone": {"type": "character varying", "index": 17, "name": "phone", "comment": null}, "write_blanks": {"type": "integer", "index": 18, "name": "write_blanks", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.qualtrics_source.stg_qualtrics__directory_contact_tmp"}, "model.qualtrics_source.stg_qualtrics__directory_mailing_list": {"metadata": {"type": "BASE TABLE", "schema": "qualtrics_source_integration_tests_qualtrics_source", "name": "stg_qualtrics__directory_mailing_list", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"created_at": {"type": "timestamp without time zone", "index": 1, "name": "created_at", "comment": null}, "directory_id": {"type": "text", "index": 2, "name": "directory_id", "comment": null}, "mailing_list_id": {"type": "text", "index": 3, "name": "mailing_list_id", "comment": null}, "last_modified_at": {"type": "timestamp without time zone", "index": 4, "name": "last_modified_at", "comment": null}, "name": {"type": "text", "index": 5, "name": "name", "comment": null}, "owner_user_id": {"type": "text", "index": 6, "name": "owner_user_id", "comment": null}, "is_deleted": {"type": "boolean", "index": 7, "name": "is_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 8, "name": "_fivetran_synced", "comment": null}, "source_relation": {"type": "text", "index": 9, "name": "source_relation", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.qualtrics_source.stg_qualtrics__directory_mailing_list"}, "model.qualtrics_source.stg_qualtrics__directory_mailing_list_tmp": {"metadata": {"type": "VIEW", "schema": "qualtrics_source_integration_tests_qualtrics_source", "name": "stg_qualtrics__directory_mailing_list_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"directory_id": {"type": "text", "index": 1, "name": "directory_id", "comment": null}, "id": {"type": "text", "index": 2, "name": "id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 3, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 4, "name": "_fivetran_synced", "comment": null}, "creation_date": {"type": "text", "index": 5, "name": "creation_date", "comment": null}, "last_modified_date": {"type": "text", "index": 6, "name": "last_modified_date", "comment": null}, "name": {"type": "text", "index": 7, "name": "name", "comment": null}, "owner_id": {"type": "text", "index": 8, "name": "owner_id", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.qualtrics_source.stg_qualtrics__directory_mailing_list_tmp"}, "model.qualtrics_source.stg_qualtrics__directory_tmp": {"metadata": {"type": "VIEW", "schema": "qualtrics_source_integration_tests_qualtrics_source", "name": "stg_qualtrics__directory_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "text", "index": 1, "name": "id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 2, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "deduplication_criteria_email": {"type": "boolean", "index": 4, "name": "deduplication_criteria_email", "comment": null}, "deduplication_criteria_external_data_reference": {"type": "boolean", "index": 5, "name": "deduplication_criteria_external_data_reference", "comment": null}, "deduplication_criteria_first_name": {"type": "boolean", "index": 6, "name": "deduplication_criteria_first_name", "comment": null}, "deduplication_criteria_last_name": {"type": "boolean", "index": 7, "name": "deduplication_criteria_last_name", "comment": null}, "deduplication_criteria_phone": {"type": "boolean", "index": 8, "name": "deduplication_criteria_phone", "comment": null}, "is_default": {"type": "boolean", "index": 9, "name": "is_default", "comment": null}, "name": {"type": "text", "index": 10, "name": "name", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.qualtrics_source.stg_qualtrics__directory_tmp"}, "model.qualtrics_source.stg_qualtrics__distribution": {"metadata": {"type": "BASE TABLE", "schema": "qualtrics_source_integration_tests_qualtrics_source", "name": "stg_qualtrics__distribution", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"created_at": {"type": "timestamp without time zone", "index": 1, "name": "created_at", "comment": null}, "header_from_email": {"type": "text", "index": 2, "name": "header_from_email", "comment": null}, "header_from_name": {"type": "text", "index": 3, "name": "header_from_name", "comment": null}, "header_reply_to_email": {"type": "text", "index": 4, "name": "header_reply_to_email", "comment": null}, "header_subject": {"type": "text", "index": 5, "name": "header_subject", "comment": null}, "distribution_id": {"type": "text", "index": 6, "name": "distribution_id", "comment": null}, "message_library_id": {"type": "integer", "index": 7, "name": "message_library_id", "comment": null}, "message_id": {"type": "integer", "index": 8, "name": "message_id", "comment": null}, "message_text": {"type": "integer", "index": 9, "name": "message_text", "comment": null}, "last_modified_at": {"type": "timestamp without time zone", "index": 10, "name": "last_modified_at", "comment": null}, "organization_id": {"type": "text", "index": 11, "name": "organization_id", "comment": null}, "owner_user_id": {"type": "text", "index": 12, "name": "owner_user_id", "comment": null}, "parent_distribution_id": {"type": "integer", "index": 13, "name": "parent_distribution_id", "comment": null}, "recipient_contact_id": {"type": "text", "index": 14, "name": "recipient_contact_id", "comment": null}, "recipient_library_id": {"type": "text", "index": 15, "name": "recipient_library_id", "comment": null}, "recipient_mailing_list_id": {"type": "text", "index": 16, "name": "recipient_mailing_list_id", "comment": null}, "recipient_sample_id": {"type": "text", "index": 17, "name": "recipient_sample_id", "comment": null}, "request_status": {"type": "text", "index": 18, "name": "request_status", "comment": null}, "request_type": {"type": "text", "index": 19, "name": "request_type", "comment": null}, "send_at": {"type": "timestamp without time zone", "index": 20, "name": "send_at", "comment": null}, "survey_link_expires_at": {"type": "timestamp without time zone", "index": 21, "name": "survey_link_expires_at", "comment": null}, "survey_link_type": {"type": "text", "index": 22, "name": "survey_link_type", "comment": null}, "survey_id": {"type": "text", "index": 23, "name": "survey_id", "comment": null}, "is_deleted": {"type": "boolean", "index": 24, "name": "is_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 25, "name": "_fivetran_synced", "comment": null}, "source_relation": {"type": "text", "index": 26, "name": "source_relation", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.qualtrics_source.stg_qualtrics__distribution"}, "model.qualtrics_source.stg_qualtrics__distribution_contact": {"metadata": {"type": "BASE TABLE", "schema": "qualtrics_source_integration_tests_qualtrics_source", "name": "stg_qualtrics__distribution_contact", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"contact_frequency_rule_id": {"type": "integer", "index": 1, "name": "contact_frequency_rule_id", "comment": null}, "contact_id": {"type": "text", "index": 2, "name": "contact_id", "comment": null}, "contact_lookup_id": {"type": "text", "index": 3, "name": "contact_lookup_id", "comment": null}, "distribution_id": {"type": "text", "index": 4, "name": "distribution_id", "comment": null}, "opened_at": {"type": "timestamp without time zone", "index": 5, "name": "opened_at", "comment": null}, "response_completed_at": {"type": "timestamp without time zone", "index": 6, "name": "response_completed_at", "comment": null}, "response_id": {"type": "integer", "index": 7, "name": "response_id", "comment": null}, "response_started_at": {"type": "timestamp without time zone", "index": 8, "name": "response_started_at", "comment": null}, "sent_at": {"type": "timestamp without time zone", "index": 9, "name": "sent_at", "comment": null}, "status": {"type": "text", "index": 10, "name": "status", "comment": null}, "survey_link": {"type": "text", "index": 11, "name": "survey_link", "comment": null}, "survey_session_id": {"type": "integer", "index": 12, "name": "survey_session_id", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 13, "name": "_fivetran_synced", "comment": null}, "source_relation": {"type": "text", "index": 14, "name": "source_relation", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.qualtrics_source.stg_qualtrics__distribution_contact"}, "model.qualtrics_source.stg_qualtrics__distribution_contact_tmp": {"metadata": {"type": "VIEW", "schema": "qualtrics_source_integration_tests_qualtrics_source", "name": "stg_qualtrics__distribution_contact_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"contact_id": {"type": "text", "index": 1, "name": "contact_id", "comment": null}, "distribution_id": {"type": "text", "index": 2, "name": "distribution_id", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "contact_frequency_rule_id": {"type": "integer", "index": 4, "name": "contact_frequency_rule_id", "comment": null}, "contact_lookup_id": {"type": "text", "index": 5, "name": "contact_lookup_id", "comment": null}, "opened_at": {"type": "text", "index": 6, "name": "opened_at", "comment": null}, "response_completed_at": {"type": "timestamp without time zone", "index": 7, "name": "response_completed_at", "comment": null}, "response_id": {"type": "integer", "index": 8, "name": "response_id", "comment": null}, "response_started_at": {"type": "timestamp without time zone", "index": 9, "name": "response_started_at", "comment": null}, "sent_at": {"type": "text", "index": 10, "name": "sent_at", "comment": null}, "status": {"type": "text", "index": 11, "name": "status", "comment": null}, "survey_link": {"type": "text", "index": 12, "name": "survey_link", "comment": null}, "survey_session_id": {"type": "integer", "index": 13, "name": "survey_session_id", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.qualtrics_source.stg_qualtrics__distribution_contact_tmp"}, "model.qualtrics_source.stg_qualtrics__distribution_tmp": {"metadata": {"type": "VIEW", "schema": "qualtrics_source_integration_tests_qualtrics_source", "name": "stg_qualtrics__distribution_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "text", "index": 1, "name": "id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 2, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "created_date": {"type": "text", "index": 4, "name": "created_date", "comment": null}, "header_from_email": {"type": "text", "index": 5, "name": "header_from_email", "comment": null}, "header_from_name": {"type": "text", "index": 6, "name": "header_from_name", "comment": null}, "header_reply_to_email": {"type": "text", "index": 7, "name": "header_reply_to_email", "comment": null}, "header_subject": {"type": "text", "index": 8, "name": "header_subject", "comment": null}, "message_library_id": {"type": "integer", "index": 9, "name": "message_library_id", "comment": null}, "message_message_id": {"type": "integer", "index": 10, "name": "message_message_id", "comment": null}, "message_message_text": {"type": "integer", "index": 11, "name": "message_message_text", "comment": null}, "modified_date": {"type": "text", "index": 12, "name": "modified_date", "comment": null}, "organization_id": {"type": "text", "index": 13, "name": "organization_id", "comment": null}, "owner_id": {"type": "text", "index": 14, "name": "owner_id", "comment": null}, "parent_distribution_id": {"type": "integer", "index": 15, "name": "parent_distribution_id", "comment": null}, "recipient_contact_id": {"type": "text", "index": 16, "name": "recipient_contact_id", "comment": null}, "recipient_library_id": {"type": "text", "index": 17, "name": "recipient_library_id", "comment": null}, "recipient_mailing_list_id": {"type": "text", "index": 18, "name": "recipient_mailing_list_id", "comment": null}, "recipient_sample_id": {"type": "text", "index": 19, "name": "recipient_sample_id", "comment": null}, "request_status": {"type": "text", "index": 20, "name": "request_status", "comment": null}, "request_type": {"type": "text", "index": 21, "name": "request_type", "comment": null}, "send_date": {"type": "text", "index": 22, "name": "send_date", "comment": null}, "survey_link_expiration_date": {"type": "text", "index": 23, "name": "survey_link_expiration_date", "comment": null}, "survey_link_link_type": {"type": "text", "index": 24, "name": "survey_link_link_type", "comment": null}, "survey_link_survey_id": {"type": "text", "index": 25, "name": "survey_link_survey_id", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.qualtrics_source.stg_qualtrics__distribution_tmp"}, "model.qualtrics_source.stg_qualtrics__question": {"metadata": {"type": "BASE TABLE", "schema": "qualtrics_source_integration_tests_qualtrics_source", "name": "stg_qualtrics__question", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"data_export_tag": {"type": "text", "index": 1, "name": "data_export_tag", "comment": null}, "is_data_hidden": {"type": "boolean", "index": 2, "name": "is_data_hidden", "comment": null}, "is_data_private": {"type": "boolean", "index": 3, "name": "is_data_private", "comment": null}, "question_id": {"type": "text", "index": 4, "name": "question_id", "comment": null}, "next_answer_id": {"type": "integer", "index": 5, "name": "next_answer_id", "comment": null}, "next_choice_id": {"type": "integer", "index": 6, "name": "next_choice_id", "comment": null}, "question_description": {"type": "text", "index": 7, "name": "question_description", "comment": null}, "question_description_option": {"type": "text", "index": 8, "name": "question_description_option", "comment": null}, "question_text": {"type": "text", "index": 9, "name": "question_text", "comment": null}, "question_text_unsafe": {"type": "text", "index": 10, "name": "question_text_unsafe", "comment": null}, "question_type": {"type": "text", "index": 11, "name": "question_type", "comment": null}, "selector": {"type": "text", "index": 12, "name": "selector", "comment": null}, "sub_selector": {"type": "text", "index": 13, "name": "sub_selector", "comment": null}, "survey_id": {"type": "text", "index": 14, "name": "survey_id", "comment": null}, "validation_setting_force_response": {"type": "integer", "index": 15, "name": "validation_setting_force_response", "comment": null}, "validation_setting_force_response_type": {"type": "integer", "index": 16, "name": "validation_setting_force_response_type", "comment": null}, "validation_setting_type": {"type": "text", "index": 17, "name": "validation_setting_type", "comment": null}, "is_deleted": {"type": "boolean", "index": 18, "name": "is_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 19, "name": "_fivetran_synced", "comment": null}, "source_relation": {"type": "text", "index": 20, "name": "source_relation", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.qualtrics_source.stg_qualtrics__question"}, "model.qualtrics_source.stg_qualtrics__question_option": {"metadata": {"type": "BASE TABLE", "schema": "qualtrics_source_integration_tests_qualtrics_source", "name": "stg_qualtrics__question_option", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"question_id": {"type": "text", "index": 1, "name": "question_id", "comment": null}, "survey_id": {"type": "text", "index": 2, "name": "survey_id", "comment": null}, "key": {"type": "integer", "index": 3, "name": "key", "comment": null}, "recode_value": {"type": "integer", "index": 4, "name": "recode_value", "comment": null}, "text": {"type": "text", "index": 5, "name": "text", "comment": null}, "is_deleted": {"type": "boolean", "index": 6, "name": "is_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 7, "name": "_fivetran_synced", "comment": null}, "source_relation": {"type": "text", "index": 8, "name": "source_relation", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.qualtrics_source.stg_qualtrics__question_option"}, "model.qualtrics_source.stg_qualtrics__question_option_tmp": {"metadata": {"type": "VIEW", "schema": "qualtrics_source_integration_tests_qualtrics_source", "name": "stg_qualtrics__question_option_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"key": {"type": "integer", "index": 1, "name": "key", "comment": null}, "question_id": {"type": "text", "index": 2, "name": "question_id", "comment": null}, "survey_id": {"type": "text", "index": 3, "name": "survey_id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 4, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 5, "name": "_fivetran_synced", "comment": null}, "recode_value": {"type": "integer", "index": 6, "name": "recode_value", "comment": null}, "text": {"type": "text", "index": 7, "name": "text", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.qualtrics_source.stg_qualtrics__question_option_tmp"}, "model.qualtrics_source.stg_qualtrics__question_response": {"metadata": {"type": "BASE TABLE", "schema": "qualtrics_source_integration_tests_qualtrics_source", "name": "stg_qualtrics__question_response", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"_fivetran_id": {"type": "text", "index": 1, "name": "_fivetran_id", "comment": null}, "loop_id": {"type": "integer", "index": 2, "name": "loop_id", "comment": null}, "question_id": {"type": "text", "index": 3, "name": "question_id", "comment": null}, "question": {"type": "text", "index": 4, "name": "question", "comment": null}, "question_option_key": {"type": "integer", "index": 5, "name": "question_option_key", "comment": null}, "response_id": {"type": "text", "index": 6, "name": "response_id", "comment": null}, "sub_question_key": {"type": "integer", "index": 7, "name": "sub_question_key", "comment": null}, "sub_question_text": {"type": "integer", "index": 8, "name": "sub_question_text", "comment": null}, "value": {"type": "integer", "index": 9, "name": "value", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 10, "name": "_fivetran_synced", "comment": null}, "source_relation": {"type": "text", "index": 11, "name": "source_relation", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.qualtrics_source.stg_qualtrics__question_response"}, "model.qualtrics_source.stg_qualtrics__question_response_tmp": {"metadata": {"type": "VIEW", "schema": "qualtrics_source_integration_tests_qualtrics_source", "name": "stg_qualtrics__question_response_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"_fivetran_id": {"type": "text", "index": 1, "name": "_fivetran_id", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 2, "name": "_fivetran_synced", "comment": null}, "loop_id": {"type": "integer", "index": 3, "name": "loop_id", "comment": null}, "question": {"type": "text", "index": 4, "name": "question", "comment": null}, "question_id": {"type": "text", "index": 5, "name": "question_id", "comment": null}, "question_option_key": {"type": "integer", "index": 6, "name": "question_option_key", "comment": null}, "response_id": {"type": "text", "index": 7, "name": "response_id", "comment": null}, "sub_question_key": {"type": "integer", "index": 8, "name": "sub_question_key", "comment": null}, "sub_question_text": {"type": "integer", "index": 9, "name": "sub_question_text", "comment": null}, "value": {"type": "integer", "index": 10, "name": "value", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.qualtrics_source.stg_qualtrics__question_response_tmp"}, "model.qualtrics_source.stg_qualtrics__question_tmp": {"metadata": {"type": "VIEW", "schema": "qualtrics_source_integration_tests_qualtrics_source", "name": "stg_qualtrics__question_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "text", "index": 1, "name": "id", "comment": null}, "survey_id": {"type": "text", "index": 2, "name": "survey_id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 3, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 4, "name": "_fivetran_synced", "comment": null}, "data_export_tag": {"type": "text", "index": 5, "name": "data_export_tag", "comment": null}, "data_visibility_hidden": {"type": "boolean", "index": 6, "name": "data_visibility_hidden", "comment": null}, "data_visibility_private": {"type": "boolean", "index": 7, "name": "data_visibility_private", "comment": null}, "next_answer_id": {"type": "integer", "index": 8, "name": "next_answer_id", "comment": null}, "next_choice_id": {"type": "integer", "index": 9, "name": "next_choice_id", "comment": null}, "question_description": {"type": "text", "index": 10, "name": "question_description", "comment": null}, "question_description_option": {"type": "text", "index": 11, "name": "question_description_option", "comment": null}, "question_text": {"type": "text", "index": 12, "name": "question_text", "comment": null}, "question_text_unsafe": {"type": "text", "index": 13, "name": "question_text_unsafe", "comment": null}, "question_type": {"type": "text", "index": 14, "name": "question_type", "comment": null}, "selector": {"type": "text", "index": 15, "name": "selector", "comment": null}, "sub_selector": {"type": "text", "index": 16, "name": "sub_selector", "comment": null}, "validation_setting_force_response": {"type": "integer", "index": 17, "name": "validation_setting_force_response", "comment": null}, "validation_setting_force_response_type": {"type": "integer", "index": 18, "name": "validation_setting_force_response_type", "comment": null}, "validation_setting_type": {"type": "text", "index": 19, "name": "validation_setting_type", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.qualtrics_source.stg_qualtrics__question_tmp"}, "model.qualtrics_source.stg_qualtrics__sub_question": {"metadata": {"type": "BASE TABLE", "schema": "qualtrics_source_integration_tests_qualtrics_source", "name": "stg_qualtrics__sub_question", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"choice_data_export_tag": {"type": "integer", "index": 1, "name": "choice_data_export_tag", "comment": null}, "key": {"type": "integer", "index": 2, "name": "key", "comment": null}, "question_id": {"type": "text", "index": 3, "name": "question_id", "comment": null}, "survey_id": {"type": "text", "index": 4, "name": "survey_id", "comment": null}, "text": {"type": "text", "index": 5, "name": "text", "comment": null}, "is_deleted": {"type": "boolean", "index": 6, "name": "is_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 7, "name": "_fivetran_synced", "comment": null}, "source_relation": {"type": "text", "index": 8, "name": "source_relation", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.qualtrics_source.stg_qualtrics__sub_question"}, "model.qualtrics_source.stg_qualtrics__sub_question_tmp": {"metadata": {"type": "VIEW", "schema": "qualtrics_source_integration_tests_qualtrics_source", "name": "stg_qualtrics__sub_question_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"key": {"type": "integer", "index": 1, "name": "key", "comment": null}, "question_id": {"type": "text", "index": 2, "name": "question_id", "comment": null}, "survey_id": {"type": "text", "index": 3, "name": "survey_id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 4, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 5, "name": "_fivetran_synced", "comment": null}, "choice_data_export_tag": {"type": "integer", "index": 6, "name": "choice_data_export_tag", "comment": null}, "text": {"type": "text", "index": 7, "name": "text", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.qualtrics_source.stg_qualtrics__sub_question_tmp"}, "model.qualtrics_source.stg_qualtrics__survey": {"metadata": {"type": "BASE TABLE", "schema": "qualtrics_source_integration_tests_qualtrics_source", "name": "stg_qualtrics__survey", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"survey_id": {"type": "text", "index": 1, "name": "survey_id", "comment": null}, "survey_name": {"type": "text", "index": 2, "name": "survey_name", "comment": null}, "survey_status": {"type": "text", "index": 3, "name": "survey_status", "comment": null}, "brand_base_url": {"type": "text", "index": 4, "name": "brand_base_url", "comment": null}, "brand_id": {"type": "text", "index": 5, "name": "brand_id", "comment": null}, "bundle_short_name": {"type": "integer", "index": 6, "name": "bundle_short_name", "comment": null}, "composition_type": {"type": "integer", "index": 7, "name": "composition_type", "comment": null}, "auto_scoring_category": {"type": "integer", "index": 8, "name": "auto_scoring_category", "comment": null}, "default_scoring_category": {"type": "integer", "index": 9, "name": "default_scoring_category", "comment": null}, "division_id": {"type": "integer", "index": 10, "name": "division_id", "comment": null}, "creator_user_id": {"type": "integer", "index": 11, "name": "creator_user_id", "comment": null}, "owner_user_id": {"type": "text", "index": 12, "name": "owner_user_id", "comment": null}, "project_category": {"type": "text", "index": 13, "name": "project_category", "comment": null}, "project_type": {"type": "text", "index": 14, "name": "project_type", "comment": null}, "registry_sha": {"type": "integer", "index": 15, "name": "registry_sha", "comment": null}, "registry_version": {"type": "integer", "index": 16, "name": "registry_version", "comment": null}, "schema_version": {"type": "integer", "index": 17, "name": "schema_version", "comment": null}, "scoring_summary_after_questions": {"type": "boolean", "index": 18, "name": "scoring_summary_after_questions", "comment": null}, "scoring_summary_after_survey": {"type": "boolean", "index": 19, "name": "scoring_summary_after_survey", "comment": null}, "scoring_summary_category": {"type": "integer", "index": 20, "name": "scoring_summary_category", "comment": null}, "last_accessed_at": {"type": "timestamp without time zone", "index": 21, "name": "last_accessed_at", "comment": null}, "last_activated_at": {"type": "timestamp without time zone", "index": 22, "name": "last_activated_at", "comment": null}, "last_modified_at": {"type": "timestamp without time zone", "index": 23, "name": "last_modified_at", "comment": null}, "is_deleted": {"type": "boolean", "index": 24, "name": "is_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 25, "name": "_fivetran_synced", "comment": null}, "source_relation": {"type": "text", "index": 26, "name": "source_relation", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.qualtrics_source.stg_qualtrics__survey"}, "model.qualtrics_source.stg_qualtrics__survey_embedded_data": {"metadata": {"type": "BASE TABLE", "schema": "qualtrics_source_integration_tests_qualtrics_source", "name": "stg_qualtrics__survey_embedded_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"import_id": {"type": "text", "index": 1, "name": "import_id", "comment": null}, "key": {"type": "text", "index": 2, "name": "key", "comment": null}, "response_id": {"type": "text", "index": 3, "name": "response_id", "comment": null}, "value": {"type": "integer", "index": 4, "name": "value", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 5, "name": "_fivetran_synced", "comment": null}, "source_relation": {"type": "text", "index": 6, "name": "source_relation", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.qualtrics_source.stg_qualtrics__survey_embedded_data"}, "model.qualtrics_source.stg_qualtrics__survey_embedded_data_tmp": {"metadata": {"type": "VIEW", "schema": "qualtrics_source_integration_tests_qualtrics_source", "name": "stg_qualtrics__survey_embedded_data_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"import_id": {"type": "text", "index": 1, "name": "import_id", "comment": null}, "key": {"type": "text", "index": 2, "name": "key", "comment": null}, "response_id": {"type": "text", "index": 3, "name": "response_id", "comment": null}, "value": {"type": "integer", "index": 4, "name": "value", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 5, "name": "_fivetran_synced", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.qualtrics_source.stg_qualtrics__survey_embedded_data_tmp"}, "model.qualtrics_source.stg_qualtrics__survey_response": {"metadata": {"type": "BASE TABLE", "schema": "qualtrics_source_integration_tests_qualtrics_source", "name": "stg_qualtrics__survey_response", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"distribution_channel": {"type": "text", "index": 1, "name": "distribution_channel", "comment": null}, "duration_in_seconds": {"type": "integer", "index": 2, "name": "duration_in_seconds", "comment": null}, "finished_at": {"type": "timestamp without time zone", "index": 3, "name": "finished_at", "comment": null}, "is_finished": {"type": "boolean", "index": 4, "name": "is_finished", "comment": null}, "response_id": {"type": "text", "index": 5, "name": "response_id", "comment": null}, "ip_address": {"type": "text", "index": 6, "name": "ip_address", "comment": null}, "last_modified_at": {"type": "timestamp without time zone", "index": 7, "name": "last_modified_at", "comment": null}, "location_latitude": {"type": "integer", "index": 8, "name": "location_latitude", "comment": null}, "location_longitude": {"type": "integer", "index": 9, "name": "location_longitude", "comment": null}, "progress": {"type": "integer", "index": 10, "name": "progress", "comment": null}, "recipient_email": {"type": "text", "index": 11, "name": "recipient_email", "comment": null}, "recipient_first_name": {"type": "text", "index": 12, "name": "recipient_first_name", "comment": null}, "recipient_last_name": {"type": "text", "index": 13, "name": "recipient_last_name", "comment": null}, "recorded_date": {"type": "text", "index": 14, "name": "recorded_date", "comment": null}, "started_at": {"type": "timestamp without time zone", "index": 15, "name": "started_at", "comment": null}, "status": {"type": "integer", "index": 16, "name": "status", "comment": null}, "survey_id": {"type": "text", "index": 17, "name": "survey_id", "comment": null}, "user_language": {"type": "text", "index": 18, "name": "user_language", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 19, "name": "_fivetran_synced", "comment": null}, "source_relation": {"type": "text", "index": 20, "name": "source_relation", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.qualtrics_source.stg_qualtrics__survey_response"}, "model.qualtrics_source.stg_qualtrics__survey_response_tmp": {"metadata": {"type": "VIEW", "schema": "qualtrics_source_integration_tests_qualtrics_source", "name": "stg_qualtrics__survey_response_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "text", "index": 1, "name": "id", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 2, "name": "_fivetran_synced", "comment": null}, "distribution_channel": {"type": "text", "index": 3, "name": "distribution_channel", "comment": null}, "duration_in_seconds": {"type": "integer", "index": 4, "name": "duration_in_seconds", "comment": null}, "end_date": {"type": "text", "index": 5, "name": "end_date", "comment": null}, "finished": {"type": "integer", "index": 6, "name": "finished", "comment": null}, "ip_address": {"type": "text", "index": 7, "name": "ip_address", "comment": null}, "last_modified_date": {"type": "text", "index": 8, "name": "last_modified_date", "comment": null}, "location_latitude": {"type": "integer", "index": 9, "name": "location_latitude", "comment": null}, "location_longitude": {"type": "integer", "index": 10, "name": "location_longitude", "comment": null}, "progress": {"type": "integer", "index": 11, "name": "progress", "comment": null}, "recipient_email": {"type": "text", "index": 12, "name": "recipient_email", "comment": null}, "recipient_first_name": {"type": "text", "index": 13, "name": "recipient_first_name", "comment": null}, "recipient_last_name": {"type": "text", "index": 14, "name": "recipient_last_name", "comment": null}, "recorded_date": {"type": "text", "index": 15, "name": "recorded_date", "comment": null}, "start_date": {"type": "text", "index": 16, "name": "start_date", "comment": null}, "status": {"type": "integer", "index": 17, "name": "status", "comment": null}, "survey_id": {"type": "text", "index": 18, "name": "survey_id", "comment": null}, "user_language": {"type": "text", "index": 19, "name": "user_language", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.qualtrics_source.stg_qualtrics__survey_response_tmp"}, "model.qualtrics_source.stg_qualtrics__survey_tmp": {"metadata": {"type": "VIEW", "schema": "qualtrics_source_integration_tests_qualtrics_source", "name": "stg_qualtrics__survey_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "text", "index": 1, "name": "id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 2, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "auto_scoring_category": {"type": "integer", "index": 4, "name": "auto_scoring_category", "comment": null}, "brand_base_url": {"type": "text", "index": 5, "name": "brand_base_url", "comment": null}, "brand_id": {"type": "text", "index": 6, "name": "brand_id", "comment": null}, "bundle_short_name": {"type": "integer", "index": 7, "name": "bundle_short_name", "comment": null}, "composition_type": {"type": "integer", "index": 8, "name": "composition_type", "comment": null}, "creator_id": {"type": "integer", "index": 9, "name": "creator_id", "comment": null}, "default_scoring_category": {"type": "integer", "index": 10, "name": "default_scoring_category", "comment": null}, "division_id": {"type": "integer", "index": 11, "name": "division_id", "comment": null}, "is_active": {"type": "integer", "index": 12, "name": "is_active", "comment": null}, "last_accessed": {"type": "timestamp without time zone", "index": 13, "name": "last_accessed", "comment": null}, "last_activated": {"type": "text", "index": 14, "name": "last_activated", "comment": null}, "last_modified": {"type": "text", "index": 15, "name": "last_modified", "comment": null}, "option_active_response_set": {"type": "text", "index": 16, "name": "option_active_response_set", "comment": null}, "option_anonymize_response": {"type": "integer", "index": 17, "name": "option_anonymize_response", "comment": null}, "option_auto_confirm_start": {"type": "integer", "index": 18, "name": "option_auto_confirm_start", "comment": null}, "option_autoadvance": {"type": "boolean", "index": 19, "name": "option_autoadvance", "comment": null}, "option_autoadvance_pages": {"type": "boolean", "index": 20, "name": "option_autoadvance_pages", "comment": null}, "option_autofocus": {"type": "boolean", "index": 21, "name": "option_autofocus", "comment": null}, "option_available_languages": {"type": "integer", "index": 22, "name": "option_available_languages", "comment": null}, "option_back_button": {"type": "boolean", "index": 23, "name": "option_back_button", "comment": null}, "option_ballot_box_stuffing_prevention": {"type": "boolean", "index": 24, "name": "option_ballot_box_stuffing_prevention", "comment": null}, "option_collect_geo_location": {"type": "integer", "index": 25, "name": "option_collect_geo_location", "comment": null}, "option_confirm_start": {"type": "integer", "index": 26, "name": "option_confirm_start", "comment": null}, "option_custom_styles": {"type": "text", "index": 27, "name": "option_custom_styles", "comment": null}, "option_email_thank_you": {"type": "integer", "index": 28, "name": "option_email_thank_you", "comment": null}, "option_eosredirect_url": {"type": "integer", "index": 29, "name": "option_eosredirect_url", "comment": null}, "option_highlight_questions": {"type": "text", "index": 30, "name": "option_highlight_questions", "comment": null}, "option_inactive_survey": {"type": "integer", "index": 31, "name": "option_inactive_survey", "comment": null}, "option_new_scoring": {"type": "integer", "index": 32, "name": "option_new_scoring", "comment": null}, "option_next_button": {"type": "text", "index": 33, "name": "option_next_button", "comment": null}, "option_no_index": {"type": "text", "index": 34, "name": "option_no_index", "comment": null}, "option_page_transition": {"type": "text", "index": 35, "name": "option_page_transition", "comment": null}, "option_partial_data": {"type": "text", "index": 36, "name": "option_partial_data", "comment": null}, "option_partial_data_close_after": {"type": "integer", "index": 37, "name": "option_partial_data_close_after", "comment": null}, "option_password_protection": {"type": "integer", "index": 38, "name": "option_password_protection", "comment": null}, "option_previous_button": {"type": "text", "index": 39, "name": "option_previous_button", "comment": null}, "option_progress_bar_display": {"type": "text", "index": 40, "name": "option_progress_bar_display", "comment": null}, "option_protect_selection_ids": {"type": "integer", "index": 41, "name": "option_protect_selection_ids", "comment": null}, "option_recaptcha_v_3": {"type": "integer", "index": 42, "name": "option_recaptcha_v_3", "comment": null}, "option_referer_check": {"type": "integer", "index": 43, "name": "option_referer_check", "comment": null}, "option_referer_url": {"type": "integer", "index": 44, "name": "option_referer_url", "comment": null}, "option_relevant_id": {"type": "integer", "index": 45, "name": "option_relevant_id", "comment": null}, "option_relevant_idlockout_period": {"type": "integer", "index": 46, "name": "option_relevant_idlockout_period", "comment": null}, "option_response_summary": {"type": "integer", "index": 47, "name": "option_response_summary", "comment": null}, "option_save_and_continue": {"type": "boolean", "index": 48, "name": "option_save_and_continue", "comment": null}, "option_secure_response_files": {"type": "boolean", "index": 49, "name": "option_secure_response_files", "comment": null}, "option_show_export_tags": {"type": "integer", "index": 50, "name": "option_show_export_tags", "comment": null}, "option_skin": {"type": "text", "index": 51, "name": "option_skin", "comment": null}, "option_skin_library": {"type": "text", "index": 52, "name": "option_skin_library", "comment": null}, "option_skin_question_width": {"type": "integer", "index": 53, "name": "option_skin_question_width", "comment": null}, "option_skin_type": {"type": "text", "index": 54, "name": "option_skin_type", "comment": null}, "option_survey_creation_date": {"type": "text", "index": 55, "name": "option_survey_creation_date", "comment": null}, "option_survey_expiration": {"type": "text", "index": 56, "name": "option_survey_expiration", "comment": null}, "option_survey_language": {"type": "text", "index": 57, "name": "option_survey_language", "comment": null}, "option_survey_meta_description": {"type": "integer", "index": 58, "name": "option_survey_meta_description", "comment": null}, "option_survey_name": {"type": "integer", "index": 59, "name": "option_survey_name", "comment": null}, "option_survey_protection": {"type": "text", "index": 60, "name": "option_survey_protection", "comment": null}, "option_survey_termination": {"type": "text", "index": 61, "name": "option_survey_termination", "comment": null}, "option_survey_title": {"type": "text", "index": 62, "name": "option_survey_title", "comment": null}, "option_validate_message": {"type": "integer", "index": 63, "name": "option_validate_message", "comment": null}, "owner_id": {"type": "text", "index": 64, "name": "owner_id", "comment": null}, "project_category": {"type": "text", "index": 65, "name": "project_category", "comment": null}, "project_type": {"type": "text", "index": 66, "name": "project_type", "comment": null}, "registry_sha": {"type": "integer", "index": 67, "name": "registry_sha", "comment": null}, "registry_version": {"type": "integer", "index": 68, "name": "registry_version", "comment": null}, "schema_version": {"type": "integer", "index": 69, "name": "schema_version", "comment": null}, "scoring_summary_after_questions": {"type": "boolean", "index": 70, "name": "scoring_summary_after_questions", "comment": null}, "scoring_summary_after_survey": {"type": "boolean", "index": 71, "name": "scoring_summary_after_survey", "comment": null}, "scoring_summary_category": {"type": "integer", "index": 72, "name": "scoring_summary_category", "comment": null}, "survey_name": {"type": "text", "index": 73, "name": "survey_name", "comment": null}, "survey_status": {"type": "text", "index": 74, "name": "survey_status", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.qualtrics_source.stg_qualtrics__survey_tmp"}, "model.qualtrics_source.stg_qualtrics__survey_version": {"metadata": {"type": "BASE TABLE", "schema": "qualtrics_source_integration_tests_qualtrics_source", "name": "stg_qualtrics__survey_version", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"created_at": {"type": "timestamp without time zone", "index": 1, "name": "created_at", "comment": null}, "version_description": {"type": "text", "index": 2, "name": "version_description", "comment": null}, "version_id": {"type": "integer", "index": 3, "name": "version_id", "comment": null}, "is_published": {"type": "boolean", "index": 4, "name": "is_published", "comment": null}, "survey_id": {"type": "text", "index": 5, "name": "survey_id", "comment": null}, "publisher_user_id": {"type": "text", "index": 6, "name": "publisher_user_id", "comment": null}, "version_number": {"type": "integer", "index": 7, "name": "version_number", "comment": null}, "was_published": {"type": "boolean", "index": 8, "name": "was_published", "comment": null}, "is_deleted": {"type": "boolean", "index": 9, "name": "is_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 10, "name": "_fivetran_synced", "comment": null}, "source_relation": {"type": "text", "index": 11, "name": "source_relation", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.qualtrics_source.stg_qualtrics__survey_version"}, "model.qualtrics_source.stg_qualtrics__survey_version_tmp": {"metadata": {"type": "VIEW", "schema": "qualtrics_source_integration_tests_qualtrics_source", "name": "stg_qualtrics__survey_version_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "integer", "index": 1, "name": "id", "comment": null}, "survey_id": {"type": "text", "index": 2, "name": "survey_id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 3, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 4, "name": "_fivetran_synced", "comment": null}, "creation_date": {"type": "text", "index": 5, "name": "creation_date", "comment": null}, "description": {"type": "text", "index": 6, "name": "description", "comment": null}, "published": {"type": "boolean", "index": 7, "name": "published", "comment": null}, "user_id": {"type": "text", "index": 8, "name": "user_id", "comment": null}, "version_number": {"type": "integer", "index": 9, "name": "version_number", "comment": null}, "was_published": {"type": "boolean", "index": 10, "name": "was_published", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.qualtrics_source.stg_qualtrics__survey_version_tmp"}, "model.qualtrics_source.stg_qualtrics__user": {"metadata": {"type": "BASE TABLE", "schema": "qualtrics_source_integration_tests_qualtrics_source", "name": "stg_qualtrics__user", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"account_created_at": {"type": "timestamp without time zone", "index": 1, "name": "account_created_at", "comment": null}, "account_expires_at": {"type": "timestamp without time zone", "index": 2, "name": "account_expires_at", "comment": null}, "account_status": {"type": "text", "index": 3, "name": "account_status", "comment": null}, "division_id": {"type": "integer", "index": 4, "name": "division_id", "comment": null}, "email": {"type": "text", "index": 5, "name": "email", "comment": null}, "first_name": {"type": "text", "index": 6, "name": "first_name", "comment": null}, "user_id": {"type": "text", "index": 7, "name": "user_id", "comment": null}, "language": {"type": "integer", "index": 8, "name": "language", "comment": null}, "last_login_at": {"type": "timestamp without time zone", "index": 9, "name": "last_login_at", "comment": null}, "last_name": {"type": "text", "index": 10, "name": "last_name", "comment": null}, "organization_id": {"type": "integer", "index": 11, "name": "organization_id", "comment": null}, "password_expires_at": {"type": "timestamp without time zone", "index": 12, "name": "password_expires_at", "comment": null}, "password_last_changed_at": {"type": "timestamp without time zone", "index": 13, "name": "password_last_changed_at", "comment": null}, "response_count_auditable": {"type": "integer", "index": 14, "name": "response_count_auditable", "comment": null}, "response_count_deleted": {"type": "integer", "index": 15, "name": "response_count_deleted", "comment": null}, "response_count_generated": {"type": "integer", "index": 16, "name": "response_count_generated", "comment": null}, "time_zone": {"type": "integer", "index": 17, "name": "time_zone", "comment": null}, "is_unsubscribed": {"type": "integer", "index": 18, "name": "is_unsubscribed", "comment": null}, "user_type": {"type": "text", "index": 19, "name": "user_type", "comment": null}, "username": {"type": "text", "index": 20, "name": "username", "comment": null}, "is_deleted": {"type": "boolean", "index": 21, "name": "is_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 22, "name": "_fivetran_synced", "comment": null}, "source_relation": {"type": "text", "index": 23, "name": "source_relation", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.qualtrics_source.stg_qualtrics__user"}, "model.qualtrics_source.stg_qualtrics__user_tmp": {"metadata": {"type": "VIEW", "schema": "qualtrics_source_integration_tests_qualtrics_source", "name": "stg_qualtrics__user_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "text", "index": 1, "name": "id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 2, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "account_creation_date": {"type": "timestamp without time zone", "index": 4, "name": "account_creation_date", "comment": null}, "account_expiration_date": {"type": "timestamp without time zone", "index": 5, "name": "account_expiration_date", "comment": null}, "account_status": {"type": "text", "index": 6, "name": "account_status", "comment": null}, "division_id": {"type": "integer", "index": 7, "name": "division_id", "comment": null}, "email": {"type": "text", "index": 8, "name": "email", "comment": null}, "first_name": {"type": "text", "index": 9, "name": "first_name", "comment": null}, "language": {"type": "integer", "index": 10, "name": "language", "comment": null}, "last_login_date": {"type": "timestamp without time zone", "index": 11, "name": "last_login_date", "comment": null}, "last_name": {"type": "text", "index": 12, "name": "last_name", "comment": null}, "organization_id": {"type": "integer", "index": 13, "name": "organization_id", "comment": null}, "password_expiration_date": {"type": "timestamp without time zone", "index": 14, "name": "password_expiration_date", "comment": null}, "password_last_changed_date": {"type": "timestamp without time zone", "index": 15, "name": "password_last_changed_date", "comment": null}, "response_count_auditable": {"type": "integer", "index": 16, "name": "response_count_auditable", "comment": null}, "response_count_deleted": {"type": "integer", "index": 17, "name": "response_count_deleted", "comment": null}, "response_count_generated": {"type": "integer", "index": 18, "name": "response_count_generated", "comment": null}, "time_zone": {"type": "integer", "index": 19, "name": "time_zone", "comment": null}, "unsubscribed": {"type": "integer", "index": 20, "name": "unsubscribed", "comment": null}, "user_type": {"type": "text", "index": 21, "name": "user_type", "comment": null}, "username": {"type": "text", "index": 22, "name": "username", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.qualtrics_source.stg_qualtrics__user_tmp"}}, "sources": {"source.qualtrics_source.qualtrics.block": {"metadata": {"type": "BASE TABLE", "schema": "qualtrics_source_integration_tests", "name": "block", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "text", "index": 1, "name": "id", "comment": null}, "survey_id": {"type": "text", "index": 2, "name": "survey_id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 3, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 4, "name": "_fivetran_synced", "comment": null}, "block_locking": {"type": "integer", "index": 5, "name": "block_locking", "comment": null}, "block_visibility": {"type": "integer", "index": 6, "name": "block_visibility", "comment": null}, "description": {"type": "text", "index": 7, "name": "description", "comment": null}, "randomize_questions": {"type": "integer", "index": 8, "name": "randomize_questions", "comment": null}, "type": {"type": "text", "index": 9, "name": "type", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.qualtrics_source.qualtrics.block"}, "source.qualtrics_source.qualtrics.block_question": {"metadata": {"type": "BASE TABLE", "schema": "qualtrics_source_integration_tests", "name": "block_question", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"block_id": {"type": "text", "index": 1, "name": "block_id", "comment": null}, "question_id": {"type": "text", "index": 2, "name": "question_id", "comment": null}, "survey_id": {"type": "text", "index": 3, "name": "survey_id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 4, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 5, "name": "_fivetran_synced", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.qualtrics_source.qualtrics.block_question"}, "source.qualtrics_source.qualtrics.contact_mailing_list_membership": {"metadata": {"type": "BASE TABLE", "schema": "qualtrics_source_integration_tests", "name": "contact_mailing_list_membership", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"contact_lookup_id": {"type": "text", "index": 1, "name": "contact_lookup_id", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 2, "name": "_fivetran_synced", "comment": null}, "contact_id": {"type": "text", "index": 3, "name": "contact_id", "comment": null}, "directory_id": {"type": "text", "index": 4, "name": "directory_id", "comment": null}, "mailing_list_id": {"type": "text", "index": 5, "name": "mailing_list_id", "comment": null}, "name": {"type": "text", "index": 6, "name": "name", "comment": null}, "owner_id": {"type": "text", "index": 7, "name": "owner_id", "comment": null}, "unsubscribe_date": {"type": "integer", "index": 8, "name": "unsubscribe_date", "comment": null}, "unsubscribed": {"type": "boolean", "index": 9, "name": "unsubscribed", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.qualtrics_source.qualtrics.contact_mailing_list_membership"}, "source.qualtrics_source.qualtrics.directory": {"metadata": {"type": "BASE TABLE", "schema": "qualtrics_source_integration_tests", "name": "directory", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "text", "index": 1, "name": "id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 2, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "deduplication_criteria_email": {"type": "boolean", "index": 4, "name": "deduplication_criteria_email", "comment": null}, "deduplication_criteria_external_data_reference": {"type": "boolean", "index": 5, "name": "deduplication_criteria_external_data_reference", "comment": null}, "deduplication_criteria_first_name": {"type": "boolean", "index": 6, "name": "deduplication_criteria_first_name", "comment": null}, "deduplication_criteria_last_name": {"type": "boolean", "index": 7, "name": "deduplication_criteria_last_name", "comment": null}, "deduplication_criteria_phone": {"type": "boolean", "index": 8, "name": "deduplication_criteria_phone", "comment": null}, "is_default": {"type": "boolean", "index": 9, "name": "is_default", "comment": null}, "name": {"type": "text", "index": 10, "name": "name", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.qualtrics_source.qualtrics.directory"}, "source.qualtrics_source.qualtrics.directory_contact": {"metadata": {"type": "BASE TABLE", "schema": "qualtrics_source_integration_tests", "name": "directory_contact", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"directory_id": {"type": "text", "index": 1, "name": "directory_id", "comment": null}, "id": {"type": "text", "index": 2, "name": "id", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "creation_date": {"type": "text", "index": 4, "name": "creation_date", "comment": null}, "directory_unsubscribe_date": {"type": "timestamp without time zone", "index": 5, "name": "directory_unsubscribe_date", "comment": null}, "directory_unsubscribed": {"type": "boolean", "index": 6, "name": "directory_unsubscribed", "comment": null}, "email": {"type": "text", "index": 7, "name": "email", "comment": null}, "email_domain": {"type": "text", "index": 8, "name": "email_domain", "comment": null}, "embedded_data_last_active_time": {"type": "integer", "index": 9, "name": "embedded_data_last_active_time", "comment": null}, "embedded_data_last_response_date": {"type": "integer", "index": 10, "name": "embedded_data_last_response_date", "comment": null}, "embedded_data_login_date": {"type": "integer", "index": 11, "name": "embedded_data_login_date", "comment": null}, "ext_ref": {"type": "integer", "index": 12, "name": "ext_ref", "comment": null}, "first_name": {"type": "text", "index": 13, "name": "first_name", "comment": null}, "language": {"type": "integer", "index": 14, "name": "language", "comment": null}, "last_modified": {"type": "text", "index": 15, "name": "last_modified", "comment": null}, "last_name": {"type": "text", "index": 16, "name": "last_name", "comment": null}, "phone": {"type": "character varying", "index": 17, "name": "phone", "comment": null}, "write_blanks": {"type": "integer", "index": 18, "name": "write_blanks", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.qualtrics_source.qualtrics.directory_contact"}, "source.qualtrics_source.qualtrics.directory_mailing_list": {"metadata": {"type": "BASE TABLE", "schema": "qualtrics_source_integration_tests", "name": "directory_mailing_list", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"directory_id": {"type": "text", "index": 1, "name": "directory_id", "comment": null}, "id": {"type": "text", "index": 2, "name": "id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 3, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 4, "name": "_fivetran_synced", "comment": null}, "creation_date": {"type": "text", "index": 5, "name": "creation_date", "comment": null}, "last_modified_date": {"type": "text", "index": 6, "name": "last_modified_date", "comment": null}, "name": {"type": "text", "index": 7, "name": "name", "comment": null}, "owner_id": {"type": "text", "index": 8, "name": "owner_id", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.qualtrics_source.qualtrics.directory_mailing_list"}, "source.qualtrics_source.qualtrics.distribution": {"metadata": {"type": "BASE TABLE", "schema": "qualtrics_source_integration_tests", "name": "distribution", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "text", "index": 1, "name": "id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 2, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "created_date": {"type": "text", "index": 4, "name": "created_date", "comment": null}, "header_from_email": {"type": "text", "index": 5, "name": "header_from_email", "comment": null}, "header_from_name": {"type": "text", "index": 6, "name": "header_from_name", "comment": null}, "header_reply_to_email": {"type": "text", "index": 7, "name": "header_reply_to_email", "comment": null}, "header_subject": {"type": "text", "index": 8, "name": "header_subject", "comment": null}, "message_library_id": {"type": "integer", "index": 9, "name": "message_library_id", "comment": null}, "message_message_id": {"type": "integer", "index": 10, "name": "message_message_id", "comment": null}, "message_message_text": {"type": "integer", "index": 11, "name": "message_message_text", "comment": null}, "modified_date": {"type": "text", "index": 12, "name": "modified_date", "comment": null}, "organization_id": {"type": "text", "index": 13, "name": "organization_id", "comment": null}, "owner_id": {"type": "text", "index": 14, "name": "owner_id", "comment": null}, "parent_distribution_id": {"type": "integer", "index": 15, "name": "parent_distribution_id", "comment": null}, "recipient_contact_id": {"type": "text", "index": 16, "name": "recipient_contact_id", "comment": null}, "recipient_library_id": {"type": "text", "index": 17, "name": "recipient_library_id", "comment": null}, "recipient_mailing_list_id": {"type": "text", "index": 18, "name": "recipient_mailing_list_id", "comment": null}, "recipient_sample_id": {"type": "text", "index": 19, "name": "recipient_sample_id", "comment": null}, "request_status": {"type": "text", "index": 20, "name": "request_status", "comment": null}, "request_type": {"type": "text", "index": 21, "name": "request_type", "comment": null}, "send_date": {"type": "text", "index": 22, "name": "send_date", "comment": null}, "survey_link_expiration_date": {"type": "text", "index": 23, "name": "survey_link_expiration_date", "comment": null}, "survey_link_link_type": {"type": "text", "index": 24, "name": "survey_link_link_type", "comment": null}, "survey_link_survey_id": {"type": "text", "index": 25, "name": "survey_link_survey_id", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.qualtrics_source.qualtrics.distribution"}, "source.qualtrics_source.qualtrics.distribution_contact": {"metadata": {"type": "BASE TABLE", "schema": "qualtrics_source_integration_tests", "name": "distribution_contact", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"contact_id": {"type": "text", "index": 1, "name": "contact_id", "comment": null}, "distribution_id": {"type": "text", "index": 2, "name": "distribution_id", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "contact_frequency_rule_id": {"type": "integer", "index": 4, "name": "contact_frequency_rule_id", "comment": null}, "contact_lookup_id": {"type": "text", "index": 5, "name": "contact_lookup_id", "comment": null}, "opened_at": {"type": "text", "index": 6, "name": "opened_at", "comment": null}, "response_completed_at": {"type": "timestamp without time zone", "index": 7, "name": "response_completed_at", "comment": null}, "response_id": {"type": "integer", "index": 8, "name": "response_id", "comment": null}, "response_started_at": {"type": "timestamp without time zone", "index": 9, "name": "response_started_at", "comment": null}, "sent_at": {"type": "text", "index": 10, "name": "sent_at", "comment": null}, "status": {"type": "text", "index": 11, "name": "status", "comment": null}, "survey_link": {"type": "text", "index": 12, "name": "survey_link", "comment": null}, "survey_session_id": {"type": "integer", "index": 13, "name": "survey_session_id", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.qualtrics_source.qualtrics.distribution_contact"}, "source.qualtrics_source.qualtrics.question": {"metadata": {"type": "BASE TABLE", "schema": "qualtrics_source_integration_tests", "name": "question", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "text", "index": 1, "name": "id", "comment": null}, "survey_id": {"type": "text", "index": 2, "name": "survey_id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 3, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 4, "name": "_fivetran_synced", "comment": null}, "data_export_tag": {"type": "text", "index": 5, "name": "data_export_tag", "comment": null}, "data_visibility_hidden": {"type": "boolean", "index": 6, "name": "data_visibility_hidden", "comment": null}, "data_visibility_private": {"type": "boolean", "index": 7, "name": "data_visibility_private", "comment": null}, "next_answer_id": {"type": "integer", "index": 8, "name": "next_answer_id", "comment": null}, "next_choice_id": {"type": "integer", "index": 9, "name": "next_choice_id", "comment": null}, "question_description": {"type": "text", "index": 10, "name": "question_description", "comment": null}, "question_description_option": {"type": "text", "index": 11, "name": "question_description_option", "comment": null}, "question_text": {"type": "text", "index": 12, "name": "question_text", "comment": null}, "question_text_unsafe": {"type": "text", "index": 13, "name": "question_text_unsafe", "comment": null}, "question_type": {"type": "text", "index": 14, "name": "question_type", "comment": null}, "selector": {"type": "text", "index": 15, "name": "selector", "comment": null}, "sub_selector": {"type": "text", "index": 16, "name": "sub_selector", "comment": null}, "validation_setting_force_response": {"type": "integer", "index": 17, "name": "validation_setting_force_response", "comment": null}, "validation_setting_force_response_type": {"type": "integer", "index": 18, "name": "validation_setting_force_response_type", "comment": null}, "validation_setting_type": {"type": "text", "index": 19, "name": "validation_setting_type", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.qualtrics_source.qualtrics.question"}, "source.qualtrics_source.qualtrics.question_option": {"metadata": {"type": "BASE TABLE", "schema": "qualtrics_source_integration_tests", "name": "question_option", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"key": {"type": "integer", "index": 1, "name": "key", "comment": null}, "question_id": {"type": "text", "index": 2, "name": "question_id", "comment": null}, "survey_id": {"type": "text", "index": 3, "name": "survey_id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 4, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 5, "name": "_fivetran_synced", "comment": null}, "recode_value": {"type": "integer", "index": 6, "name": "recode_value", "comment": null}, "text": {"type": "text", "index": 7, "name": "text", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.qualtrics_source.qualtrics.question_option"}, "source.qualtrics_source.qualtrics.question_response": {"metadata": {"type": "BASE TABLE", "schema": "qualtrics_source_integration_tests", "name": "question_response", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"_fivetran_id": {"type": "text", "index": 1, "name": "_fivetran_id", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 2, "name": "_fivetran_synced", "comment": null}, "loop_id": {"type": "integer", "index": 3, "name": "loop_id", "comment": null}, "question": {"type": "text", "index": 4, "name": "question", "comment": null}, "question_id": {"type": "text", "index": 5, "name": "question_id", "comment": null}, "question_option_key": {"type": "integer", "index": 6, "name": "question_option_key", "comment": null}, "response_id": {"type": "text", "index": 7, "name": "response_id", "comment": null}, "sub_question_key": {"type": "integer", "index": 8, "name": "sub_question_key", "comment": null}, "sub_question_text": {"type": "integer", "index": 9, "name": "sub_question_text", "comment": null}, "value": {"type": "integer", "index": 10, "name": "value", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.qualtrics_source.qualtrics.question_response"}, "source.qualtrics_source.qualtrics.sub_question": {"metadata": {"type": "BASE TABLE", "schema": "qualtrics_source_integration_tests", "name": "sub_question", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"key": {"type": "integer", "index": 1, "name": "key", "comment": null}, "question_id": {"type": "text", "index": 2, "name": "question_id", "comment": null}, "survey_id": {"type": "text", "index": 3, "name": "survey_id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 4, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 5, "name": "_fivetran_synced", "comment": null}, "choice_data_export_tag": {"type": "integer", "index": 6, "name": "choice_data_export_tag", "comment": null}, "text": {"type": "text", "index": 7, "name": "text", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.qualtrics_source.qualtrics.sub_question"}, "source.qualtrics_source.qualtrics.survey": {"metadata": {"type": "BASE TABLE", "schema": "qualtrics_source_integration_tests", "name": "survey", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "text", "index": 1, "name": "id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 2, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "auto_scoring_category": {"type": "integer", "index": 4, "name": "auto_scoring_category", "comment": null}, "brand_base_url": {"type": "text", "index": 5, "name": "brand_base_url", "comment": null}, "brand_id": {"type": "text", "index": 6, "name": "brand_id", "comment": null}, "bundle_short_name": {"type": "integer", "index": 7, "name": "bundle_short_name", "comment": null}, "composition_type": {"type": "integer", "index": 8, "name": "composition_type", "comment": null}, "creator_id": {"type": "integer", "index": 9, "name": "creator_id", "comment": null}, "default_scoring_category": {"type": "integer", "index": 10, "name": "default_scoring_category", "comment": null}, "division_id": {"type": "integer", "index": 11, "name": "division_id", "comment": null}, "is_active": {"type": "integer", "index": 12, "name": "is_active", "comment": null}, "last_accessed": {"type": "timestamp without time zone", "index": 13, "name": "last_accessed", "comment": null}, "last_activated": {"type": "text", "index": 14, "name": "last_activated", "comment": null}, "last_modified": {"type": "text", "index": 15, "name": "last_modified", "comment": null}, "option_active_response_set": {"type": "text", "index": 16, "name": "option_active_response_set", "comment": null}, "option_anonymize_response": {"type": "integer", "index": 17, "name": "option_anonymize_response", "comment": null}, "option_auto_confirm_start": {"type": "integer", "index": 18, "name": "option_auto_confirm_start", "comment": null}, "option_autoadvance": {"type": "boolean", "index": 19, "name": "option_autoadvance", "comment": null}, "option_autoadvance_pages": {"type": "boolean", "index": 20, "name": "option_autoadvance_pages", "comment": null}, "option_autofocus": {"type": "boolean", "index": 21, "name": "option_autofocus", "comment": null}, "option_available_languages": {"type": "integer", "index": 22, "name": "option_available_languages", "comment": null}, "option_back_button": {"type": "boolean", "index": 23, "name": "option_back_button", "comment": null}, "option_ballot_box_stuffing_prevention": {"type": "boolean", "index": 24, "name": "option_ballot_box_stuffing_prevention", "comment": null}, "option_collect_geo_location": {"type": "integer", "index": 25, "name": "option_collect_geo_location", "comment": null}, "option_confirm_start": {"type": "integer", "index": 26, "name": "option_confirm_start", "comment": null}, "option_custom_styles": {"type": "text", "index": 27, "name": "option_custom_styles", "comment": null}, "option_email_thank_you": {"type": "integer", "index": 28, "name": "option_email_thank_you", "comment": null}, "option_eosredirect_url": {"type": "integer", "index": 29, "name": "option_eosredirect_url", "comment": null}, "option_highlight_questions": {"type": "text", "index": 30, "name": "option_highlight_questions", "comment": null}, "option_inactive_survey": {"type": "integer", "index": 31, "name": "option_inactive_survey", "comment": null}, "option_new_scoring": {"type": "integer", "index": 32, "name": "option_new_scoring", "comment": null}, "option_next_button": {"type": "text", "index": 33, "name": "option_next_button", "comment": null}, "option_no_index": {"type": "text", "index": 34, "name": "option_no_index", "comment": null}, "option_page_transition": {"type": "text", "index": 35, "name": "option_page_transition", "comment": null}, "option_partial_data": {"type": "text", "index": 36, "name": "option_partial_data", "comment": null}, "option_partial_data_close_after": {"type": "integer", "index": 37, "name": "option_partial_data_close_after", "comment": null}, "option_password_protection": {"type": "integer", "index": 38, "name": "option_password_protection", "comment": null}, "option_previous_button": {"type": "text", "index": 39, "name": "option_previous_button", "comment": null}, "option_progress_bar_display": {"type": "text", "index": 40, "name": "option_progress_bar_display", "comment": null}, "option_protect_selection_ids": {"type": "integer", "index": 41, "name": "option_protect_selection_ids", "comment": null}, "option_recaptcha_v_3": {"type": "integer", "index": 42, "name": "option_recaptcha_v_3", "comment": null}, "option_referer_check": {"type": "integer", "index": 43, "name": "option_referer_check", "comment": null}, "option_referer_url": {"type": "integer", "index": 44, "name": "option_referer_url", "comment": null}, "option_relevant_id": {"type": "integer", "index": 45, "name": "option_relevant_id", "comment": null}, "option_relevant_idlockout_period": {"type": "integer", "index": 46, "name": "option_relevant_idlockout_period", "comment": null}, "option_response_summary": {"type": "integer", "index": 47, "name": "option_response_summary", "comment": null}, "option_save_and_continue": {"type": "boolean", "index": 48, "name": "option_save_and_continue", "comment": null}, "option_secure_response_files": {"type": "boolean", "index": 49, "name": "option_secure_response_files", "comment": null}, "option_show_export_tags": {"type": "integer", "index": 50, "name": "option_show_export_tags", "comment": null}, "option_skin": {"type": "text", "index": 51, "name": "option_skin", "comment": null}, "option_skin_library": {"type": "text", "index": 52, "name": "option_skin_library", "comment": null}, "option_skin_question_width": {"type": "integer", "index": 53, "name": "option_skin_question_width", "comment": null}, "option_skin_type": {"type": "text", "index": 54, "name": "option_skin_type", "comment": null}, "option_survey_creation_date": {"type": "text", "index": 55, "name": "option_survey_creation_date", "comment": null}, "option_survey_expiration": {"type": "text", "index": 56, "name": "option_survey_expiration", "comment": null}, "option_survey_language": {"type": "text", "index": 57, "name": "option_survey_language", "comment": null}, "option_survey_meta_description": {"type": "integer", "index": 58, "name": "option_survey_meta_description", "comment": null}, "option_survey_name": {"type": "integer", "index": 59, "name": "option_survey_name", "comment": null}, "option_survey_protection": {"type": "text", "index": 60, "name": "option_survey_protection", "comment": null}, "option_survey_termination": {"type": "text", "index": 61, "name": "option_survey_termination", "comment": null}, "option_survey_title": {"type": "text", "index": 62, "name": "option_survey_title", "comment": null}, "option_validate_message": {"type": "integer", "index": 63, "name": "option_validate_message", "comment": null}, "owner_id": {"type": "text", "index": 64, "name": "owner_id", "comment": null}, "project_category": {"type": "text", "index": 65, "name": "project_category", "comment": null}, "project_type": {"type": "text", "index": 66, "name": "project_type", "comment": null}, "registry_sha": {"type": "integer", "index": 67, "name": "registry_sha", "comment": null}, "registry_version": {"type": "integer", "index": 68, "name": "registry_version", "comment": null}, "schema_version": {"type": "integer", "index": 69, "name": "schema_version", "comment": null}, "scoring_summary_after_questions": {"type": "boolean", "index": 70, "name": "scoring_summary_after_questions", "comment": null}, "scoring_summary_after_survey": {"type": "boolean", "index": 71, "name": "scoring_summary_after_survey", "comment": null}, "scoring_summary_category": {"type": "integer", "index": 72, "name": "scoring_summary_category", "comment": null}, "survey_name": {"type": "text", "index": 73, "name": "survey_name", "comment": null}, "survey_status": {"type": "text", "index": 74, "name": "survey_status", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.qualtrics_source.qualtrics.survey"}, "source.qualtrics_source.qualtrics.survey_embedded_data": {"metadata": {"type": "BASE TABLE", "schema": "qualtrics_source_integration_tests", "name": "survey_embedded_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"import_id": {"type": "text", "index": 1, "name": "import_id", "comment": null}, "key": {"type": "text", "index": 2, "name": "key", "comment": null}, "response_id": {"type": "text", "index": 3, "name": "response_id", "comment": null}, "value": {"type": "integer", "index": 4, "name": "value", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 5, "name": "_fivetran_synced", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.qualtrics_source.qualtrics.survey_embedded_data"}, "source.qualtrics_source.qualtrics.survey_response": {"metadata": {"type": "BASE TABLE", "schema": "qualtrics_source_integration_tests", "name": "survey_response", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "text", "index": 1, "name": "id", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 2, "name": "_fivetran_synced", "comment": null}, "distribution_channel": {"type": "text", "index": 3, "name": "distribution_channel", "comment": null}, "duration_in_seconds": {"type": "integer", "index": 4, "name": "duration_in_seconds", "comment": null}, "end_date": {"type": "text", "index": 5, "name": "end_date", "comment": null}, "finished": {"type": "integer", "index": 6, "name": "finished", "comment": null}, "ip_address": {"type": "text", "index": 7, "name": "ip_address", "comment": null}, "last_modified_date": {"type": "text", "index": 8, "name": "last_modified_date", "comment": null}, "location_latitude": {"type": "integer", "index": 9, "name": "location_latitude", "comment": null}, "location_longitude": {"type": "integer", "index": 10, "name": "location_longitude", "comment": null}, "progress": {"type": "integer", "index": 11, "name": "progress", "comment": null}, "recipient_email": {"type": "text", "index": 12, "name": "recipient_email", "comment": null}, "recipient_first_name": {"type": "text", "index": 13, "name": "recipient_first_name", "comment": null}, "recipient_last_name": {"type": "text", "index": 14, "name": "recipient_last_name", "comment": null}, "recorded_date": {"type": "text", "index": 15, "name": "recorded_date", "comment": null}, "start_date": {"type": "text", "index": 16, "name": "start_date", "comment": null}, "status": {"type": "integer", "index": 17, "name": "status", "comment": null}, "survey_id": {"type": "text", "index": 18, "name": "survey_id", "comment": null}, "user_language": {"type": "text", "index": 19, "name": "user_language", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.qualtrics_source.qualtrics.survey_response"}, "source.qualtrics_source.qualtrics.survey_version": {"metadata": {"type": "BASE TABLE", "schema": "qualtrics_source_integration_tests", "name": "survey_version", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "integer", "index": 1, "name": "id", "comment": null}, "survey_id": {"type": "text", "index": 2, "name": "survey_id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 3, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 4, "name": "_fivetran_synced", "comment": null}, "creation_date": {"type": "text", "index": 5, "name": "creation_date", "comment": null}, "description": {"type": "text", "index": 6, "name": "description", "comment": null}, "published": {"type": "boolean", "index": 7, "name": "published", "comment": null}, "user_id": {"type": "text", "index": 8, "name": "user_id", "comment": null}, "version_number": {"type": "integer", "index": 9, "name": "version_number", "comment": null}, "was_published": {"type": "boolean", "index": 10, "name": "was_published", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.qualtrics_source.qualtrics.survey_version"}, "source.qualtrics_source.qualtrics.user": {"metadata": {"type": "BASE TABLE", "schema": "qualtrics_source_integration_tests", "name": "user", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "text", "index": 1, "name": "id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 2, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "account_creation_date": {"type": "timestamp without time zone", "index": 4, "name": "account_creation_date", "comment": null}, "account_expiration_date": {"type": "timestamp without time zone", "index": 5, "name": "account_expiration_date", "comment": null}, "account_status": {"type": "text", "index": 6, "name": "account_status", "comment": null}, "division_id": {"type": "integer", "index": 7, "name": "division_id", "comment": null}, "email": {"type": "text", "index": 8, "name": "email", "comment": null}, "first_name": {"type": "text", "index": 9, "name": "first_name", "comment": null}, "language": {"type": "integer", "index": 10, "name": "language", "comment": null}, "last_login_date": {"type": "timestamp without time zone", "index": 11, "name": "last_login_date", "comment": null}, "last_name": {"type": "text", "index": 12, "name": "last_name", "comment": null}, "organization_id": {"type": "integer", "index": 13, "name": "organization_id", "comment": null}, "password_expiration_date": {"type": "timestamp without time zone", "index": 14, "name": "password_expiration_date", "comment": null}, "password_last_changed_date": {"type": "timestamp without time zone", "index": 15, "name": "password_last_changed_date", "comment": null}, "response_count_auditable": {"type": "integer", "index": 16, "name": "response_count_auditable", "comment": null}, "response_count_deleted": {"type": "integer", "index": 17, "name": "response_count_deleted", "comment": null}, "response_count_generated": {"type": "integer", "index": 18, "name": "response_count_generated", "comment": null}, "time_zone": {"type": "integer", "index": 19, "name": "time_zone", "comment": null}, "unsubscribed": {"type": "integer", "index": 20, "name": "unsubscribed", "comment": null}, "user_type": {"type": "text", "index": 21, "name": "user_type", "comment": null}, "username": {"type": "text", "index": 22, "name": "username", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.qualtrics_source.qualtrics.user"}}, "errors": null} +{"metadata": {"dbt_schema_version": "https://schemas.getdbt.com/dbt/catalog/v1.json", "dbt_version": "1.7.9", "generated_at": "2024-04-29T19:41:41.822725Z", "invocation_id": "7c825524-c0d9-4b0e-91ee-7162e7b83981", "env": {}}, "nodes": {"seed.qualtrics_source_integration_tests.block": {"metadata": {"type": "BASE TABLE", "schema": "qualtrics_source_integration_tests_702", "name": "block", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "text", "index": 1, "name": "id", "comment": null}, "survey_id": {"type": "text", "index": 2, "name": "survey_id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 3, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 4, "name": "_fivetran_synced", "comment": null}, "block_locking": {"type": "integer", "index": 5, "name": "block_locking", "comment": null}, "block_visibility": {"type": "integer", "index": 6, "name": "block_visibility", "comment": null}, "description": {"type": "text", "index": 7, "name": "description", "comment": null}, "randomize_questions": {"type": "integer", "index": 8, "name": "randomize_questions", "comment": null}, "type": {"type": "text", "index": 9, "name": "type", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.qualtrics_source_integration_tests.block"}, "seed.qualtrics_source_integration_tests.block_question": {"metadata": {"type": "BASE TABLE", "schema": "qualtrics_source_integration_tests_702", "name": "block_question", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"block_id": {"type": "text", "index": 1, "name": "block_id", "comment": null}, "question_id": {"type": "text", "index": 2, "name": "question_id", "comment": null}, "survey_id": {"type": "text", "index": 3, "name": "survey_id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 4, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 5, "name": "_fivetran_synced", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.qualtrics_source_integration_tests.block_question"}, "seed.qualtrics_source_integration_tests.contact_mailing_list_membership": {"metadata": {"type": "BASE TABLE", "schema": "qualtrics_source_integration_tests_702", "name": "contact_mailing_list_membership", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"contact_lookup_id": {"type": "text", "index": 1, "name": "contact_lookup_id", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 2, "name": "_fivetran_synced", "comment": null}, "contact_id": {"type": "text", "index": 3, "name": "contact_id", "comment": null}, "directory_id": {"type": "text", "index": 4, "name": "directory_id", "comment": null}, "mailing_list_id": {"type": "text", "index": 5, "name": "mailing_list_id", "comment": null}, "name": {"type": "text", "index": 6, "name": "name", "comment": null}, "owner_id": {"type": "text", "index": 7, "name": "owner_id", "comment": null}, "unsubscribe_date": {"type": "timestamp without time zone", "index": 8, "name": "unsubscribe_date", "comment": null}, "unsubscribed": {"type": "boolean", "index": 9, "name": "unsubscribed", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.qualtrics_source_integration_tests.contact_mailing_list_membership"}, "seed.qualtrics_source_integration_tests.core_contact": {"metadata": {"type": "BASE TABLE", "schema": "qualtrics_source_integration_tests_702", "name": "core_contact", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"_fivetran_synced": {"type": "timestamp without time zone", "index": 1, "name": "_fivetran_synced", "comment": null}, "id": {"type": "text", "index": 2, "name": "id", "comment": null}, "mailing_list_id": {"type": "text", "index": 3, "name": "mailing_list_id", "comment": null}, "first_name": {"type": "text", "index": 4, "name": "first_name", "comment": null}, "last_name": {"type": "text", "index": 5, "name": "last_name", "comment": null}, "email": {"type": "text", "index": 6, "name": "email", "comment": null}, "external_data_reference": {"type": "text", "index": 7, "name": "external_data_reference", "comment": null}, "language": {"type": "text", "index": 8, "name": "language", "comment": null}, "unsubscribed": {"type": "boolean", "index": 9, "name": "unsubscribed", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 10, "name": "_fivetran_deleted", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.qualtrics_source_integration_tests.core_contact"}, "seed.qualtrics_source_integration_tests.core_mailing_list": {"metadata": {"type": "BASE TABLE", "schema": "qualtrics_source_integration_tests_702", "name": "core_mailing_list", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"_fivetran_synced": {"type": "timestamp without time zone", "index": 1, "name": "_fivetran_synced", "comment": null}, "id": {"type": "text", "index": 2, "name": "id", "comment": null}, "library_id": {"type": "text", "index": 3, "name": "library_id", "comment": null}, "name": {"type": "text", "index": 4, "name": "name", "comment": null}, "category": {"type": "text", "index": 5, "name": "category", "comment": null}, "folder": {"type": "text", "index": 6, "name": "folder", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 7, "name": "_fivetran_deleted", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.qualtrics_source_integration_tests.core_mailing_list"}, "seed.qualtrics_source_integration_tests.directory": {"metadata": {"type": "BASE TABLE", "schema": "qualtrics_source_integration_tests_702", "name": "directory", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "text", "index": 1, "name": "id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 2, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "deduplication_criteria_email": {"type": "boolean", "index": 4, "name": "deduplication_criteria_email", "comment": null}, "deduplication_criteria_external_data_reference": {"type": "boolean", "index": 5, "name": "deduplication_criteria_external_data_reference", "comment": null}, "deduplication_criteria_first_name": {"type": "boolean", "index": 6, "name": "deduplication_criteria_first_name", "comment": null}, "deduplication_criteria_last_name": {"type": "boolean", "index": 7, "name": "deduplication_criteria_last_name", "comment": null}, "deduplication_criteria_phone": {"type": "boolean", "index": 8, "name": "deduplication_criteria_phone", "comment": null}, "is_default": {"type": "boolean", "index": 9, "name": "is_default", "comment": null}, "name": {"type": "text", "index": 10, "name": "name", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.qualtrics_source_integration_tests.directory"}, "seed.qualtrics_source_integration_tests.directory_contact": {"metadata": {"type": "BASE TABLE", "schema": "qualtrics_source_integration_tests_702", "name": "directory_contact", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"directory_id": {"type": "text", "index": 1, "name": "directory_id", "comment": null}, "id": {"type": "text", "index": 2, "name": "id", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "creation_date": {"type": "text", "index": 4, "name": "creation_date", "comment": null}, "directory_unsubscribe_date": {"type": "timestamp without time zone", "index": 5, "name": "directory_unsubscribe_date", "comment": null}, "directory_unsubscribed": {"type": "boolean", "index": 6, "name": "directory_unsubscribed", "comment": null}, "email": {"type": "text", "index": 7, "name": "email", "comment": null}, "email_domain": {"type": "text", "index": 8, "name": "email_domain", "comment": null}, "embedded_data_last_active_time": {"type": "integer", "index": 9, "name": "embedded_data_last_active_time", "comment": null}, "embedded_data_last_response_date": {"type": "integer", "index": 10, "name": "embedded_data_last_response_date", "comment": null}, "embedded_data_login_date": {"type": "integer", "index": 11, "name": "embedded_data_login_date", "comment": null}, "ext_ref": {"type": "integer", "index": 12, "name": "ext_ref", "comment": null}, "first_name": {"type": "text", "index": 13, "name": "first_name", "comment": null}, "language": {"type": "integer", "index": 14, "name": "language", "comment": null}, "last_modified": {"type": "text", "index": 15, "name": "last_modified", "comment": null}, "last_name": {"type": "text", "index": 16, "name": "last_name", "comment": null}, "phone": {"type": "character varying", "index": 17, "name": "phone", "comment": null}, "write_blanks": {"type": "integer", "index": 18, "name": "write_blanks", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.qualtrics_source_integration_tests.directory_contact"}, "seed.qualtrics_source_integration_tests.directory_mailing_list": {"metadata": {"type": "BASE TABLE", "schema": "qualtrics_source_integration_tests_702", "name": "directory_mailing_list", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"directory_id": {"type": "text", "index": 1, "name": "directory_id", "comment": null}, "id": {"type": "text", "index": 2, "name": "id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 3, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 4, "name": "_fivetran_synced", "comment": null}, "creation_date": {"type": "text", "index": 5, "name": "creation_date", "comment": null}, "last_modified_date": {"type": "text", "index": 6, "name": "last_modified_date", "comment": null}, "name": {"type": "text", "index": 7, "name": "name", "comment": null}, "owner_id": {"type": "text", "index": 8, "name": "owner_id", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.qualtrics_source_integration_tests.directory_mailing_list"}, "seed.qualtrics_source_integration_tests.distribution": {"metadata": {"type": "BASE TABLE", "schema": "qualtrics_source_integration_tests_702", "name": "distribution", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "text", "index": 1, "name": "id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 2, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "created_date": {"type": "text", "index": 4, "name": "created_date", "comment": null}, "header_from_email": {"type": "text", "index": 5, "name": "header_from_email", "comment": null}, "header_from_name": {"type": "text", "index": 6, "name": "header_from_name", "comment": null}, "header_reply_to_email": {"type": "text", "index": 7, "name": "header_reply_to_email", "comment": null}, "header_subject": {"type": "text", "index": 8, "name": "header_subject", "comment": null}, "message_library_id": {"type": "integer", "index": 9, "name": "message_library_id", "comment": null}, "message_message_id": {"type": "integer", "index": 10, "name": "message_message_id", "comment": null}, "message_message_text": {"type": "integer", "index": 11, "name": "message_message_text", "comment": null}, "modified_date": {"type": "text", "index": 12, "name": "modified_date", "comment": null}, "organization_id": {"type": "text", "index": 13, "name": "organization_id", "comment": null}, "owner_id": {"type": "text", "index": 14, "name": "owner_id", "comment": null}, "parent_distribution_id": {"type": "integer", "index": 15, "name": "parent_distribution_id", "comment": null}, "recipient_contact_id": {"type": "text", "index": 16, "name": "recipient_contact_id", "comment": null}, "recipient_library_id": {"type": "text", "index": 17, "name": "recipient_library_id", "comment": null}, "recipient_mailing_list_id": {"type": "text", "index": 18, "name": "recipient_mailing_list_id", "comment": null}, "recipient_sample_id": {"type": "text", "index": 19, "name": "recipient_sample_id", "comment": null}, "request_status": {"type": "text", "index": 20, "name": "request_status", "comment": null}, "request_type": {"type": "text", "index": 21, "name": "request_type", "comment": null}, "send_date": {"type": "text", "index": 22, "name": "send_date", "comment": null}, "survey_link_expiration_date": {"type": "text", "index": 23, "name": "survey_link_expiration_date", "comment": null}, "survey_link_link_type": {"type": "text", "index": 24, "name": "survey_link_link_type", "comment": null}, "survey_link_survey_id": {"type": "text", "index": 25, "name": "survey_link_survey_id", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.qualtrics_source_integration_tests.distribution"}, "seed.qualtrics_source_integration_tests.distribution_contact": {"metadata": {"type": "BASE TABLE", "schema": "qualtrics_source_integration_tests_702", "name": "distribution_contact", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"contact_id": {"type": "text", "index": 1, "name": "contact_id", "comment": null}, "distribution_id": {"type": "text", "index": 2, "name": "distribution_id", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "contact_frequency_rule_id": {"type": "integer", "index": 4, "name": "contact_frequency_rule_id", "comment": null}, "contact_lookup_id": {"type": "text", "index": 5, "name": "contact_lookup_id", "comment": null}, "opened_at": {"type": "text", "index": 6, "name": "opened_at", "comment": null}, "response_completed_at": {"type": "timestamp without time zone", "index": 7, "name": "response_completed_at", "comment": null}, "response_id": {"type": "integer", "index": 8, "name": "response_id", "comment": null}, "response_started_at": {"type": "timestamp without time zone", "index": 9, "name": "response_started_at", "comment": null}, "sent_at": {"type": "text", "index": 10, "name": "sent_at", "comment": null}, "status": {"type": "text", "index": 11, "name": "status", "comment": null}, "survey_link": {"type": "text", "index": 12, "name": "survey_link", "comment": null}, "survey_session_id": {"type": "integer", "index": 13, "name": "survey_session_id", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.qualtrics_source_integration_tests.distribution_contact"}, "seed.qualtrics_source_integration_tests.question": {"metadata": {"type": "BASE TABLE", "schema": "qualtrics_source_integration_tests_702", "name": "question", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "text", "index": 1, "name": "id", "comment": null}, "survey_id": {"type": "text", "index": 2, "name": "survey_id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 3, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 4, "name": "_fivetran_synced", "comment": null}, "data_export_tag": {"type": "text", "index": 5, "name": "data_export_tag", "comment": null}, "data_visibility_hidden": {"type": "boolean", "index": 6, "name": "data_visibility_hidden", "comment": null}, "data_visibility_private": {"type": "boolean", "index": 7, "name": "data_visibility_private", "comment": null}, "next_answer_id": {"type": "integer", "index": 8, "name": "next_answer_id", "comment": null}, "next_choice_id": {"type": "integer", "index": 9, "name": "next_choice_id", "comment": null}, "question_description": {"type": "text", "index": 10, "name": "question_description", "comment": null}, "question_description_option": {"type": "text", "index": 11, "name": "question_description_option", "comment": null}, "question_text": {"type": "text", "index": 12, "name": "question_text", "comment": null}, "question_text_unsafe": {"type": "text", "index": 13, "name": "question_text_unsafe", "comment": null}, "question_type": {"type": "text", "index": 14, "name": "question_type", "comment": null}, "selector": {"type": "text", "index": 15, "name": "selector", "comment": null}, "sub_selector": {"type": "text", "index": 16, "name": "sub_selector", "comment": null}, "validation_setting_force_response": {"type": "integer", "index": 17, "name": "validation_setting_force_response", "comment": null}, "validation_setting_force_response_type": {"type": "integer", "index": 18, "name": "validation_setting_force_response_type", "comment": null}, "validation_setting_type": {"type": "text", "index": 19, "name": "validation_setting_type", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.qualtrics_source_integration_tests.question"}, "seed.qualtrics_source_integration_tests.question_option": {"metadata": {"type": "BASE TABLE", "schema": "qualtrics_source_integration_tests_702", "name": "question_option", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"key": {"type": "integer", "index": 1, "name": "key", "comment": null}, "question_id": {"type": "text", "index": 2, "name": "question_id", "comment": null}, "survey_id": {"type": "text", "index": 3, "name": "survey_id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 4, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 5, "name": "_fivetran_synced", "comment": null}, "recode_value": {"type": "integer", "index": 6, "name": "recode_value", "comment": null}, "text": {"type": "text", "index": 7, "name": "text", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.qualtrics_source_integration_tests.question_option"}, "seed.qualtrics_source_integration_tests.question_response": {"metadata": {"type": "BASE TABLE", "schema": "qualtrics_source_integration_tests_702", "name": "question_response", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"_fivetran_id": {"type": "text", "index": 1, "name": "_fivetran_id", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 2, "name": "_fivetran_synced", "comment": null}, "loop_id": {"type": "integer", "index": 3, "name": "loop_id", "comment": null}, "question": {"type": "text", "index": 4, "name": "question", "comment": null}, "question_id": {"type": "text", "index": 5, "name": "question_id", "comment": null}, "question_option_key": {"type": "integer", "index": 6, "name": "question_option_key", "comment": null}, "response_id": {"type": "text", "index": 7, "name": "response_id", "comment": null}, "sub_question_key": {"type": "integer", "index": 8, "name": "sub_question_key", "comment": null}, "sub_question_text": {"type": "integer", "index": 9, "name": "sub_question_text", "comment": null}, "value": {"type": "integer", "index": 10, "name": "value", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.qualtrics_source_integration_tests.question_response"}, "seed.qualtrics_source_integration_tests.sub_question": {"metadata": {"type": "BASE TABLE", "schema": "qualtrics_source_integration_tests_702", "name": "sub_question", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"key": {"type": "integer", "index": 1, "name": "key", "comment": null}, "question_id": {"type": "text", "index": 2, "name": "question_id", "comment": null}, "survey_id": {"type": "text", "index": 3, "name": "survey_id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 4, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 5, "name": "_fivetran_synced", "comment": null}, "choice_data_export_tag": {"type": "integer", "index": 6, "name": "choice_data_export_tag", "comment": null}, "text": {"type": "text", "index": 7, "name": "text", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.qualtrics_source_integration_tests.sub_question"}, "seed.qualtrics_source_integration_tests.survey": {"metadata": {"type": "BASE TABLE", "schema": "qualtrics_source_integration_tests_702", "name": "survey", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "text", "index": 1, "name": "id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 2, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "auto_scoring_category": {"type": "integer", "index": 4, "name": "auto_scoring_category", "comment": null}, "brand_base_url": {"type": "text", "index": 5, "name": "brand_base_url", "comment": null}, "brand_id": {"type": "text", "index": 6, "name": "brand_id", "comment": null}, "bundle_short_name": {"type": "integer", "index": 7, "name": "bundle_short_name", "comment": null}, "composition_type": {"type": "integer", "index": 8, "name": "composition_type", "comment": null}, "creator_id": {"type": "integer", "index": 9, "name": "creator_id", "comment": null}, "default_scoring_category": {"type": "integer", "index": 10, "name": "default_scoring_category", "comment": null}, "division_id": {"type": "integer", "index": 11, "name": "division_id", "comment": null}, "is_active": {"type": "integer", "index": 12, "name": "is_active", "comment": null}, "last_accessed": {"type": "timestamp without time zone", "index": 13, "name": "last_accessed", "comment": null}, "last_activated": {"type": "text", "index": 14, "name": "last_activated", "comment": null}, "last_modified": {"type": "text", "index": 15, "name": "last_modified", "comment": null}, "option_active_response_set": {"type": "text", "index": 16, "name": "option_active_response_set", "comment": null}, "option_anonymize_response": {"type": "integer", "index": 17, "name": "option_anonymize_response", "comment": null}, "option_auto_confirm_start": {"type": "integer", "index": 18, "name": "option_auto_confirm_start", "comment": null}, "option_autoadvance": {"type": "boolean", "index": 19, "name": "option_autoadvance", "comment": null}, "option_autoadvance_pages": {"type": "boolean", "index": 20, "name": "option_autoadvance_pages", "comment": null}, "option_autofocus": {"type": "boolean", "index": 21, "name": "option_autofocus", "comment": null}, "option_available_languages": {"type": "integer", "index": 22, "name": "option_available_languages", "comment": null}, "option_back_button": {"type": "boolean", "index": 23, "name": "option_back_button", "comment": null}, "option_ballot_box_stuffing_prevention": {"type": "boolean", "index": 24, "name": "option_ballot_box_stuffing_prevention", "comment": null}, "option_collect_geo_location": {"type": "integer", "index": 25, "name": "option_collect_geo_location", "comment": null}, "option_confirm_start": {"type": "integer", "index": 26, "name": "option_confirm_start", "comment": null}, "option_custom_styles": {"type": "text", "index": 27, "name": "option_custom_styles", "comment": null}, "option_email_thank_you": {"type": "integer", "index": 28, "name": "option_email_thank_you", "comment": null}, "option_eosredirect_url": {"type": "integer", "index": 29, "name": "option_eosredirect_url", "comment": null}, "option_highlight_questions": {"type": "text", "index": 30, "name": "option_highlight_questions", "comment": null}, "option_inactive_survey": {"type": "integer", "index": 31, "name": "option_inactive_survey", "comment": null}, "option_new_scoring": {"type": "integer", "index": 32, "name": "option_new_scoring", "comment": null}, "option_next_button": {"type": "text", "index": 33, "name": "option_next_button", "comment": null}, "option_no_index": {"type": "text", "index": 34, "name": "option_no_index", "comment": null}, "option_page_transition": {"type": "text", "index": 35, "name": "option_page_transition", "comment": null}, "option_partial_data": {"type": "text", "index": 36, "name": "option_partial_data", "comment": null}, "option_partial_data_close_after": {"type": "integer", "index": 37, "name": "option_partial_data_close_after", "comment": null}, "option_password_protection": {"type": "integer", "index": 38, "name": "option_password_protection", "comment": null}, "option_previous_button": {"type": "text", "index": 39, "name": "option_previous_button", "comment": null}, "option_progress_bar_display": {"type": "text", "index": 40, "name": "option_progress_bar_display", "comment": null}, "option_protect_selection_ids": {"type": "integer", "index": 41, "name": "option_protect_selection_ids", "comment": null}, "option_recaptcha_v_3": {"type": "integer", "index": 42, "name": "option_recaptcha_v_3", "comment": null}, "option_referer_check": {"type": "integer", "index": 43, "name": "option_referer_check", "comment": null}, "option_referer_url": {"type": "integer", "index": 44, "name": "option_referer_url", "comment": null}, "option_relevant_id": {"type": "integer", "index": 45, "name": "option_relevant_id", "comment": null}, "option_relevant_idlockout_period": {"type": "integer", "index": 46, "name": "option_relevant_idlockout_period", "comment": null}, "option_response_summary": {"type": "integer", "index": 47, "name": "option_response_summary", "comment": null}, "option_save_and_continue": {"type": "boolean", "index": 48, "name": "option_save_and_continue", "comment": null}, "option_secure_response_files": {"type": "boolean", "index": 49, "name": "option_secure_response_files", "comment": null}, "option_show_export_tags": {"type": "integer", "index": 50, "name": "option_show_export_tags", "comment": null}, "option_skin": {"type": "text", "index": 51, "name": "option_skin", "comment": null}, "option_skin_library": {"type": "text", "index": 52, "name": "option_skin_library", "comment": null}, "option_skin_question_width": {"type": "integer", "index": 53, "name": "option_skin_question_width", "comment": null}, "option_skin_type": {"type": "text", "index": 54, "name": "option_skin_type", "comment": null}, "option_survey_creation_date": {"type": "text", "index": 55, "name": "option_survey_creation_date", "comment": null}, "option_survey_expiration": {"type": "text", "index": 56, "name": "option_survey_expiration", "comment": null}, "option_survey_language": {"type": "text", "index": 57, "name": "option_survey_language", "comment": null}, "option_survey_meta_description": {"type": "integer", "index": 58, "name": "option_survey_meta_description", "comment": null}, "option_survey_name": {"type": "integer", "index": 59, "name": "option_survey_name", "comment": null}, "option_survey_protection": {"type": "text", "index": 60, "name": "option_survey_protection", "comment": null}, "option_survey_termination": {"type": "text", "index": 61, "name": "option_survey_termination", "comment": null}, "option_survey_title": {"type": "text", "index": 62, "name": "option_survey_title", "comment": null}, "option_validate_message": {"type": "integer", "index": 63, "name": "option_validate_message", "comment": null}, "owner_id": {"type": "text", "index": 64, "name": "owner_id", "comment": null}, "project_category": {"type": "text", "index": 65, "name": "project_category", "comment": null}, "project_type": {"type": "text", "index": 66, "name": "project_type", "comment": null}, "registry_sha": {"type": "integer", "index": 67, "name": "registry_sha", "comment": null}, "registry_version": {"type": "integer", "index": 68, "name": "registry_version", "comment": null}, "schema_version": {"type": "integer", "index": 69, "name": "schema_version", "comment": null}, "scoring_summary_after_questions": {"type": "boolean", "index": 70, "name": "scoring_summary_after_questions", "comment": null}, "scoring_summary_after_survey": {"type": "boolean", "index": 71, "name": "scoring_summary_after_survey", "comment": null}, "scoring_summary_category": {"type": "integer", "index": 72, "name": "scoring_summary_category", "comment": null}, "survey_name": {"type": "text", "index": 73, "name": "survey_name", "comment": null}, "survey_status": {"type": "text", "index": 74, "name": "survey_status", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.qualtrics_source_integration_tests.survey"}, "seed.qualtrics_source_integration_tests.survey_embedded_data": {"metadata": {"type": "BASE TABLE", "schema": "qualtrics_source_integration_tests_702", "name": "survey_embedded_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"import_id": {"type": "text", "index": 1, "name": "import_id", "comment": null}, "key": {"type": "text", "index": 2, "name": "key", "comment": null}, "response_id": {"type": "text", "index": 3, "name": "response_id", "comment": null}, "value": {"type": "integer", "index": 4, "name": "value", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 5, "name": "_fivetran_synced", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.qualtrics_source_integration_tests.survey_embedded_data"}, "seed.qualtrics_source_integration_tests.survey_response": {"metadata": {"type": "BASE TABLE", "schema": "qualtrics_source_integration_tests_702", "name": "survey_response", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "text", "index": 1, "name": "id", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 2, "name": "_fivetran_synced", "comment": null}, "distribution_channel": {"type": "text", "index": 3, "name": "distribution_channel", "comment": null}, "duration_in_seconds": {"type": "integer", "index": 4, "name": "duration_in_seconds", "comment": null}, "end_date": {"type": "text", "index": 5, "name": "end_date", "comment": null}, "finished": {"type": "integer", "index": 6, "name": "finished", "comment": null}, "ip_address": {"type": "text", "index": 7, "name": "ip_address", "comment": null}, "last_modified_date": {"type": "text", "index": 8, "name": "last_modified_date", "comment": null}, "location_latitude": {"type": "integer", "index": 9, "name": "location_latitude", "comment": null}, "location_longitude": {"type": "integer", "index": 10, "name": "location_longitude", "comment": null}, "progress": {"type": "integer", "index": 11, "name": "progress", "comment": null}, "recipient_email": {"type": "text", "index": 12, "name": "recipient_email", "comment": null}, "recipient_first_name": {"type": "text", "index": 13, "name": "recipient_first_name", "comment": null}, "recipient_last_name": {"type": "text", "index": 14, "name": "recipient_last_name", "comment": null}, "recorded_date": {"type": "text", "index": 15, "name": "recorded_date", "comment": null}, "start_date": {"type": "text", "index": 16, "name": "start_date", "comment": null}, "status": {"type": "integer", "index": 17, "name": "status", "comment": null}, "survey_id": {"type": "text", "index": 18, "name": "survey_id", "comment": null}, "user_language": {"type": "text", "index": 19, "name": "user_language", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.qualtrics_source_integration_tests.survey_response"}, "seed.qualtrics_source_integration_tests.survey_version": {"metadata": {"type": "BASE TABLE", "schema": "qualtrics_source_integration_tests_702", "name": "survey_version", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "integer", "index": 1, "name": "id", "comment": null}, "survey_id": {"type": "text", "index": 2, "name": "survey_id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 3, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 4, "name": "_fivetran_synced", "comment": null}, "creation_date": {"type": "text", "index": 5, "name": "creation_date", "comment": null}, "description": {"type": "text", "index": 6, "name": "description", "comment": null}, "published": {"type": "boolean", "index": 7, "name": "published", "comment": null}, "user_id": {"type": "text", "index": 8, "name": "user_id", "comment": null}, "version_number": {"type": "integer", "index": 9, "name": "version_number", "comment": null}, "was_published": {"type": "boolean", "index": 10, "name": "was_published", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.qualtrics_source_integration_tests.survey_version"}, "seed.qualtrics_source_integration_tests.user": {"metadata": {"type": "BASE TABLE", "schema": "qualtrics_source_integration_tests_702", "name": "user", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "text", "index": 1, "name": "id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 2, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "account_creation_date": {"type": "timestamp without time zone", "index": 4, "name": "account_creation_date", "comment": null}, "account_expiration_date": {"type": "timestamp without time zone", "index": 5, "name": "account_expiration_date", "comment": null}, "account_status": {"type": "text", "index": 6, "name": "account_status", "comment": null}, "division_id": {"type": "integer", "index": 7, "name": "division_id", "comment": null}, "email": {"type": "text", "index": 8, "name": "email", "comment": null}, "first_name": {"type": "text", "index": 9, "name": "first_name", "comment": null}, "language": {"type": "integer", "index": 10, "name": "language", "comment": null}, "last_login_date": {"type": "timestamp without time zone", "index": 11, "name": "last_login_date", "comment": null}, "last_name": {"type": "text", "index": 12, "name": "last_name", "comment": null}, "organization_id": {"type": "integer", "index": 13, "name": "organization_id", "comment": null}, "password_expiration_date": {"type": "timestamp without time zone", "index": 14, "name": "password_expiration_date", "comment": null}, "password_last_changed_date": {"type": "timestamp without time zone", "index": 15, "name": "password_last_changed_date", "comment": null}, "response_count_auditable": {"type": "integer", "index": 16, "name": "response_count_auditable", "comment": null}, "response_count_deleted": {"type": "integer", "index": 17, "name": "response_count_deleted", "comment": null}, "response_count_generated": {"type": "integer", "index": 18, "name": "response_count_generated", "comment": null}, "time_zone": {"type": "integer", "index": 19, "name": "time_zone", "comment": null}, "unsubscribed": {"type": "integer", "index": 20, "name": "unsubscribed", "comment": null}, "user_type": {"type": "text", "index": 21, "name": "user_type", "comment": null}, "username": {"type": "text", "index": 22, "name": "username", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.qualtrics_source_integration_tests.user"}, "model.qualtrics_source.stg_qualtrics__block": {"metadata": {"type": "BASE TABLE", "schema": "qualtrics_source_integration_tests_702_qualtrics_source", "name": "stg_qualtrics__block", "database": "postgres", "comment": "Groups of questions, used to organize longer surveys and conditionally display sets of questions.", "owner": "pguser"}, "columns": {"is_locked": {"type": "integer", "index": 1, "name": "is_locked", "comment": "Boolean representing whether modification of the block and its contents is prevented."}, "block_visibility": {"type": "integer", "index": 2, "name": "block_visibility", "comment": "Whether the questions in the block are 'collapsed' or 'expanded' by default."}, "description": {"type": "text", "index": 3, "name": "description", "comment": "Description given to the block."}, "block_id": {"type": "text", "index": 4, "name": "block_id", "comment": "The ID of the survey block. Match pattern = ^BL_[a-zA-Z0-9]{11,15}$"}, "randomize_questions": {"type": "integer", "index": 5, "name": "randomize_questions", "comment": "If/how the block questions are randomized. Can be - `false` (no randomization), `RandomWithXPerPage` (randomize all and place X questions in each block), `RandomWithOnlyX` (randomly present only X out of the total questions), or `Advanced` (custom configuration)"}, "survey_id": {"type": "text", "index": 6, "name": "survey_id", "comment": "The unique identifier for this survey. Match pattern = ^SV_[a-zA-Z0-9]{11,15}$"}, "type": {"type": "text", "index": 7, "name": "type", "comment": "Type of block. Can be `Trash`, `Default`, or `Standard`"}, "is_deleted": {"type": "boolean", "index": 8, "name": "is_deleted", "comment": "Boolean representing whether the record was soft-deleted in Qualtrics."}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 9, "name": "_fivetran_synced", "comment": "The time when a record was last updated by Fivetran."}, "source_relation": {"type": "text", "index": 10, "name": "source_relation", "comment": "The schema or database this record came from if you are making use of the qualtrics_union_schemas or qualtrics_union_databases variables, respectively. Empty string if you are not using either of these variables to union together multiple Qualtrics connectors."}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.qualtrics_source.stg_qualtrics__block"}, "model.qualtrics_source.stg_qualtrics__block_question": {"metadata": {"type": "BASE TABLE", "schema": "qualtrics_source_integration_tests_702_qualtrics_source", "name": "stg_qualtrics__block_question", "database": "postgres", "comment": "Table relating questions and blocks together.", "owner": "pguser"}, "columns": {"block_id": {"type": "text", "index": 1, "name": "block_id", "comment": "The ID of the survey block. Match pattern = ^BL_[a-zA-Z0-9]{11,15}$"}, "question_id": {"type": "text", "index": 2, "name": "question_id", "comment": "The unique identifier for the question. Match pattern = ^QID[a-zA-Z0-9]+$"}, "survey_id": {"type": "text", "index": 3, "name": "survey_id", "comment": "The unique identifier for this survey. Match pattern = ^SV_[a-zA-Z0-9]{11,15}$"}, "is_deleted": {"type": "boolean", "index": 4, "name": "is_deleted", "comment": "Boolean representing whether the record was soft-deleted in Qualtrics."}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 5, "name": "_fivetran_synced", "comment": "The time when a record was last updated by Fivetran."}, "source_relation": {"type": "text", "index": 6, "name": "source_relation", "comment": "The schema or database this record came from if you are making use of the qualtrics_union_schemas or qualtrics_union_databases variables, respectively. Empty string if you are not using either of these variables to union together multiple Qualtrics connectors."}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.qualtrics_source.stg_qualtrics__block_question"}, "model.qualtrics_source.stg_qualtrics__block_question_tmp": {"metadata": {"type": "VIEW", "schema": "qualtrics_source_integration_tests_702_qualtrics_source", "name": "stg_qualtrics__block_question_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"block_id": {"type": "text", "index": 1, "name": "block_id", "comment": null}, "question_id": {"type": "text", "index": 2, "name": "question_id", "comment": null}, "survey_id": {"type": "text", "index": 3, "name": "survey_id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 4, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 5, "name": "_fivetran_synced", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.qualtrics_source.stg_qualtrics__block_question_tmp"}, "model.qualtrics_source.stg_qualtrics__block_tmp": {"metadata": {"type": "VIEW", "schema": "qualtrics_source_integration_tests_702_qualtrics_source", "name": "stg_qualtrics__block_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "text", "index": 1, "name": "id", "comment": null}, "survey_id": {"type": "text", "index": 2, "name": "survey_id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 3, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 4, "name": "_fivetran_synced", "comment": null}, "block_locking": {"type": "integer", "index": 5, "name": "block_locking", "comment": null}, "block_visibility": {"type": "integer", "index": 6, "name": "block_visibility", "comment": null}, "description": {"type": "text", "index": 7, "name": "description", "comment": null}, "randomize_questions": {"type": "integer", "index": 8, "name": "randomize_questions", "comment": null}, "type": {"type": "text", "index": 9, "name": "type", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.qualtrics_source.stg_qualtrics__block_tmp"}, "model.qualtrics_source.stg_qualtrics__contact_mailing_list_membership": {"metadata": {"type": "BASE TABLE", "schema": "qualtrics_source_integration_tests_702_qualtrics_source", "name": "stg_qualtrics__contact_mailing_list_membership", "database": "postgres", "comment": "Table relating contacts to mailing lists they are a part of.", "owner": "pguser"}, "columns": {"contact_id": {"type": "text", "index": 1, "name": "contact_id", "comment": "The ID for the contact. Example - CID_012345678901234"}, "contact_lookup_id": {"type": "text", "index": 2, "name": "contact_lookup_id", "comment": "Optional contact lookup ID for individual distribution."}, "directory_id": {"type": "text", "index": 3, "name": "directory_id", "comment": "The directory ID, also known as a pool ID. Example - POOL_012345678901234"}, "mailing_list_id": {"type": "text", "index": 4, "name": "mailing_list_id", "comment": "The ID for the mailing list."}, "name": {"type": "text", "index": 5, "name": "name", "comment": "Name of the mailing list."}, "owner_user_id": {"type": "text", "index": 6, "name": "owner_user_id", "comment": "The unique identifier for a specific user who owns this."}, "unsubscribed_at": {"type": "timestamp without time zone", "index": 7, "name": "unsubscribed_at", "comment": "Date and time the user opted out of this mailing list."}, "is_unsubscribed": {"type": "boolean", "index": 8, "name": "is_unsubscribed", "comment": "Boolean indicating whether the contact has opted out of receiving email through this mailing list."}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 9, "name": "_fivetran_synced", "comment": "The time when a record was last updated by Fivetran."}, "source_relation": {"type": "text", "index": 10, "name": "source_relation", "comment": "The schema or database this record came from if you are making use of the qualtrics_union_schemas or qualtrics_union_databases variables, respectively. Empty string if you are not using either of these variables to union together multiple Qualtrics connectors."}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.qualtrics_source.stg_qualtrics__contact_mailing_list_membership"}, "model.qualtrics_source.stg_qualtrics__contact_mailing_list_membership_tmp": {"metadata": {"type": "VIEW", "schema": "qualtrics_source_integration_tests_702_qualtrics_source", "name": "stg_qualtrics__contact_mailing_list_membership_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"contact_lookup_id": {"type": "text", "index": 1, "name": "contact_lookup_id", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 2, "name": "_fivetran_synced", "comment": null}, "contact_id": {"type": "text", "index": 3, "name": "contact_id", "comment": null}, "directory_id": {"type": "text", "index": 4, "name": "directory_id", "comment": null}, "mailing_list_id": {"type": "text", "index": 5, "name": "mailing_list_id", "comment": null}, "name": {"type": "text", "index": 6, "name": "name", "comment": null}, "owner_id": {"type": "text", "index": 7, "name": "owner_id", "comment": null}, "unsubscribe_date": {"type": "timestamp without time zone", "index": 8, "name": "unsubscribe_date", "comment": null}, "unsubscribed": {"type": "boolean", "index": 9, "name": "unsubscribed", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.qualtrics_source.stg_qualtrics__contact_mailing_list_membership_tmp"}, "model.qualtrics_source.stg_qualtrics__core_contact": {"metadata": {"type": "BASE TABLE", "schema": "qualtrics_source_integration_tests_702_qualtrics_source", "name": "stg_qualtrics__core_contact", "database": "postgres", "comment": "Research Core contacts (non-XM directory).", "owner": "pguser"}, "columns": {"contact_id": {"type": "text", "index": 1, "name": "contact_id", "comment": "Mailing List Contact ID (different from `contact_id`). ex: `MLRP_*`"}, "mailing_list_id": {"type": "text", "index": 2, "name": "mailing_list_id", "comment": "The ID for the mailing list."}, "first_name": {"type": "text", "index": 3, "name": "first_name", "comment": "Contact's first name."}, "last_name": {"type": "text", "index": 4, "name": "last_name", "comment": "Contact's surname."}, "email": {"type": "text", "index": 5, "name": "email", "comment": "Contact's email address. Must be in proper email format."}, "email_domain": {"type": "text", "index": 6, "name": "email_domain", "comment": "Domain of the contact's email address."}, "external_data_reference": {"type": "text", "index": 7, "name": "external_data_reference", "comment": "The external reference for the contact."}, "language": {"type": "text", "index": 8, "name": "language", "comment": "The user's default language."}, "is_unsubscribed": {"type": "boolean", "index": 9, "name": "is_unsubscribed", "comment": "Boolean indicating if the user unsubscribed."}, "is_deleted": {"type": "boolean", "index": 10, "name": "is_deleted", "comment": "Boolean representing whether the record was soft-deleted in Qualtrics."}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 11, "name": "_fivetran_synced", "comment": "The time when a record was last updated by Fivetran."}, "source_relation": {"type": "text", "index": 12, "name": "source_relation", "comment": "The schema or database this record came from if you are making use of the qualtrics_union_schemas or qualtrics_union_databases variables, respectively. Empty string if you are not using either of these variables to union together multiple Qualtrics connectors."}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.qualtrics_source.stg_qualtrics__core_contact"}, "model.qualtrics_source.stg_qualtrics__core_contact_tmp": {"metadata": {"type": "VIEW", "schema": "qualtrics_source_integration_tests_702_qualtrics_source", "name": "stg_qualtrics__core_contact_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"_fivetran_synced": {"type": "timestamp without time zone", "index": 1, "name": "_fivetran_synced", "comment": null}, "id": {"type": "text", "index": 2, "name": "id", "comment": null}, "mailing_list_id": {"type": "text", "index": 3, "name": "mailing_list_id", "comment": null}, "first_name": {"type": "text", "index": 4, "name": "first_name", "comment": null}, "last_name": {"type": "text", "index": 5, "name": "last_name", "comment": null}, "email": {"type": "text", "index": 6, "name": "email", "comment": null}, "external_data_reference": {"type": "text", "index": 7, "name": "external_data_reference", "comment": null}, "language": {"type": "text", "index": 8, "name": "language", "comment": null}, "unsubscribed": {"type": "boolean", "index": 9, "name": "unsubscribed", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 10, "name": "_fivetran_deleted", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.qualtrics_source.stg_qualtrics__core_contact_tmp"}, "model.qualtrics_source.stg_qualtrics__core_mailing_list": {"metadata": {"type": "BASE TABLE", "schema": "qualtrics_source_integration_tests_702_qualtrics_source", "name": "stg_qualtrics__core_mailing_list", "database": "postgres", "comment": "Research Core mailing list (non xm-directory).", "owner": "pguser"}, "columns": {"mailing_list_id": {"type": "text", "index": 1, "name": "mailing_list_id", "comment": "The ID for the mailing list."}, "library_id": {"type": "text", "index": 2, "name": "library_id", "comment": "The library ID. Example: `UR_1234567890AbCdE`"}, "name": {"type": "text", "index": 3, "name": "name", "comment": "Name of the mailing list."}, "category": {"type": "text", "index": 4, "name": "category", "comment": "The library ID. Example: `UR_1234567890AbCdE`"}, "folder": {"type": "text", "index": 5, "name": "folder", "comment": "The folder this is placed in."}, "is_deleted": {"type": "boolean", "index": 6, "name": "is_deleted", "comment": "Boolean representing whether the record was soft-deleted in Qualtrics."}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 7, "name": "_fivetran_synced", "comment": "The time when a record was last updated by Fivetran."}, "source_relation": {"type": "text", "index": 8, "name": "source_relation", "comment": "The schema or database this record came from if you are making use of the qualtrics_union_schemas or qualtrics_union_databases variables, respectively. Empty string if you are not using either of these variables to union together multiple Qualtrics connectors."}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.qualtrics_source.stg_qualtrics__core_mailing_list"}, "model.qualtrics_source.stg_qualtrics__core_mailing_list_tmp": {"metadata": {"type": "VIEW", "schema": "qualtrics_source_integration_tests_702_qualtrics_source", "name": "stg_qualtrics__core_mailing_list_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"_fivetran_synced": {"type": "timestamp without time zone", "index": 1, "name": "_fivetran_synced", "comment": null}, "id": {"type": "text", "index": 2, "name": "id", "comment": null}, "library_id": {"type": "text", "index": 3, "name": "library_id", "comment": null}, "name": {"type": "text", "index": 4, "name": "name", "comment": null}, "category": {"type": "text", "index": 5, "name": "category", "comment": null}, "folder": {"type": "text", "index": 6, "name": "folder", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 7, "name": "_fivetran_deleted", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.qualtrics_source.stg_qualtrics__core_mailing_list_tmp"}, "model.qualtrics_source.stg_qualtrics__directory": {"metadata": {"type": "BASE TABLE", "schema": "qualtrics_source_integration_tests_702_qualtrics_source", "name": "stg_qualtrics__directory", "database": "postgres", "comment": "A directory is an address book for the entire brand and contains all of the contacts that have been added by your users.", "owner": "pguser"}, "columns": {"is_deduped_on_email": {"type": "boolean", "index": 1, "name": "is_deduped_on_email", "comment": "Boolean representing if directory contacts are deduped based on email."}, "is_deduped_on_ext_ref": {"type": "boolean", "index": 2, "name": "is_deduped_on_ext_ref", "comment": "Boolean representing if directory contacts are deduped based on an external data reference."}, "is_deduped_on_first_name": {"type": "boolean", "index": 3, "name": "is_deduped_on_first_name", "comment": "Boolean representing if directory contacts are deduped based on first name."}, "is_deduped_on_last_name": {"type": "boolean", "index": 4, "name": "is_deduped_on_last_name", "comment": "Boolean representing if directory contacts are deduped based on last name."}, "is_deduped_on_phone": {"type": "boolean", "index": 5, "name": "is_deduped_on_phone", "comment": "Boolean representing if directory contacts are deduped based on phone number."}, "directory_id": {"type": "text", "index": 6, "name": "directory_id", "comment": "The directory ID, also known as a pool ID. Example - POOL_012345678901234"}, "is_default": {"type": "boolean", "index": 7, "name": "is_default", "comment": "Boolean representing if this directory is the default one for your brand. \n\nThe default directory will be the first directory listed in the dropdown menu in Qualtrics."}, "name": {"type": "text", "index": 8, "name": "name", "comment": "Name of the directory."}, "is_deleted": {"type": "boolean", "index": 9, "name": "is_deleted", "comment": "Boolean representing whether the record was soft-deleted in Qualtrics."}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 10, "name": "_fivetran_synced", "comment": "The time when a record was last updated by Fivetran."}, "source_relation": {"type": "text", "index": 11, "name": "source_relation", "comment": "The schema or database this record came from if you are making use of the qualtrics_union_schemas or qualtrics_union_databases variables, respectively. Empty string if you are not using either of these variables to union together multiple Qualtrics connectors."}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.qualtrics_source.stg_qualtrics__directory"}, "model.qualtrics_source.stg_qualtrics__directory_contact": {"metadata": {"type": "BASE TABLE", "schema": "qualtrics_source_integration_tests_702_qualtrics_source", "name": "stg_qualtrics__directory_contact", "database": "postgres", "comment": "Tablle relating contacts to the directories they are a part of.", "owner": "pguser"}, "columns": {"created_at": {"type": "timestamp without time zone", "index": 1, "name": "created_at", "comment": "The creation date and time of the record, expressed as an ISO 8601 value."}, "directory_id": {"type": "text", "index": 2, "name": "directory_id", "comment": "The directory ID, also known as a pool ID. Example - POOL_012345678901234"}, "unsubscribed_from_directory_at": {"type": "timestamp without time zone", "index": 3, "name": "unsubscribed_from_directory_at", "comment": "Date and time the user opted out of the directory."}, "is_unsubscribed_from_directory": {"type": "boolean", "index": 4, "name": "is_unsubscribed_from_directory", "comment": "Boolean indicating whether the contact unsubscribed from all contact from the Directory."}, "email": {"type": "text", "index": 5, "name": "email", "comment": "Contact's email address. Must be in proper email format."}, "email_domain": {"type": "text", "index": 6, "name": "email_domain", "comment": "Domain of the contact's email address."}, "ext_ref": {"type": "integer", "index": 7, "name": "ext_ref", "comment": "The external reference for the contact."}, "first_name": {"type": "text", "index": 8, "name": "first_name", "comment": "Contact's first name."}, "last_name": {"type": "text", "index": 9, "name": "last_name", "comment": "Contact's surname."}, "phone": {"type": "text", "index": 10, "name": "phone", "comment": "Contact's phone number."}, "contact_id": {"type": "text", "index": 11, "name": "contact_id", "comment": "The ID for the contact. Example - CID_012345678901234"}, "language": {"type": "integer", "index": 12, "name": "language", "comment": "The user's default language."}, "last_modified_at": {"type": "timestamp without time zone", "index": 13, "name": "last_modified_at", "comment": "The point in time when the record was last modified."}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 14, "name": "_fivetran_synced", "comment": "The time when a record was last updated by Fivetran."}, "source_relation": {"type": "text", "index": 15, "name": "source_relation", "comment": "The schema or database this record came from if you are making use of the qualtrics_union_schemas or qualtrics_union_databases variables, respectively. Empty string if you are not using either of these variables to union together multiple Qualtrics connectors."}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.qualtrics_source.stg_qualtrics__directory_contact"}, "model.qualtrics_source.stg_qualtrics__directory_contact_tmp": {"metadata": {"type": "VIEW", "schema": "qualtrics_source_integration_tests_702_qualtrics_source", "name": "stg_qualtrics__directory_contact_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"directory_id": {"type": "text", "index": 1, "name": "directory_id", "comment": null}, "id": {"type": "text", "index": 2, "name": "id", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "creation_date": {"type": "text", "index": 4, "name": "creation_date", "comment": null}, "directory_unsubscribe_date": {"type": "timestamp without time zone", "index": 5, "name": "directory_unsubscribe_date", "comment": null}, "directory_unsubscribed": {"type": "boolean", "index": 6, "name": "directory_unsubscribed", "comment": null}, "email": {"type": "text", "index": 7, "name": "email", "comment": null}, "email_domain": {"type": "text", "index": 8, "name": "email_domain", "comment": null}, "embedded_data_last_active_time": {"type": "integer", "index": 9, "name": "embedded_data_last_active_time", "comment": null}, "embedded_data_last_response_date": {"type": "integer", "index": 10, "name": "embedded_data_last_response_date", "comment": null}, "embedded_data_login_date": {"type": "integer", "index": 11, "name": "embedded_data_login_date", "comment": null}, "ext_ref": {"type": "integer", "index": 12, "name": "ext_ref", "comment": null}, "first_name": {"type": "text", "index": 13, "name": "first_name", "comment": null}, "language": {"type": "integer", "index": 14, "name": "language", "comment": null}, "last_modified": {"type": "text", "index": 15, "name": "last_modified", "comment": null}, "last_name": {"type": "text", "index": 16, "name": "last_name", "comment": null}, "phone": {"type": "character varying", "index": 17, "name": "phone", "comment": null}, "write_blanks": {"type": "integer", "index": 18, "name": "write_blanks", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.qualtrics_source.stg_qualtrics__directory_contact_tmp"}, "model.qualtrics_source.stg_qualtrics__directory_mailing_list": {"metadata": {"type": "BASE TABLE", "schema": "qualtrics_source_integration_tests_702_qualtrics_source", "name": "stg_qualtrics__directory_mailing_list", "database": "postgres", "comment": "Mailing lists are lists of contacts that can receive emails and survey invitations. You can create mailing lists either through file upload or manually.", "owner": "pguser"}, "columns": {"created_at": {"type": "timestamp without time zone", "index": 1, "name": "created_at", "comment": "The creation date and time of the record, expressed as an ISO 8601 value."}, "directory_id": {"type": "text", "index": 2, "name": "directory_id", "comment": "The directory ID, also known as a pool ID. Example - POOL_012345678901234"}, "mailing_list_id": {"type": "text", "index": 3, "name": "mailing_list_id", "comment": "The ID for the mailing list."}, "last_modified_at": {"type": "timestamp without time zone", "index": 4, "name": "last_modified_at", "comment": "The point in time when the record was last modified."}, "name": {"type": "text", "index": 5, "name": "name", "comment": "Name of the mailing list."}, "owner_user_id": {"type": "text", "index": 6, "name": "owner_user_id", "comment": "The unique identifier for a specific user who owns this."}, "is_deleted": {"type": "boolean", "index": 7, "name": "is_deleted", "comment": "Boolean representing whether the record was soft-deleted in Qualtrics."}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 8, "name": "_fivetran_synced", "comment": "The time when a record was last updated by Fivetran."}, "source_relation": {"type": "text", "index": 9, "name": "source_relation", "comment": "The schema or database this record came from if you are making use of the qualtrics_union_schemas or qualtrics_union_databases variables, respectively. Empty string if you are not using either of these variables to union together multiple Qualtrics connectors."}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.qualtrics_source.stg_qualtrics__directory_mailing_list"}, "model.qualtrics_source.stg_qualtrics__directory_mailing_list_tmp": {"metadata": {"type": "VIEW", "schema": "qualtrics_source_integration_tests_702_qualtrics_source", "name": "stg_qualtrics__directory_mailing_list_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"directory_id": {"type": "text", "index": 1, "name": "directory_id", "comment": null}, "id": {"type": "text", "index": 2, "name": "id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 3, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 4, "name": "_fivetran_synced", "comment": null}, "creation_date": {"type": "text", "index": 5, "name": "creation_date", "comment": null}, "last_modified_date": {"type": "text", "index": 6, "name": "last_modified_date", "comment": null}, "name": {"type": "text", "index": 7, "name": "name", "comment": null}, "owner_id": {"type": "text", "index": 8, "name": "owner_id", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.qualtrics_source.stg_qualtrics__directory_mailing_list_tmp"}, "model.qualtrics_source.stg_qualtrics__directory_tmp": {"metadata": {"type": "VIEW", "schema": "qualtrics_source_integration_tests_702_qualtrics_source", "name": "stg_qualtrics__directory_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "text", "index": 1, "name": "id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 2, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "deduplication_criteria_email": {"type": "boolean", "index": 4, "name": "deduplication_criteria_email", "comment": null}, "deduplication_criteria_external_data_reference": {"type": "boolean", "index": 5, "name": "deduplication_criteria_external_data_reference", "comment": null}, "deduplication_criteria_first_name": {"type": "boolean", "index": 6, "name": "deduplication_criteria_first_name", "comment": null}, "deduplication_criteria_last_name": {"type": "boolean", "index": 7, "name": "deduplication_criteria_last_name", "comment": null}, "deduplication_criteria_phone": {"type": "boolean", "index": 8, "name": "deduplication_criteria_phone", "comment": null}, "is_default": {"type": "boolean", "index": 9, "name": "is_default", "comment": null}, "name": {"type": "text", "index": 10, "name": "name", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.qualtrics_source.stg_qualtrics__directory_tmp"}, "model.qualtrics_source.stg_qualtrics__distribution": {"metadata": {"type": "BASE TABLE", "schema": "qualtrics_source_integration_tests_702_qualtrics_source", "name": "stg_qualtrics__distribution", "database": "postgres", "comment": "Use distributions to reach out to contacts in the XM Directory platform, with or without a survey attached.", "owner": "pguser"}, "columns": {"created_at": {"type": "timestamp without time zone", "index": 1, "name": "created_at", "comment": "The creation date and time of the record, expressed as an ISO 8601 value."}, "header_from_email": {"type": "text", "index": 2, "name": "header_from_email", "comment": "Email from address."}, "header_from_name": {"type": "text", "index": 3, "name": "header_from_name", "comment": "Email from name."}, "header_reply_to_email": {"type": "text", "index": 4, "name": "header_reply_to_email", "comment": "Email reply-to address."}, "header_subject": {"type": "text", "index": 5, "name": "header_subject", "comment": "Email subject; text or message id (MS_)."}, "distribution_id": {"type": "text", "index": 6, "name": "distribution_id", "comment": "The unique Distribution ID."}, "message_library_id": {"type": "integer", "index": 7, "name": "message_library_id", "comment": "Library ID of the message."}, "message_id": {"type": "integer", "index": 8, "name": "message_id", "comment": "The ID for the desired library message."}, "message_text": {"type": "integer", "index": 9, "name": "message_text", "comment": "Text of the message to send."}, "last_modified_at": {"type": "timestamp without time zone", "index": 10, "name": "last_modified_at", "comment": "The point in time when the record was last modified."}, "organization_id": {"type": "text", "index": 11, "name": "organization_id", "comment": "ID of the organization/brand this record belongs to."}, "owner_user_id": {"type": "text", "index": 12, "name": "owner_user_id", "comment": "The unique identifier for a specific user who owns this."}, "parent_distribution_id": {"type": "integer", "index": 13, "name": "parent_distribution_id", "comment": "The unique ID of the parent distribution."}, "recipient_contact_id": {"type": "text", "index": 14, "name": "recipient_contact_id", "comment": "The contact ID of the recipient. Can point to `directory_contact` or `core_contact`."}, "recipient_library_id": {"type": "text", "index": 15, "name": "recipient_library_id", "comment": "Library ID of the message."}, "recipient_mailing_list_id": {"type": "text", "index": 16, "name": "recipient_mailing_list_id", "comment": "The mailing list or contact group associated with the distribution(s). Can point to `directory_mailing_list` or `core_mailing_list`."}, "recipient_sample_id": {"type": "text", "index": 17, "name": "recipient_sample_id", "comment": "The ID for the desired sample. Can point to `directory_sample` or `core_sample` (not included in package)."}, "request_status": {"type": "text", "index": 18, "name": "request_status", "comment": "The distribution's status. States include `Pending` and `Done`. The Pending state is for email that is scheduled to be sent at a later time."}, "request_type": {"type": "text", "index": 19, "name": "request_type", "comment": "The distribution's type. Types include `Invite`, `Reminder`, and `ThankYou`."}, "send_at": {"type": "timestamp without time zone", "index": 20, "name": "send_at", "comment": "The date and time the request will be or was sent (in ISO 8601 format). Note that this date and time could be in the future if the email distribution is scheduled to send after a delay."}, "survey_link_expires_at": {"type": "timestamp without time zone", "index": 21, "name": "survey_link_expires_at", "comment": "The expiration date for the link associated with the survey distribution. Null if `request_type` != `Invite`."}, "survey_link_type": {"type": "text", "index": 22, "name": "survey_link_type", "comment": "The link type (`Individual`, `Anonymous`, or `Multiple`) for the link associated with the survey distribution. Null if `request_type` != `Invite`."}, "survey_id": {"type": "text", "index": 23, "name": "survey_id", "comment": "The unique survey ID. Will be non-null even if `request_type` != `Invite`."}, "is_deleted": {"type": "boolean", "index": 24, "name": "is_deleted", "comment": "Boolean representing whether the record was soft-deleted in Qualtrics."}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 25, "name": "_fivetran_synced", "comment": "The time when a record was last updated by Fivetran."}, "source_relation": {"type": "text", "index": 26, "name": "source_relation", "comment": "The schema or database this record came from if you are making use of the qualtrics_union_schemas or qualtrics_union_databases variables, respectively. Empty string if you are not using either of these variables to union together multiple Qualtrics connectors."}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.qualtrics_source.stg_qualtrics__distribution"}, "model.qualtrics_source.stg_qualtrics__distribution_contact": {"metadata": {"type": "BASE TABLE", "schema": "qualtrics_source_integration_tests_702_qualtrics_source", "name": "stg_qualtrics__distribution_contact", "database": "postgres", "comment": "Table relating contacts to distributions they've been a part of.", "owner": "pguser"}, "columns": {"contact_frequency_rule_id": {"type": "integer", "index": 1, "name": "contact_frequency_rule_id", "comment": "The contact frequency Rule ID. Ex - FQ_AAB234234"}, "contact_id": {"type": "text", "index": 2, "name": "contact_id", "comment": "The ID for the contact. Example - CID_012345678901234"}, "contact_lookup_id": {"type": "text", "index": 3, "name": "contact_lookup_id", "comment": "Optional contact lookup ID for individual distribution."}, "distribution_id": {"type": "text", "index": 4, "name": "distribution_id", "comment": "The unique Distribution ID."}, "opened_at": {"type": "timestamp without time zone", "index": 5, "name": "opened_at", "comment": "The time a survey was opened by the respondent, will be null if the survey has not been opened."}, "response_completed_at": {"type": "timestamp without time zone", "index": 6, "name": "response_completed_at", "comment": "The time a response was completed, will be null for uncompleted surveys."}, "response_id": {"type": "integer", "index": 7, "name": "response_id", "comment": "The ID of the survey response submitted by this contact. If no survey response has been submitted, this value will be null. If the survey was setup to anonymize responses, then this value will be `Anonymous`."}, "response_started_at": {"type": "timestamp without time zone", "index": 8, "name": "response_started_at", "comment": "The time a response was started by the respondent, will be null if survey has not been started."}, "sent_at": {"type": "timestamp without time zone", "index": 9, "name": "sent_at", "comment": "The time a survey was sent to the respondent."}, "status": {"type": "text", "index": 10, "name": "status", "comment": "One of ([full descriptions](https://api.qualtrics.com/fc8017650d0b9-distribution-status)):\n- `Pending`\n- `Success`\n- `Error`\n- `Opened`\n- `Complaint`\n- `Skipped`\n- `Blocked`\n- `Failure`\n- `Unknown`\n- `SoftBounce`\n- `HardBounce`\n- `SurveyStarted`\n- `SurveyPartiallyFinished`\n- `SurveyFinished`\n- `SurveyScreenedOut`\n- `SessionExpired`"}, "survey_link": {"type": "text", "index": 11, "name": "survey_link", "comment": "The survey link sent with the distribution. This is null when no link was sent."}, "survey_session_id": {"type": "integer", "index": 12, "name": "survey_session_id", "comment": "An identifier that represents the session in which the respondent interacted with the survey"}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 13, "name": "_fivetran_synced", "comment": "The time when a record was last updated by Fivetran."}, "source_relation": {"type": "text", "index": 14, "name": "source_relation", "comment": "The schema or database this record came from if you are making use of the qualtrics_union_schemas or qualtrics_union_databases variables, respectively. Empty string if you are not using either of these variables to union together multiple Qualtrics connectors."}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.qualtrics_source.stg_qualtrics__distribution_contact"}, "model.qualtrics_source.stg_qualtrics__distribution_contact_tmp": {"metadata": {"type": "VIEW", "schema": "qualtrics_source_integration_tests_702_qualtrics_source", "name": "stg_qualtrics__distribution_contact_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"contact_id": {"type": "text", "index": 1, "name": "contact_id", "comment": null}, "distribution_id": {"type": "text", "index": 2, "name": "distribution_id", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "contact_frequency_rule_id": {"type": "integer", "index": 4, "name": "contact_frequency_rule_id", "comment": null}, "contact_lookup_id": {"type": "text", "index": 5, "name": "contact_lookup_id", "comment": null}, "opened_at": {"type": "text", "index": 6, "name": "opened_at", "comment": null}, "response_completed_at": {"type": "timestamp without time zone", "index": 7, "name": "response_completed_at", "comment": null}, "response_id": {"type": "integer", "index": 8, "name": "response_id", "comment": null}, "response_started_at": {"type": "timestamp without time zone", "index": 9, "name": "response_started_at", "comment": null}, "sent_at": {"type": "text", "index": 10, "name": "sent_at", "comment": null}, "status": {"type": "text", "index": 11, "name": "status", "comment": null}, "survey_link": {"type": "text", "index": 12, "name": "survey_link", "comment": null}, "survey_session_id": {"type": "integer", "index": 13, "name": "survey_session_id", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.qualtrics_source.stg_qualtrics__distribution_contact_tmp"}, "model.qualtrics_source.stg_qualtrics__distribution_tmp": {"metadata": {"type": "VIEW", "schema": "qualtrics_source_integration_tests_702_qualtrics_source", "name": "stg_qualtrics__distribution_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "text", "index": 1, "name": "id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 2, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "created_date": {"type": "text", "index": 4, "name": "created_date", "comment": null}, "header_from_email": {"type": "text", "index": 5, "name": "header_from_email", "comment": null}, "header_from_name": {"type": "text", "index": 6, "name": "header_from_name", "comment": null}, "header_reply_to_email": {"type": "text", "index": 7, "name": "header_reply_to_email", "comment": null}, "header_subject": {"type": "text", "index": 8, "name": "header_subject", "comment": null}, "message_library_id": {"type": "integer", "index": 9, "name": "message_library_id", "comment": null}, "message_message_id": {"type": "integer", "index": 10, "name": "message_message_id", "comment": null}, "message_message_text": {"type": "integer", "index": 11, "name": "message_message_text", "comment": null}, "modified_date": {"type": "text", "index": 12, "name": "modified_date", "comment": null}, "organization_id": {"type": "text", "index": 13, "name": "organization_id", "comment": null}, "owner_id": {"type": "text", "index": 14, "name": "owner_id", "comment": null}, "parent_distribution_id": {"type": "integer", "index": 15, "name": "parent_distribution_id", "comment": null}, "recipient_contact_id": {"type": "text", "index": 16, "name": "recipient_contact_id", "comment": null}, "recipient_library_id": {"type": "text", "index": 17, "name": "recipient_library_id", "comment": null}, "recipient_mailing_list_id": {"type": "text", "index": 18, "name": "recipient_mailing_list_id", "comment": null}, "recipient_sample_id": {"type": "text", "index": 19, "name": "recipient_sample_id", "comment": null}, "request_status": {"type": "text", "index": 20, "name": "request_status", "comment": null}, "request_type": {"type": "text", "index": 21, "name": "request_type", "comment": null}, "send_date": {"type": "text", "index": 22, "name": "send_date", "comment": null}, "survey_link_expiration_date": {"type": "text", "index": 23, "name": "survey_link_expiration_date", "comment": null}, "survey_link_link_type": {"type": "text", "index": 24, "name": "survey_link_link_type", "comment": null}, "survey_link_survey_id": {"type": "text", "index": 25, "name": "survey_link_survey_id", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.qualtrics_source.stg_qualtrics__distribution_tmp"}, "model.qualtrics_source.stg_qualtrics__question": {"metadata": {"type": "BASE TABLE", "schema": "qualtrics_source_integration_tests_702_qualtrics_source", "name": "stg_qualtrics__question", "database": "postgres", "comment": "Questions within a survey.", "owner": "pguser"}, "columns": {"data_export_tag": {"type": "text", "index": 1, "name": "data_export_tag", "comment": "The tag to identify the question in exported data."}, "is_data_hidden": {"type": "boolean", "index": 2, "name": "is_data_hidden", "comment": "Boolean that represents whether the embedded data is hidden."}, "is_data_private": {"type": "boolean", "index": 3, "name": "is_data_private", "comment": "Boolean that represents whether the embedded data is private."}, "question_id": {"type": "text", "index": 4, "name": "question_id", "comment": "The unique identifier for the question. Match pattern = ^QID[a-zA-Z0-9]+$"}, "next_answer_id": {"type": "integer", "index": 5, "name": "next_answer_id", "comment": "For Matrix questions, the vertical options are denoted as \"Answers\" in the question's structure. \nID of the next answer for this question. ?"}, "next_choice_id": {"type": "integer", "index": 6, "name": "next_choice_id", "comment": "For Matrix questions, the horizontal options are denoted as \"Choices\" in the question's structure. \n\nID of the next choice for this question. ?"}, "question_description": {"type": "text", "index": 7, "name": "question_description", "comment": "Label to identify the question."}, "question_description_option": {"type": "text", "index": 8, "name": "question_description_option", "comment": "An optional user-provided field for question descriptions. Accepted values = `UseText`, `SpecifyLabel`"}, "question_text": {"type": "text", "index": 9, "name": "question_text", "comment": "Text for the question."}, "question_text_unsafe": {"type": "text", "index": 10, "name": "question_text_unsafe", "comment": "Un-paresed version of the question text."}, "question_type": {"type": "text", "index": 11, "name": "question_type", "comment": "The type of question. Can be -\n`MC`,`Matrix`,`Captcha`,`CS`,`DB`,`DD`,`Draw`,`DynamicMatrix`,`FileUpload`,`GAP`,`HeatMap`,`HL`,`HotSpot`,`Meta`,`PGR`,`RO`,`SBS`,`Slider`,`SS`,`TE`,`Timing`,`TreeSelect`"}, "selector": {"type": "text", "index": 12, "name": "selector", "comment": "How answers are selected such as single answer, multiple answer, etc. Accepted values - \n- `Bipolar`\n- `Browser`\n- `Captcha`\n- `CompactView`\n- `CS`\n- `D`\n- `DL`\n- `DND`\n- `DragAndDrop`\n- `ESTB`\n- `FORM`\n- `FileUpload`\n- `GRB`\n- `HBAR`\n- `HR`\n- `HSLIDER`\n- `I`\n- `Image`\n- `LikeDislike`\n- `Likert`\n- `MACOL`\n- `MAHR`\n- `MAVR`\n- `ML`\n- `MSB`\n- `MaxDiff`\n- `NPS`\n- `OH`\n- `OnOff`\n- `POS`\n- `PTB`\n- `PW`\n- `PageTimer`\n- `Profile`\n- `RB`\n- `RO`\n- `SACOL`\n- `SAHR`\n- `SAVR`\n- `SB`\n- `SBSMatrix`\n- `SL`\n- `STAR`\n- `ScreenCapture`\n- `SearchOnly`\n- `Signature`\n- `TA`\n- `TB`\n- `TBelow`\n- `TE`\n- `TL`\n- `TRight`\n- `Text`\n- `V1`\n- `V2`\n- `VR`\n- `VRTL`\n- `WTXB`"}, "sub_selector": {"type": "text", "index": 13, "name": "sub_selector", "comment": "How subquestion answers are selected. Allowed values - SingleAnswer, DL, GR, DND, Long, Medium, MultipleAnswer, Columns, NoColumns, Short, TX, TXOT, WOTXB, WOTB, WTB, WTXB, WVTB."}, "survey_id": {"type": "text", "index": 14, "name": "survey_id", "comment": "The unique identifier for this survey. Match pattern = ^SV_[a-zA-Z0-9]{11,15}$"}, "validation_setting_force_response": {"type": "integer", "index": 15, "name": "validation_setting_force_response", "comment": "The response from forcing respondents to answer a question or request that they consider answering the question before leaving the page"}, "validation_setting_force_response_type": {"type": "integer", "index": 16, "name": "validation_setting_force_response_type", "comment": "The type of response from forcing respondents to answer a question or request that they consider answering the question before leaving the page"}, "validation_setting_type": {"type": "text", "index": 17, "name": "validation_setting_type", "comment": "The type of forced response validation that is set."}, "is_deleted": {"type": "boolean", "index": 18, "name": "is_deleted", "comment": "Boolean representing whether the record was soft-deleted in Qualtrics."}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 19, "name": "_fivetran_synced", "comment": "The time when a record was last updated by Fivetran."}, "source_relation": {"type": "text", "index": 20, "name": "source_relation", "comment": "The schema or database this record came from if you are making use of the qualtrics_union_schemas or qualtrics_union_databases variables, respectively. Empty string if you are not using either of these variables to union together multiple Qualtrics connectors."}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.qualtrics_source.stg_qualtrics__question"}, "model.qualtrics_source.stg_qualtrics__question_option": {"metadata": {"type": "BASE TABLE", "schema": "qualtrics_source_integration_tests_702_qualtrics_source", "name": "stg_qualtrics__question_option", "database": "postgres", "comment": "Choice options for survey questions.", "owner": "pguser"}, "columns": {"question_id": {"type": "text", "index": 1, "name": "question_id", "comment": "The unique identifier for the question. Match pattern = ^QID[a-zA-Z0-9]+$"}, "survey_id": {"type": "text", "index": 2, "name": "survey_id", "comment": "The unique identifier for this survey. Match pattern = ^SV_[a-zA-Z0-9]{11,15}$"}, "key": {"type": "integer", "index": 3, "name": "key", "comment": "The key of the `QUESTION_OPTION` that was chosen."}, "recode_value": {"type": "integer", "index": 4, "name": "recode_value", "comment": "Recode/mapping value for the option."}, "text": {"type": "text", "index": 5, "name": "text", "comment": "Question option text."}, "is_deleted": {"type": "boolean", "index": 6, "name": "is_deleted", "comment": "Boolean representing whether the record was soft-deleted in Qualtrics."}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 7, "name": "_fivetran_synced", "comment": "The time when a record was last updated by Fivetran."}, "source_relation": {"type": "text", "index": 8, "name": "source_relation", "comment": "The schema or database this record came from if you are making use of the qualtrics_union_schemas or qualtrics_union_databases variables, respectively. Empty string if you are not using either of these variables to union together multiple Qualtrics connectors."}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.qualtrics_source.stg_qualtrics__question_option"}, "model.qualtrics_source.stg_qualtrics__question_option_tmp": {"metadata": {"type": "VIEW", "schema": "qualtrics_source_integration_tests_702_qualtrics_source", "name": "stg_qualtrics__question_option_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"key": {"type": "integer", "index": 1, "name": "key", "comment": null}, "question_id": {"type": "text", "index": 2, "name": "question_id", "comment": null}, "survey_id": {"type": "text", "index": 3, "name": "survey_id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 4, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 5, "name": "_fivetran_synced", "comment": null}, "recode_value": {"type": "integer", "index": 6, "name": "recode_value", "comment": null}, "text": {"type": "text", "index": 7, "name": "text", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.qualtrics_source.stg_qualtrics__question_option_tmp"}, "model.qualtrics_source.stg_qualtrics__question_response": {"metadata": {"type": "BASE TABLE", "schema": "qualtrics_source_integration_tests_702_qualtrics_source", "name": "stg_qualtrics__question_response", "database": "postgres", "comment": "Responses to individual questions (and their sub-questions).", "owner": "pguser"}, "columns": {"_fivetran_id": {"type": "text", "index": 1, "name": "_fivetran_id", "comment": "Fivetran-generated unique key hashed on `response_id`, `question_id`, `sub_question_key`, `sub_question_text` , `question_option_key` , `loop_id` and `importId`."}, "loop_id": {"type": "integer", "index": 2, "name": "loop_id", "comment": "ID of the [Loop and Merge](https://www.qualtrics.com/support/survey-platform/survey-module/block-options/loop-and-merge/) object this response is associated with."}, "question_id": {"type": "text", "index": 3, "name": "question_id", "comment": "The unique identifier for the question. Match pattern = ^QID[a-zA-Z0-9]+$"}, "question": {"type": "text", "index": 4, "name": "question", "comment": "Question text."}, "question_option_key": {"type": "integer", "index": 5, "name": "question_option_key", "comment": "The key of the `QUESTION_OPTION` that was chosen."}, "response_id": {"type": "text", "index": 6, "name": "response_id", "comment": "The unique ID for the `SURVEY_RESPONSE`."}, "sub_question_key": {"type": "integer", "index": 7, "name": "sub_question_key", "comment": "Key of the sub question."}, "sub_question_text": {"type": "integer", "index": 8, "name": "sub_question_text", "comment": "Sub question text."}, "value": {"type": "integer", "index": 9, "name": "value", "comment": "Value of the question response."}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 10, "name": "_fivetran_synced", "comment": "The time when a record was last updated by Fivetran."}, "source_relation": {"type": "text", "index": 11, "name": "source_relation", "comment": "The schema or database this record came from if you are making use of the qualtrics_union_schemas or qualtrics_union_databases variables, respectively. Empty string if you are not using either of these variables to union together multiple Qualtrics connectors."}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.qualtrics_source.stg_qualtrics__question_response"}, "model.qualtrics_source.stg_qualtrics__question_response_tmp": {"metadata": {"type": "VIEW", "schema": "qualtrics_source_integration_tests_702_qualtrics_source", "name": "stg_qualtrics__question_response_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"_fivetran_id": {"type": "text", "index": 1, "name": "_fivetran_id", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 2, "name": "_fivetran_synced", "comment": null}, "loop_id": {"type": "integer", "index": 3, "name": "loop_id", "comment": null}, "question": {"type": "text", "index": 4, "name": "question", "comment": null}, "question_id": {"type": "text", "index": 5, "name": "question_id", "comment": null}, "question_option_key": {"type": "integer", "index": 6, "name": "question_option_key", "comment": null}, "response_id": {"type": "text", "index": 7, "name": "response_id", "comment": null}, "sub_question_key": {"type": "integer", "index": 8, "name": "sub_question_key", "comment": null}, "sub_question_text": {"type": "integer", "index": 9, "name": "sub_question_text", "comment": null}, "value": {"type": "integer", "index": 10, "name": "value", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.qualtrics_source.stg_qualtrics__question_response_tmp"}, "model.qualtrics_source.stg_qualtrics__question_tmp": {"metadata": {"type": "VIEW", "schema": "qualtrics_source_integration_tests_702_qualtrics_source", "name": "stg_qualtrics__question_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "text", "index": 1, "name": "id", "comment": null}, "survey_id": {"type": "text", "index": 2, "name": "survey_id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 3, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 4, "name": "_fivetran_synced", "comment": null}, "data_export_tag": {"type": "text", "index": 5, "name": "data_export_tag", "comment": null}, "data_visibility_hidden": {"type": "boolean", "index": 6, "name": "data_visibility_hidden", "comment": null}, "data_visibility_private": {"type": "boolean", "index": 7, "name": "data_visibility_private", "comment": null}, "next_answer_id": {"type": "integer", "index": 8, "name": "next_answer_id", "comment": null}, "next_choice_id": {"type": "integer", "index": 9, "name": "next_choice_id", "comment": null}, "question_description": {"type": "text", "index": 10, "name": "question_description", "comment": null}, "question_description_option": {"type": "text", "index": 11, "name": "question_description_option", "comment": null}, "question_text": {"type": "text", "index": 12, "name": "question_text", "comment": null}, "question_text_unsafe": {"type": "text", "index": 13, "name": "question_text_unsafe", "comment": null}, "question_type": {"type": "text", "index": 14, "name": "question_type", "comment": null}, "selector": {"type": "text", "index": 15, "name": "selector", "comment": null}, "sub_selector": {"type": "text", "index": 16, "name": "sub_selector", "comment": null}, "validation_setting_force_response": {"type": "integer", "index": 17, "name": "validation_setting_force_response", "comment": null}, "validation_setting_force_response_type": {"type": "integer", "index": 18, "name": "validation_setting_force_response_type", "comment": null}, "validation_setting_type": {"type": "text", "index": 19, "name": "validation_setting_type", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.qualtrics_source.stg_qualtrics__question_tmp"}, "model.qualtrics_source.stg_qualtrics__sub_question": {"metadata": {"type": "BASE TABLE", "schema": "qualtrics_source_integration_tests_702_qualtrics_source", "name": "stg_qualtrics__sub_question", "database": "postgres", "comment": "Sub-questions of questions.", "owner": "pguser"}, "columns": {"choice_data_export_tag": {"type": "integer", "index": 1, "name": "choice_data_export_tag", "comment": "The tag to identify the question choice in exported data."}, "key": {"type": "integer", "index": 2, "name": "key", "comment": "Key of the sub question."}, "question_id": {"type": "text", "index": 3, "name": "question_id", "comment": "The unique identifier for the question. Match pattern = ^QID[a-zA-Z0-9]+$"}, "survey_id": {"type": "text", "index": 4, "name": "survey_id", "comment": "The unique identifier for this survey. Match pattern = ^SV_[a-zA-Z0-9]{11,15}$"}, "text": {"type": "text", "index": 5, "name": "text", "comment": "Sub question text."}, "is_deleted": {"type": "boolean", "index": 6, "name": "is_deleted", "comment": "Boolean representing whether the record was soft-deleted in Qualtrics."}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 7, "name": "_fivetran_synced", "comment": "The time when a record was last updated by Fivetran."}, "source_relation": {"type": "text", "index": 8, "name": "source_relation", "comment": "The schema or database this record came from if you are making use of the qualtrics_union_schemas or qualtrics_union_databases variables, respectively. Empty string if you are not using either of these variables to union together multiple Qualtrics connectors."}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.qualtrics_source.stg_qualtrics__sub_question"}, "model.qualtrics_source.stg_qualtrics__sub_question_tmp": {"metadata": {"type": "VIEW", "schema": "qualtrics_source_integration_tests_702_qualtrics_source", "name": "stg_qualtrics__sub_question_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"key": {"type": "integer", "index": 1, "name": "key", "comment": null}, "question_id": {"type": "text", "index": 2, "name": "question_id", "comment": null}, "survey_id": {"type": "text", "index": 3, "name": "survey_id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 4, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 5, "name": "_fivetran_synced", "comment": null}, "choice_data_export_tag": {"type": "integer", "index": 6, "name": "choice_data_export_tag", "comment": null}, "text": {"type": "text", "index": 7, "name": "text", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.qualtrics_source.stg_qualtrics__sub_question_tmp"}, "model.qualtrics_source.stg_qualtrics__survey": {"metadata": {"type": "BASE TABLE", "schema": "qualtrics_source_integration_tests_702_qualtrics_source", "name": "stg_qualtrics__survey", "database": "postgres", "comment": "Qualtrics survey.", "owner": "pguser"}, "columns": {"survey_id": {"type": "text", "index": 1, "name": "survey_id", "comment": "The unique identifier for this survey. Match pattern = ^SV_[a-zA-Z0-9]{11,15}$"}, "survey_name": {"type": "text", "index": 2, "name": "survey_name", "comment": "Name of the survey."}, "survey_status": {"type": "text", "index": 3, "name": "survey_status", "comment": "The distribution status of the survey, or a flag indicating that it's a library block\n\nAllowed values - `Inactive`, `Active`, `Pending`, `LibBlock`, `Deactive`, `Temporary`"}, "brand_base_url": {"type": "text", "index": 4, "name": "brand_base_url", "comment": "Base url for the organization/brand."}, "brand_id": {"type": "text", "index": 5, "name": "brand_id", "comment": "Unique ID of the organization/brand."}, "bundle_short_name": {"type": "integer", "index": 6, "name": "bundle_short_name", "comment": "Short name for the content bundle that the survey is from."}, "composition_type": {"type": "integer", "index": 7, "name": "composition_type", "comment": "Survey composition type."}, "auto_scoring_category": {"type": "integer", "index": 8, "name": "auto_scoring_category", "comment": "The automated scoring category."}, "default_scoring_category": {"type": "integer", "index": 9, "name": "default_scoring_category", "comment": "The default scoring category."}, "division_id": {"type": "integer", "index": 10, "name": "division_id", "comment": "The unique identifier for the Division ID. Match pattern = ^DV_[0-9a-zA-Z]{11,15}$"}, "creator_user_id": {"type": "integer", "index": 11, "name": "creator_user_id", "comment": "The unique identifier for a specific `USER` who created the survey."}, "owner_user_id": {"type": "text", "index": 12, "name": "owner_user_id", "comment": "The unique identifier for a specific user who owns this."}, "project_category": {"type": "text", "index": 13, "name": "project_category", "comment": "Project category of the survey.\n\nAllowed values - `CORE`, `CX`, `EX`, `BX`, `PX`"}, "project_type": {"type": "text", "index": 14, "name": "project_type", "comment": "Type of [Qualtrics project](https://www.qualtrics.com/support/survey-platform/my-projects/my-projects-overview/#SelectingProjectType). Match pattern = ^[a-zA-Z]+$"}, "registry_sha": {"type": "integer", "index": 15, "name": "registry_sha", "comment": "The survey registry SHA."}, "registry_version": {"type": "integer", "index": 16, "name": "registry_version", "comment": "The survey registry version."}, "schema_version": {"type": "integer", "index": 17, "name": "schema_version", "comment": "Qualtrics schema version."}, "scoring_summary_after_questions": {"type": "boolean", "index": 18, "name": "scoring_summary_after_questions", "comment": "Boolean representing whether the scoring summary is after questions."}, "scoring_summary_after_survey": {"type": "boolean", "index": 19, "name": "scoring_summary_after_survey", "comment": "Boolean representing whether the scoring summary is after the survey."}, "scoring_summary_category": {"type": "integer", "index": 20, "name": "scoring_summary_category", "comment": "The unique identifier for the scoring."}, "last_accessed_at": {"type": "timestamp without time zone", "index": 21, "name": "last_accessed_at", "comment": "The date the survey was last accessed."}, "last_activated_at": {"type": "timestamp without time zone", "index": 22, "name": "last_activated_at", "comment": "The date the survey was last activated."}, "last_modified_at": {"type": "timestamp without time zone", "index": 23, "name": "last_modified_at", "comment": "The point in time when the record was last modified."}, "is_deleted": {"type": "boolean", "index": 24, "name": "is_deleted", "comment": "Boolean representing whether the record was soft-deleted in Qualtrics."}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 25, "name": "_fivetran_synced", "comment": "The time when a record was last updated by Fivetran."}, "source_relation": {"type": "text", "index": 26, "name": "source_relation", "comment": "The schema or database this record came from if you are making use of the qualtrics_union_schemas or qualtrics_union_databases variables, respectively. Empty string if you are not using either of these variables to union together multiple Qualtrics connectors."}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.qualtrics_source.stg_qualtrics__survey"}, "model.qualtrics_source.stg_qualtrics__survey_embedded_data": {"metadata": {"type": "BASE TABLE", "schema": "qualtrics_source_integration_tests_702_qualtrics_source", "name": "stg_qualtrics__survey_embedded_data", "database": "postgres", "comment": "Any extra information you would like recorded in addition to the question responses.", "owner": "pguser"}, "columns": {"import_id": {"type": "text", "index": 1, "name": "import_id", "comment": "A unique identifier to recognize this import job of embedded survey data."}, "key": {"type": "text", "index": 2, "name": "key", "comment": "Key of the embedded survey data element."}, "response_id": {"type": "text", "index": 3, "name": "response_id", "comment": "The unique ID for the `SURVEY_RESPONSE`."}, "value": {"type": "integer", "index": 4, "name": "value", "comment": "Key of the embedded survey data element."}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 5, "name": "_fivetran_synced", "comment": "The time when a record was last updated by Fivetran."}, "source_relation": {"type": "text", "index": 6, "name": "source_relation", "comment": "The schema or database this record came from if you are making use of the qualtrics_union_schemas or qualtrics_union_databases variables, respectively. Empty string if you are not using either of these variables to union together multiple Qualtrics connectors."}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.qualtrics_source.stg_qualtrics__survey_embedded_data"}, "model.qualtrics_source.stg_qualtrics__survey_embedded_data_tmp": {"metadata": {"type": "VIEW", "schema": "qualtrics_source_integration_tests_702_qualtrics_source", "name": "stg_qualtrics__survey_embedded_data_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"import_id": {"type": "text", "index": 1, "name": "import_id", "comment": null}, "key": {"type": "text", "index": 2, "name": "key", "comment": null}, "response_id": {"type": "text", "index": 3, "name": "response_id", "comment": null}, "value": {"type": "integer", "index": 4, "name": "value", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 5, "name": "_fivetran_synced", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.qualtrics_source.stg_qualtrics__survey_embedded_data_tmp"}, "model.qualtrics_source.stg_qualtrics__survey_response": {"metadata": {"type": "BASE TABLE", "schema": "qualtrics_source_integration_tests_702_qualtrics_source", "name": "stg_qualtrics__survey_response", "database": "postgres", "comment": "Individual responses to surveys. A response becomes \"recorded\" when a respondent submits a survey, a survey is manually closed from the Responses in Progress page, or a survey session expires.\n", "owner": "pguser"}, "columns": {"distribution_channel": {"type": "text", "index": 1, "name": "distribution_channel", "comment": "The method by which the survey was distributed to respondents."}, "duration_in_seconds": {"type": "integer", "index": 2, "name": "duration_in_seconds", "comment": "How long it took for the respondent to finish the survey in seconds."}, "finished_at": {"type": "timestamp without time zone", "index": 3, "name": "finished_at", "comment": "The point in time when the survey response was finished."}, "is_finished": {"type": "boolean", "index": 4, "name": "is_finished", "comment": "Boolean (stored as int) indicating if the respondent finished and submitted the survey, the value will be 1, otherwise it will be 0."}, "response_id": {"type": "text", "index": 5, "name": "response_id", "comment": "The unique ID for the `SURVEY_RESPONSE`."}, "ip_address": {"type": "text", "index": 6, "name": "ip_address", "comment": "IP address of the recipient."}, "last_modified_at": {"type": "timestamp without time zone", "index": 7, "name": "last_modified_at", "comment": "The point in time when the record was last modified."}, "location_latitude": {"type": "integer", "index": 8, "name": "location_latitude", "comment": "The approximate location of the respondent at the time the survey was taken."}, "location_longitude": {"type": "integer", "index": 9, "name": "location_longitude", "comment": "The approximate location of the respondent at the time the survey was taken."}, "progress": {"type": "integer", "index": 10, "name": "progress", "comment": "How far the respondent has progressed through the survey as a percentage out of 100."}, "recipient_email": {"type": "text", "index": 11, "name": "recipient_email", "comment": "Email of the [recipient](https://api.qualtrics.com/ZG9jOjg3NzY2OQ-getting-information-about-distributions#the-recipients-object) if they are a single recipient (not a mailing list or sample)."}, "recipient_first_name": {"type": "text", "index": 12, "name": "recipient_first_name", "comment": "First name of the [recipient](https://api.qualtrics.com/ZG9jOjg3NzY2OQ-getting-information-about-distributions#the-recipients-object) if they are a single recipient (not a mailing list or sample)."}, "recipient_last_name": {"type": "text", "index": 13, "name": "recipient_last_name", "comment": "Last name of the [recipient](https://api.qualtrics.com/ZG9jOjg3NzY2OQ-getting-information-about-distributions#the-recipients-object) if they are a single recipient (not a mailing list or sample)."}, "recorded_date": {"type": "timestamp without time zone", "index": 14, "name": "recorded_date", "comment": "The point in time when the survey response was recorded."}, "started_at": {"type": "timestamp without time zone", "index": 15, "name": "started_at", "comment": "The point in time when the survey response was recorded."}, "status": {"type": "integer", "index": 16, "name": "status", "comment": "The type of response."}, "survey_id": {"type": "text", "index": 17, "name": "survey_id", "comment": "The unique identifier for this survey. Match pattern = ^SV_[a-zA-Z0-9]{11,15}$"}, "user_language": {"type": "text", "index": 18, "name": "user_language", "comment": "The language of the respondent."}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 19, "name": "_fivetran_synced", "comment": "The time when a record was last updated by Fivetran."}, "source_relation": {"type": "text", "index": 20, "name": "source_relation", "comment": "The schema or database this record came from if you are making use of the qualtrics_union_schemas or qualtrics_union_databases variables, respectively. Empty string if you are not using either of these variables to union together multiple Qualtrics connectors."}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.qualtrics_source.stg_qualtrics__survey_response"}, "model.qualtrics_source.stg_qualtrics__survey_response_tmp": {"metadata": {"type": "VIEW", "schema": "qualtrics_source_integration_tests_702_qualtrics_source", "name": "stg_qualtrics__survey_response_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "text", "index": 1, "name": "id", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 2, "name": "_fivetran_synced", "comment": null}, "distribution_channel": {"type": "text", "index": 3, "name": "distribution_channel", "comment": null}, "duration_in_seconds": {"type": "integer", "index": 4, "name": "duration_in_seconds", "comment": null}, "end_date": {"type": "text", "index": 5, "name": "end_date", "comment": null}, "finished": {"type": "integer", "index": 6, "name": "finished", "comment": null}, "ip_address": {"type": "text", "index": 7, "name": "ip_address", "comment": null}, "last_modified_date": {"type": "text", "index": 8, "name": "last_modified_date", "comment": null}, "location_latitude": {"type": "integer", "index": 9, "name": "location_latitude", "comment": null}, "location_longitude": {"type": "integer", "index": 10, "name": "location_longitude", "comment": null}, "progress": {"type": "integer", "index": 11, "name": "progress", "comment": null}, "recipient_email": {"type": "text", "index": 12, "name": "recipient_email", "comment": null}, "recipient_first_name": {"type": "text", "index": 13, "name": "recipient_first_name", "comment": null}, "recipient_last_name": {"type": "text", "index": 14, "name": "recipient_last_name", "comment": null}, "recorded_date": {"type": "text", "index": 15, "name": "recorded_date", "comment": null}, "start_date": {"type": "text", "index": 16, "name": "start_date", "comment": null}, "status": {"type": "integer", "index": 17, "name": "status", "comment": null}, "survey_id": {"type": "text", "index": 18, "name": "survey_id", "comment": null}, "user_language": {"type": "text", "index": 19, "name": "user_language", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.qualtrics_source.stg_qualtrics__survey_response_tmp"}, "model.qualtrics_source.stg_qualtrics__survey_tmp": {"metadata": {"type": "VIEW", "schema": "qualtrics_source_integration_tests_702_qualtrics_source", "name": "stg_qualtrics__survey_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "text", "index": 1, "name": "id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 2, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "auto_scoring_category": {"type": "integer", "index": 4, "name": "auto_scoring_category", "comment": null}, "brand_base_url": {"type": "text", "index": 5, "name": "brand_base_url", "comment": null}, "brand_id": {"type": "text", "index": 6, "name": "brand_id", "comment": null}, "bundle_short_name": {"type": "integer", "index": 7, "name": "bundle_short_name", "comment": null}, "composition_type": {"type": "integer", "index": 8, "name": "composition_type", "comment": null}, "creator_id": {"type": "integer", "index": 9, "name": "creator_id", "comment": null}, "default_scoring_category": {"type": "integer", "index": 10, "name": "default_scoring_category", "comment": null}, "division_id": {"type": "integer", "index": 11, "name": "division_id", "comment": null}, "is_active": {"type": "integer", "index": 12, "name": "is_active", "comment": null}, "last_accessed": {"type": "timestamp without time zone", "index": 13, "name": "last_accessed", "comment": null}, "last_activated": {"type": "text", "index": 14, "name": "last_activated", "comment": null}, "last_modified": {"type": "text", "index": 15, "name": "last_modified", "comment": null}, "option_active_response_set": {"type": "text", "index": 16, "name": "option_active_response_set", "comment": null}, "option_anonymize_response": {"type": "integer", "index": 17, "name": "option_anonymize_response", "comment": null}, "option_auto_confirm_start": {"type": "integer", "index": 18, "name": "option_auto_confirm_start", "comment": null}, "option_autoadvance": {"type": "boolean", "index": 19, "name": "option_autoadvance", "comment": null}, "option_autoadvance_pages": {"type": "boolean", "index": 20, "name": "option_autoadvance_pages", "comment": null}, "option_autofocus": {"type": "boolean", "index": 21, "name": "option_autofocus", "comment": null}, "option_available_languages": {"type": "integer", "index": 22, "name": "option_available_languages", "comment": null}, "option_back_button": {"type": "boolean", "index": 23, "name": "option_back_button", "comment": null}, "option_ballot_box_stuffing_prevention": {"type": "boolean", "index": 24, "name": "option_ballot_box_stuffing_prevention", "comment": null}, "option_collect_geo_location": {"type": "integer", "index": 25, "name": "option_collect_geo_location", "comment": null}, "option_confirm_start": {"type": "integer", "index": 26, "name": "option_confirm_start", "comment": null}, "option_custom_styles": {"type": "text", "index": 27, "name": "option_custom_styles", "comment": null}, "option_email_thank_you": {"type": "integer", "index": 28, "name": "option_email_thank_you", "comment": null}, "option_eosredirect_url": {"type": "integer", "index": 29, "name": "option_eosredirect_url", "comment": null}, "option_highlight_questions": {"type": "text", "index": 30, "name": "option_highlight_questions", "comment": null}, "option_inactive_survey": {"type": "integer", "index": 31, "name": "option_inactive_survey", "comment": null}, "option_new_scoring": {"type": "integer", "index": 32, "name": "option_new_scoring", "comment": null}, "option_next_button": {"type": "text", "index": 33, "name": "option_next_button", "comment": null}, "option_no_index": {"type": "text", "index": 34, "name": "option_no_index", "comment": null}, "option_page_transition": {"type": "text", "index": 35, "name": "option_page_transition", "comment": null}, "option_partial_data": {"type": "text", "index": 36, "name": "option_partial_data", "comment": null}, "option_partial_data_close_after": {"type": "integer", "index": 37, "name": "option_partial_data_close_after", "comment": null}, "option_password_protection": {"type": "integer", "index": 38, "name": "option_password_protection", "comment": null}, "option_previous_button": {"type": "text", "index": 39, "name": "option_previous_button", "comment": null}, "option_progress_bar_display": {"type": "text", "index": 40, "name": "option_progress_bar_display", "comment": null}, "option_protect_selection_ids": {"type": "integer", "index": 41, "name": "option_protect_selection_ids", "comment": null}, "option_recaptcha_v_3": {"type": "integer", "index": 42, "name": "option_recaptcha_v_3", "comment": null}, "option_referer_check": {"type": "integer", "index": 43, "name": "option_referer_check", "comment": null}, "option_referer_url": {"type": "integer", "index": 44, "name": "option_referer_url", "comment": null}, "option_relevant_id": {"type": "integer", "index": 45, "name": "option_relevant_id", "comment": null}, "option_relevant_idlockout_period": {"type": "integer", "index": 46, "name": "option_relevant_idlockout_period", "comment": null}, "option_response_summary": {"type": "integer", "index": 47, "name": "option_response_summary", "comment": null}, "option_save_and_continue": {"type": "boolean", "index": 48, "name": "option_save_and_continue", "comment": null}, "option_secure_response_files": {"type": "boolean", "index": 49, "name": "option_secure_response_files", "comment": null}, "option_show_export_tags": {"type": "integer", "index": 50, "name": "option_show_export_tags", "comment": null}, "option_skin": {"type": "text", "index": 51, "name": "option_skin", "comment": null}, "option_skin_library": {"type": "text", "index": 52, "name": "option_skin_library", "comment": null}, "option_skin_question_width": {"type": "integer", "index": 53, "name": "option_skin_question_width", "comment": null}, "option_skin_type": {"type": "text", "index": 54, "name": "option_skin_type", "comment": null}, "option_survey_creation_date": {"type": "text", "index": 55, "name": "option_survey_creation_date", "comment": null}, "option_survey_expiration": {"type": "text", "index": 56, "name": "option_survey_expiration", "comment": null}, "option_survey_language": {"type": "text", "index": 57, "name": "option_survey_language", "comment": null}, "option_survey_meta_description": {"type": "integer", "index": 58, "name": "option_survey_meta_description", "comment": null}, "option_survey_name": {"type": "integer", "index": 59, "name": "option_survey_name", "comment": null}, "option_survey_protection": {"type": "text", "index": 60, "name": "option_survey_protection", "comment": null}, "option_survey_termination": {"type": "text", "index": 61, "name": "option_survey_termination", "comment": null}, "option_survey_title": {"type": "text", "index": 62, "name": "option_survey_title", "comment": null}, "option_validate_message": {"type": "integer", "index": 63, "name": "option_validate_message", "comment": null}, "owner_id": {"type": "text", "index": 64, "name": "owner_id", "comment": null}, "project_category": {"type": "text", "index": 65, "name": "project_category", "comment": null}, "project_type": {"type": "text", "index": 66, "name": "project_type", "comment": null}, "registry_sha": {"type": "integer", "index": 67, "name": "registry_sha", "comment": null}, "registry_version": {"type": "integer", "index": 68, "name": "registry_version", "comment": null}, "schema_version": {"type": "integer", "index": 69, "name": "schema_version", "comment": null}, "scoring_summary_after_questions": {"type": "boolean", "index": 70, "name": "scoring_summary_after_questions", "comment": null}, "scoring_summary_after_survey": {"type": "boolean", "index": 71, "name": "scoring_summary_after_survey", "comment": null}, "scoring_summary_category": {"type": "integer", "index": 72, "name": "scoring_summary_category", "comment": null}, "survey_name": {"type": "text", "index": 73, "name": "survey_name", "comment": null}, "survey_status": {"type": "text", "index": 74, "name": "survey_status", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.qualtrics_source.stg_qualtrics__survey_tmp"}, "model.qualtrics_source.stg_qualtrics__survey_version": {"metadata": {"type": "BASE TABLE", "schema": "qualtrics_source_integration_tests_702_qualtrics_source", "name": "stg_qualtrics__survey_version", "database": "postgres", "comment": "Published and un-published versions of surveys.", "owner": "pguser"}, "columns": {"created_at": {"type": "timestamp without time zone", "index": 1, "name": "created_at", "comment": "The creation date and time of the record, expressed as an ISO 8601 value."}, "version_description": {"type": "text", "index": 2, "name": "version_description", "comment": "A user-provided description of the survey version."}, "version_id": {"type": "integer", "index": 3, "name": "version_id", "comment": "The unique identifier for this survey version."}, "is_published": {"type": "boolean", "index": 4, "name": "is_published", "comment": "Boolean that, when true, publishes the version."}, "survey_id": {"type": "text", "index": 5, "name": "survey_id", "comment": "The unique identifier for this survey. Match pattern = ^SV_[a-zA-Z0-9]{11,15}$"}, "publisher_user_id": {"type": "text", "index": 6, "name": "publisher_user_id", "comment": "ID of `USER` who published this survey version in your org."}, "version_number": {"type": "integer", "index": 7, "name": "version_number", "comment": "The version number of this survey."}, "was_published": {"type": "boolean", "index": 8, "name": "was_published", "comment": "Boolean that is true if the survey version was published."}, "is_deleted": {"type": "boolean", "index": 9, "name": "is_deleted", "comment": "Boolean representing whether the record was soft-deleted in Qualtrics."}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 10, "name": "_fivetran_synced", "comment": "The time when a record was last updated by Fivetran."}, "source_relation": {"type": "text", "index": 11, "name": "source_relation", "comment": "The schema or database this record came from if you are making use of the qualtrics_union_schemas or qualtrics_union_databases variables, respectively. Empty string if you are not using either of these variables to union together multiple Qualtrics connectors."}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.qualtrics_source.stg_qualtrics__survey_version"}, "model.qualtrics_source.stg_qualtrics__survey_version_tmp": {"metadata": {"type": "VIEW", "schema": "qualtrics_source_integration_tests_702_qualtrics_source", "name": "stg_qualtrics__survey_version_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "integer", "index": 1, "name": "id", "comment": null}, "survey_id": {"type": "text", "index": 2, "name": "survey_id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 3, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 4, "name": "_fivetran_synced", "comment": null}, "creation_date": {"type": "text", "index": 5, "name": "creation_date", "comment": null}, "description": {"type": "text", "index": 6, "name": "description", "comment": null}, "published": {"type": "boolean", "index": 7, "name": "published", "comment": null}, "user_id": {"type": "text", "index": 8, "name": "user_id", "comment": null}, "version_number": {"type": "integer", "index": 9, "name": "version_number", "comment": null}, "was_published": {"type": "boolean", "index": 10, "name": "was_published", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.qualtrics_source.stg_qualtrics__survey_version_tmp"}, "model.qualtrics_source.stg_qualtrics__user": {"metadata": {"type": "BASE TABLE", "schema": "qualtrics_source_integration_tests_702_qualtrics_source", "name": "stg_qualtrics__user", "database": "postgres", "comment": "These are the users in your organizations, not the contacts for whom you are building content like surveys and messages.", "owner": "pguser"}, "columns": {"account_created_at": {"type": "timestamp without time zone", "index": 1, "name": "account_created_at", "comment": "The date and time that the account was created. Dates and times are expressed in ISO 8601 format."}, "account_expires_at": {"type": "timestamp without time zone", "index": 2, "name": "account_expires_at", "comment": "The date the account expires. Dates and times are expressed in ISO 8601 format."}, "account_status": {"type": "text", "index": 3, "name": "account_status", "comment": "Either `active`, `disabled`, or `notVerified`."}, "division_id": {"type": "integer", "index": 4, "name": "division_id", "comment": "The unique identifier for the Division ID. Match pattern = ^DV_[0-9a-zA-Z]{11,15}$"}, "email": {"type": "text", "index": 5, "name": "email", "comment": "The user's email address."}, "first_name": {"type": "text", "index": 6, "name": "first_name", "comment": "The user's first name or given name."}, "user_id": {"type": "text", "index": 7, "name": "user_id", "comment": "Unique ID of the user. Match pattern = ^((UR)|(URH))_[0-9a-zA-Z]{11,15}$"}, "language": {"type": "integer", "index": 8, "name": "language", "comment": "The user's default language."}, "last_login_at": {"type": "timestamp without time zone", "index": 9, "name": "last_login_at", "comment": "The date and time the user last logged into the user interface. Dates and times are expressed in ISO 8601 format."}, "last_name": {"type": "text", "index": 10, "name": "last_name", "comment": "User's surname."}, "organization_id": {"type": "integer", "index": 11, "name": "organization_id", "comment": "ID of the organization/brand this record belongs to."}, "password_expires_at": {"type": "timestamp without time zone", "index": 12, "name": "password_expires_at", "comment": "The date the account password expires. Dates and times are expressed in ISO 8601 format."}, "password_last_changed_at": {"type": "timestamp without time zone", "index": 13, "name": "password_last_changed_at", "comment": "The date the account password was last changed. Dates and times are expressed in ISO 8601 format."}, "response_count_auditable": {"type": "integer", "index": 14, "name": "response_count_auditable", "comment": "The count of auditable responses."}, "response_count_deleted": {"type": "integer", "index": 15, "name": "response_count_deleted", "comment": "The count of deleted responses."}, "response_count_generated": {"type": "integer", "index": 16, "name": "response_count_generated", "comment": "The count of generated responses."}, "time_zone": {"type": "integer", "index": 17, "name": "time_zone", "comment": "The IANA time zone setting for the user."}, "is_unsubscribed": {"type": "integer", "index": 18, "name": "is_unsubscribed", "comment": "Boolean indicating if the user unsubscribed."}, "user_type": {"type": "text", "index": 19, "name": "user_type", "comment": "ID of the user type. See mappings of user types to their type IDs [here](https://api.qualtrics.com/dc2be1c61af61-user-type)."}, "username": {"type": "text", "index": 20, "name": "username", "comment": "UI-facing username for the account."}, "is_deleted": {"type": "boolean", "index": 21, "name": "is_deleted", "comment": "Boolean representing whether the record was soft-deleted in Qualtrics."}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 22, "name": "_fivetran_synced", "comment": "The time when a record was last updated by Fivetran."}, "source_relation": {"type": "text", "index": 23, "name": "source_relation", "comment": "The schema or database this record came from if you are making use of the qualtrics_union_schemas or qualtrics_union_databases variables, respectively. Empty string if you are not using either of these variables to union together multiple Qualtrics connectors."}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.qualtrics_source.stg_qualtrics__user"}, "model.qualtrics_source.stg_qualtrics__user_tmp": {"metadata": {"type": "VIEW", "schema": "qualtrics_source_integration_tests_702_qualtrics_source", "name": "stg_qualtrics__user_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "text", "index": 1, "name": "id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 2, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "account_creation_date": {"type": "timestamp without time zone", "index": 4, "name": "account_creation_date", "comment": null}, "account_expiration_date": {"type": "timestamp without time zone", "index": 5, "name": "account_expiration_date", "comment": null}, "account_status": {"type": "text", "index": 6, "name": "account_status", "comment": null}, "division_id": {"type": "integer", "index": 7, "name": "division_id", "comment": null}, "email": {"type": "text", "index": 8, "name": "email", "comment": null}, "first_name": {"type": "text", "index": 9, "name": "first_name", "comment": null}, "language": {"type": "integer", "index": 10, "name": "language", "comment": null}, "last_login_date": {"type": "timestamp without time zone", "index": 11, "name": "last_login_date", "comment": null}, "last_name": {"type": "text", "index": 12, "name": "last_name", "comment": null}, "organization_id": {"type": "integer", "index": 13, "name": "organization_id", "comment": null}, "password_expiration_date": {"type": "timestamp without time zone", "index": 14, "name": "password_expiration_date", "comment": null}, "password_last_changed_date": {"type": "timestamp without time zone", "index": 15, "name": "password_last_changed_date", "comment": null}, "response_count_auditable": {"type": "integer", "index": 16, "name": "response_count_auditable", "comment": null}, "response_count_deleted": {"type": "integer", "index": 17, "name": "response_count_deleted", "comment": null}, "response_count_generated": {"type": "integer", "index": 18, "name": "response_count_generated", "comment": null}, "time_zone": {"type": "integer", "index": 19, "name": "time_zone", "comment": null}, "unsubscribed": {"type": "integer", "index": 20, "name": "unsubscribed", "comment": null}, "user_type": {"type": "text", "index": 21, "name": "user_type", "comment": null}, "username": {"type": "text", "index": 22, "name": "username", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.qualtrics_source.stg_qualtrics__user_tmp"}}, "sources": {"source.qualtrics_source.qualtrics.block": {"metadata": {"type": "BASE TABLE", "schema": "qualtrics_source_integration_tests_702", "name": "block", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "text", "index": 1, "name": "id", "comment": null}, "survey_id": {"type": "text", "index": 2, "name": "survey_id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 3, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 4, "name": "_fivetran_synced", "comment": null}, "block_locking": {"type": "integer", "index": 5, "name": "block_locking", "comment": null}, "block_visibility": {"type": "integer", "index": 6, "name": "block_visibility", "comment": null}, "description": {"type": "text", "index": 7, "name": "description", "comment": null}, "randomize_questions": {"type": "integer", "index": 8, "name": "randomize_questions", "comment": null}, "type": {"type": "text", "index": 9, "name": "type", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.qualtrics_source.qualtrics.block"}, "source.qualtrics_source.qualtrics.block_question": {"metadata": {"type": "BASE TABLE", "schema": "qualtrics_source_integration_tests_702", "name": "block_question", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"block_id": {"type": "text", "index": 1, "name": "block_id", "comment": null}, "question_id": {"type": "text", "index": 2, "name": "question_id", "comment": null}, "survey_id": {"type": "text", "index": 3, "name": "survey_id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 4, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 5, "name": "_fivetran_synced", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.qualtrics_source.qualtrics.block_question"}, "source.qualtrics_source.qualtrics.contact_mailing_list_membership": {"metadata": {"type": "BASE TABLE", "schema": "qualtrics_source_integration_tests_702", "name": "contact_mailing_list_membership", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"contact_lookup_id": {"type": "text", "index": 1, "name": "contact_lookup_id", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 2, "name": "_fivetran_synced", "comment": null}, "contact_id": {"type": "text", "index": 3, "name": "contact_id", "comment": null}, "directory_id": {"type": "text", "index": 4, "name": "directory_id", "comment": null}, "mailing_list_id": {"type": "text", "index": 5, "name": "mailing_list_id", "comment": null}, "name": {"type": "text", "index": 6, "name": "name", "comment": null}, "owner_id": {"type": "text", "index": 7, "name": "owner_id", "comment": null}, "unsubscribe_date": {"type": "timestamp without time zone", "index": 8, "name": "unsubscribe_date", "comment": null}, "unsubscribed": {"type": "boolean", "index": 9, "name": "unsubscribed", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.qualtrics_source.qualtrics.contact_mailing_list_membership"}, "source.qualtrics_source.qualtrics.core_contact": {"metadata": {"type": "BASE TABLE", "schema": "qualtrics_source_integration_tests_702", "name": "core_contact", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"_fivetran_synced": {"type": "timestamp without time zone", "index": 1, "name": "_fivetran_synced", "comment": null}, "id": {"type": "text", "index": 2, "name": "id", "comment": null}, "mailing_list_id": {"type": "text", "index": 3, "name": "mailing_list_id", "comment": null}, "first_name": {"type": "text", "index": 4, "name": "first_name", "comment": null}, "last_name": {"type": "text", "index": 5, "name": "last_name", "comment": null}, "email": {"type": "text", "index": 6, "name": "email", "comment": null}, "external_data_reference": {"type": "text", "index": 7, "name": "external_data_reference", "comment": null}, "language": {"type": "text", "index": 8, "name": "language", "comment": null}, "unsubscribed": {"type": "boolean", "index": 9, "name": "unsubscribed", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 10, "name": "_fivetran_deleted", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.qualtrics_source.qualtrics.core_contact"}, "source.qualtrics_source.qualtrics.core_mailing_list": {"metadata": {"type": "BASE TABLE", "schema": "qualtrics_source_integration_tests_702", "name": "core_mailing_list", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"_fivetran_synced": {"type": "timestamp without time zone", "index": 1, "name": "_fivetran_synced", "comment": null}, "id": {"type": "text", "index": 2, "name": "id", "comment": null}, "library_id": {"type": "text", "index": 3, "name": "library_id", "comment": null}, "name": {"type": "text", "index": 4, "name": "name", "comment": null}, "category": {"type": "text", "index": 5, "name": "category", "comment": null}, "folder": {"type": "text", "index": 6, "name": "folder", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 7, "name": "_fivetran_deleted", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.qualtrics_source.qualtrics.core_mailing_list"}, "source.qualtrics_source.qualtrics.directory": {"metadata": {"type": "BASE TABLE", "schema": "qualtrics_source_integration_tests_702", "name": "directory", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "text", "index": 1, "name": "id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 2, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "deduplication_criteria_email": {"type": "boolean", "index": 4, "name": "deduplication_criteria_email", "comment": null}, "deduplication_criteria_external_data_reference": {"type": "boolean", "index": 5, "name": "deduplication_criteria_external_data_reference", "comment": null}, "deduplication_criteria_first_name": {"type": "boolean", "index": 6, "name": "deduplication_criteria_first_name", "comment": null}, "deduplication_criteria_last_name": {"type": "boolean", "index": 7, "name": "deduplication_criteria_last_name", "comment": null}, "deduplication_criteria_phone": {"type": "boolean", "index": 8, "name": "deduplication_criteria_phone", "comment": null}, "is_default": {"type": "boolean", "index": 9, "name": "is_default", "comment": null}, "name": {"type": "text", "index": 10, "name": "name", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.qualtrics_source.qualtrics.directory"}, "source.qualtrics_source.qualtrics.directory_contact": {"metadata": {"type": "BASE TABLE", "schema": "qualtrics_source_integration_tests_702", "name": "directory_contact", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"directory_id": {"type": "text", "index": 1, "name": "directory_id", "comment": null}, "id": {"type": "text", "index": 2, "name": "id", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "creation_date": {"type": "text", "index": 4, "name": "creation_date", "comment": null}, "directory_unsubscribe_date": {"type": "timestamp without time zone", "index": 5, "name": "directory_unsubscribe_date", "comment": null}, "directory_unsubscribed": {"type": "boolean", "index": 6, "name": "directory_unsubscribed", "comment": null}, "email": {"type": "text", "index": 7, "name": "email", "comment": null}, "email_domain": {"type": "text", "index": 8, "name": "email_domain", "comment": null}, "embedded_data_last_active_time": {"type": "integer", "index": 9, "name": "embedded_data_last_active_time", "comment": null}, "embedded_data_last_response_date": {"type": "integer", "index": 10, "name": "embedded_data_last_response_date", "comment": null}, "embedded_data_login_date": {"type": "integer", "index": 11, "name": "embedded_data_login_date", "comment": null}, "ext_ref": {"type": "integer", "index": 12, "name": "ext_ref", "comment": null}, "first_name": {"type": "text", "index": 13, "name": "first_name", "comment": null}, "language": {"type": "integer", "index": 14, "name": "language", "comment": null}, "last_modified": {"type": "text", "index": 15, "name": "last_modified", "comment": null}, "last_name": {"type": "text", "index": 16, "name": "last_name", "comment": null}, "phone": {"type": "character varying", "index": 17, "name": "phone", "comment": null}, "write_blanks": {"type": "integer", "index": 18, "name": "write_blanks", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.qualtrics_source.qualtrics.directory_contact"}, "source.qualtrics_source.qualtrics.directory_mailing_list": {"metadata": {"type": "BASE TABLE", "schema": "qualtrics_source_integration_tests_702", "name": "directory_mailing_list", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"directory_id": {"type": "text", "index": 1, "name": "directory_id", "comment": null}, "id": {"type": "text", "index": 2, "name": "id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 3, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 4, "name": "_fivetran_synced", "comment": null}, "creation_date": {"type": "text", "index": 5, "name": "creation_date", "comment": null}, "last_modified_date": {"type": "text", "index": 6, "name": "last_modified_date", "comment": null}, "name": {"type": "text", "index": 7, "name": "name", "comment": null}, "owner_id": {"type": "text", "index": 8, "name": "owner_id", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.qualtrics_source.qualtrics.directory_mailing_list"}, "source.qualtrics_source.qualtrics.distribution": {"metadata": {"type": "BASE TABLE", "schema": "qualtrics_source_integration_tests_702", "name": "distribution", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "text", "index": 1, "name": "id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 2, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "created_date": {"type": "text", "index": 4, "name": "created_date", "comment": null}, "header_from_email": {"type": "text", "index": 5, "name": "header_from_email", "comment": null}, "header_from_name": {"type": "text", "index": 6, "name": "header_from_name", "comment": null}, "header_reply_to_email": {"type": "text", "index": 7, "name": "header_reply_to_email", "comment": null}, "header_subject": {"type": "text", "index": 8, "name": "header_subject", "comment": null}, "message_library_id": {"type": "integer", "index": 9, "name": "message_library_id", "comment": null}, "message_message_id": {"type": "integer", "index": 10, "name": "message_message_id", "comment": null}, "message_message_text": {"type": "integer", "index": 11, "name": "message_message_text", "comment": null}, "modified_date": {"type": "text", "index": 12, "name": "modified_date", "comment": null}, "organization_id": {"type": "text", "index": 13, "name": "organization_id", "comment": null}, "owner_id": {"type": "text", "index": 14, "name": "owner_id", "comment": null}, "parent_distribution_id": {"type": "integer", "index": 15, "name": "parent_distribution_id", "comment": null}, "recipient_contact_id": {"type": "text", "index": 16, "name": "recipient_contact_id", "comment": null}, "recipient_library_id": {"type": "text", "index": 17, "name": "recipient_library_id", "comment": null}, "recipient_mailing_list_id": {"type": "text", "index": 18, "name": "recipient_mailing_list_id", "comment": null}, "recipient_sample_id": {"type": "text", "index": 19, "name": "recipient_sample_id", "comment": null}, "request_status": {"type": "text", "index": 20, "name": "request_status", "comment": null}, "request_type": {"type": "text", "index": 21, "name": "request_type", "comment": null}, "send_date": {"type": "text", "index": 22, "name": "send_date", "comment": null}, "survey_link_expiration_date": {"type": "text", "index": 23, "name": "survey_link_expiration_date", "comment": null}, "survey_link_link_type": {"type": "text", "index": 24, "name": "survey_link_link_type", "comment": null}, "survey_link_survey_id": {"type": "text", "index": 25, "name": "survey_link_survey_id", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.qualtrics_source.qualtrics.distribution"}, "source.qualtrics_source.qualtrics.distribution_contact": {"metadata": {"type": "BASE TABLE", "schema": "qualtrics_source_integration_tests_702", "name": "distribution_contact", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"contact_id": {"type": "text", "index": 1, "name": "contact_id", "comment": null}, "distribution_id": {"type": "text", "index": 2, "name": "distribution_id", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "contact_frequency_rule_id": {"type": "integer", "index": 4, "name": "contact_frequency_rule_id", "comment": null}, "contact_lookup_id": {"type": "text", "index": 5, "name": "contact_lookup_id", "comment": null}, "opened_at": {"type": "text", "index": 6, "name": "opened_at", "comment": null}, "response_completed_at": {"type": "timestamp without time zone", "index": 7, "name": "response_completed_at", "comment": null}, "response_id": {"type": "integer", "index": 8, "name": "response_id", "comment": null}, "response_started_at": {"type": "timestamp without time zone", "index": 9, "name": "response_started_at", "comment": null}, "sent_at": {"type": "text", "index": 10, "name": "sent_at", "comment": null}, "status": {"type": "text", "index": 11, "name": "status", "comment": null}, "survey_link": {"type": "text", "index": 12, "name": "survey_link", "comment": null}, "survey_session_id": {"type": "integer", "index": 13, "name": "survey_session_id", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.qualtrics_source.qualtrics.distribution_contact"}, "source.qualtrics_source.qualtrics.question": {"metadata": {"type": "BASE TABLE", "schema": "qualtrics_source_integration_tests_702", "name": "question", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "text", "index": 1, "name": "id", "comment": null}, "survey_id": {"type": "text", "index": 2, "name": "survey_id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 3, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 4, "name": "_fivetran_synced", "comment": null}, "data_export_tag": {"type": "text", "index": 5, "name": "data_export_tag", "comment": null}, "data_visibility_hidden": {"type": "boolean", "index": 6, "name": "data_visibility_hidden", "comment": null}, "data_visibility_private": {"type": "boolean", "index": 7, "name": "data_visibility_private", "comment": null}, "next_answer_id": {"type": "integer", "index": 8, "name": "next_answer_id", "comment": null}, "next_choice_id": {"type": "integer", "index": 9, "name": "next_choice_id", "comment": null}, "question_description": {"type": "text", "index": 10, "name": "question_description", "comment": null}, "question_description_option": {"type": "text", "index": 11, "name": "question_description_option", "comment": null}, "question_text": {"type": "text", "index": 12, "name": "question_text", "comment": null}, "question_text_unsafe": {"type": "text", "index": 13, "name": "question_text_unsafe", "comment": null}, "question_type": {"type": "text", "index": 14, "name": "question_type", "comment": null}, "selector": {"type": "text", "index": 15, "name": "selector", "comment": null}, "sub_selector": {"type": "text", "index": 16, "name": "sub_selector", "comment": null}, "validation_setting_force_response": {"type": "integer", "index": 17, "name": "validation_setting_force_response", "comment": null}, "validation_setting_force_response_type": {"type": "integer", "index": 18, "name": "validation_setting_force_response_type", "comment": null}, "validation_setting_type": {"type": "text", "index": 19, "name": "validation_setting_type", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.qualtrics_source.qualtrics.question"}, "source.qualtrics_source.qualtrics.question_option": {"metadata": {"type": "BASE TABLE", "schema": "qualtrics_source_integration_tests_702", "name": "question_option", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"key": {"type": "integer", "index": 1, "name": "key", "comment": null}, "question_id": {"type": "text", "index": 2, "name": "question_id", "comment": null}, "survey_id": {"type": "text", "index": 3, "name": "survey_id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 4, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 5, "name": "_fivetran_synced", "comment": null}, "recode_value": {"type": "integer", "index": 6, "name": "recode_value", "comment": null}, "text": {"type": "text", "index": 7, "name": "text", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.qualtrics_source.qualtrics.question_option"}, "source.qualtrics_source.qualtrics.question_response": {"metadata": {"type": "BASE TABLE", "schema": "qualtrics_source_integration_tests_702", "name": "question_response", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"_fivetran_id": {"type": "text", "index": 1, "name": "_fivetran_id", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 2, "name": "_fivetran_synced", "comment": null}, "loop_id": {"type": "integer", "index": 3, "name": "loop_id", "comment": null}, "question": {"type": "text", "index": 4, "name": "question", "comment": null}, "question_id": {"type": "text", "index": 5, "name": "question_id", "comment": null}, "question_option_key": {"type": "integer", "index": 6, "name": "question_option_key", "comment": null}, "response_id": {"type": "text", "index": 7, "name": "response_id", "comment": null}, "sub_question_key": {"type": "integer", "index": 8, "name": "sub_question_key", "comment": null}, "sub_question_text": {"type": "integer", "index": 9, "name": "sub_question_text", "comment": null}, "value": {"type": "integer", "index": 10, "name": "value", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.qualtrics_source.qualtrics.question_response"}, "source.qualtrics_source.qualtrics.sub_question": {"metadata": {"type": "BASE TABLE", "schema": "qualtrics_source_integration_tests_702", "name": "sub_question", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"key": {"type": "integer", "index": 1, "name": "key", "comment": null}, "question_id": {"type": "text", "index": 2, "name": "question_id", "comment": null}, "survey_id": {"type": "text", "index": 3, "name": "survey_id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 4, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 5, "name": "_fivetran_synced", "comment": null}, "choice_data_export_tag": {"type": "integer", "index": 6, "name": "choice_data_export_tag", "comment": null}, "text": {"type": "text", "index": 7, "name": "text", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.qualtrics_source.qualtrics.sub_question"}, "source.qualtrics_source.qualtrics.survey": {"metadata": {"type": "BASE TABLE", "schema": "qualtrics_source_integration_tests_702", "name": "survey", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "text", "index": 1, "name": "id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 2, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "auto_scoring_category": {"type": "integer", "index": 4, "name": "auto_scoring_category", "comment": null}, "brand_base_url": {"type": "text", "index": 5, "name": "brand_base_url", "comment": null}, "brand_id": {"type": "text", "index": 6, "name": "brand_id", "comment": null}, "bundle_short_name": {"type": "integer", "index": 7, "name": "bundle_short_name", "comment": null}, "composition_type": {"type": "integer", "index": 8, "name": "composition_type", "comment": null}, "creator_id": {"type": "integer", "index": 9, "name": "creator_id", "comment": null}, "default_scoring_category": {"type": "integer", "index": 10, "name": "default_scoring_category", "comment": null}, "division_id": {"type": "integer", "index": 11, "name": "division_id", "comment": null}, "is_active": {"type": "integer", "index": 12, "name": "is_active", "comment": null}, "last_accessed": {"type": "timestamp without time zone", "index": 13, "name": "last_accessed", "comment": null}, "last_activated": {"type": "text", "index": 14, "name": "last_activated", "comment": null}, "last_modified": {"type": "text", "index": 15, "name": "last_modified", "comment": null}, "option_active_response_set": {"type": "text", "index": 16, "name": "option_active_response_set", "comment": null}, "option_anonymize_response": {"type": "integer", "index": 17, "name": "option_anonymize_response", "comment": null}, "option_auto_confirm_start": {"type": "integer", "index": 18, "name": "option_auto_confirm_start", "comment": null}, "option_autoadvance": {"type": "boolean", "index": 19, "name": "option_autoadvance", "comment": null}, "option_autoadvance_pages": {"type": "boolean", "index": 20, "name": "option_autoadvance_pages", "comment": null}, "option_autofocus": {"type": "boolean", "index": 21, "name": "option_autofocus", "comment": null}, "option_available_languages": {"type": "integer", "index": 22, "name": "option_available_languages", "comment": null}, "option_back_button": {"type": "boolean", "index": 23, "name": "option_back_button", "comment": null}, "option_ballot_box_stuffing_prevention": {"type": "boolean", "index": 24, "name": "option_ballot_box_stuffing_prevention", "comment": null}, "option_collect_geo_location": {"type": "integer", "index": 25, "name": "option_collect_geo_location", "comment": null}, "option_confirm_start": {"type": "integer", "index": 26, "name": "option_confirm_start", "comment": null}, "option_custom_styles": {"type": "text", "index": 27, "name": "option_custom_styles", "comment": null}, "option_email_thank_you": {"type": "integer", "index": 28, "name": "option_email_thank_you", "comment": null}, "option_eosredirect_url": {"type": "integer", "index": 29, "name": "option_eosredirect_url", "comment": null}, "option_highlight_questions": {"type": "text", "index": 30, "name": "option_highlight_questions", "comment": null}, "option_inactive_survey": {"type": "integer", "index": 31, "name": "option_inactive_survey", "comment": null}, "option_new_scoring": {"type": "integer", "index": 32, "name": "option_new_scoring", "comment": null}, "option_next_button": {"type": "text", "index": 33, "name": "option_next_button", "comment": null}, "option_no_index": {"type": "text", "index": 34, "name": "option_no_index", "comment": null}, "option_page_transition": {"type": "text", "index": 35, "name": "option_page_transition", "comment": null}, "option_partial_data": {"type": "text", "index": 36, "name": "option_partial_data", "comment": null}, "option_partial_data_close_after": {"type": "integer", "index": 37, "name": "option_partial_data_close_after", "comment": null}, "option_password_protection": {"type": "integer", "index": 38, "name": "option_password_protection", "comment": null}, "option_previous_button": {"type": "text", "index": 39, "name": "option_previous_button", "comment": null}, "option_progress_bar_display": {"type": "text", "index": 40, "name": "option_progress_bar_display", "comment": null}, "option_protect_selection_ids": {"type": "integer", "index": 41, "name": "option_protect_selection_ids", "comment": null}, "option_recaptcha_v_3": {"type": "integer", "index": 42, "name": "option_recaptcha_v_3", "comment": null}, "option_referer_check": {"type": "integer", "index": 43, "name": "option_referer_check", "comment": null}, "option_referer_url": {"type": "integer", "index": 44, "name": "option_referer_url", "comment": null}, "option_relevant_id": {"type": "integer", "index": 45, "name": "option_relevant_id", "comment": null}, "option_relevant_idlockout_period": {"type": "integer", "index": 46, "name": "option_relevant_idlockout_period", "comment": null}, "option_response_summary": {"type": "integer", "index": 47, "name": "option_response_summary", "comment": null}, "option_save_and_continue": {"type": "boolean", "index": 48, "name": "option_save_and_continue", "comment": null}, "option_secure_response_files": {"type": "boolean", "index": 49, "name": "option_secure_response_files", "comment": null}, "option_show_export_tags": {"type": "integer", "index": 50, "name": "option_show_export_tags", "comment": null}, "option_skin": {"type": "text", "index": 51, "name": "option_skin", "comment": null}, "option_skin_library": {"type": "text", "index": 52, "name": "option_skin_library", "comment": null}, "option_skin_question_width": {"type": "integer", "index": 53, "name": "option_skin_question_width", "comment": null}, "option_skin_type": {"type": "text", "index": 54, "name": "option_skin_type", "comment": null}, "option_survey_creation_date": {"type": "text", "index": 55, "name": "option_survey_creation_date", "comment": null}, "option_survey_expiration": {"type": "text", "index": 56, "name": "option_survey_expiration", "comment": null}, "option_survey_language": {"type": "text", "index": 57, "name": "option_survey_language", "comment": null}, "option_survey_meta_description": {"type": "integer", "index": 58, "name": "option_survey_meta_description", "comment": null}, "option_survey_name": {"type": "integer", "index": 59, "name": "option_survey_name", "comment": null}, "option_survey_protection": {"type": "text", "index": 60, "name": "option_survey_protection", "comment": null}, "option_survey_termination": {"type": "text", "index": 61, "name": "option_survey_termination", "comment": null}, "option_survey_title": {"type": "text", "index": 62, "name": "option_survey_title", "comment": null}, "option_validate_message": {"type": "integer", "index": 63, "name": "option_validate_message", "comment": null}, "owner_id": {"type": "text", "index": 64, "name": "owner_id", "comment": null}, "project_category": {"type": "text", "index": 65, "name": "project_category", "comment": null}, "project_type": {"type": "text", "index": 66, "name": "project_type", "comment": null}, "registry_sha": {"type": "integer", "index": 67, "name": "registry_sha", "comment": null}, "registry_version": {"type": "integer", "index": 68, "name": "registry_version", "comment": null}, "schema_version": {"type": "integer", "index": 69, "name": "schema_version", "comment": null}, "scoring_summary_after_questions": {"type": "boolean", "index": 70, "name": "scoring_summary_after_questions", "comment": null}, "scoring_summary_after_survey": {"type": "boolean", "index": 71, "name": "scoring_summary_after_survey", "comment": null}, "scoring_summary_category": {"type": "integer", "index": 72, "name": "scoring_summary_category", "comment": null}, "survey_name": {"type": "text", "index": 73, "name": "survey_name", "comment": null}, "survey_status": {"type": "text", "index": 74, "name": "survey_status", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.qualtrics_source.qualtrics.survey"}, "source.qualtrics_source.qualtrics.survey_embedded_data": {"metadata": {"type": "BASE TABLE", "schema": "qualtrics_source_integration_tests_702", "name": "survey_embedded_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"import_id": {"type": "text", "index": 1, "name": "import_id", "comment": null}, "key": {"type": "text", "index": 2, "name": "key", "comment": null}, "response_id": {"type": "text", "index": 3, "name": "response_id", "comment": null}, "value": {"type": "integer", "index": 4, "name": "value", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 5, "name": "_fivetran_synced", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.qualtrics_source.qualtrics.survey_embedded_data"}, "source.qualtrics_source.qualtrics.survey_response": {"metadata": {"type": "BASE TABLE", "schema": "qualtrics_source_integration_tests_702", "name": "survey_response", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "text", "index": 1, "name": "id", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 2, "name": "_fivetran_synced", "comment": null}, "distribution_channel": {"type": "text", "index": 3, "name": "distribution_channel", "comment": null}, "duration_in_seconds": {"type": "integer", "index": 4, "name": "duration_in_seconds", "comment": null}, "end_date": {"type": "text", "index": 5, "name": "end_date", "comment": null}, "finished": {"type": "integer", "index": 6, "name": "finished", "comment": null}, "ip_address": {"type": "text", "index": 7, "name": "ip_address", "comment": null}, "last_modified_date": {"type": "text", "index": 8, "name": "last_modified_date", "comment": null}, "location_latitude": {"type": "integer", "index": 9, "name": "location_latitude", "comment": null}, "location_longitude": {"type": "integer", "index": 10, "name": "location_longitude", "comment": null}, "progress": {"type": "integer", "index": 11, "name": "progress", "comment": null}, "recipient_email": {"type": "text", "index": 12, "name": "recipient_email", "comment": null}, "recipient_first_name": {"type": "text", "index": 13, "name": "recipient_first_name", "comment": null}, "recipient_last_name": {"type": "text", "index": 14, "name": "recipient_last_name", "comment": null}, "recorded_date": {"type": "text", "index": 15, "name": "recorded_date", "comment": null}, "start_date": {"type": "text", "index": 16, "name": "start_date", "comment": null}, "status": {"type": "integer", "index": 17, "name": "status", "comment": null}, "survey_id": {"type": "text", "index": 18, "name": "survey_id", "comment": null}, "user_language": {"type": "text", "index": 19, "name": "user_language", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.qualtrics_source.qualtrics.survey_response"}, "source.qualtrics_source.qualtrics.survey_version": {"metadata": {"type": "BASE TABLE", "schema": "qualtrics_source_integration_tests_702", "name": "survey_version", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "integer", "index": 1, "name": "id", "comment": null}, "survey_id": {"type": "text", "index": 2, "name": "survey_id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 3, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 4, "name": "_fivetran_synced", "comment": null}, "creation_date": {"type": "text", "index": 5, "name": "creation_date", "comment": null}, "description": {"type": "text", "index": 6, "name": "description", "comment": null}, "published": {"type": "boolean", "index": 7, "name": "published", "comment": null}, "user_id": {"type": "text", "index": 8, "name": "user_id", "comment": null}, "version_number": {"type": "integer", "index": 9, "name": "version_number", "comment": null}, "was_published": {"type": "boolean", "index": 10, "name": "was_published", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.qualtrics_source.qualtrics.survey_version"}, "source.qualtrics_source.qualtrics.user": {"metadata": {"type": "BASE TABLE", "schema": "qualtrics_source_integration_tests_702", "name": "user", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "text", "index": 1, "name": "id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 2, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "account_creation_date": {"type": "timestamp without time zone", "index": 4, "name": "account_creation_date", "comment": null}, "account_expiration_date": {"type": "timestamp without time zone", "index": 5, "name": "account_expiration_date", "comment": null}, "account_status": {"type": "text", "index": 6, "name": "account_status", "comment": null}, "division_id": {"type": "integer", "index": 7, "name": "division_id", "comment": null}, "email": {"type": "text", "index": 8, "name": "email", "comment": null}, "first_name": {"type": "text", "index": 9, "name": "first_name", "comment": null}, "language": {"type": "integer", "index": 10, "name": "language", "comment": null}, "last_login_date": {"type": "timestamp without time zone", "index": 11, "name": "last_login_date", "comment": null}, "last_name": {"type": "text", "index": 12, "name": "last_name", "comment": null}, "organization_id": {"type": "integer", "index": 13, "name": "organization_id", "comment": null}, "password_expiration_date": {"type": "timestamp without time zone", "index": 14, "name": "password_expiration_date", "comment": null}, "password_last_changed_date": {"type": "timestamp without time zone", "index": 15, "name": "password_last_changed_date", "comment": null}, "response_count_auditable": {"type": "integer", "index": 16, "name": "response_count_auditable", "comment": null}, "response_count_deleted": {"type": "integer", "index": 17, "name": "response_count_deleted", "comment": null}, "response_count_generated": {"type": "integer", "index": 18, "name": "response_count_generated", "comment": null}, "time_zone": {"type": "integer", "index": 19, "name": "time_zone", "comment": null}, "unsubscribed": {"type": "integer", "index": 20, "name": "unsubscribed", "comment": null}, "user_type": {"type": "text", "index": 21, "name": "user_type", "comment": null}, "username": {"type": "text", "index": 22, "name": "username", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.qualtrics_source.qualtrics.user"}}, "errors": null} \ No newline at end of file diff --git a/docs/index.html b/docs/index.html index 6a82682..ca1e6f8 100644 --- a/docs/index.html +++ b/docs/index.html @@ -64,7 +64,7 @@ * Released under MIT license * Based on Underscore.js 1.8.3 * Copyright Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors - */(function(){var o="Expected a function",a="__lodash_placeholder__",s=[["ary",128],["bind",1],["bindKey",2],["curry",8],["curryRight",16],["flip",512],["partial",32],["partialRight",64],["rearg",256]],l="[object Arguments]",c="[object Array]",u="[object Boolean]",d="[object Date]",p="[object Error]",f="[object Function]",h="[object GeneratorFunction]",g="[object Map]",m="[object Number]",v="[object Object]",b="[object RegExp]",y="[object Set]",x="[object String]",w="[object Symbol]",k="[object WeakMap]",A="[object ArrayBuffer]",E="[object DataView]",S="[object Float32Array]",$="[object Float64Array]",C="[object Int8Array]",_="[object Int16Array]",O="[object Int32Array]",T="[object Uint8Array]",j="[object Uint16Array]",P="[object Uint32Array]",D=/\b__p \+= '';/g,R=/\b(__p \+=) '' \+/g,I=/(__e\(.*?\)|\b__t\)) \+\n'';/g,N=/&(?:amp|lt|gt|quot|#39);/g,M=/[&<>"']/g,z=RegExp(N.source),L=RegExp(M.source),B=/<%-([\s\S]+?)%>/g,F=/<%([\s\S]+?)%>/g,q=/<%=([\s\S]+?)%>/g,V=/\.|\[(?:[^[\]]*|(["'])(?:(?!\1)[^\\]|\\.)*?\1)\]/,U=/^\w*$/,H=/[^.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|$))/g,G=/[\\^$.*+?()[\]{}|]/g,W=RegExp(G.source),Y=/^\s+/,X=/\s/,Z=/\{(?:\n\/\* \[wrapped with .+\] \*\/)?\n?/,Q=/\{\n\/\* \[wrapped with (.+)\] \*/,J=/,? & /,K=/[^\x00-\x2f\x3a-\x40\x5b-\x60\x7b-\x7f]+/g,ee=/[()=,{}\[\]\/\s]/,te=/\\(\\)?/g,ne=/\$\{([^\\}]*(?:\\.[^\\}]*)*)\}/g,re=/\w*$/,ie=/^[-+]0x[0-9a-f]+$/i,oe=/^0b[01]+$/i,ae=/^\[object .+?Constructor\]$/,se=/^0o[0-7]+$/i,le=/^(?:0|[1-9]\d*)$/,ce=/[\xc0-\xd6\xd8-\xf6\xf8-\xff\u0100-\u017f]/g,ue=/($^)/,de=/['\n\r\u2028\u2029\\]/g,pe="\\u0300-\\u036f\\ufe20-\\ufe2f\\u20d0-\\u20ff",fe="\\xac\\xb1\\xd7\\xf7\\x00-\\x2f\\x3a-\\x40\\x5b-\\x60\\x7b-\\xbf\\u2000-\\u206f \\t\\x0b\\f\\xa0\\ufeff\\n\\r\\u2028\\u2029\\u1680\\u180e\\u2000\\u2001\\u2002\\u2003\\u2004\\u2005\\u2006\\u2007\\u2008\\u2009\\u200a\\u202f\\u205f\\u3000",he="[\\ud800-\\udfff]",ge="["+fe+"]",me="["+pe+"]",ve="\\d+",be="[\\u2700-\\u27bf]",ye="[a-z\\xdf-\\xf6\\xf8-\\xff]",xe="[^\\ud800-\\udfff"+fe+ve+"\\u2700-\\u27bfa-z\\xdf-\\xf6\\xf8-\\xffA-Z\\xc0-\\xd6\\xd8-\\xde]",we="\\ud83c[\\udffb-\\udfff]",ke="[^\\ud800-\\udfff]",Ae="(?:\\ud83c[\\udde6-\\uddff]){2}",Ee="[\\ud800-\\udbff][\\udc00-\\udfff]",Se="[A-Z\\xc0-\\xd6\\xd8-\\xde]",$e="(?:"+ye+"|"+xe+")",Ce="(?:"+Se+"|"+xe+")",_e="(?:"+me+"|"+we+")"+"?",Oe="[\\ufe0e\\ufe0f]?"+_e+("(?:\\u200d(?:"+[ke,Ae,Ee].join("|")+")[\\ufe0e\\ufe0f]?"+_e+")*"),Te="(?:"+[be,Ae,Ee].join("|")+")"+Oe,je="(?:"+[ke+me+"?",me,Ae,Ee,he].join("|")+")",Pe=RegExp("['’]","g"),De=RegExp(me,"g"),Re=RegExp(we+"(?="+we+")|"+je+Oe,"g"),Ie=RegExp([Se+"?"+ye+"+(?:['’](?:d|ll|m|re|s|t|ve))?(?="+[ge,Se,"$"].join("|")+")",Ce+"+(?:['’](?:D|LL|M|RE|S|T|VE))?(?="+[ge,Se+$e,"$"].join("|")+")",Se+"?"+$e+"+(?:['’](?:d|ll|m|re|s|t|ve))?",Se+"+(?:['’](?:D|LL|M|RE|S|T|VE))?","\\d*(?:1ST|2ND|3RD|(?![123])\\dTH)(?=\\b|[a-z_])","\\d*(?:1st|2nd|3rd|(?![123])\\dth)(?=\\b|[A-Z_])",ve,Te].join("|"),"g"),Ne=RegExp("[\\u200d\\ud800-\\udfff"+pe+"\\ufe0e\\ufe0f]"),Me=/[a-z][A-Z]|[A-Z]{2}[a-z]|[0-9][a-zA-Z]|[a-zA-Z][0-9]|[^a-zA-Z0-9 ]/,ze=["Array","Buffer","DataView","Date","Error","Float32Array","Float64Array","Function","Int8Array","Int16Array","Int32Array","Map","Math","Object","Promise","RegExp","Set","String","Symbol","TypeError","Uint8Array","Uint8ClampedArray","Uint16Array","Uint32Array","WeakMap","_","clearTimeout","isFinite","parseInt","setTimeout"],Le=-1,Be={};Be[S]=Be[$]=Be[C]=Be[_]=Be[O]=Be[T]=Be["[object Uint8ClampedArray]"]=Be[j]=Be[P]=!0,Be[l]=Be[c]=Be[A]=Be[u]=Be[E]=Be[d]=Be[p]=Be[f]=Be[g]=Be[m]=Be[v]=Be[b]=Be[y]=Be[x]=Be[k]=!1;var Fe={};Fe[l]=Fe[c]=Fe[A]=Fe[E]=Fe[u]=Fe[d]=Fe[S]=Fe[$]=Fe[C]=Fe[_]=Fe[O]=Fe[g]=Fe[m]=Fe[v]=Fe[b]=Fe[y]=Fe[x]=Fe[w]=Fe[T]=Fe["[object Uint8ClampedArray]"]=Fe[j]=Fe[P]=!0,Fe[p]=Fe[f]=Fe[k]=!1;var qe={"\\":"\\","'":"'","\n":"n","\r":"r","\u2028":"u2028","\u2029":"u2029"},Ve=parseFloat,Ue=parseInt,He="object"==typeof e&&e&&e.Object===Object&&e,Ge="object"==typeof self&&self&&self.Object===Object&&self,We=He||Ge||Function("return this")(),Ye=t&&!t.nodeType&&t,Xe=Ye&&"object"==typeof r&&r&&!r.nodeType&&r,Ze=Xe&&Xe.exports===Ye,Qe=Ze&&He.process,Je=function(){try{var e=Xe&&Xe.require&&Xe.require("util").types;return e||Qe&&Qe.binding&&Qe.binding("util")}catch(e){}}(),Ke=Je&&Je.isArrayBuffer,et=Je&&Je.isDate,tt=Je&&Je.isMap,nt=Je&&Je.isRegExp,rt=Je&&Je.isSet,it=Je&&Je.isTypedArray;function ot(e,t,n){switch(n.length){case 0:return e.call(t);case 1:return e.call(t,n[0]);case 2:return e.call(t,n[0],n[1]);case 3:return e.call(t,n[0],n[1],n[2])}return e.apply(t,n)}function at(e,t,n,r){for(var i=-1,o=null==e?0:e.length;++i-1}function pt(e,t,n){for(var r=-1,i=null==e?0:e.length;++r-1;);return n}function It(e,t){for(var n=e.length;n--&&wt(t,e[n],0)>-1;);return n}function Nt(e,t){for(var n=e.length,r=0;n--;)e[n]===t&&++r;return r}var Mt=$t({"À":"A","Á":"A","Â":"A","Ã":"A","Ä":"A","Å":"A","à":"a","á":"a","â":"a","ã":"a","ä":"a","å":"a","Ç":"C","ç":"c","Ð":"D","ð":"d","È":"E","É":"E","Ê":"E","Ë":"E","è":"e","é":"e","ê":"e","ë":"e","Ì":"I","Í":"I","Î":"I","Ï":"I","ì":"i","í":"i","î":"i","ï":"i","Ñ":"N","ñ":"n","Ò":"O","Ó":"O","Ô":"O","Õ":"O","Ö":"O","Ø":"O","ò":"o","ó":"o","ô":"o","õ":"o","ö":"o","ø":"o","Ù":"U","Ú":"U","Û":"U","Ü":"U","ù":"u","ú":"u","û":"u","ü":"u","Ý":"Y","ý":"y","ÿ":"y","Æ":"Ae","æ":"ae","Þ":"Th","þ":"th","ß":"ss","Ā":"A","Ă":"A","Ą":"A","ā":"a","ă":"a","ą":"a","Ć":"C","Ĉ":"C","Ċ":"C","Č":"C","ć":"c","ĉ":"c","ċ":"c","č":"c","Ď":"D","Đ":"D","ď":"d","đ":"d","Ē":"E","Ĕ":"E","Ė":"E","Ę":"E","Ě":"E","ē":"e","ĕ":"e","ė":"e","ę":"e","ě":"e","Ĝ":"G","Ğ":"G","Ġ":"G","Ģ":"G","ĝ":"g","ğ":"g","ġ":"g","ģ":"g","Ĥ":"H","Ħ":"H","ĥ":"h","ħ":"h","Ĩ":"I","Ī":"I","Ĭ":"I","Į":"I","İ":"I","ĩ":"i","ī":"i","ĭ":"i","į":"i","ı":"i","Ĵ":"J","ĵ":"j","Ķ":"K","ķ":"k","ĸ":"k","Ĺ":"L","Ļ":"L","Ľ":"L","Ŀ":"L","Ł":"L","ĺ":"l","ļ":"l","ľ":"l","ŀ":"l","ł":"l","Ń":"N","Ņ":"N","Ň":"N","Ŋ":"N","ń":"n","ņ":"n","ň":"n","ŋ":"n","Ō":"O","Ŏ":"O","Ő":"O","ō":"o","ŏ":"o","ő":"o","Ŕ":"R","Ŗ":"R","Ř":"R","ŕ":"r","ŗ":"r","ř":"r","Ś":"S","Ŝ":"S","Ş":"S","Š":"S","ś":"s","ŝ":"s","ş":"s","š":"s","Ţ":"T","Ť":"T","Ŧ":"T","ţ":"t","ť":"t","ŧ":"t","Ũ":"U","Ū":"U","Ŭ":"U","Ů":"U","Ű":"U","Ų":"U","ũ":"u","ū":"u","ŭ":"u","ů":"u","ű":"u","ų":"u","Ŵ":"W","ŵ":"w","Ŷ":"Y","ŷ":"y","Ÿ":"Y","Ź":"Z","Ż":"Z","Ž":"Z","ź":"z","ż":"z","ž":"z","IJ":"IJ","ij":"ij","Œ":"Oe","œ":"oe","ʼn":"'n","ſ":"s"}),zt=$t({"&":"&","<":"<",">":">",'"':""","'":"'"});function Lt(e){return"\\"+qe[e]}function Bt(e){return Ne.test(e)}function Ft(e){var t=-1,n=Array(e.size);return e.forEach((function(e,r){n[++t]=[r,e]})),n}function qt(e,t){return function(n){return e(t(n))}}function Vt(e,t){for(var n=-1,r=e.length,i=0,o=[];++n",""":'"',"'":"'"});var Zt=function e(t){var n,r=(t=null==t?We:Zt.defaults(We.Object(),t,Zt.pick(We,ze))).Array,i=t.Date,X=t.Error,pe=t.Function,fe=t.Math,he=t.Object,ge=t.RegExp,me=t.String,ve=t.TypeError,be=r.prototype,ye=pe.prototype,xe=he.prototype,we=t["__core-js_shared__"],ke=ye.toString,Ae=xe.hasOwnProperty,Ee=0,Se=(n=/[^.]+$/.exec(we&&we.keys&&we.keys.IE_PROTO||""))?"Symbol(src)_1."+n:"",$e=xe.toString,Ce=ke.call(he),_e=We._,Oe=ge("^"+ke.call(Ae).replace(G,"\\$&").replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g,"$1.*?")+"$"),Te=Ze?t.Buffer:void 0,je=t.Symbol,Re=t.Uint8Array,Ne=Te?Te.allocUnsafe:void 0,qe=qt(he.getPrototypeOf,he),He=he.create,Ge=xe.propertyIsEnumerable,Ye=be.splice,Xe=je?je.isConcatSpreadable:void 0,Qe=je?je.iterator:void 0,Je=je?je.toStringTag:void 0,bt=function(){try{var e=eo(he,"defineProperty");return e({},"",{}),e}catch(e){}}(),$t=t.clearTimeout!==We.clearTimeout&&t.clearTimeout,Qt=i&&i.now!==We.Date.now&&i.now,Jt=t.setTimeout!==We.setTimeout&&t.setTimeout,Kt=fe.ceil,en=fe.floor,tn=he.getOwnPropertySymbols,nn=Te?Te.isBuffer:void 0,rn=t.isFinite,on=be.join,an=qt(he.keys,he),sn=fe.max,ln=fe.min,cn=i.now,un=t.parseInt,dn=fe.random,pn=be.reverse,fn=eo(t,"DataView"),hn=eo(t,"Map"),gn=eo(t,"Promise"),mn=eo(t,"Set"),vn=eo(t,"WeakMap"),bn=eo(he,"create"),yn=vn&&new vn,xn={},wn=_o(fn),kn=_o(hn),An=_o(gn),En=_o(mn),Sn=_o(vn),$n=je?je.prototype:void 0,Cn=$n?$n.valueOf:void 0,_n=$n?$n.toString:void 0;function On(e){if(Ha(e)&&!Ra(e)&&!(e instanceof Dn)){if(e instanceof Pn)return e;if(Ae.call(e,"__wrapped__"))return Oo(e)}return new Pn(e)}var Tn=function(){function e(){}return function(t){if(!Ua(t))return{};if(He)return He(t);e.prototype=t;var n=new e;return e.prototype=void 0,n}}();function jn(){}function Pn(e,t){this.__wrapped__=e,this.__actions__=[],this.__chain__=!!t,this.__index__=0,this.__values__=void 0}function Dn(e){this.__wrapped__=e,this.__actions__=[],this.__dir__=1,this.__filtered__=!1,this.__iteratees__=[],this.__takeCount__=4294967295,this.__views__=[]}function Rn(e){var t=-1,n=null==e?0:e.length;for(this.clear();++t=t?e:t)),e}function Qn(e,t,n,r,i,o){var a,s=1&t,c=2&t,p=4&t;if(n&&(a=i?n(e,r,i,o):n(e)),void 0!==a)return a;if(!Ua(e))return e;var k=Ra(e);if(k){if(a=function(e){var t=e.length,n=new e.constructor(t);t&&"string"==typeof e[0]&&Ae.call(e,"index")&&(n.index=e.index,n.input=e.input);return n}(e),!s)return bi(e,a)}else{var D=ro(e),R=D==f||D==h;if(za(e))return pi(e,s);if(D==v||D==l||R&&!i){if(a=c||R?{}:oo(e),!s)return c?function(e,t){return yi(e,no(e),t)}(e,function(e,t){return e&&yi(t,ks(t),e)}(a,e)):function(e,t){return yi(e,to(e),t)}(e,Wn(a,e))}else{if(!Fe[D])return i?e:{};a=function(e,t,n){var r=e.constructor;switch(t){case A:return fi(e);case u:case d:return new r(+e);case E:return function(e,t){var n=t?fi(e.buffer):e.buffer;return new e.constructor(n,e.byteOffset,e.byteLength)}(e,n);case S:case $:case C:case _:case O:case T:case"[object Uint8ClampedArray]":case j:case P:return hi(e,n);case g:return new r;case m:case x:return new r(e);case b:return function(e){var t=new e.constructor(e.source,re.exec(e));return t.lastIndex=e.lastIndex,t}(e);case y:return new r;case w:return i=e,Cn?he(Cn.call(i)):{}}var i}(e,D,s)}}o||(o=new zn);var I=o.get(e);if(I)return I;o.set(e,a),Za(e)?e.forEach((function(r){a.add(Qn(r,t,n,r,e,o))})):Ga(e)&&e.forEach((function(r,i){a.set(i,Qn(r,t,n,i,e,o))}));var N=k?void 0:(p?c?Wi:Gi:c?ks:ws)(e);return st(N||e,(function(r,i){N&&(r=e[i=r]),Un(a,i,Qn(r,t,n,i,e,o))})),a}function Jn(e,t,n){var r=n.length;if(null==e)return!r;for(e=he(e);r--;){var i=n[r],o=t[i],a=e[i];if(void 0===a&&!(i in e)||!o(a))return!1}return!0}function Kn(e,t,n){if("function"!=typeof e)throw new ve(o);return wo((function(){e.apply(void 0,n)}),t)}function er(e,t,n,r){var i=-1,o=dt,a=!0,s=e.length,l=[],c=t.length;if(!s)return l;n&&(t=ft(t,jt(n))),r?(o=pt,a=!1):t.length>=200&&(o=Dt,a=!1,t=new Mn(t));e:for(;++i-1},In.prototype.set=function(e,t){var n=this.__data__,r=Hn(n,e);return r<0?(++this.size,n.push([e,t])):n[r][1]=t,this},Nn.prototype.clear=function(){this.size=0,this.__data__={hash:new Rn,map:new(hn||In),string:new Rn}},Nn.prototype.delete=function(e){var t=Ji(this,e).delete(e);return this.size-=t?1:0,t},Nn.prototype.get=function(e){return Ji(this,e).get(e)},Nn.prototype.has=function(e){return Ji(this,e).has(e)},Nn.prototype.set=function(e,t){var n=Ji(this,e),r=n.size;return n.set(e,t),this.size+=n.size==r?0:1,this},Mn.prototype.add=Mn.prototype.push=function(e){return this.__data__.set(e,"__lodash_hash_undefined__"),this},Mn.prototype.has=function(e){return this.__data__.has(e)},zn.prototype.clear=function(){this.__data__=new In,this.size=0},zn.prototype.delete=function(e){var t=this.__data__,n=t.delete(e);return this.size=t.size,n},zn.prototype.get=function(e){return this.__data__.get(e)},zn.prototype.has=function(e){return this.__data__.has(e)},zn.prototype.set=function(e,t){var n=this.__data__;if(n instanceof In){var r=n.__data__;if(!hn||r.length<199)return r.push([e,t]),this.size=++n.size,this;n=this.__data__=new Nn(r)}return n.set(e,t),this.size=n.size,this};var tr=ki(cr),nr=ki(ur,!0);function rr(e,t){var n=!0;return tr(e,(function(e,r,i){return n=!!t(e,r,i)})),n}function ir(e,t,n){for(var r=-1,i=e.length;++r0&&n(s)?t>1?ar(s,t-1,n,r,i):ht(i,s):r||(i[i.length]=s)}return i}var sr=Ai(),lr=Ai(!0);function cr(e,t){return e&&sr(e,t,ws)}function ur(e,t){return e&&lr(e,t,ws)}function dr(e,t){return ut(t,(function(t){return Fa(e[t])}))}function pr(e,t){for(var n=0,r=(t=li(t,e)).length;null!=e&&nt}function mr(e,t){return null!=e&&Ae.call(e,t)}function vr(e,t){return null!=e&&t in he(e)}function br(e,t,n){for(var i=n?pt:dt,o=e[0].length,a=e.length,s=a,l=r(a),c=1/0,u=[];s--;){var d=e[s];s&&t&&(d=ft(d,jt(t))),c=ln(d.length,c),l[s]=!n&&(t||o>=120&&d.length>=120)?new Mn(s&&d):void 0}d=e[0];var p=-1,f=l[0];e:for(;++p=s)return l;var c=n[r];return l*("desc"==c?-1:1)}}return e.index-t.index}(e,t,n)}))}function Rr(e,t,n){for(var r=-1,i=t.length,o={};++r-1;)s!==e&&Ye.call(s,l,1),Ye.call(e,l,1);return e}function Nr(e,t){for(var n=e?t.length:0,r=n-1;n--;){var i=t[n];if(n==r||i!==o){var o=i;so(i)?Ye.call(e,i,1):ei(e,i)}}return e}function Mr(e,t){return e+en(dn()*(t-e+1))}function zr(e,t){var n="";if(!e||t<1||t>9007199254740991)return n;do{t%2&&(n+=e),(t=en(t/2))&&(e+=e)}while(t);return n}function Lr(e,t){return ko(mo(e,t,Ws),e+"")}function Br(e){return Bn(Ts(e))}function Fr(e,t){var n=Ts(e);return So(n,Zn(t,0,n.length))}function qr(e,t,n,r){if(!Ua(e))return e;for(var i=-1,o=(t=li(t,e)).length,a=o-1,s=e;null!=s&&++io?0:o+t),(n=n>o?o:n)<0&&(n+=o),o=t>n?0:n-t>>>0,t>>>=0;for(var a=r(o);++i>>1,a=e[o];null!==a&&!Ja(a)&&(n?a<=t:a=200){var c=t?null:zi(e);if(c)return Ut(c);a=!1,i=Dt,l=new Mn}else l=t?[]:s;e:for(;++r=r?e:Gr(e,t,n)}var di=$t||function(e){return We.clearTimeout(e)};function pi(e,t){if(t)return e.slice();var n=e.length,r=Ne?Ne(n):new e.constructor(n);return e.copy(r),r}function fi(e){var t=new e.constructor(e.byteLength);return new Re(t).set(new Re(e)),t}function hi(e,t){var n=t?fi(e.buffer):e.buffer;return new e.constructor(n,e.byteOffset,e.length)}function gi(e,t){if(e!==t){var n=void 0!==e,r=null===e,i=e==e,o=Ja(e),a=void 0!==t,s=null===t,l=t==t,c=Ja(t);if(!s&&!c&&!o&&e>t||o&&a&&l&&!s&&!c||r&&a&&l||!n&&l||!i)return 1;if(!r&&!o&&!c&&e1?n[i-1]:void 0,a=i>2?n[2]:void 0;for(o=e.length>3&&"function"==typeof o?(i--,o):void 0,a&&lo(n[0],n[1],a)&&(o=i<3?void 0:o,i=1),t=he(t);++r-1?i[o?t[a]:a]:void 0}}function _i(e){return Hi((function(t){var n=t.length,r=n,i=Pn.prototype.thru;for(e&&t.reverse();r--;){var a=t[r];if("function"!=typeof a)throw new ve(o);if(i&&!s&&"wrapper"==Xi(a))var s=new Pn([],!0)}for(r=s?r:n;++r1&&y.reverse(),d&&cs))return!1;var c=o.get(e),u=o.get(t);if(c&&u)return c==t&&u==e;var d=-1,p=!0,f=2&n?new Mn:void 0;for(o.set(e,t),o.set(t,e);++d-1&&e%1==0&&e1?"& ":"")+t[r],t=t.join(n>2?", ":" "),e.replace(Z,"{\n/* [wrapped with "+t+"] */\n")}(r,function(e,t){return st(s,(function(n){var r="_."+n[0];t&n[1]&&!dt(e,r)&&e.push(r)})),e.sort()}(function(e){var t=e.match(Q);return t?t[1].split(J):[]}(r),n)))}function Eo(e){var t=0,n=0;return function(){var r=cn(),i=16-(r-n);if(n=r,i>0){if(++t>=800)return arguments[0]}else t=0;return e.apply(void 0,arguments)}}function So(e,t){var n=-1,r=e.length,i=r-1;for(t=void 0===t?r:t;++n1?e[t-1]:void 0;return n="function"==typeof n?(e.pop(),n):void 0,Xo(e,n)}));function na(e){var t=On(e);return t.__chain__=!0,t}function ra(e,t){return t(e)}var ia=Hi((function(e){var t=e.length,n=t?e[0]:0,r=this.__wrapped__,i=function(t){return Xn(t,e)};return!(t>1||this.__actions__.length)&&r instanceof Dn&&so(n)?((r=r.slice(n,+n+(t?1:0))).__actions__.push({func:ra,args:[i],thisArg:void 0}),new Pn(r,this.__chain__).thru((function(e){return t&&!e.length&&e.push(void 0),e}))):this.thru(i)}));var oa=xi((function(e,t,n){Ae.call(e,n)?++e[n]:Yn(e,n,1)}));var aa=Ci(Do),sa=Ci(Ro);function la(e,t){return(Ra(e)?st:tr)(e,Qi(t,3))}function ca(e,t){return(Ra(e)?lt:nr)(e,Qi(t,3))}var ua=xi((function(e,t,n){Ae.call(e,n)?e[n].push(t):Yn(e,n,[t])}));var da=Lr((function(e,t,n){var i=-1,o="function"==typeof t,a=Na(e)?r(e.length):[];return tr(e,(function(e){a[++i]=o?ot(t,e,n):yr(e,t,n)})),a})),pa=xi((function(e,t,n){Yn(e,n,t)}));function fa(e,t){return(Ra(e)?ft:_r)(e,Qi(t,3))}var ha=xi((function(e,t,n){e[n?0:1].push(t)}),(function(){return[[],[]]}));var ga=Lr((function(e,t){if(null==e)return[];var n=t.length;return n>1&&lo(e,t[0],t[1])?t=[]:n>2&&lo(t[0],t[1],t[2])&&(t=[t[0]]),Dr(e,ar(t,1),[])})),ma=Qt||function(){return We.Date.now()};function va(e,t,n){return t=n?void 0:t,Bi(e,128,void 0,void 0,void 0,void 0,t=e&&null==t?e.length:t)}function ba(e,t){var n;if("function"!=typeof t)throw new ve(o);return e=is(e),function(){return--e>0&&(n=t.apply(this,arguments)),e<=1&&(t=void 0),n}}var ya=Lr((function(e,t,n){var r=1;if(n.length){var i=Vt(n,Zi(ya));r|=32}return Bi(e,r,t,n,i)})),xa=Lr((function(e,t,n){var r=3;if(n.length){var i=Vt(n,Zi(xa));r|=32}return Bi(t,r,e,n,i)}));function wa(e,t,n){var r,i,a,s,l,c,u=0,d=!1,p=!1,f=!0;if("function"!=typeof e)throw new ve(o);function h(t){var n=r,o=i;return r=i=void 0,u=t,s=e.apply(o,n)}function g(e){return u=e,l=wo(v,t),d?h(e):s}function m(e){var n=e-c;return void 0===c||n>=t||n<0||p&&e-u>=a}function v(){var e=ma();if(m(e))return b(e);l=wo(v,function(e){var n=t-(e-c);return p?ln(n,a-(e-u)):n}(e))}function b(e){return l=void 0,f&&r?h(e):(r=i=void 0,s)}function y(){var e=ma(),n=m(e);if(r=arguments,i=this,c=e,n){if(void 0===l)return g(c);if(p)return di(l),l=wo(v,t),h(c)}return void 0===l&&(l=wo(v,t)),s}return t=as(t)||0,Ua(n)&&(d=!!n.leading,a=(p="maxWait"in n)?sn(as(n.maxWait)||0,t):a,f="trailing"in n?!!n.trailing:f),y.cancel=function(){void 0!==l&&di(l),u=0,r=c=i=l=void 0},y.flush=function(){return void 0===l?s:b(ma())},y}var ka=Lr((function(e,t){return Kn(e,1,t)})),Aa=Lr((function(e,t,n){return Kn(e,as(t)||0,n)}));function Ea(e,t){if("function"!=typeof e||null!=t&&"function"!=typeof t)throw new ve(o);var n=function(){var r=arguments,i=t?t.apply(this,r):r[0],o=n.cache;if(o.has(i))return o.get(i);var a=e.apply(this,r);return n.cache=o.set(i,a)||o,a};return n.cache=new(Ea.Cache||Nn),n}function Sa(e){if("function"!=typeof e)throw new ve(o);return function(){var t=arguments;switch(t.length){case 0:return!e.call(this);case 1:return!e.call(this,t[0]);case 2:return!e.call(this,t[0],t[1]);case 3:return!e.call(this,t[0],t[1],t[2])}return!e.apply(this,t)}}Ea.Cache=Nn;var $a=ci((function(e,t){var n=(t=1==t.length&&Ra(t[0])?ft(t[0],jt(Qi())):ft(ar(t,1),jt(Qi()))).length;return Lr((function(r){for(var i=-1,o=ln(r.length,n);++i=t})),Da=xr(function(){return arguments}())?xr:function(e){return Ha(e)&&Ae.call(e,"callee")&&!Ge.call(e,"callee")},Ra=r.isArray,Ia=Ke?jt(Ke):function(e){return Ha(e)&&hr(e)==A};function Na(e){return null!=e&&Va(e.length)&&!Fa(e)}function Ma(e){return Ha(e)&&Na(e)}var za=nn||al,La=et?jt(et):function(e){return Ha(e)&&hr(e)==d};function Ba(e){if(!Ha(e))return!1;var t=hr(e);return t==p||"[object DOMException]"==t||"string"==typeof e.message&&"string"==typeof e.name&&!Ya(e)}function Fa(e){if(!Ua(e))return!1;var t=hr(e);return t==f||t==h||"[object AsyncFunction]"==t||"[object Proxy]"==t}function qa(e){return"number"==typeof e&&e==is(e)}function Va(e){return"number"==typeof e&&e>-1&&e%1==0&&e<=9007199254740991}function Ua(e){var t=typeof e;return null!=e&&("object"==t||"function"==t)}function Ha(e){return null!=e&&"object"==typeof e}var Ga=tt?jt(tt):function(e){return Ha(e)&&ro(e)==g};function Wa(e){return"number"==typeof e||Ha(e)&&hr(e)==m}function Ya(e){if(!Ha(e)||hr(e)!=v)return!1;var t=qe(e);if(null===t)return!0;var n=Ae.call(t,"constructor")&&t.constructor;return"function"==typeof n&&n instanceof n&&ke.call(n)==Ce}var Xa=nt?jt(nt):function(e){return Ha(e)&&hr(e)==b};var Za=rt?jt(rt):function(e){return Ha(e)&&ro(e)==y};function Qa(e){return"string"==typeof e||!Ra(e)&&Ha(e)&&hr(e)==x}function Ja(e){return"symbol"==typeof e||Ha(e)&&hr(e)==w}var Ka=it?jt(it):function(e){return Ha(e)&&Va(e.length)&&!!Be[hr(e)]};var es=Ii(Cr),ts=Ii((function(e,t){return e<=t}));function ns(e){if(!e)return[];if(Na(e))return Qa(e)?Wt(e):bi(e);if(Qe&&e[Qe])return function(e){for(var t,n=[];!(t=e.next()).done;)n.push(t.value);return n}(e[Qe]());var t=ro(e);return(t==g?Ft:t==y?Ut:Ts)(e)}function rs(e){return e?(e=as(e))===1/0||e===-1/0?17976931348623157e292*(e<0?-1:1):e==e?e:0:0===e?e:0}function is(e){var t=rs(e),n=t%1;return t==t?n?t-n:t:0}function os(e){return e?Zn(is(e),0,4294967295):0}function as(e){if("number"==typeof e)return e;if(Ja(e))return NaN;if(Ua(e)){var t="function"==typeof e.valueOf?e.valueOf():e;e=Ua(t)?t+"":t}if("string"!=typeof e)return 0===e?e:+e;e=Tt(e);var n=oe.test(e);return n||se.test(e)?Ue(e.slice(2),n?2:8):ie.test(e)?NaN:+e}function ss(e){return yi(e,ks(e))}function ls(e){return null==e?"":Jr(e)}var cs=wi((function(e,t){if(fo(t)||Na(t))yi(t,ws(t),e);else for(var n in t)Ae.call(t,n)&&Un(e,n,t[n])})),us=wi((function(e,t){yi(t,ks(t),e)})),ds=wi((function(e,t,n,r){yi(t,ks(t),e,r)})),ps=wi((function(e,t,n,r){yi(t,ws(t),e,r)})),fs=Hi(Xn);var hs=Lr((function(e,t){e=he(e);var n=-1,r=t.length,i=r>2?t[2]:void 0;for(i&&lo(t[0],t[1],i)&&(r=1);++n1),t})),yi(e,Wi(e),n),r&&(n=Qn(n,7,Vi));for(var i=t.length;i--;)ei(n,t[i]);return n}));var $s=Hi((function(e,t){return null==e?{}:function(e,t){return Rr(e,t,(function(t,n){return vs(e,n)}))}(e,t)}));function Cs(e,t){if(null==e)return{};var n=ft(Wi(e),(function(e){return[e]}));return t=Qi(t),Rr(e,n,(function(e,n){return t(e,n[0])}))}var _s=Li(ws),Os=Li(ks);function Ts(e){return null==e?[]:Pt(e,ws(e))}var js=Si((function(e,t,n){return t=t.toLowerCase(),e+(n?Ps(t):t)}));function Ps(e){return Bs(ls(e).toLowerCase())}function Ds(e){return(e=ls(e))&&e.replace(ce,Mt).replace(De,"")}var Rs=Si((function(e,t,n){return e+(n?"-":"")+t.toLowerCase()})),Is=Si((function(e,t,n){return e+(n?" ":"")+t.toLowerCase()})),Ns=Ei("toLowerCase");var Ms=Si((function(e,t,n){return e+(n?"_":"")+t.toLowerCase()}));var zs=Si((function(e,t,n){return e+(n?" ":"")+Bs(t)}));var Ls=Si((function(e,t,n){return e+(n?" ":"")+t.toUpperCase()})),Bs=Ei("toUpperCase");function Fs(e,t,n){return e=ls(e),void 0===(t=n?void 0:t)?function(e){return Me.test(e)}(e)?function(e){return e.match(Ie)||[]}(e):function(e){return e.match(K)||[]}(e):e.match(t)||[]}var qs=Lr((function(e,t){try{return ot(e,void 0,t)}catch(e){return Ba(e)?e:new X(e)}})),Vs=Hi((function(e,t){return st(t,(function(t){t=Co(t),Yn(e,t,ya(e[t],e))})),e}));function Us(e){return function(){return e}}var Hs=_i(),Gs=_i(!0);function Ws(e){return e}function Ys(e){return Er("function"==typeof e?e:Qn(e,1))}var Xs=Lr((function(e,t){return function(n){return yr(n,e,t)}})),Zs=Lr((function(e,t){return function(n){return yr(e,n,t)}}));function Qs(e,t,n){var r=ws(t),i=dr(t,r);null!=n||Ua(t)&&(i.length||!r.length)||(n=t,t=e,e=this,i=dr(t,ws(t)));var o=!(Ua(n)&&"chain"in n&&!n.chain),a=Fa(e);return st(i,(function(n){var r=t[n];e[n]=r,a&&(e.prototype[n]=function(){var t=this.__chain__;if(o||t){var n=e(this.__wrapped__),i=n.__actions__=bi(this.__actions__);return i.push({func:r,args:arguments,thisArg:e}),n.__chain__=t,n}return r.apply(e,ht([this.value()],arguments))})})),e}function Js(){}var Ks=Pi(ft),el=Pi(ct),tl=Pi(vt);function nl(e){return co(e)?St(Co(e)):function(e){return function(t){return pr(t,e)}}(e)}var rl=Ri(),il=Ri(!0);function ol(){return[]}function al(){return!1}var sl=ji((function(e,t){return e+t}),0),ll=Mi("ceil"),cl=ji((function(e,t){return e/t}),1),ul=Mi("floor");var dl,pl=ji((function(e,t){return e*t}),1),fl=Mi("round"),hl=ji((function(e,t){return e-t}),0);return On.after=function(e,t){if("function"!=typeof t)throw new ve(o);return e=is(e),function(){if(--e<1)return t.apply(this,arguments)}},On.ary=va,On.assign=cs,On.assignIn=us,On.assignInWith=ds,On.assignWith=ps,On.at=fs,On.before=ba,On.bind=ya,On.bindAll=Vs,On.bindKey=xa,On.castArray=function(){if(!arguments.length)return[];var e=arguments[0];return Ra(e)?e:[e]},On.chain=na,On.chunk=function(e,t,n){t=(n?lo(e,t,n):void 0===t)?1:sn(is(t),0);var i=null==e?0:e.length;if(!i||t<1)return[];for(var o=0,a=0,s=r(Kt(i/t));oi?0:i+n),(r=void 0===r||r>i?i:is(r))<0&&(r+=i),r=n>r?0:os(r);n>>0)?(e=ls(e))&&("string"==typeof t||null!=t&&!Xa(t))&&!(t=Jr(t))&&Bt(e)?ui(Wt(e),0,n):e.split(t,n):[]},On.spread=function(e,t){if("function"!=typeof e)throw new ve(o);return t=null==t?0:sn(is(t),0),Lr((function(n){var r=n[t],i=ui(n,0,t);return r&&ht(i,r),ot(e,this,i)}))},On.tail=function(e){var t=null==e?0:e.length;return t?Gr(e,1,t):[]},On.take=function(e,t,n){return e&&e.length?Gr(e,0,(t=n||void 0===t?1:is(t))<0?0:t):[]},On.takeRight=function(e,t,n){var r=null==e?0:e.length;return r?Gr(e,(t=r-(t=n||void 0===t?1:is(t)))<0?0:t,r):[]},On.takeRightWhile=function(e,t){return e&&e.length?ni(e,Qi(t,3),!1,!0):[]},On.takeWhile=function(e,t){return e&&e.length?ni(e,Qi(t,3)):[]},On.tap=function(e,t){return t(e),e},On.throttle=function(e,t,n){var r=!0,i=!0;if("function"!=typeof e)throw new ve(o);return Ua(n)&&(r="leading"in n?!!n.leading:r,i="trailing"in n?!!n.trailing:i),wa(e,t,{leading:r,maxWait:t,trailing:i})},On.thru=ra,On.toArray=ns,On.toPairs=_s,On.toPairsIn=Os,On.toPath=function(e){return Ra(e)?ft(e,Co):Ja(e)?[e]:bi($o(ls(e)))},On.toPlainObject=ss,On.transform=function(e,t,n){var r=Ra(e),i=r||za(e)||Ka(e);if(t=Qi(t,4),null==n){var o=e&&e.constructor;n=i?r?new o:[]:Ua(e)&&Fa(o)?Tn(qe(e)):{}}return(i?st:cr)(e,(function(e,r,i){return t(n,e,r,i)})),n},On.unary=function(e){return va(e,1)},On.union=Ho,On.unionBy=Go,On.unionWith=Wo,On.uniq=function(e){return e&&e.length?Kr(e):[]},On.uniqBy=function(e,t){return e&&e.length?Kr(e,Qi(t,2)):[]},On.uniqWith=function(e,t){return t="function"==typeof t?t:void 0,e&&e.length?Kr(e,void 0,t):[]},On.unset=function(e,t){return null==e||ei(e,t)},On.unzip=Yo,On.unzipWith=Xo,On.update=function(e,t,n){return null==e?e:ti(e,t,si(n))},On.updateWith=function(e,t,n,r){return r="function"==typeof r?r:void 0,null==e?e:ti(e,t,si(n),r)},On.values=Ts,On.valuesIn=function(e){return null==e?[]:Pt(e,ks(e))},On.without=Zo,On.words=Fs,On.wrap=function(e,t){return Ca(si(t),e)},On.xor=Qo,On.xorBy=Jo,On.xorWith=Ko,On.zip=ea,On.zipObject=function(e,t){return oi(e||[],t||[],Un)},On.zipObjectDeep=function(e,t){return oi(e||[],t||[],qr)},On.zipWith=ta,On.entries=_s,On.entriesIn=Os,On.extend=us,On.extendWith=ds,Qs(On,On),On.add=sl,On.attempt=qs,On.camelCase=js,On.capitalize=Ps,On.ceil=ll,On.clamp=function(e,t,n){return void 0===n&&(n=t,t=void 0),void 0!==n&&(n=(n=as(n))==n?n:0),void 0!==t&&(t=(t=as(t))==t?t:0),Zn(as(e),t,n)},On.clone=function(e){return Qn(e,4)},On.cloneDeep=function(e){return Qn(e,5)},On.cloneDeepWith=function(e,t){return Qn(e,5,t="function"==typeof t?t:void 0)},On.cloneWith=function(e,t){return Qn(e,4,t="function"==typeof t?t:void 0)},On.conformsTo=function(e,t){return null==t||Jn(e,t,ws(t))},On.deburr=Ds,On.defaultTo=function(e,t){return null==e||e!=e?t:e},On.divide=cl,On.endsWith=function(e,t,n){e=ls(e),t=Jr(t);var r=e.length,i=n=void 0===n?r:Zn(is(n),0,r);return(n-=t.length)>=0&&e.slice(n,i)==t},On.eq=Ta,On.escape=function(e){return(e=ls(e))&&L.test(e)?e.replace(M,zt):e},On.escapeRegExp=function(e){return(e=ls(e))&&W.test(e)?e.replace(G,"\\$&"):e},On.every=function(e,t,n){var r=Ra(e)?ct:rr;return n&&lo(e,t,n)&&(t=void 0),r(e,Qi(t,3))},On.find=aa,On.findIndex=Do,On.findKey=function(e,t){return yt(e,Qi(t,3),cr)},On.findLast=sa,On.findLastIndex=Ro,On.findLastKey=function(e,t){return yt(e,Qi(t,3),ur)},On.floor=ul,On.forEach=la,On.forEachRight=ca,On.forIn=function(e,t){return null==e?e:sr(e,Qi(t,3),ks)},On.forInRight=function(e,t){return null==e?e:lr(e,Qi(t,3),ks)},On.forOwn=function(e,t){return e&&cr(e,Qi(t,3))},On.forOwnRight=function(e,t){return e&&ur(e,Qi(t,3))},On.get=ms,On.gt=ja,On.gte=Pa,On.has=function(e,t){return null!=e&&io(e,t,mr)},On.hasIn=vs,On.head=No,On.identity=Ws,On.includes=function(e,t,n,r){e=Na(e)?e:Ts(e),n=n&&!r?is(n):0;var i=e.length;return n<0&&(n=sn(i+n,0)),Qa(e)?n<=i&&e.indexOf(t,n)>-1:!!i&&wt(e,t,n)>-1},On.indexOf=function(e,t,n){var r=null==e?0:e.length;if(!r)return-1;var i=null==n?0:is(n);return i<0&&(i=sn(r+i,0)),wt(e,t,i)},On.inRange=function(e,t,n){return t=rs(t),void 0===n?(n=t,t=0):n=rs(n),function(e,t,n){return e>=ln(t,n)&&e=-9007199254740991&&e<=9007199254740991},On.isSet=Za,On.isString=Qa,On.isSymbol=Ja,On.isTypedArray=Ka,On.isUndefined=function(e){return void 0===e},On.isWeakMap=function(e){return Ha(e)&&ro(e)==k},On.isWeakSet=function(e){return Ha(e)&&"[object WeakSet]"==hr(e)},On.join=function(e,t){return null==e?"":on.call(e,t)},On.kebabCase=Rs,On.last=Bo,On.lastIndexOf=function(e,t,n){var r=null==e?0:e.length;if(!r)return-1;var i=r;return void 0!==n&&(i=(i=is(n))<0?sn(r+i,0):ln(i,r-1)),t==t?function(e,t,n){for(var r=n+1;r--;)if(e[r]===t)return r;return r}(e,t,i):xt(e,At,i,!0)},On.lowerCase=Is,On.lowerFirst=Ns,On.lt=es,On.lte=ts,On.max=function(e){return e&&e.length?ir(e,Ws,gr):void 0},On.maxBy=function(e,t){return e&&e.length?ir(e,Qi(t,2),gr):void 0},On.mean=function(e){return Et(e,Ws)},On.meanBy=function(e,t){return Et(e,Qi(t,2))},On.min=function(e){return e&&e.length?ir(e,Ws,Cr):void 0},On.minBy=function(e,t){return e&&e.length?ir(e,Qi(t,2),Cr):void 0},On.stubArray=ol,On.stubFalse=al,On.stubObject=function(){return{}},On.stubString=function(){return""},On.stubTrue=function(){return!0},On.multiply=pl,On.nth=function(e,t){return e&&e.length?Pr(e,is(t)):void 0},On.noConflict=function(){return We._===this&&(We._=_e),this},On.noop=Js,On.now=ma,On.pad=function(e,t,n){e=ls(e);var r=(t=is(t))?Gt(e):0;if(!t||r>=t)return e;var i=(t-r)/2;return Di(en(i),n)+e+Di(Kt(i),n)},On.padEnd=function(e,t,n){e=ls(e);var r=(t=is(t))?Gt(e):0;return t&&rt){var r=e;e=t,t=r}if(n||e%1||t%1){var i=dn();return ln(e+i*(t-e+Ve("1e-"+((i+"").length-1))),t)}return Mr(e,t)},On.reduce=function(e,t,n){var r=Ra(e)?gt:Ct,i=arguments.length<3;return r(e,Qi(t,4),n,i,tr)},On.reduceRight=function(e,t,n){var r=Ra(e)?mt:Ct,i=arguments.length<3;return r(e,Qi(t,4),n,i,nr)},On.repeat=function(e,t,n){return t=(n?lo(e,t,n):void 0===t)?1:is(t),zr(ls(e),t)},On.replace=function(){var e=arguments,t=ls(e[0]);return e.length<3?t:t.replace(e[1],e[2])},On.result=function(e,t,n){var r=-1,i=(t=li(t,e)).length;for(i||(i=1,e=void 0);++r9007199254740991)return[];var n=4294967295,r=ln(e,4294967295);e-=4294967295;for(var i=Ot(r,t=Qi(t));++n=o)return e;var s=n-Gt(r);if(s<1)return r;var l=a?ui(a,0,s).join(""):e.slice(0,s);if(void 0===i)return l+r;if(a&&(s+=l.length-s),Xa(i)){if(e.slice(s).search(i)){var c,u=l;for(i.global||(i=ge(i.source,ls(re.exec(i))+"g")),i.lastIndex=0;c=i.exec(u);)var d=c.index;l=l.slice(0,void 0===d?s:d)}}else if(e.indexOf(Jr(i),s)!=s){var p=l.lastIndexOf(i);p>-1&&(l=l.slice(0,p))}return l+r},On.unescape=function(e){return(e=ls(e))&&z.test(e)?e.replace(N,Xt):e},On.uniqueId=function(e){var t=++Ee;return ls(e)+t},On.upperCase=Ls,On.upperFirst=Bs,On.each=la,On.eachRight=ca,On.first=No,Qs(On,(dl={},cr(On,(function(e,t){Ae.call(On.prototype,t)||(dl[t]=e)})),dl),{chain:!1}),On.VERSION="4.17.21",st(["bind","bindKey","curry","curryRight","partial","partialRight"],(function(e){On[e].placeholder=On})),st(["drop","take"],(function(e,t){Dn.prototype[e]=function(n){n=void 0===n?1:sn(is(n),0);var r=this.__filtered__&&!t?new Dn(this):this.clone();return r.__filtered__?r.__takeCount__=ln(n,r.__takeCount__):r.__views__.push({size:ln(n,4294967295),type:e+(r.__dir__<0?"Right":"")}),r},Dn.prototype[e+"Right"]=function(t){return this.reverse()[e](t).reverse()}})),st(["filter","map","takeWhile"],(function(e,t){var n=t+1,r=1==n||3==n;Dn.prototype[e]=function(e){var t=this.clone();return t.__iteratees__.push({iteratee:Qi(e,3),type:n}),t.__filtered__=t.__filtered__||r,t}})),st(["head","last"],(function(e,t){var n="take"+(t?"Right":"");Dn.prototype[e]=function(){return this[n](1).value()[0]}})),st(["initial","tail"],(function(e,t){var n="drop"+(t?"":"Right");Dn.prototype[e]=function(){return this.__filtered__?new Dn(this):this[n](1)}})),Dn.prototype.compact=function(){return this.filter(Ws)},Dn.prototype.find=function(e){return this.filter(e).head()},Dn.prototype.findLast=function(e){return this.reverse().find(e)},Dn.prototype.invokeMap=Lr((function(e,t){return"function"==typeof e?new Dn(this):this.map((function(n){return yr(n,e,t)}))})),Dn.prototype.reject=function(e){return this.filter(Sa(Qi(e)))},Dn.prototype.slice=function(e,t){e=is(e);var n=this;return n.__filtered__&&(e>0||t<0)?new Dn(n):(e<0?n=n.takeRight(-e):e&&(n=n.drop(e)),void 0!==t&&(n=(t=is(t))<0?n.dropRight(-t):n.take(t-e)),n)},Dn.prototype.takeRightWhile=function(e){return this.reverse().takeWhile(e).reverse()},Dn.prototype.toArray=function(){return this.take(4294967295)},cr(Dn.prototype,(function(e,t){var n=/^(?:filter|find|map|reject)|While$/.test(t),r=/^(?:head|last)$/.test(t),i=On[r?"take"+("last"==t?"Right":""):t],o=r||/^find/.test(t);i&&(On.prototype[t]=function(){var t=this.__wrapped__,a=r?[1]:arguments,s=t instanceof Dn,l=a[0],c=s||Ra(t),u=function(e){var t=i.apply(On,ht([e],a));return r&&d?t[0]:t};c&&n&&"function"==typeof l&&1!=l.length&&(s=c=!1);var d=this.__chain__,p=!!this.__actions__.length,f=o&&!d,h=s&&!p;if(!o&&c){t=h?t:new Dn(this);var g=e.apply(t,a);return g.__actions__.push({func:ra,args:[u],thisArg:void 0}),new Pn(g,d)}return f&&h?e.apply(this,a):(g=this.thru(u),f?r?g.value()[0]:g.value():g)})})),st(["pop","push","shift","sort","splice","unshift"],(function(e){var t=be[e],n=/^(?:push|sort|unshift)$/.test(e)?"tap":"thru",r=/^(?:pop|shift)$/.test(e);On.prototype[e]=function(){var e=arguments;if(r&&!this.__chain__){var i=this.value();return t.apply(Ra(i)?i:[],e)}return this[n]((function(n){return t.apply(Ra(n)?n:[],e)}))}})),cr(Dn.prototype,(function(e,t){var n=On[t];if(n){var r=n.name+"";Ae.call(xn,r)||(xn[r]=[]),xn[r].push({name:t,func:n})}})),xn[Oi(void 0,2).name]=[{name:"wrapper",func:void 0}],Dn.prototype.clone=function(){var e=new Dn(this.__wrapped__);return e.__actions__=bi(this.__actions__),e.__dir__=this.__dir__,e.__filtered__=this.__filtered__,e.__iteratees__=bi(this.__iteratees__),e.__takeCount__=this.__takeCount__,e.__views__=bi(this.__views__),e},Dn.prototype.reverse=function(){if(this.__filtered__){var e=new Dn(this);e.__dir__=-1,e.__filtered__=!0}else(e=this.clone()).__dir__*=-1;return e},Dn.prototype.value=function(){var e=this.__wrapped__.value(),t=this.__dir__,n=Ra(e),r=t<0,i=n?e.length:0,o=function(e,t,n){var r=-1,i=n.length;for(;++r=this.__values__.length;return{done:e,value:e?void 0:this.__values__[this.__index__++]}},On.prototype.plant=function(e){for(var t,n=this;n instanceof jn;){var r=Oo(n);r.__index__=0,r.__values__=void 0,t?i.__wrapped__=r:t=r;var i=r;n=n.__wrapped__}return i.__wrapped__=e,t},On.prototype.reverse=function(){var e=this.__wrapped__;if(e instanceof Dn){var t=e;return this.__actions__.length&&(t=new Dn(this)),(t=t.reverse()).__actions__.push({func:ra,args:[Uo],thisArg:void 0}),new Pn(t,this.__chain__)}return this.thru(Uo)},On.prototype.toJSON=On.prototype.valueOf=On.prototype.value=function(){return ri(this.__wrapped__,this.__actions__)},On.prototype.first=On.prototype.head,Qe&&(On.prototype[Qe]=function(){return this}),On}();We._=Zt,void 0===(i=function(){return Zt}.call(t,n,t,r))||(r.exports=i)}).call(this)}).call(this,n(35),n(80)(e))},function(e,t,n){const r=n(21);function i(e){return!r.isNull(e)&&!r.isUndefined(e)}function o(e,t,n,a){a||(a=1);var s=e.predecessors(t);if(!s||0==n)return[];var l=s.concat(s.reduce((function(t,r){return a>=n&&i(n)?t:t.concat(o(e,r,n,a+1))}),[]));return r.uniq(l)}function a(e,t,n,o){o||(o=1);var s=e.successors(t);if(!s||0==n)return[];var l=s.concat(s.reduce((function(t,r){return o>=n&&i(n)?t:t.concat(a(e,r,n,o+1))}),[]));return r.uniq(l)}e.exports={selectAt:function(e,t){var n=[t],i=r.union([t],a(e,t));return r.each(i,(function(t){var i=o(e,t);n=r.union(n,i,[t])})),n},ancestorNodes:o,descendentNodes:a}},function(e,t){var n={utf8:{stringToBytes:function(e){return n.bin.stringToBytes(unescape(encodeURIComponent(e)))},bytesToString:function(e){return decodeURIComponent(escape(n.bin.bytesToString(e)))}},bin:{stringToBytes:function(e){for(var t=[],n=0;n\n/* TODO */\n.section-target {\n top: -8em;\n}\n\n.noflex {\n flex: 0 0 160px !important;\n}\n\n.highlight {\n color: #24292e;\n background-color: white;\n}\n\n\n\n
\n \n
\n
\n
\n
\n \n
\n\n
\n
\n
\n
Description
\n
\n
\n
\n
This {{ model.resource_type }} is not currently documented
\n
\n
\n
\n
\n
\n
\n
\n
Columns
\n \n
\n
\n\n
\n
\n
\n
Referenced By
\n \n
\n
\n\n
\n
\n
\n \n
\n
\n
\n
\n
\n')}]),e.exports=n},function(e,t,n){"use strict";n.r(t);var r=function(e){return function(e){return!!e&&"object"==typeof e}(e)&&!function(e){var t=Object.prototype.toString.call(e);return"[object RegExp]"===t||"[object Date]"===t||function(e){return e.$$typeof===i}(e)}(e)};var i="function"==typeof Symbol&&Symbol.for?Symbol.for("react.element"):60103;function o(e,t){return!1!==t.clone&&t.isMergeableObject(e)?s((n=e,Array.isArray(n)?[]:{}),e,t):e;var n}function a(e,t,n){return e.concat(t).map((function(e){return o(e,n)}))}function s(e,t,n){(n=n||{}).arrayMerge=n.arrayMerge||a,n.isMergeableObject=n.isMergeableObject||r;var i=Array.isArray(t);return i===Array.isArray(e)?i?n.arrayMerge(e,t,n):function(e,t,n){var r={};return n.isMergeableObject(e)&&Object.keys(e).forEach((function(t){r[t]=o(e[t],n)})),Object.keys(t).forEach((function(i){n.isMergeableObject(t[i])&&e[i]?r[i]=s(e[i],t[i],n):r[i]=o(t[i],n)})),r}(e,t,n):o(t,n)}s.all=function(e,t){if(!Array.isArray(e))throw new Error("first argument should be an array");return e.reduce((function(e,n){return s(e,n,t)}),{})};var l=s;const c=n(9),u=(n(33),n(202)),{getQuoteChar:d}=n(430);c.module("dbt").factory("project",["$q","$http",function(e,t){var n={project:{},tree:{project:[],database:[],sources:[]},files:{manifest:{},catalog:{}},loaded:e.defer()};function r(e,t){return u.each(t.sources,(function(e,n){t.nodes[n]=e})),u.each(e.nodes,(function(e,n){var r=t.nodes[n];if(r){var i,o,a,s=u.keys(r.columns),l=e.columns,c=(i=s,o=l,a={},u.each(o,(function(e,t){var n=u.find(i,(function(e){return e.toLowerCase()==t.toLowerCase()}));n?a[n]=e:a[t]=e})),a);e.columns=c}})),l(t,e)}function i(e,n){return t({method:"GET",url:n}).then((function(t){return{label:e,data:t.data}}),(function(t){console.error(t),alert("dbt Docs was unable to load the "+e+" file at path: \n "+n+"\n\nError: "+t.statusText+" ("+t.status+")\n\nThe dbt Docs site may not work as expected if this file cannot be found.Please try again, and contact support if this error persists.")}))}return n.find_by_id=function(e,t){n.ready((function(){if(e){var r=n.node(e);t(r)}}))},n.node=function(e){return u.find(n.project.nodes,{unique_id:e})},n.loadProject=function(){var t="?cb="+(new Date).getTime(),o=[i("manifest","manifest.json"+t),i("catalog","catalog.json"+t)];e.all(o).then((function(e){u.each(e,(function(e){e?n.files[e.label]=e.data:console.error("FILE FAILED TO LOAD!")})),u.each(n.files.manifest.nodes,(function(e){"model"==e.resource_type&&null!=e.version?e.label=e.name+"_v"+e.version:e.label=e.name})),u.each(n.files.manifest.sources,(function(e){e.label=e.source_name+"."+e.name,n.files.manifest.nodes[e.unique_id]=e})),u.each(n.files.manifest.exposures,(function(e){e.label||(e.label=e.name),n.files.manifest.nodes[e.unique_id]=e})),u.each(n.files.manifest.metrics,(function(e){n.files.manifest.nodes[e.unique_id]=e})),u.each(n.files.manifest.semantic_models,(function(e){n.files.manifest.nodes[e.unique_id]=e,e.label=e.name}));var t=n.files.manifest.metadata.adapter_type,i=function(e,t){var n=e||[],r={};u.each(n,(function(e){r[e.package_name]||(r[e.package_name]={}),r[e.package_name][e.name]=e}));e=[];return u.each(r,(function(n,r){if("dbt"!=r&&r!="dbt_"+t){var i=function(e,t){var n={};u.each(e,(function(e){e.macro_sql.match(/{{\s*adapter_macro\([^)]+\)\s+}}/)&&(e.impls={"Adapter Macro":e.macro_sql},e.is_adapter_macro=!0,n[e.name]=e)}));var r=["postgres","redshift","bigquery","snowflake","spark","presto","default"],i=u.values(n),o=u.filter(e,(function(e){var t=e.name.split("__"),i=t.shift(),o=t.join("__");return!(r.indexOf(i)>=0&&n[o])||(n[o].impls[i]=e.macro_sql,e.is_adapter_macro_impl=!0,!1)}));return i.concat(o)}(n);e=e.concat(i)}})),u.keyBy(e,"unique_id")}(n.files.manifest.macros,t);n.files.manifest.macros=i;var o=r(n.files.manifest,n.files.catalog),a=o.nodes,s=u.keyBy(a,"name"),l=u.filter(o.nodes,{resource_type:"test"});u.each(l,(function(e){if(e.hasOwnProperty("test_metadata")){var t,n={test_name:t=e.test_metadata.namespace?e.test_metadata.namespace+"."+e.test_metadata.name:e.test_metadata.name};if("not_null"==e.test_metadata.name)n.short="N",n.label="Not Null";else if("unique"==e.test_metadata.name)n.short="U",n.label="Unique";else if("relationships"==e.test_metadata.name){var r=e.refs[0],i=s[r];i&&e.test_metadata.kwargs.field&&(n.fk_field=e.test_metadata.kwargs.field,n.fk_model=i),n.short="F",n.label="Foreign Key"}else if("accepted_values"==e.test_metadata.name){if(Array.isArray(e.test_metadata.kwargs.values))var a=e.test_metadata.kwargs.values.join(", ");else a=JSON.stringify(e.test_metadata.kwargs.values);n.short="A",n.label="Accepted Values: "+a}else{var l=u.omit(e.test_metadata.kwargs,"column_name");n.short="+",n.label=t+"("+JSON.stringify(l)+")"}var c=e.depends_on.nodes,p=e.column_name||e.test_metadata.kwargs.column_name||e.test_metadata.kwargs.arg;if(c.length&&p){if("relationships"==e.test_metadata.name)var f=c[c.length-1];else f=c[0];var h=o.nodes[f],g=d(o.metadata),m=u.find(h.columns,(function(e,t){let n=p;return p.startsWith(g)&&p.endsWith(g)&&(n=p.substring(1,p.length-1)),t.toLowerCase()==n.toLowerCase()}));m&&(m.tests=m.tests||[],m.tests.push(n))}}})),n.project=o;var c=u.filter(n.project.macros,(function(e){return!e.is_adapter_macro_impl})),p=u.filter(n.project.nodes,(function(e){return u.includes(["model","source","seed","snapshot","analysis","exposure","metric","semantic_model"],e.resource_type)}));n.project.searchable=u.filter(p.concat(c),(function(e){return!e.docs||e.docs.show})),n.loaded.resolve()}))},n.ready=function(e){n.loaded.promise.then((function(){e(n.project)}))},n.search=function(e){if(0==e.length)return u.map(n.project.searchable,(function(e){return{model:e,matches:[]}}));var t=[];return u.each(n.project.searchable,(function(n){var r=function(e,t){var n=[],r={name:"string",description:"string",raw_code:"string",columns:"object",column_description:"n/a",tags:"array",arguments:"array",label:"string"};let i=u.words(e.toLowerCase());for(var o in r)if("column_description"===o)for(var a in t.columns)null!=t.columns[a].description&&i.every(e=>-1!=t.columns[a].description.toLowerCase().indexOf(e))&&n.push({key:o,value:e});else{if(!t[o])continue;if("string"===r[o]&&i.every(e=>-1!=t[o].toLowerCase().indexOf(e)))n.push({key:o,value:e});else if("object"===r[o])for(var a in t[o])null!=t[o][a].name&&i.every(e=>-1!=t[o][a].name.toLowerCase().indexOf(e))&&n.push({key:o,value:e});else if("array"===r[o])for(var s of t[o])i.every(e=>-1!=JSON.stringify(s).toLowerCase().indexOf(e))&&n.push({key:o,value:e})}return n}(e,n);r.length&&t.push({model:n,matches:r})})),t},n.getModelTree=function(e,t){n.loaded.promise.then((function(){var r=u.values(n.project.macros),i=u.filter(n.project.nodes,(function(e){if("test"==e.resource_type&&!e.hasOwnProperty("test_metadata"))return!0;return u.includes(["snapshot","source","seed","model","analysis","exposure","metric","semantic_model"],e.resource_type)}));n.tree.database=function(e,t){var n={},r=u.filter(e,(function(e){return!!u.get(e,["docs","show"],!0)&&(-1!=u.indexOf(["source","snapshot","seed"],e.resource_type)||("model"==e.resource_type?"ephemeral"!=e.config.materialized:void 0))})),i=u.sortBy(r,(function(e){return e.database+"."+e.schema+"."+(e.identifier||e.alias||e.name)})),o=u.groupBy(i,"database");return u.each(o,(function(e,r){var i={type:"database",name:r,active:!1,items:[]};n[r]=i;var o=u.groupBy(e,"schema");u.each(o,(function(e,n){n={type:"schema",name:n,active:!1,items:[]};i.items.push(n),u.each(e,(function(e){var r=e.unique_id==t;r&&(i.active=!0,n.active=!0),n.items.push({type:"table",name:e.identifier||e.alias||e.name,node:e,active:r,unique_id:e.unique_id,node_type:"model"})}))}))})),n}(i,e),n.tree.groups=function(e,t){var n={};u.each(e,(function(e){const r=u.get(e,["docs","show"],!0);if(!(e.resource_type in["source","exposure","seed","macro"])&&r&&"private"!==e.access){if("model"==e.resource_type&&null!=e.version)var i=e.name+"_v"+e.version;else i=e.name;var o="protected"===e.access?i+" (protected)":i,a=e.group,s=e.unique_id==t;n[a]?s&&(n[a].active=!0):n[a]={type:"group",name:a,active:s,items:[]},n[a].items.push({type:"file",name:o,node:e,active:s,unique_id:e.unique_id,node_type:"model"})}}));n=u.sortBy(u.values(n),"name");return u.each(n,(function(e){e.items=u.sortBy(e.items,"name")})),n}(i,e),n.tree.project=function(e,t,n){var r={};e=e||[],t=t||[];return u.each(e.concat(t),(function(e){var t=u.get(e,["docs","show"],!0);if("source"!=e.resource_type&&"exposure"!=e.resource_type&&"metric"!=e.resource_type&&"semantic_model"!=e.resource_type&&t){if(-1!=e.original_file_path.indexOf("\\"))var i=e.original_file_path.split("\\");else i=e.original_file_path.split("/");var o=[e.package_name].concat(i),a=e.unique_id==n,s=u.initial(o);if("macro"==e.resource_type)var l=e.name;else l=u.last(o);if("model"==e.resource_type&&null!=e.version)var c=e.name+"_v"+e.version;else c=e.name;var d=r;u.each(s,(function(e){d[e]?a&&(d[e].active=!0):d[e]={type:"folder",name:e,active:a,items:{}},d=d[e].items})),d[l]={type:"file",name:c,node:e,active:a,unique_id:e.unique_id,node_type:e.resource_type}}})),function e(t){var n=[],r=u.values(t);return u.each(r,(function(t){if(t.items){var r=e(t.items),i=u.sortBy(r,"name");t.items=i}n.push(t)})),n}(r)}(i,r,e);var o=u.values(n.project.sources);n.tree.sources=function(e,t){var n={};u.each(e,(function(e){var r=e.source_name,i=e.name,o=e.unique_id==t;n[r]?o&&(n[r].active=!0):n[r]={type:"folder",name:r,active:o,items:[]},n[r].items.push({type:"file",name:i,node:e,active:o,unique_id:e.unique_id,node_type:"source"})}));n=u.sortBy(u.values(n),"name");return u.each(n,(function(e){e.items=u.sortBy(e.items,"name")})),n}(o,e);var a=u.values(n.project.exposures);n.tree.exposures=function(e,t){var n={};u.each(e,(function(e){e.name;var r=e.type||"Uncategorized";r=function(e){var t={ml:"ML"};return t.hasOwnProperty(e)?t[e]:e.charAt(0).toUpperCase()+e.slice(1)}(r);var i=e.unique_id==t;n[r]?i&&(n[r].active=!0):n[r]={type:"folder",name:r,active:i,items:[]},n[r].items.push({type:"file",name:e.label,node:e,active:i,unique_id:e.unique_id,node_type:"exposure"})}));n=u.sortBy(u.values(n),"name");return u.each(n,(function(e){e.items=u.sortBy(e.items,"name")})),n}(a,e);var s=u.values(n.project.metrics);n.tree.metrics=function(e,t){var n={};u.each(e,(function(e){e.name;var r=e.package_name,i=e.unique_id==t;n[r]?i&&(n[r].active=!0):n[r]={type:"folder",name:r,active:i,items:[]},n[r].items.push({type:"file",name:e.label,node:e,active:i,unique_id:e.unique_id,node_type:"metric"})}));n=u.sortBy(u.values(n),"name");return u.each(n,(function(e){n.items=u.sortBy(n.items,"name")})),n}(s,e);var l=u.values(n.project.semantic_models);n.tree.semantic_models=function(e,t){var n={};u.each(e,(function(e){e.name;var r=e.package_name,i=e.unique_id==t;n[r]?i&&(n[r].active=!0):n[r]={type:"folder",name:r,active:i,items:[]},n[r].items.push({type:"file",name:e.name,node:e,active:i,unique_id:e.unique_id,node_type:"semantic_model"})}));n=u.sortBy(u.values(n),"name");return u.each(n,(function(e){n.items=u.sortBy(n.items,"name")})),n}(l,e),t(n.tree)}))},n.updateSelectedInTree=function(e,t){var r=!1;return u.each(t,(function(t){if(t.node&&t.node.unique_id==e)t.active=!0,r=!0;else if(t.node&&t.node.unique_id!=e)t.active=!1;else{n.updateSelectedInTree(e,t.items)&&(t.active=!0,r=!0)}})),r},n.updateSelected=function(e){return n.updateSelectedInTree(e,n.tree.project),n.updateSelectedInTree(e,n.tree.database),n.updateSelectedInTree(e,n.tree.groups),n.updateSelectedInTree(e,n.tree.sources),n.updateSelectedInTree(e,n.tree.exposures),n.updateSelectedInTree(e,n.tree.metrics),n.updateSelectedInTree(e,n.tree.semantic_models),n.tree},n.caseColumn=function(e){return"snowflake"==n.project.metadata.adapter_type&&e.toUpperCase()==e?e.toLowerCase():e},n.init=function(){n.loadProject()},n}])},function(e,t,n){const r=n(9);n(209),n(230),n(445),n(458),n(459),n(479),n(480),n(481),r.module("dbt").run(["$rootScope","$state","$stateParams",function(e,t,n){e.$state=t,e.$stateParams=n}])},function(e,t){ + */(function(){var o="Expected a function",a="__lodash_placeholder__",s=[["ary",128],["bind",1],["bindKey",2],["curry",8],["curryRight",16],["flip",512],["partial",32],["partialRight",64],["rearg",256]],l="[object Arguments]",c="[object Array]",u="[object Boolean]",d="[object Date]",p="[object Error]",f="[object Function]",h="[object GeneratorFunction]",g="[object Map]",m="[object Number]",v="[object Object]",b="[object RegExp]",y="[object Set]",x="[object String]",w="[object Symbol]",k="[object WeakMap]",A="[object ArrayBuffer]",E="[object DataView]",S="[object Float32Array]",$="[object Float64Array]",C="[object Int8Array]",_="[object Int16Array]",O="[object Int32Array]",T="[object Uint8Array]",j="[object Uint16Array]",P="[object Uint32Array]",D=/\b__p \+= '';/g,R=/\b(__p \+=) '' \+/g,I=/(__e\(.*?\)|\b__t\)) \+\n'';/g,N=/&(?:amp|lt|gt|quot|#39);/g,M=/[&<>"']/g,z=RegExp(N.source),L=RegExp(M.source),B=/<%-([\s\S]+?)%>/g,F=/<%([\s\S]+?)%>/g,q=/<%=([\s\S]+?)%>/g,V=/\.|\[(?:[^[\]]*|(["'])(?:(?!\1)[^\\]|\\.)*?\1)\]/,U=/^\w*$/,H=/[^.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|$))/g,G=/[\\^$.*+?()[\]{}|]/g,W=RegExp(G.source),Y=/^\s+/,X=/\s/,Z=/\{(?:\n\/\* \[wrapped with .+\] \*\/)?\n?/,Q=/\{\n\/\* \[wrapped with (.+)\] \*/,J=/,? & /,K=/[^\x00-\x2f\x3a-\x40\x5b-\x60\x7b-\x7f]+/g,ee=/[()=,{}\[\]\/\s]/,te=/\\(\\)?/g,ne=/\$\{([^\\}]*(?:\\.[^\\}]*)*)\}/g,re=/\w*$/,ie=/^[-+]0x[0-9a-f]+$/i,oe=/^0b[01]+$/i,ae=/^\[object .+?Constructor\]$/,se=/^0o[0-7]+$/i,le=/^(?:0|[1-9]\d*)$/,ce=/[\xc0-\xd6\xd8-\xf6\xf8-\xff\u0100-\u017f]/g,ue=/($^)/,de=/['\n\r\u2028\u2029\\]/g,pe="\\u0300-\\u036f\\ufe20-\\ufe2f\\u20d0-\\u20ff",fe="\\xac\\xb1\\xd7\\xf7\\x00-\\x2f\\x3a-\\x40\\x5b-\\x60\\x7b-\\xbf\\u2000-\\u206f \\t\\x0b\\f\\xa0\\ufeff\\n\\r\\u2028\\u2029\\u1680\\u180e\\u2000\\u2001\\u2002\\u2003\\u2004\\u2005\\u2006\\u2007\\u2008\\u2009\\u200a\\u202f\\u205f\\u3000",he="[\\ud800-\\udfff]",ge="["+fe+"]",me="["+pe+"]",ve="\\d+",be="[\\u2700-\\u27bf]",ye="[a-z\\xdf-\\xf6\\xf8-\\xff]",xe="[^\\ud800-\\udfff"+fe+ve+"\\u2700-\\u27bfa-z\\xdf-\\xf6\\xf8-\\xffA-Z\\xc0-\\xd6\\xd8-\\xde]",we="\\ud83c[\\udffb-\\udfff]",ke="[^\\ud800-\\udfff]",Ae="(?:\\ud83c[\\udde6-\\uddff]){2}",Ee="[\\ud800-\\udbff][\\udc00-\\udfff]",Se="[A-Z\\xc0-\\xd6\\xd8-\\xde]",$e="(?:"+ye+"|"+xe+")",Ce="(?:"+Se+"|"+xe+")",_e="(?:"+me+"|"+we+")"+"?",Oe="[\\ufe0e\\ufe0f]?"+_e+("(?:\\u200d(?:"+[ke,Ae,Ee].join("|")+")[\\ufe0e\\ufe0f]?"+_e+")*"),Te="(?:"+[be,Ae,Ee].join("|")+")"+Oe,je="(?:"+[ke+me+"?",me,Ae,Ee,he].join("|")+")",Pe=RegExp("['’]","g"),De=RegExp(me,"g"),Re=RegExp(we+"(?="+we+")|"+je+Oe,"g"),Ie=RegExp([Se+"?"+ye+"+(?:['’](?:d|ll|m|re|s|t|ve))?(?="+[ge,Se,"$"].join("|")+")",Ce+"+(?:['’](?:D|LL|M|RE|S|T|VE))?(?="+[ge,Se+$e,"$"].join("|")+")",Se+"?"+$e+"+(?:['’](?:d|ll|m|re|s|t|ve))?",Se+"+(?:['’](?:D|LL|M|RE|S|T|VE))?","\\d*(?:1ST|2ND|3RD|(?![123])\\dTH)(?=\\b|[a-z_])","\\d*(?:1st|2nd|3rd|(?![123])\\dth)(?=\\b|[A-Z_])",ve,Te].join("|"),"g"),Ne=RegExp("[\\u200d\\ud800-\\udfff"+pe+"\\ufe0e\\ufe0f]"),Me=/[a-z][A-Z]|[A-Z]{2}[a-z]|[0-9][a-zA-Z]|[a-zA-Z][0-9]|[^a-zA-Z0-9 ]/,ze=["Array","Buffer","DataView","Date","Error","Float32Array","Float64Array","Function","Int8Array","Int16Array","Int32Array","Map","Math","Object","Promise","RegExp","Set","String","Symbol","TypeError","Uint8Array","Uint8ClampedArray","Uint16Array","Uint32Array","WeakMap","_","clearTimeout","isFinite","parseInt","setTimeout"],Le=-1,Be={};Be[S]=Be[$]=Be[C]=Be[_]=Be[O]=Be[T]=Be["[object Uint8ClampedArray]"]=Be[j]=Be[P]=!0,Be[l]=Be[c]=Be[A]=Be[u]=Be[E]=Be[d]=Be[p]=Be[f]=Be[g]=Be[m]=Be[v]=Be[b]=Be[y]=Be[x]=Be[k]=!1;var Fe={};Fe[l]=Fe[c]=Fe[A]=Fe[E]=Fe[u]=Fe[d]=Fe[S]=Fe[$]=Fe[C]=Fe[_]=Fe[O]=Fe[g]=Fe[m]=Fe[v]=Fe[b]=Fe[y]=Fe[x]=Fe[w]=Fe[T]=Fe["[object Uint8ClampedArray]"]=Fe[j]=Fe[P]=!0,Fe[p]=Fe[f]=Fe[k]=!1;var qe={"\\":"\\","'":"'","\n":"n","\r":"r","\u2028":"u2028","\u2029":"u2029"},Ve=parseFloat,Ue=parseInt,He="object"==typeof e&&e&&e.Object===Object&&e,Ge="object"==typeof self&&self&&self.Object===Object&&self,We=He||Ge||Function("return this")(),Ye=t&&!t.nodeType&&t,Xe=Ye&&"object"==typeof r&&r&&!r.nodeType&&r,Ze=Xe&&Xe.exports===Ye,Qe=Ze&&He.process,Je=function(){try{var e=Xe&&Xe.require&&Xe.require("util").types;return e||Qe&&Qe.binding&&Qe.binding("util")}catch(e){}}(),Ke=Je&&Je.isArrayBuffer,et=Je&&Je.isDate,tt=Je&&Je.isMap,nt=Je&&Je.isRegExp,rt=Je&&Je.isSet,it=Je&&Je.isTypedArray;function ot(e,t,n){switch(n.length){case 0:return e.call(t);case 1:return e.call(t,n[0]);case 2:return e.call(t,n[0],n[1]);case 3:return e.call(t,n[0],n[1],n[2])}return e.apply(t,n)}function at(e,t,n,r){for(var i=-1,o=null==e?0:e.length;++i-1}function pt(e,t,n){for(var r=-1,i=null==e?0:e.length;++r-1;);return n}function It(e,t){for(var n=e.length;n--&&wt(t,e[n],0)>-1;);return n}function Nt(e,t){for(var n=e.length,r=0;n--;)e[n]===t&&++r;return r}var Mt=$t({"À":"A","Á":"A","Â":"A","Ã":"A","Ä":"A","Å":"A","à":"a","á":"a","â":"a","ã":"a","ä":"a","å":"a","Ç":"C","ç":"c","Ð":"D","ð":"d","È":"E","É":"E","Ê":"E","Ë":"E","è":"e","é":"e","ê":"e","ë":"e","Ì":"I","Í":"I","Î":"I","Ï":"I","ì":"i","í":"i","î":"i","ï":"i","Ñ":"N","ñ":"n","Ò":"O","Ó":"O","Ô":"O","Õ":"O","Ö":"O","Ø":"O","ò":"o","ó":"o","ô":"o","õ":"o","ö":"o","ø":"o","Ù":"U","Ú":"U","Û":"U","Ü":"U","ù":"u","ú":"u","û":"u","ü":"u","Ý":"Y","ý":"y","ÿ":"y","Æ":"Ae","æ":"ae","Þ":"Th","þ":"th","ß":"ss","Ā":"A","Ă":"A","Ą":"A","ā":"a","ă":"a","ą":"a","Ć":"C","Ĉ":"C","Ċ":"C","Č":"C","ć":"c","ĉ":"c","ċ":"c","č":"c","Ď":"D","Đ":"D","ď":"d","đ":"d","Ē":"E","Ĕ":"E","Ė":"E","Ę":"E","Ě":"E","ē":"e","ĕ":"e","ė":"e","ę":"e","ě":"e","Ĝ":"G","Ğ":"G","Ġ":"G","Ģ":"G","ĝ":"g","ğ":"g","ġ":"g","ģ":"g","Ĥ":"H","Ħ":"H","ĥ":"h","ħ":"h","Ĩ":"I","Ī":"I","Ĭ":"I","Į":"I","İ":"I","ĩ":"i","ī":"i","ĭ":"i","į":"i","ı":"i","Ĵ":"J","ĵ":"j","Ķ":"K","ķ":"k","ĸ":"k","Ĺ":"L","Ļ":"L","Ľ":"L","Ŀ":"L","Ł":"L","ĺ":"l","ļ":"l","ľ":"l","ŀ":"l","ł":"l","Ń":"N","Ņ":"N","Ň":"N","Ŋ":"N","ń":"n","ņ":"n","ň":"n","ŋ":"n","Ō":"O","Ŏ":"O","Ő":"O","ō":"o","ŏ":"o","ő":"o","Ŕ":"R","Ŗ":"R","Ř":"R","ŕ":"r","ŗ":"r","ř":"r","Ś":"S","Ŝ":"S","Ş":"S","Š":"S","ś":"s","ŝ":"s","ş":"s","š":"s","Ţ":"T","Ť":"T","Ŧ":"T","ţ":"t","ť":"t","ŧ":"t","Ũ":"U","Ū":"U","Ŭ":"U","Ů":"U","Ű":"U","Ų":"U","ũ":"u","ū":"u","ŭ":"u","ů":"u","ű":"u","ų":"u","Ŵ":"W","ŵ":"w","Ŷ":"Y","ŷ":"y","Ÿ":"Y","Ź":"Z","Ż":"Z","Ž":"Z","ź":"z","ż":"z","ž":"z","IJ":"IJ","ij":"ij","Œ":"Oe","œ":"oe","ʼn":"'n","ſ":"s"}),zt=$t({"&":"&","<":"<",">":">",'"':""","'":"'"});function Lt(e){return"\\"+qe[e]}function Bt(e){return Ne.test(e)}function Ft(e){var t=-1,n=Array(e.size);return e.forEach((function(e,r){n[++t]=[r,e]})),n}function qt(e,t){return function(n){return e(t(n))}}function Vt(e,t){for(var n=-1,r=e.length,i=0,o=[];++n",""":'"',"'":"'"});var Zt=function e(t){var n,r=(t=null==t?We:Zt.defaults(We.Object(),t,Zt.pick(We,ze))).Array,i=t.Date,X=t.Error,pe=t.Function,fe=t.Math,he=t.Object,ge=t.RegExp,me=t.String,ve=t.TypeError,be=r.prototype,ye=pe.prototype,xe=he.prototype,we=t["__core-js_shared__"],ke=ye.toString,Ae=xe.hasOwnProperty,Ee=0,Se=(n=/[^.]+$/.exec(we&&we.keys&&we.keys.IE_PROTO||""))?"Symbol(src)_1."+n:"",$e=xe.toString,Ce=ke.call(he),_e=We._,Oe=ge("^"+ke.call(Ae).replace(G,"\\$&").replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g,"$1.*?")+"$"),Te=Ze?t.Buffer:void 0,je=t.Symbol,Re=t.Uint8Array,Ne=Te?Te.allocUnsafe:void 0,qe=qt(he.getPrototypeOf,he),He=he.create,Ge=xe.propertyIsEnumerable,Ye=be.splice,Xe=je?je.isConcatSpreadable:void 0,Qe=je?je.iterator:void 0,Je=je?je.toStringTag:void 0,bt=function(){try{var e=eo(he,"defineProperty");return e({},"",{}),e}catch(e){}}(),$t=t.clearTimeout!==We.clearTimeout&&t.clearTimeout,Qt=i&&i.now!==We.Date.now&&i.now,Jt=t.setTimeout!==We.setTimeout&&t.setTimeout,Kt=fe.ceil,en=fe.floor,tn=he.getOwnPropertySymbols,nn=Te?Te.isBuffer:void 0,rn=t.isFinite,on=be.join,an=qt(he.keys,he),sn=fe.max,ln=fe.min,cn=i.now,un=t.parseInt,dn=fe.random,pn=be.reverse,fn=eo(t,"DataView"),hn=eo(t,"Map"),gn=eo(t,"Promise"),mn=eo(t,"Set"),vn=eo(t,"WeakMap"),bn=eo(he,"create"),yn=vn&&new vn,xn={},wn=_o(fn),kn=_o(hn),An=_o(gn),En=_o(mn),Sn=_o(vn),$n=je?je.prototype:void 0,Cn=$n?$n.valueOf:void 0,_n=$n?$n.toString:void 0;function On(e){if(Ha(e)&&!Ra(e)&&!(e instanceof Dn)){if(e instanceof Pn)return e;if(Ae.call(e,"__wrapped__"))return Oo(e)}return new Pn(e)}var Tn=function(){function e(){}return function(t){if(!Ua(t))return{};if(He)return He(t);e.prototype=t;var n=new e;return e.prototype=void 0,n}}();function jn(){}function Pn(e,t){this.__wrapped__=e,this.__actions__=[],this.__chain__=!!t,this.__index__=0,this.__values__=void 0}function Dn(e){this.__wrapped__=e,this.__actions__=[],this.__dir__=1,this.__filtered__=!1,this.__iteratees__=[],this.__takeCount__=4294967295,this.__views__=[]}function Rn(e){var t=-1,n=null==e?0:e.length;for(this.clear();++t=t?e:t)),e}function Qn(e,t,n,r,i,o){var a,s=1&t,c=2&t,p=4&t;if(n&&(a=i?n(e,r,i,o):n(e)),void 0!==a)return a;if(!Ua(e))return e;var k=Ra(e);if(k){if(a=function(e){var t=e.length,n=new e.constructor(t);t&&"string"==typeof e[0]&&Ae.call(e,"index")&&(n.index=e.index,n.input=e.input);return n}(e),!s)return bi(e,a)}else{var D=ro(e),R=D==f||D==h;if(za(e))return pi(e,s);if(D==v||D==l||R&&!i){if(a=c||R?{}:oo(e),!s)return c?function(e,t){return yi(e,no(e),t)}(e,function(e,t){return e&&yi(t,ks(t),e)}(a,e)):function(e,t){return yi(e,to(e),t)}(e,Wn(a,e))}else{if(!Fe[D])return i?e:{};a=function(e,t,n){var r=e.constructor;switch(t){case A:return fi(e);case u:case d:return new r(+e);case E:return function(e,t){var n=t?fi(e.buffer):e.buffer;return new e.constructor(n,e.byteOffset,e.byteLength)}(e,n);case S:case $:case C:case _:case O:case T:case"[object Uint8ClampedArray]":case j:case P:return hi(e,n);case g:return new r;case m:case x:return new r(e);case b:return function(e){var t=new e.constructor(e.source,re.exec(e));return t.lastIndex=e.lastIndex,t}(e);case y:return new r;case w:return i=e,Cn?he(Cn.call(i)):{}}var i}(e,D,s)}}o||(o=new zn);var I=o.get(e);if(I)return I;o.set(e,a),Za(e)?e.forEach((function(r){a.add(Qn(r,t,n,r,e,o))})):Ga(e)&&e.forEach((function(r,i){a.set(i,Qn(r,t,n,i,e,o))}));var N=k?void 0:(p?c?Wi:Gi:c?ks:ws)(e);return st(N||e,(function(r,i){N&&(r=e[i=r]),Un(a,i,Qn(r,t,n,i,e,o))})),a}function Jn(e,t,n){var r=n.length;if(null==e)return!r;for(e=he(e);r--;){var i=n[r],o=t[i],a=e[i];if(void 0===a&&!(i in e)||!o(a))return!1}return!0}function Kn(e,t,n){if("function"!=typeof e)throw new ve(o);return wo((function(){e.apply(void 0,n)}),t)}function er(e,t,n,r){var i=-1,o=dt,a=!0,s=e.length,l=[],c=t.length;if(!s)return l;n&&(t=ft(t,jt(n))),r?(o=pt,a=!1):t.length>=200&&(o=Dt,a=!1,t=new Mn(t));e:for(;++i-1},In.prototype.set=function(e,t){var n=this.__data__,r=Hn(n,e);return r<0?(++this.size,n.push([e,t])):n[r][1]=t,this},Nn.prototype.clear=function(){this.size=0,this.__data__={hash:new Rn,map:new(hn||In),string:new Rn}},Nn.prototype.delete=function(e){var t=Ji(this,e).delete(e);return this.size-=t?1:0,t},Nn.prototype.get=function(e){return Ji(this,e).get(e)},Nn.prototype.has=function(e){return Ji(this,e).has(e)},Nn.prototype.set=function(e,t){var n=Ji(this,e),r=n.size;return n.set(e,t),this.size+=n.size==r?0:1,this},Mn.prototype.add=Mn.prototype.push=function(e){return this.__data__.set(e,"__lodash_hash_undefined__"),this},Mn.prototype.has=function(e){return this.__data__.has(e)},zn.prototype.clear=function(){this.__data__=new In,this.size=0},zn.prototype.delete=function(e){var t=this.__data__,n=t.delete(e);return this.size=t.size,n},zn.prototype.get=function(e){return this.__data__.get(e)},zn.prototype.has=function(e){return this.__data__.has(e)},zn.prototype.set=function(e,t){var n=this.__data__;if(n instanceof In){var r=n.__data__;if(!hn||r.length<199)return r.push([e,t]),this.size=++n.size,this;n=this.__data__=new Nn(r)}return n.set(e,t),this.size=n.size,this};var tr=ki(cr),nr=ki(ur,!0);function rr(e,t){var n=!0;return tr(e,(function(e,r,i){return n=!!t(e,r,i)})),n}function ir(e,t,n){for(var r=-1,i=e.length;++r0&&n(s)?t>1?ar(s,t-1,n,r,i):ht(i,s):r||(i[i.length]=s)}return i}var sr=Ai(),lr=Ai(!0);function cr(e,t){return e&&sr(e,t,ws)}function ur(e,t){return e&&lr(e,t,ws)}function dr(e,t){return ut(t,(function(t){return Fa(e[t])}))}function pr(e,t){for(var n=0,r=(t=li(t,e)).length;null!=e&&nt}function mr(e,t){return null!=e&&Ae.call(e,t)}function vr(e,t){return null!=e&&t in he(e)}function br(e,t,n){for(var i=n?pt:dt,o=e[0].length,a=e.length,s=a,l=r(a),c=1/0,u=[];s--;){var d=e[s];s&&t&&(d=ft(d,jt(t))),c=ln(d.length,c),l[s]=!n&&(t||o>=120&&d.length>=120)?new Mn(s&&d):void 0}d=e[0];var p=-1,f=l[0];e:for(;++p=s)return l;var c=n[r];return l*("desc"==c?-1:1)}}return e.index-t.index}(e,t,n)}))}function Rr(e,t,n){for(var r=-1,i=t.length,o={};++r-1;)s!==e&&Ye.call(s,l,1),Ye.call(e,l,1);return e}function Nr(e,t){for(var n=e?t.length:0,r=n-1;n--;){var i=t[n];if(n==r||i!==o){var o=i;so(i)?Ye.call(e,i,1):ei(e,i)}}return e}function Mr(e,t){return e+en(dn()*(t-e+1))}function zr(e,t){var n="";if(!e||t<1||t>9007199254740991)return n;do{t%2&&(n+=e),(t=en(t/2))&&(e+=e)}while(t);return n}function Lr(e,t){return ko(mo(e,t,Ws),e+"")}function Br(e){return Bn(Ts(e))}function Fr(e,t){var n=Ts(e);return So(n,Zn(t,0,n.length))}function qr(e,t,n,r){if(!Ua(e))return e;for(var i=-1,o=(t=li(t,e)).length,a=o-1,s=e;null!=s&&++io?0:o+t),(n=n>o?o:n)<0&&(n+=o),o=t>n?0:n-t>>>0,t>>>=0;for(var a=r(o);++i>>1,a=e[o];null!==a&&!Ja(a)&&(n?a<=t:a=200){var c=t?null:zi(e);if(c)return Ut(c);a=!1,i=Dt,l=new Mn}else l=t?[]:s;e:for(;++r=r?e:Gr(e,t,n)}var di=$t||function(e){return We.clearTimeout(e)};function pi(e,t){if(t)return e.slice();var n=e.length,r=Ne?Ne(n):new e.constructor(n);return e.copy(r),r}function fi(e){var t=new e.constructor(e.byteLength);return new Re(t).set(new Re(e)),t}function hi(e,t){var n=t?fi(e.buffer):e.buffer;return new e.constructor(n,e.byteOffset,e.length)}function gi(e,t){if(e!==t){var n=void 0!==e,r=null===e,i=e==e,o=Ja(e),a=void 0!==t,s=null===t,l=t==t,c=Ja(t);if(!s&&!c&&!o&&e>t||o&&a&&l&&!s&&!c||r&&a&&l||!n&&l||!i)return 1;if(!r&&!o&&!c&&e1?n[i-1]:void 0,a=i>2?n[2]:void 0;for(o=e.length>3&&"function"==typeof o?(i--,o):void 0,a&&lo(n[0],n[1],a)&&(o=i<3?void 0:o,i=1),t=he(t);++r-1?i[o?t[a]:a]:void 0}}function _i(e){return Hi((function(t){var n=t.length,r=n,i=Pn.prototype.thru;for(e&&t.reverse();r--;){var a=t[r];if("function"!=typeof a)throw new ve(o);if(i&&!s&&"wrapper"==Xi(a))var s=new Pn([],!0)}for(r=s?r:n;++r1&&y.reverse(),d&&cs))return!1;var c=o.get(e),u=o.get(t);if(c&&u)return c==t&&u==e;var d=-1,p=!0,f=2&n?new Mn:void 0;for(o.set(e,t),o.set(t,e);++d-1&&e%1==0&&e1?"& ":"")+t[r],t=t.join(n>2?", ":" "),e.replace(Z,"{\n/* [wrapped with "+t+"] */\n")}(r,function(e,t){return st(s,(function(n){var r="_."+n[0];t&n[1]&&!dt(e,r)&&e.push(r)})),e.sort()}(function(e){var t=e.match(Q);return t?t[1].split(J):[]}(r),n)))}function Eo(e){var t=0,n=0;return function(){var r=cn(),i=16-(r-n);if(n=r,i>0){if(++t>=800)return arguments[0]}else t=0;return e.apply(void 0,arguments)}}function So(e,t){var n=-1,r=e.length,i=r-1;for(t=void 0===t?r:t;++n1?e[t-1]:void 0;return n="function"==typeof n?(e.pop(),n):void 0,Xo(e,n)}));function na(e){var t=On(e);return t.__chain__=!0,t}function ra(e,t){return t(e)}var ia=Hi((function(e){var t=e.length,n=t?e[0]:0,r=this.__wrapped__,i=function(t){return Xn(t,e)};return!(t>1||this.__actions__.length)&&r instanceof Dn&&so(n)?((r=r.slice(n,+n+(t?1:0))).__actions__.push({func:ra,args:[i],thisArg:void 0}),new Pn(r,this.__chain__).thru((function(e){return t&&!e.length&&e.push(void 0),e}))):this.thru(i)}));var oa=xi((function(e,t,n){Ae.call(e,n)?++e[n]:Yn(e,n,1)}));var aa=Ci(Do),sa=Ci(Ro);function la(e,t){return(Ra(e)?st:tr)(e,Qi(t,3))}function ca(e,t){return(Ra(e)?lt:nr)(e,Qi(t,3))}var ua=xi((function(e,t,n){Ae.call(e,n)?e[n].push(t):Yn(e,n,[t])}));var da=Lr((function(e,t,n){var i=-1,o="function"==typeof t,a=Na(e)?r(e.length):[];return tr(e,(function(e){a[++i]=o?ot(t,e,n):yr(e,t,n)})),a})),pa=xi((function(e,t,n){Yn(e,n,t)}));function fa(e,t){return(Ra(e)?ft:_r)(e,Qi(t,3))}var ha=xi((function(e,t,n){e[n?0:1].push(t)}),(function(){return[[],[]]}));var ga=Lr((function(e,t){if(null==e)return[];var n=t.length;return n>1&&lo(e,t[0],t[1])?t=[]:n>2&&lo(t[0],t[1],t[2])&&(t=[t[0]]),Dr(e,ar(t,1),[])})),ma=Qt||function(){return We.Date.now()};function va(e,t,n){return t=n?void 0:t,Bi(e,128,void 0,void 0,void 0,void 0,t=e&&null==t?e.length:t)}function ba(e,t){var n;if("function"!=typeof t)throw new ve(o);return e=is(e),function(){return--e>0&&(n=t.apply(this,arguments)),e<=1&&(t=void 0),n}}var ya=Lr((function(e,t,n){var r=1;if(n.length){var i=Vt(n,Zi(ya));r|=32}return Bi(e,r,t,n,i)})),xa=Lr((function(e,t,n){var r=3;if(n.length){var i=Vt(n,Zi(xa));r|=32}return Bi(t,r,e,n,i)}));function wa(e,t,n){var r,i,a,s,l,c,u=0,d=!1,p=!1,f=!0;if("function"!=typeof e)throw new ve(o);function h(t){var n=r,o=i;return r=i=void 0,u=t,s=e.apply(o,n)}function g(e){return u=e,l=wo(v,t),d?h(e):s}function m(e){var n=e-c;return void 0===c||n>=t||n<0||p&&e-u>=a}function v(){var e=ma();if(m(e))return b(e);l=wo(v,function(e){var n=t-(e-c);return p?ln(n,a-(e-u)):n}(e))}function b(e){return l=void 0,f&&r?h(e):(r=i=void 0,s)}function y(){var e=ma(),n=m(e);if(r=arguments,i=this,c=e,n){if(void 0===l)return g(c);if(p)return di(l),l=wo(v,t),h(c)}return void 0===l&&(l=wo(v,t)),s}return t=as(t)||0,Ua(n)&&(d=!!n.leading,a=(p="maxWait"in n)?sn(as(n.maxWait)||0,t):a,f="trailing"in n?!!n.trailing:f),y.cancel=function(){void 0!==l&&di(l),u=0,r=c=i=l=void 0},y.flush=function(){return void 0===l?s:b(ma())},y}var ka=Lr((function(e,t){return Kn(e,1,t)})),Aa=Lr((function(e,t,n){return Kn(e,as(t)||0,n)}));function Ea(e,t){if("function"!=typeof e||null!=t&&"function"!=typeof t)throw new ve(o);var n=function(){var r=arguments,i=t?t.apply(this,r):r[0],o=n.cache;if(o.has(i))return o.get(i);var a=e.apply(this,r);return n.cache=o.set(i,a)||o,a};return n.cache=new(Ea.Cache||Nn),n}function Sa(e){if("function"!=typeof e)throw new ve(o);return function(){var t=arguments;switch(t.length){case 0:return!e.call(this);case 1:return!e.call(this,t[0]);case 2:return!e.call(this,t[0],t[1]);case 3:return!e.call(this,t[0],t[1],t[2])}return!e.apply(this,t)}}Ea.Cache=Nn;var $a=ci((function(e,t){var n=(t=1==t.length&&Ra(t[0])?ft(t[0],jt(Qi())):ft(ar(t,1),jt(Qi()))).length;return Lr((function(r){for(var i=-1,o=ln(r.length,n);++i=t})),Da=xr(function(){return arguments}())?xr:function(e){return Ha(e)&&Ae.call(e,"callee")&&!Ge.call(e,"callee")},Ra=r.isArray,Ia=Ke?jt(Ke):function(e){return Ha(e)&&hr(e)==A};function Na(e){return null!=e&&Va(e.length)&&!Fa(e)}function Ma(e){return Ha(e)&&Na(e)}var za=nn||al,La=et?jt(et):function(e){return Ha(e)&&hr(e)==d};function Ba(e){if(!Ha(e))return!1;var t=hr(e);return t==p||"[object DOMException]"==t||"string"==typeof e.message&&"string"==typeof e.name&&!Ya(e)}function Fa(e){if(!Ua(e))return!1;var t=hr(e);return t==f||t==h||"[object AsyncFunction]"==t||"[object Proxy]"==t}function qa(e){return"number"==typeof e&&e==is(e)}function Va(e){return"number"==typeof e&&e>-1&&e%1==0&&e<=9007199254740991}function Ua(e){var t=typeof e;return null!=e&&("object"==t||"function"==t)}function Ha(e){return null!=e&&"object"==typeof e}var Ga=tt?jt(tt):function(e){return Ha(e)&&ro(e)==g};function Wa(e){return"number"==typeof e||Ha(e)&&hr(e)==m}function Ya(e){if(!Ha(e)||hr(e)!=v)return!1;var t=qe(e);if(null===t)return!0;var n=Ae.call(t,"constructor")&&t.constructor;return"function"==typeof n&&n instanceof n&&ke.call(n)==Ce}var Xa=nt?jt(nt):function(e){return Ha(e)&&hr(e)==b};var Za=rt?jt(rt):function(e){return Ha(e)&&ro(e)==y};function Qa(e){return"string"==typeof e||!Ra(e)&&Ha(e)&&hr(e)==x}function Ja(e){return"symbol"==typeof e||Ha(e)&&hr(e)==w}var Ka=it?jt(it):function(e){return Ha(e)&&Va(e.length)&&!!Be[hr(e)]};var es=Ii(Cr),ts=Ii((function(e,t){return e<=t}));function ns(e){if(!e)return[];if(Na(e))return Qa(e)?Wt(e):bi(e);if(Qe&&e[Qe])return function(e){for(var t,n=[];!(t=e.next()).done;)n.push(t.value);return n}(e[Qe]());var t=ro(e);return(t==g?Ft:t==y?Ut:Ts)(e)}function rs(e){return e?(e=as(e))===1/0||e===-1/0?17976931348623157e292*(e<0?-1:1):e==e?e:0:0===e?e:0}function is(e){var t=rs(e),n=t%1;return t==t?n?t-n:t:0}function os(e){return e?Zn(is(e),0,4294967295):0}function as(e){if("number"==typeof e)return e;if(Ja(e))return NaN;if(Ua(e)){var t="function"==typeof e.valueOf?e.valueOf():e;e=Ua(t)?t+"":t}if("string"!=typeof e)return 0===e?e:+e;e=Tt(e);var n=oe.test(e);return n||se.test(e)?Ue(e.slice(2),n?2:8):ie.test(e)?NaN:+e}function ss(e){return yi(e,ks(e))}function ls(e){return null==e?"":Jr(e)}var cs=wi((function(e,t){if(fo(t)||Na(t))yi(t,ws(t),e);else for(var n in t)Ae.call(t,n)&&Un(e,n,t[n])})),us=wi((function(e,t){yi(t,ks(t),e)})),ds=wi((function(e,t,n,r){yi(t,ks(t),e,r)})),ps=wi((function(e,t,n,r){yi(t,ws(t),e,r)})),fs=Hi(Xn);var hs=Lr((function(e,t){e=he(e);var n=-1,r=t.length,i=r>2?t[2]:void 0;for(i&&lo(t[0],t[1],i)&&(r=1);++n1),t})),yi(e,Wi(e),n),r&&(n=Qn(n,7,Vi));for(var i=t.length;i--;)ei(n,t[i]);return n}));var $s=Hi((function(e,t){return null==e?{}:function(e,t){return Rr(e,t,(function(t,n){return vs(e,n)}))}(e,t)}));function Cs(e,t){if(null==e)return{};var n=ft(Wi(e),(function(e){return[e]}));return t=Qi(t),Rr(e,n,(function(e,n){return t(e,n[0])}))}var _s=Li(ws),Os=Li(ks);function Ts(e){return null==e?[]:Pt(e,ws(e))}var js=Si((function(e,t,n){return t=t.toLowerCase(),e+(n?Ps(t):t)}));function Ps(e){return Bs(ls(e).toLowerCase())}function Ds(e){return(e=ls(e))&&e.replace(ce,Mt).replace(De,"")}var Rs=Si((function(e,t,n){return e+(n?"-":"")+t.toLowerCase()})),Is=Si((function(e,t,n){return e+(n?" ":"")+t.toLowerCase()})),Ns=Ei("toLowerCase");var Ms=Si((function(e,t,n){return e+(n?"_":"")+t.toLowerCase()}));var zs=Si((function(e,t,n){return e+(n?" ":"")+Bs(t)}));var Ls=Si((function(e,t,n){return e+(n?" ":"")+t.toUpperCase()})),Bs=Ei("toUpperCase");function Fs(e,t,n){return e=ls(e),void 0===(t=n?void 0:t)?function(e){return Me.test(e)}(e)?function(e){return e.match(Ie)||[]}(e):function(e){return e.match(K)||[]}(e):e.match(t)||[]}var qs=Lr((function(e,t){try{return ot(e,void 0,t)}catch(e){return Ba(e)?e:new X(e)}})),Vs=Hi((function(e,t){return st(t,(function(t){t=Co(t),Yn(e,t,ya(e[t],e))})),e}));function Us(e){return function(){return e}}var Hs=_i(),Gs=_i(!0);function Ws(e){return e}function Ys(e){return Er("function"==typeof e?e:Qn(e,1))}var Xs=Lr((function(e,t){return function(n){return yr(n,e,t)}})),Zs=Lr((function(e,t){return function(n){return yr(e,n,t)}}));function Qs(e,t,n){var r=ws(t),i=dr(t,r);null!=n||Ua(t)&&(i.length||!r.length)||(n=t,t=e,e=this,i=dr(t,ws(t)));var o=!(Ua(n)&&"chain"in n&&!n.chain),a=Fa(e);return st(i,(function(n){var r=t[n];e[n]=r,a&&(e.prototype[n]=function(){var t=this.__chain__;if(o||t){var n=e(this.__wrapped__),i=n.__actions__=bi(this.__actions__);return i.push({func:r,args:arguments,thisArg:e}),n.__chain__=t,n}return r.apply(e,ht([this.value()],arguments))})})),e}function Js(){}var Ks=Pi(ft),el=Pi(ct),tl=Pi(vt);function nl(e){return co(e)?St(Co(e)):function(e){return function(t){return pr(t,e)}}(e)}var rl=Ri(),il=Ri(!0);function ol(){return[]}function al(){return!1}var sl=ji((function(e,t){return e+t}),0),ll=Mi("ceil"),cl=ji((function(e,t){return e/t}),1),ul=Mi("floor");var dl,pl=ji((function(e,t){return e*t}),1),fl=Mi("round"),hl=ji((function(e,t){return e-t}),0);return On.after=function(e,t){if("function"!=typeof t)throw new ve(o);return e=is(e),function(){if(--e<1)return t.apply(this,arguments)}},On.ary=va,On.assign=cs,On.assignIn=us,On.assignInWith=ds,On.assignWith=ps,On.at=fs,On.before=ba,On.bind=ya,On.bindAll=Vs,On.bindKey=xa,On.castArray=function(){if(!arguments.length)return[];var e=arguments[0];return Ra(e)?e:[e]},On.chain=na,On.chunk=function(e,t,n){t=(n?lo(e,t,n):void 0===t)?1:sn(is(t),0);var i=null==e?0:e.length;if(!i||t<1)return[];for(var o=0,a=0,s=r(Kt(i/t));oi?0:i+n),(r=void 0===r||r>i?i:is(r))<0&&(r+=i),r=n>r?0:os(r);n>>0)?(e=ls(e))&&("string"==typeof t||null!=t&&!Xa(t))&&!(t=Jr(t))&&Bt(e)?ui(Wt(e),0,n):e.split(t,n):[]},On.spread=function(e,t){if("function"!=typeof e)throw new ve(o);return t=null==t?0:sn(is(t),0),Lr((function(n){var r=n[t],i=ui(n,0,t);return r&&ht(i,r),ot(e,this,i)}))},On.tail=function(e){var t=null==e?0:e.length;return t?Gr(e,1,t):[]},On.take=function(e,t,n){return e&&e.length?Gr(e,0,(t=n||void 0===t?1:is(t))<0?0:t):[]},On.takeRight=function(e,t,n){var r=null==e?0:e.length;return r?Gr(e,(t=r-(t=n||void 0===t?1:is(t)))<0?0:t,r):[]},On.takeRightWhile=function(e,t){return e&&e.length?ni(e,Qi(t,3),!1,!0):[]},On.takeWhile=function(e,t){return e&&e.length?ni(e,Qi(t,3)):[]},On.tap=function(e,t){return t(e),e},On.throttle=function(e,t,n){var r=!0,i=!0;if("function"!=typeof e)throw new ve(o);return Ua(n)&&(r="leading"in n?!!n.leading:r,i="trailing"in n?!!n.trailing:i),wa(e,t,{leading:r,maxWait:t,trailing:i})},On.thru=ra,On.toArray=ns,On.toPairs=_s,On.toPairsIn=Os,On.toPath=function(e){return Ra(e)?ft(e,Co):Ja(e)?[e]:bi($o(ls(e)))},On.toPlainObject=ss,On.transform=function(e,t,n){var r=Ra(e),i=r||za(e)||Ka(e);if(t=Qi(t,4),null==n){var o=e&&e.constructor;n=i?r?new o:[]:Ua(e)&&Fa(o)?Tn(qe(e)):{}}return(i?st:cr)(e,(function(e,r,i){return t(n,e,r,i)})),n},On.unary=function(e){return va(e,1)},On.union=Ho,On.unionBy=Go,On.unionWith=Wo,On.uniq=function(e){return e&&e.length?Kr(e):[]},On.uniqBy=function(e,t){return e&&e.length?Kr(e,Qi(t,2)):[]},On.uniqWith=function(e,t){return t="function"==typeof t?t:void 0,e&&e.length?Kr(e,void 0,t):[]},On.unset=function(e,t){return null==e||ei(e,t)},On.unzip=Yo,On.unzipWith=Xo,On.update=function(e,t,n){return null==e?e:ti(e,t,si(n))},On.updateWith=function(e,t,n,r){return r="function"==typeof r?r:void 0,null==e?e:ti(e,t,si(n),r)},On.values=Ts,On.valuesIn=function(e){return null==e?[]:Pt(e,ks(e))},On.without=Zo,On.words=Fs,On.wrap=function(e,t){return Ca(si(t),e)},On.xor=Qo,On.xorBy=Jo,On.xorWith=Ko,On.zip=ea,On.zipObject=function(e,t){return oi(e||[],t||[],Un)},On.zipObjectDeep=function(e,t){return oi(e||[],t||[],qr)},On.zipWith=ta,On.entries=_s,On.entriesIn=Os,On.extend=us,On.extendWith=ds,Qs(On,On),On.add=sl,On.attempt=qs,On.camelCase=js,On.capitalize=Ps,On.ceil=ll,On.clamp=function(e,t,n){return void 0===n&&(n=t,t=void 0),void 0!==n&&(n=(n=as(n))==n?n:0),void 0!==t&&(t=(t=as(t))==t?t:0),Zn(as(e),t,n)},On.clone=function(e){return Qn(e,4)},On.cloneDeep=function(e){return Qn(e,5)},On.cloneDeepWith=function(e,t){return Qn(e,5,t="function"==typeof t?t:void 0)},On.cloneWith=function(e,t){return Qn(e,4,t="function"==typeof t?t:void 0)},On.conformsTo=function(e,t){return null==t||Jn(e,t,ws(t))},On.deburr=Ds,On.defaultTo=function(e,t){return null==e||e!=e?t:e},On.divide=cl,On.endsWith=function(e,t,n){e=ls(e),t=Jr(t);var r=e.length,i=n=void 0===n?r:Zn(is(n),0,r);return(n-=t.length)>=0&&e.slice(n,i)==t},On.eq=Ta,On.escape=function(e){return(e=ls(e))&&L.test(e)?e.replace(M,zt):e},On.escapeRegExp=function(e){return(e=ls(e))&&W.test(e)?e.replace(G,"\\$&"):e},On.every=function(e,t,n){var r=Ra(e)?ct:rr;return n&&lo(e,t,n)&&(t=void 0),r(e,Qi(t,3))},On.find=aa,On.findIndex=Do,On.findKey=function(e,t){return yt(e,Qi(t,3),cr)},On.findLast=sa,On.findLastIndex=Ro,On.findLastKey=function(e,t){return yt(e,Qi(t,3),ur)},On.floor=ul,On.forEach=la,On.forEachRight=ca,On.forIn=function(e,t){return null==e?e:sr(e,Qi(t,3),ks)},On.forInRight=function(e,t){return null==e?e:lr(e,Qi(t,3),ks)},On.forOwn=function(e,t){return e&&cr(e,Qi(t,3))},On.forOwnRight=function(e,t){return e&&ur(e,Qi(t,3))},On.get=ms,On.gt=ja,On.gte=Pa,On.has=function(e,t){return null!=e&&io(e,t,mr)},On.hasIn=vs,On.head=No,On.identity=Ws,On.includes=function(e,t,n,r){e=Na(e)?e:Ts(e),n=n&&!r?is(n):0;var i=e.length;return n<0&&(n=sn(i+n,0)),Qa(e)?n<=i&&e.indexOf(t,n)>-1:!!i&&wt(e,t,n)>-1},On.indexOf=function(e,t,n){var r=null==e?0:e.length;if(!r)return-1;var i=null==n?0:is(n);return i<0&&(i=sn(r+i,0)),wt(e,t,i)},On.inRange=function(e,t,n){return t=rs(t),void 0===n?(n=t,t=0):n=rs(n),function(e,t,n){return e>=ln(t,n)&&e=-9007199254740991&&e<=9007199254740991},On.isSet=Za,On.isString=Qa,On.isSymbol=Ja,On.isTypedArray=Ka,On.isUndefined=function(e){return void 0===e},On.isWeakMap=function(e){return Ha(e)&&ro(e)==k},On.isWeakSet=function(e){return Ha(e)&&"[object WeakSet]"==hr(e)},On.join=function(e,t){return null==e?"":on.call(e,t)},On.kebabCase=Rs,On.last=Bo,On.lastIndexOf=function(e,t,n){var r=null==e?0:e.length;if(!r)return-1;var i=r;return void 0!==n&&(i=(i=is(n))<0?sn(r+i,0):ln(i,r-1)),t==t?function(e,t,n){for(var r=n+1;r--;)if(e[r]===t)return r;return r}(e,t,i):xt(e,At,i,!0)},On.lowerCase=Is,On.lowerFirst=Ns,On.lt=es,On.lte=ts,On.max=function(e){return e&&e.length?ir(e,Ws,gr):void 0},On.maxBy=function(e,t){return e&&e.length?ir(e,Qi(t,2),gr):void 0},On.mean=function(e){return Et(e,Ws)},On.meanBy=function(e,t){return Et(e,Qi(t,2))},On.min=function(e){return e&&e.length?ir(e,Ws,Cr):void 0},On.minBy=function(e,t){return e&&e.length?ir(e,Qi(t,2),Cr):void 0},On.stubArray=ol,On.stubFalse=al,On.stubObject=function(){return{}},On.stubString=function(){return""},On.stubTrue=function(){return!0},On.multiply=pl,On.nth=function(e,t){return e&&e.length?Pr(e,is(t)):void 0},On.noConflict=function(){return We._===this&&(We._=_e),this},On.noop=Js,On.now=ma,On.pad=function(e,t,n){e=ls(e);var r=(t=is(t))?Gt(e):0;if(!t||r>=t)return e;var i=(t-r)/2;return Di(en(i),n)+e+Di(Kt(i),n)},On.padEnd=function(e,t,n){e=ls(e);var r=(t=is(t))?Gt(e):0;return t&&rt){var r=e;e=t,t=r}if(n||e%1||t%1){var i=dn();return ln(e+i*(t-e+Ve("1e-"+((i+"").length-1))),t)}return Mr(e,t)},On.reduce=function(e,t,n){var r=Ra(e)?gt:Ct,i=arguments.length<3;return r(e,Qi(t,4),n,i,tr)},On.reduceRight=function(e,t,n){var r=Ra(e)?mt:Ct,i=arguments.length<3;return r(e,Qi(t,4),n,i,nr)},On.repeat=function(e,t,n){return t=(n?lo(e,t,n):void 0===t)?1:is(t),zr(ls(e),t)},On.replace=function(){var e=arguments,t=ls(e[0]);return e.length<3?t:t.replace(e[1],e[2])},On.result=function(e,t,n){var r=-1,i=(t=li(t,e)).length;for(i||(i=1,e=void 0);++r9007199254740991)return[];var n=4294967295,r=ln(e,4294967295);e-=4294967295;for(var i=Ot(r,t=Qi(t));++n=o)return e;var s=n-Gt(r);if(s<1)return r;var l=a?ui(a,0,s).join(""):e.slice(0,s);if(void 0===i)return l+r;if(a&&(s+=l.length-s),Xa(i)){if(e.slice(s).search(i)){var c,u=l;for(i.global||(i=ge(i.source,ls(re.exec(i))+"g")),i.lastIndex=0;c=i.exec(u);)var d=c.index;l=l.slice(0,void 0===d?s:d)}}else if(e.indexOf(Jr(i),s)!=s){var p=l.lastIndexOf(i);p>-1&&(l=l.slice(0,p))}return l+r},On.unescape=function(e){return(e=ls(e))&&z.test(e)?e.replace(N,Xt):e},On.uniqueId=function(e){var t=++Ee;return ls(e)+t},On.upperCase=Ls,On.upperFirst=Bs,On.each=la,On.eachRight=ca,On.first=No,Qs(On,(dl={},cr(On,(function(e,t){Ae.call(On.prototype,t)||(dl[t]=e)})),dl),{chain:!1}),On.VERSION="4.17.21",st(["bind","bindKey","curry","curryRight","partial","partialRight"],(function(e){On[e].placeholder=On})),st(["drop","take"],(function(e,t){Dn.prototype[e]=function(n){n=void 0===n?1:sn(is(n),0);var r=this.__filtered__&&!t?new Dn(this):this.clone();return r.__filtered__?r.__takeCount__=ln(n,r.__takeCount__):r.__views__.push({size:ln(n,4294967295),type:e+(r.__dir__<0?"Right":"")}),r},Dn.prototype[e+"Right"]=function(t){return this.reverse()[e](t).reverse()}})),st(["filter","map","takeWhile"],(function(e,t){var n=t+1,r=1==n||3==n;Dn.prototype[e]=function(e){var t=this.clone();return t.__iteratees__.push({iteratee:Qi(e,3),type:n}),t.__filtered__=t.__filtered__||r,t}})),st(["head","last"],(function(e,t){var n="take"+(t?"Right":"");Dn.prototype[e]=function(){return this[n](1).value()[0]}})),st(["initial","tail"],(function(e,t){var n="drop"+(t?"":"Right");Dn.prototype[e]=function(){return this.__filtered__?new Dn(this):this[n](1)}})),Dn.prototype.compact=function(){return this.filter(Ws)},Dn.prototype.find=function(e){return this.filter(e).head()},Dn.prototype.findLast=function(e){return this.reverse().find(e)},Dn.prototype.invokeMap=Lr((function(e,t){return"function"==typeof e?new Dn(this):this.map((function(n){return yr(n,e,t)}))})),Dn.prototype.reject=function(e){return this.filter(Sa(Qi(e)))},Dn.prototype.slice=function(e,t){e=is(e);var n=this;return n.__filtered__&&(e>0||t<0)?new Dn(n):(e<0?n=n.takeRight(-e):e&&(n=n.drop(e)),void 0!==t&&(n=(t=is(t))<0?n.dropRight(-t):n.take(t-e)),n)},Dn.prototype.takeRightWhile=function(e){return this.reverse().takeWhile(e).reverse()},Dn.prototype.toArray=function(){return this.take(4294967295)},cr(Dn.prototype,(function(e,t){var n=/^(?:filter|find|map|reject)|While$/.test(t),r=/^(?:head|last)$/.test(t),i=On[r?"take"+("last"==t?"Right":""):t],o=r||/^find/.test(t);i&&(On.prototype[t]=function(){var t=this.__wrapped__,a=r?[1]:arguments,s=t instanceof Dn,l=a[0],c=s||Ra(t),u=function(e){var t=i.apply(On,ht([e],a));return r&&d?t[0]:t};c&&n&&"function"==typeof l&&1!=l.length&&(s=c=!1);var d=this.__chain__,p=!!this.__actions__.length,f=o&&!d,h=s&&!p;if(!o&&c){t=h?t:new Dn(this);var g=e.apply(t,a);return g.__actions__.push({func:ra,args:[u],thisArg:void 0}),new Pn(g,d)}return f&&h?e.apply(this,a):(g=this.thru(u),f?r?g.value()[0]:g.value():g)})})),st(["pop","push","shift","sort","splice","unshift"],(function(e){var t=be[e],n=/^(?:push|sort|unshift)$/.test(e)?"tap":"thru",r=/^(?:pop|shift)$/.test(e);On.prototype[e]=function(){var e=arguments;if(r&&!this.__chain__){var i=this.value();return t.apply(Ra(i)?i:[],e)}return this[n]((function(n){return t.apply(Ra(n)?n:[],e)}))}})),cr(Dn.prototype,(function(e,t){var n=On[t];if(n){var r=n.name+"";Ae.call(xn,r)||(xn[r]=[]),xn[r].push({name:t,func:n})}})),xn[Oi(void 0,2).name]=[{name:"wrapper",func:void 0}],Dn.prototype.clone=function(){var e=new Dn(this.__wrapped__);return e.__actions__=bi(this.__actions__),e.__dir__=this.__dir__,e.__filtered__=this.__filtered__,e.__iteratees__=bi(this.__iteratees__),e.__takeCount__=this.__takeCount__,e.__views__=bi(this.__views__),e},Dn.prototype.reverse=function(){if(this.__filtered__){var e=new Dn(this);e.__dir__=-1,e.__filtered__=!0}else(e=this.clone()).__dir__*=-1;return e},Dn.prototype.value=function(){var e=this.__wrapped__.value(),t=this.__dir__,n=Ra(e),r=t<0,i=n?e.length:0,o=function(e,t,n){var r=-1,i=n.length;for(;++r=this.__values__.length;return{done:e,value:e?void 0:this.__values__[this.__index__++]}},On.prototype.plant=function(e){for(var t,n=this;n instanceof jn;){var r=Oo(n);r.__index__=0,r.__values__=void 0,t?i.__wrapped__=r:t=r;var i=r;n=n.__wrapped__}return i.__wrapped__=e,t},On.prototype.reverse=function(){var e=this.__wrapped__;if(e instanceof Dn){var t=e;return this.__actions__.length&&(t=new Dn(this)),(t=t.reverse()).__actions__.push({func:ra,args:[Uo],thisArg:void 0}),new Pn(t,this.__chain__)}return this.thru(Uo)},On.prototype.toJSON=On.prototype.valueOf=On.prototype.value=function(){return ri(this.__wrapped__,this.__actions__)},On.prototype.first=On.prototype.head,Qe&&(On.prototype[Qe]=function(){return this}),On}();We._=Zt,void 0===(i=function(){return Zt}.call(t,n,t,r))||(r.exports=i)}).call(this)}).call(this,n(35),n(80)(e))},function(e,t,n){const r=n(21);function i(e){return!r.isNull(e)&&!r.isUndefined(e)}function o(e,t,n,a){a||(a=1);var s=e.predecessors(t);if(!s||0==n)return[];var l=s.concat(s.reduce((function(t,r){return a>=n&&i(n)?t:t.concat(o(e,r,n,a+1))}),[]));return r.uniq(l)}function a(e,t,n,o){o||(o=1);var s=e.successors(t);if(!s||0==n)return[];var l=s.concat(s.reduce((function(t,r){return o>=n&&i(n)?t:t.concat(a(e,r,n,o+1))}),[]));return r.uniq(l)}e.exports={selectAt:function(e,t){var n=[t],i=r.union([t],a(e,t));return r.each(i,(function(t){var i=o(e,t);n=r.union(n,i,[t])})),n},ancestorNodes:o,descendentNodes:a}},function(e,t){var n={utf8:{stringToBytes:function(e){return n.bin.stringToBytes(unescape(encodeURIComponent(e)))},bytesToString:function(e){return decodeURIComponent(escape(n.bin.bytesToString(e)))}},bin:{stringToBytes:function(e){for(var t=[],n=0;n\n/* TODO */\n.section-target {\n top: -8em;\n}\n\n.noflex {\n flex: 0 0 160px !important;\n}\n\n.highlight {\n color: #24292e;\n background-color: white;\n}\n\n\n\n
\n \n
\n
\n
\n
\n \n
\n\n
\n
\n
\n
Description
\n
\n
\n
\n
This {{ model.resource_type }} is not currently documented
\n
\n
\n
\n
\n
\n
\n
\n
Columns
\n \n
\n
\n\n
\n
\n
\n
Referenced By
\n \n
\n
\n\n
\n
\n
\n \n
\n
\n
\n
\n
\n')}]),e.exports=n},function(e,t,n){"use strict";n.r(t);var r=function(e){return function(e){return!!e&&"object"==typeof e}(e)&&!function(e){var t=Object.prototype.toString.call(e);return"[object RegExp]"===t||"[object Date]"===t||function(e){return e.$$typeof===i}(e)}(e)};var i="function"==typeof Symbol&&Symbol.for?Symbol.for("react.element"):60103;function o(e,t){return!1!==t.clone&&t.isMergeableObject(e)?s((n=e,Array.isArray(n)?[]:{}),e,t):e;var n}function a(e,t,n){return e.concat(t).map((function(e){return o(e,n)}))}function s(e,t,n){(n=n||{}).arrayMerge=n.arrayMerge||a,n.isMergeableObject=n.isMergeableObject||r;var i=Array.isArray(t);return i===Array.isArray(e)?i?n.arrayMerge(e,t,n):function(e,t,n){var r={};return n.isMergeableObject(e)&&Object.keys(e).forEach((function(t){r[t]=o(e[t],n)})),Object.keys(t).forEach((function(i){n.isMergeableObject(t[i])&&e[i]?r[i]=s(e[i],t[i],n):r[i]=o(t[i],n)})),r}(e,t,n):o(t,n)}s.all=function(e,t){if(!Array.isArray(e))throw new Error("first argument should be an array");return e.reduce((function(e,n){return s(e,n,t)}),{})};var l=s;const c=n(9),u=(n(33),n(202)),{getQuoteChar:d}=n(430);c.module("dbt").factory("project",["$q","$http",function(e,t){var n={manifest:"MANIFEST.JSON INLINE DATA",catalog:"CATALOG.JSON INLINE DATA"},r={project:{},tree:{project:[],database:[],sources:[]},files:{manifest:{},catalog:{}},loaded:e.defer()};function i(e,t){return u.each(t.sources,(function(e,n){t.nodes[n]=e})),u.each(e.nodes,(function(e,n){var r=t.nodes[n];if(r){var i,o,a,s=u.keys(r.columns),l=e.columns,c=(i=s,o=l,a={},u.each(o,(function(e,t){var n=u.find(i,(function(e){return e.toLowerCase()==t.toLowerCase()}));n?a[n]=e:a[t]=e})),a);e.columns=c}})),l(t,e)}function o(e,r){return e in n&&"object"==typeof n[e]?{label:e,data:n[e]}:t({method:"GET",url:r}).then((function(t){return{label:e,data:t.data}}),(function(t){console.error(t),alert("dbt Docs was unable to load the "+e+" file at path: \n "+r+"\n\nError: "+t.statusText+" ("+t.status+")\n\nThe dbt Docs site may not work as expected if this file cannot be found.Please try again, and contact support if this error persists.")}))}return r.find_by_id=function(e,t){r.ready((function(){if(e){var n=r.node(e);t(n)}}))},r.node=function(e){return u.find(r.project.nodes,{unique_id:e})},r.loadProject=function(){var t="?cb="+(new Date).getTime(),n=[o("manifest","manifest.json"+t),o("catalog","catalog.json"+t)];e.all(n).then((function(e){u.each(e,(function(e){e?r.files[e.label]=e.data:console.error("FILE FAILED TO LOAD!")})),u.each(r.files.manifest.nodes,(function(e){"model"==e.resource_type&&null!=e.version?e.label=e.name+"_v"+e.version:e.label=e.name})),u.each(r.files.manifest.sources,(function(e){e.label=e.source_name+"."+e.name,r.files.manifest.nodes[e.unique_id]=e})),u.each(r.files.manifest.exposures,(function(e){e.label||(e.label=e.name),r.files.manifest.nodes[e.unique_id]=e})),u.each(r.files.manifest.metrics,(function(e){r.files.manifest.nodes[e.unique_id]=e})),u.each(r.files.manifest.semantic_models,(function(e){r.files.manifest.nodes[e.unique_id]=e,e.label=e.name}));var t=r.files.manifest.metadata.adapter_type,n=function(e,t){var n=e||[],r={};u.each(n,(function(e){r[e.package_name]||(r[e.package_name]={}),r[e.package_name][e.name]=e}));e=[];return u.each(r,(function(n,r){if("dbt"!=r&&r!="dbt_"+t){var i=function(e,t){var n={};u.each(e,(function(e){e.macro_sql.match(/{{\s*adapter_macro\([^)]+\)\s+}}/)&&(e.impls={"Adapter Macro":e.macro_sql},e.is_adapter_macro=!0,n[e.name]=e)}));var r=["postgres","redshift","bigquery","snowflake","spark","presto","default"],i=u.values(n),o=u.filter(e,(function(e){var t=e.name.split("__"),i=t.shift(),o=t.join("__");return!(r.indexOf(i)>=0&&n[o])||(n[o].impls[i]=e.macro_sql,e.is_adapter_macro_impl=!0,!1)}));return i.concat(o)}(n);e=e.concat(i)}})),u.keyBy(e,"unique_id")}(r.files.manifest.macros,t);r.files.manifest.macros=n;var o=i(r.files.manifest,r.files.catalog),a=o.nodes,s=u.keyBy(a,"name"),l=u.filter(o.nodes,{resource_type:"test"});u.each(l,(function(e){if(e.hasOwnProperty("test_metadata")){var t,n={test_name:t=e.test_metadata.namespace?e.test_metadata.namespace+"."+e.test_metadata.name:e.test_metadata.name};if("not_null"==e.test_metadata.name)n.short="N",n.label="Not Null";else if("unique"==e.test_metadata.name)n.short="U",n.label="Unique";else if("relationships"==e.test_metadata.name){var r=e.refs[0],i=s[r];i&&e.test_metadata.kwargs.field&&(n.fk_field=e.test_metadata.kwargs.field,n.fk_model=i),n.short="F",n.label="Foreign Key"}else if("accepted_values"==e.test_metadata.name){if(Array.isArray(e.test_metadata.kwargs.values))var a=e.test_metadata.kwargs.values.join(", ");else a=JSON.stringify(e.test_metadata.kwargs.values);n.short="A",n.label="Accepted Values: "+a}else{var l=u.omit(e.test_metadata.kwargs,"column_name");n.short="+",n.label=t+"("+JSON.stringify(l)+")"}var c=e.depends_on.nodes,p=e.column_name||e.test_metadata.kwargs.column_name||e.test_metadata.kwargs.arg;if(c.length&&p){if("relationships"==e.test_metadata.name)var f=c[c.length-1];else f=c[0];var h=o.nodes[f],g=d(o.metadata),m=u.find(h.columns,(function(e,t){let n=p;return p.startsWith(g)&&p.endsWith(g)&&(n=p.substring(1,p.length-1)),t.toLowerCase()==n.toLowerCase()}));m&&(m.tests=m.tests||[],m.tests.push(n))}}})),r.project=o;var c=u.filter(r.project.macros,(function(e){return!e.is_adapter_macro_impl})),p=u.filter(r.project.nodes,(function(e){return u.includes(["model","source","seed","snapshot","analysis","exposure","metric","semantic_model"],e.resource_type)}));r.project.searchable=u.filter(p.concat(c),(function(e){return!e.docs||e.docs.show})),r.loaded.resolve()}))},r.ready=function(e){r.loaded.promise.then((function(){e(r.project)}))},r.search=function(e){if(0==e.length)return u.map(r.project.searchable,(function(e){return{model:e,matches:[]}}));var t=[];return u.each(r.project.searchable,(function(n){var r=function(e,t){var n=[],r={name:"string",description:"string",raw_code:"string",columns:"object",column_description:"n/a",tags:"array",arguments:"array",label:"string"};let i=u.words(e.toLowerCase());for(var o in r)if("column_description"===o)for(var a in t.columns)null!=t.columns[a].description&&i.every(e=>-1!=t.columns[a].description.toLowerCase().indexOf(e))&&n.push({key:o,value:e});else{if(!t[o])continue;if("string"===r[o]&&i.every(e=>-1!=t[o].toLowerCase().indexOf(e)))n.push({key:o,value:e});else if("object"===r[o])for(var a in t[o])null!=t[o][a].name&&i.every(e=>-1!=t[o][a].name.toLowerCase().indexOf(e))&&n.push({key:o,value:e});else if("array"===r[o])for(var s of t[o])i.every(e=>-1!=JSON.stringify(s).toLowerCase().indexOf(e))&&n.push({key:o,value:e})}return n}(e,n);r.length&&t.push({model:n,matches:r})})),t},r.getModelTree=function(e,t){r.loaded.promise.then((function(){var n=u.values(r.project.macros),i=u.filter(r.project.nodes,(function(e){if("test"==e.resource_type&&!e.hasOwnProperty("test_metadata"))return!0;return u.includes(["snapshot","source","seed","model","analysis","exposure","metric","semantic_model"],e.resource_type)}));r.tree.database=function(e,t){var n={},r=u.filter(e,(function(e){return!!u.get(e,["docs","show"],!0)&&(-1!=u.indexOf(["source","snapshot","seed"],e.resource_type)||("model"==e.resource_type?"ephemeral"!=e.config.materialized:void 0))})),i=u.sortBy(r,(function(e){return e.database+"."+e.schema+"."+(e.identifier||e.alias||e.name)})),o=u.groupBy(i,"database");return u.each(o,(function(e,r){var i={type:"database",name:r,active:!1,items:[]};n[r]=i;var o=u.groupBy(e,"schema");u.each(o,(function(e,n){n={type:"schema",name:n,active:!1,items:[]};i.items.push(n),u.each(e,(function(e){var r=e.unique_id==t;r&&(i.active=!0,n.active=!0),n.items.push({type:"table",name:e.identifier||e.alias||e.name,node:e,active:r,unique_id:e.unique_id,node_type:"model"})}))}))})),n}(i,e),r.tree.groups=function(e,t){var n={};u.each(e,(function(e){const r=u.get(e,["docs","show"],!0);if(!(e.resource_type in["source","exposure","seed","macro"])&&r&&"private"!==e.access){if("model"==e.resource_type&&null!=e.version)var i=e.name+"_v"+e.version;else i=e.name;var o="protected"===e.access?i+" (protected)":i,a=e.group,s=e.unique_id==t;n[a]?s&&(n[a].active=!0):n[a]={type:"group",name:a,active:s,items:[]},n[a].items.push({type:"file",name:o,node:e,active:s,unique_id:e.unique_id,node_type:"model"})}}));n=u.sortBy(u.values(n),"name");return u.each(n,(function(e){e.items=u.sortBy(e.items,"name")})),n}(i,e),r.tree.project=function(e,t,n){var r={};e=e||[],t=t||[];return u.each(e.concat(t),(function(e){var t=u.get(e,["docs","show"],!0);if("source"!=e.resource_type&&"exposure"!=e.resource_type&&"metric"!=e.resource_type&&"semantic_model"!=e.resource_type&&t){if(-1!=e.original_file_path.indexOf("\\"))var i=e.original_file_path.split("\\");else i=e.original_file_path.split("/");var o=[e.package_name].concat(i),a=e.unique_id==n,s=u.initial(o);if("macro"==e.resource_type)var l=e.name;else l=u.last(o);if("model"==e.resource_type&&null!=e.version)var c=e.name+"_v"+e.version;else c=e.name;var d=r;u.each(s,(function(e){d[e]?a&&(d[e].active=!0):d[e]={type:"folder",name:e,active:a,items:{}},d=d[e].items})),d[l]={type:"file",name:c,node:e,active:a,unique_id:e.unique_id,node_type:e.resource_type}}})),function e(t){var n=[],r=u.values(t);return u.each(r,(function(t){if(t.items){var r=e(t.items),i=u.sortBy(r,"name");t.items=i}n.push(t)})),n}(r)}(i,n,e);var o=u.values(r.project.sources);r.tree.sources=function(e,t){var n={};u.each(e,(function(e){var r=e.source_name,i=e.name,o=e.unique_id==t;n[r]?o&&(n[r].active=!0):n[r]={type:"folder",name:r,active:o,items:[]},n[r].items.push({type:"file",name:i,node:e,active:o,unique_id:e.unique_id,node_type:"source"})}));n=u.sortBy(u.values(n),"name");return u.each(n,(function(e){e.items=u.sortBy(e.items,"name")})),n}(o,e);var a=u.values(r.project.exposures);r.tree.exposures=function(e,t){var n={};u.each(e,(function(e){e.name;var r=e.type||"Uncategorized";r=function(e){var t={ml:"ML"};return t.hasOwnProperty(e)?t[e]:e.charAt(0).toUpperCase()+e.slice(1)}(r);var i=e.unique_id==t;n[r]?i&&(n[r].active=!0):n[r]={type:"folder",name:r,active:i,items:[]},n[r].items.push({type:"file",name:e.label,node:e,active:i,unique_id:e.unique_id,node_type:"exposure"})}));n=u.sortBy(u.values(n),"name");return u.each(n,(function(e){e.items=u.sortBy(e.items,"name")})),n}(a,e);var s=u.values(r.project.metrics);r.tree.metrics=function(e,t){var n={};u.each(e,(function(e){e.name;var r=e.package_name,i=e.unique_id==t;n[r]?i&&(n[r].active=!0):n[r]={type:"folder",name:r,active:i,items:[]},n[r].items.push({type:"file",name:e.label,node:e,active:i,unique_id:e.unique_id,node_type:"metric"})}));n=u.sortBy(u.values(n),"name");return u.each(n,(function(e){n.items=u.sortBy(n.items,"name")})),n}(s,e);var l=u.values(r.project.semantic_models);r.tree.semantic_models=function(e,t){var n={};u.each(e,(function(e){e.name;var r=e.package_name,i=e.unique_id==t;n[r]?i&&(n[r].active=!0):n[r]={type:"folder",name:r,active:i,items:[]},n[r].items.push({type:"file",name:e.name,node:e,active:i,unique_id:e.unique_id,node_type:"semantic_model"})}));n=u.sortBy(u.values(n),"name");return u.each(n,(function(e){n.items=u.sortBy(n.items,"name")})),n}(l,e),t(r.tree)}))},r.updateSelectedInTree=function(e,t){var n=!1;return u.each(t,(function(t){if(t.node&&t.node.unique_id==e)t.active=!0,n=!0;else if(t.node&&t.node.unique_id!=e)t.active=!1;else{r.updateSelectedInTree(e,t.items)&&(t.active=!0,n=!0)}})),n},r.updateSelected=function(e){return r.updateSelectedInTree(e,r.tree.project),r.updateSelectedInTree(e,r.tree.database),r.updateSelectedInTree(e,r.tree.groups),r.updateSelectedInTree(e,r.tree.sources),r.updateSelectedInTree(e,r.tree.exposures),r.updateSelectedInTree(e,r.tree.metrics),r.updateSelectedInTree(e,r.tree.semantic_models),r.tree},r.caseColumn=function(e){return"snowflake"==r.project.metadata.adapter_type&&e.toUpperCase()==e?e.toLowerCase():e},r.init=function(){r.loadProject()},r}])},function(e,t,n){const r=n(9);n(209),n(230),n(445),n(458),n(459),n(479),n(480),n(481),r.module("dbt").run(["$rootScope","$state","$stateParams",function(e,t,n){e.$state=t,e.$stateParams=n}])},function(e,t){ /** * @license AngularJS v1.8.2 * (c) 2010-2020 Google LLC. http://angularjs.org diff --git a/docs/manifest.json b/docs/manifest.json index 3cc3087..96d6d91 100644 --- a/docs/manifest.json +++ b/docs/manifest.json @@ -1 +1 @@ -{"metadata": {"dbt_schema_version": "https://schemas.getdbt.com/dbt/manifest/v11.json", "dbt_version": "1.7.10", "generated_at": "2024-03-22T19:55:37.812119Z", "invocation_id": "a8724f2c-3ab8-47dc-a85e-17ac333dfaf6", "env": {}, "project_name": "qualtrics_source_integration_tests", "project_id": "f8c66442b86c1e62c08fef3963ad8f25", "user_id": "8929baf0-9bc1-477e-9a57-eb8b0db4da62", "send_anonymous_usage_stats": true, "adapter_type": "postgres"}, "nodes": {"seed.qualtrics_source_integration_tests.distribution": {"database": "postgres", "schema": "qualtrics_source_integration_tests", "name": "distribution", "resource_type": "seed", "package_name": "qualtrics_source_integration_tests", "path": "distribution.csv", "original_file_path": "seeds/distribution.csv", "unique_id": "seed.qualtrics_source_integration_tests.distribution", "fqn": ["qualtrics_source_integration_tests", "distribution"], "alias": "distribution", "checksum": {"name": "sha256", "checksum": "47c99b95aec1d99559f3452fc4cc5fd7f37388a360e0a9b711482b1ebb86c42a"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": [], "meta": {}, "group": null, "materialized": "seed", "incremental_strategy": null, "persist_docs": {}, "post-hook": [], "pre-hook": [], "quoting": {}, "column_types": {"_fivetran_synced": "timestamp", "directory_unsubscribe_date": "timestamp", "response_completed_at": "timestamp", "last_accessed": "timestamp", "account_creation_date": "timestamp", "response_started_at": "timestamp", "account_expiration_date": "timestamp", "last_login_date": "timestamp", "password_expiration_date": "timestamp", "password_last_changed_date": "timestamp"}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "on_configuration_change": "apply", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false, "alias_types": true}, "delimiter": ",", "quote_columns": null}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"column_types": {"_fivetran_synced": "timestamp", "directory_unsubscribe_date": "timestamp", "response_completed_at": "timestamp", "last_accessed": "timestamp", "account_creation_date": "timestamp", "response_started_at": "timestamp", "account_expiration_date": "timestamp", "last_login_date": "timestamp", "password_expiration_date": "timestamp", "password_last_changed_date": "timestamp"}}, "created_at": 1711137323.408103, "relation_name": "\"postgres\".\"qualtrics_source_integration_tests\".\"distribution\"", "raw_code": "", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/qualtrics/dbt_qualtrics_source/integration_tests", "depends_on": {"macros": []}}, "seed.qualtrics_source_integration_tests.distribution_contact": {"database": "postgres", "schema": "qualtrics_source_integration_tests", "name": "distribution_contact", "resource_type": "seed", "package_name": "qualtrics_source_integration_tests", "path": "distribution_contact.csv", "original_file_path": "seeds/distribution_contact.csv", "unique_id": "seed.qualtrics_source_integration_tests.distribution_contact", "fqn": ["qualtrics_source_integration_tests", "distribution_contact"], "alias": "distribution_contact", "checksum": {"name": "sha256", "checksum": "9dda62fde0e6eb45349f5f1e5a75d67bd0c907de6f8a60a9ddfa5fbb6da305e7"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": [], "meta": {}, "group": null, "materialized": "seed", "incremental_strategy": null, "persist_docs": {}, "post-hook": [], "pre-hook": [], "quoting": {}, "column_types": {"_fivetran_synced": "timestamp", "directory_unsubscribe_date": "timestamp", "response_completed_at": "timestamp", "last_accessed": "timestamp", "account_creation_date": "timestamp", "response_started_at": "timestamp", "account_expiration_date": "timestamp", "last_login_date": "timestamp", "password_expiration_date": "timestamp", "password_last_changed_date": "timestamp"}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "on_configuration_change": "apply", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false, "alias_types": true}, "delimiter": ",", "quote_columns": null}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"column_types": {"_fivetran_synced": "timestamp", "directory_unsubscribe_date": "timestamp", "response_completed_at": "timestamp", "last_accessed": "timestamp", "account_creation_date": "timestamp", "response_started_at": "timestamp", "account_expiration_date": "timestamp", "last_login_date": "timestamp", "password_expiration_date": "timestamp", "password_last_changed_date": "timestamp"}}, "created_at": 1711137323.4170492, "relation_name": "\"postgres\".\"qualtrics_source_integration_tests\".\"distribution_contact\"", "raw_code": "", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/qualtrics/dbt_qualtrics_source/integration_tests", "depends_on": {"macros": []}}, "seed.qualtrics_source_integration_tests.block": {"database": "postgres", "schema": "qualtrics_source_integration_tests", "name": "block", "resource_type": "seed", "package_name": "qualtrics_source_integration_tests", "path": "block.csv", "original_file_path": "seeds/block.csv", "unique_id": "seed.qualtrics_source_integration_tests.block", "fqn": ["qualtrics_source_integration_tests", "block"], "alias": "block", "checksum": {"name": "sha256", "checksum": "1cc8b955a20da56ec183f1f3d633f7c45e2473fa1fa3d99efe8a0286e98fce54"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": [], "meta": {}, "group": null, "materialized": "seed", "incremental_strategy": null, "persist_docs": {}, "post-hook": [], "pre-hook": [], "quoting": {}, "column_types": {"_fivetran_synced": "timestamp", "directory_unsubscribe_date": "timestamp", "response_completed_at": "timestamp", "last_accessed": "timestamp", "account_creation_date": "timestamp", "response_started_at": "timestamp", "account_expiration_date": "timestamp", "last_login_date": "timestamp", "password_expiration_date": "timestamp", "password_last_changed_date": "timestamp"}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "on_configuration_change": "apply", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false, "alias_types": true}, "delimiter": ",", "quote_columns": null}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"column_types": {"_fivetran_synced": "timestamp", "directory_unsubscribe_date": "timestamp", "response_completed_at": "timestamp", "last_accessed": "timestamp", "account_creation_date": "timestamp", "response_started_at": "timestamp", "account_expiration_date": "timestamp", "last_login_date": "timestamp", "password_expiration_date": "timestamp", "password_last_changed_date": "timestamp"}}, "created_at": 1711137323.418612, "relation_name": "\"postgres\".\"qualtrics_source_integration_tests\".\"block\"", "raw_code": "", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/qualtrics/dbt_qualtrics_source/integration_tests", "depends_on": {"macros": []}}, "seed.qualtrics_source_integration_tests.directory_mailing_list": {"database": "postgres", "schema": "qualtrics_source_integration_tests", "name": "directory_mailing_list", "resource_type": "seed", "package_name": "qualtrics_source_integration_tests", "path": "directory_mailing_list.csv", "original_file_path": "seeds/directory_mailing_list.csv", "unique_id": "seed.qualtrics_source_integration_tests.directory_mailing_list", "fqn": ["qualtrics_source_integration_tests", "directory_mailing_list"], "alias": "directory_mailing_list", "checksum": {"name": "sha256", "checksum": "1da1143af777eff994bc0a11da768609597bbc4110e2e440054030e2d82381e3"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": [], "meta": {}, "group": null, "materialized": "seed", "incremental_strategy": null, "persist_docs": {}, "post-hook": [], "pre-hook": [], "quoting": {}, "column_types": {"_fivetran_synced": "timestamp", "directory_unsubscribe_date": "timestamp", "response_completed_at": "timestamp", "last_accessed": "timestamp", "account_creation_date": "timestamp", "response_started_at": "timestamp", "account_expiration_date": "timestamp", "last_login_date": "timestamp", "password_expiration_date": "timestamp", "password_last_changed_date": "timestamp"}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "on_configuration_change": "apply", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false, "alias_types": true}, "delimiter": ",", "quote_columns": null}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"column_types": {"_fivetran_synced": "timestamp", "directory_unsubscribe_date": "timestamp", "response_completed_at": "timestamp", "last_accessed": "timestamp", "account_creation_date": "timestamp", "response_started_at": "timestamp", "account_expiration_date": "timestamp", "last_login_date": "timestamp", "password_expiration_date": "timestamp", "password_last_changed_date": "timestamp"}}, "created_at": 1711137323.4200919, "relation_name": "\"postgres\".\"qualtrics_source_integration_tests\".\"directory_mailing_list\"", "raw_code": "", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/qualtrics/dbt_qualtrics_source/integration_tests", "depends_on": {"macros": []}}, "seed.qualtrics_source_integration_tests.survey_response": {"database": "postgres", "schema": "qualtrics_source_integration_tests", "name": "survey_response", "resource_type": "seed", "package_name": "qualtrics_source_integration_tests", "path": "survey_response.csv", "original_file_path": "seeds/survey_response.csv", "unique_id": "seed.qualtrics_source_integration_tests.survey_response", "fqn": ["qualtrics_source_integration_tests", "survey_response"], "alias": "survey_response", "checksum": {"name": "sha256", "checksum": "f0ecc402b589e750cd8642f460f3714ba599e24c23b7362a8ee46d10d8ff33b3"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": [], "meta": {}, "group": null, "materialized": "seed", "incremental_strategy": null, "persist_docs": {}, "post-hook": [], "pre-hook": [], "quoting": {}, "column_types": {"_fivetran_synced": "timestamp", "directory_unsubscribe_date": "timestamp", "response_completed_at": "timestamp", "last_accessed": "timestamp", "account_creation_date": "timestamp", "response_started_at": "timestamp", "account_expiration_date": "timestamp", "last_login_date": "timestamp", "password_expiration_date": "timestamp", "password_last_changed_date": "timestamp"}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "on_configuration_change": "apply", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false, "alias_types": true}, "delimiter": ",", "quote_columns": null}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"column_types": {"_fivetran_synced": "timestamp", "directory_unsubscribe_date": "timestamp", "response_completed_at": "timestamp", "last_accessed": "timestamp", "account_creation_date": "timestamp", "response_started_at": "timestamp", "account_expiration_date": "timestamp", "last_login_date": "timestamp", "password_expiration_date": "timestamp", "password_last_changed_date": "timestamp"}}, "created_at": 1711137323.421692, "relation_name": "\"postgres\".\"qualtrics_source_integration_tests\".\"survey_response\"", "raw_code": "", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/qualtrics/dbt_qualtrics_source/integration_tests", "depends_on": {"macros": []}}, "seed.qualtrics_source_integration_tests.block_question": {"database": "postgres", "schema": "qualtrics_source_integration_tests", "name": "block_question", "resource_type": "seed", "package_name": "qualtrics_source_integration_tests", "path": "block_question.csv", "original_file_path": "seeds/block_question.csv", "unique_id": "seed.qualtrics_source_integration_tests.block_question", "fqn": ["qualtrics_source_integration_tests", "block_question"], "alias": "block_question", "checksum": {"name": "sha256", "checksum": "a6bdbf0193c2efce2f54809e544f71644c04ea5fe8a1011540cfbe887178eb08"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": [], "meta": {}, "group": null, "materialized": "seed", "incremental_strategy": null, "persist_docs": {}, "post-hook": [], "pre-hook": [], "quoting": {}, "column_types": {"_fivetran_synced": "timestamp", "directory_unsubscribe_date": "timestamp", "response_completed_at": "timestamp", "last_accessed": "timestamp", "account_creation_date": "timestamp", "response_started_at": "timestamp", "account_expiration_date": "timestamp", "last_login_date": "timestamp", "password_expiration_date": "timestamp", "password_last_changed_date": "timestamp"}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "on_configuration_change": "apply", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false, "alias_types": true}, "delimiter": ",", "quote_columns": null}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"column_types": {"_fivetran_synced": "timestamp", "directory_unsubscribe_date": "timestamp", "response_completed_at": "timestamp", "last_accessed": "timestamp", "account_creation_date": "timestamp", "response_started_at": "timestamp", "account_expiration_date": "timestamp", "last_login_date": "timestamp", "password_expiration_date": "timestamp", "password_last_changed_date": "timestamp"}}, "created_at": 1711137323.423163, "relation_name": "\"postgres\".\"qualtrics_source_integration_tests\".\"block_question\"", "raw_code": "", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/qualtrics/dbt_qualtrics_source/integration_tests", "depends_on": {"macros": []}}, "seed.qualtrics_source_integration_tests.contact_mailing_list_membership": {"database": "postgres", "schema": "qualtrics_source_integration_tests", "name": "contact_mailing_list_membership", "resource_type": "seed", "package_name": "qualtrics_source_integration_tests", "path": "contact_mailing_list_membership.csv", "original_file_path": "seeds/contact_mailing_list_membership.csv", "unique_id": "seed.qualtrics_source_integration_tests.contact_mailing_list_membership", "fqn": ["qualtrics_source_integration_tests", "contact_mailing_list_membership"], "alias": "contact_mailing_list_membership", "checksum": {"name": "sha256", "checksum": "d57cf827a74dbc4257deb30637437fc49fea45c68f50cf5ec5df30ea9004c55b"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": [], "meta": {}, "group": null, "materialized": "seed", "incremental_strategy": null, "persist_docs": {}, "post-hook": [], "pre-hook": [], "quoting": {}, "column_types": {"_fivetran_synced": "timestamp", "directory_unsubscribe_date": "timestamp", "response_completed_at": "timestamp", "last_accessed": "timestamp", "account_creation_date": "timestamp", "response_started_at": "timestamp", "account_expiration_date": "timestamp", "last_login_date": "timestamp", "password_expiration_date": "timestamp", "password_last_changed_date": "timestamp"}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "on_configuration_change": "apply", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false, "alias_types": true}, "delimiter": ",", "quote_columns": null}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"column_types": {"_fivetran_synced": "timestamp", "directory_unsubscribe_date": "timestamp", "response_completed_at": "timestamp", "last_accessed": "timestamp", "account_creation_date": "timestamp", "response_started_at": "timestamp", "account_expiration_date": "timestamp", "last_login_date": "timestamp", "password_expiration_date": "timestamp", "password_last_changed_date": "timestamp"}}, "created_at": 1711137323.424429, "relation_name": "\"postgres\".\"qualtrics_source_integration_tests\".\"contact_mailing_list_membership\"", "raw_code": "", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/qualtrics/dbt_qualtrics_source/integration_tests", "depends_on": {"macros": []}}, "seed.qualtrics_source_integration_tests.directory": {"database": "postgres", "schema": "qualtrics_source_integration_tests", "name": "directory", "resource_type": "seed", "package_name": "qualtrics_source_integration_tests", "path": "directory.csv", "original_file_path": "seeds/directory.csv", "unique_id": "seed.qualtrics_source_integration_tests.directory", "fqn": ["qualtrics_source_integration_tests", "directory"], "alias": "directory", "checksum": {"name": "sha256", "checksum": "221907c6a67c3b15b4fdbf640299e8ff3608e0c65af4d1c908545b66ed159ec1"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": [], "meta": {}, "group": null, "materialized": "seed", "incremental_strategy": null, "persist_docs": {}, "post-hook": [], "pre-hook": [], "quoting": {}, "column_types": {"_fivetran_synced": "timestamp", "directory_unsubscribe_date": "timestamp", "response_completed_at": "timestamp", "last_accessed": "timestamp", "account_creation_date": "timestamp", "response_started_at": "timestamp", "account_expiration_date": "timestamp", "last_login_date": "timestamp", "password_expiration_date": "timestamp", "password_last_changed_date": "timestamp"}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "on_configuration_change": "apply", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false, "alias_types": true}, "delimiter": ",", "quote_columns": null}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"column_types": {"_fivetran_synced": "timestamp", "directory_unsubscribe_date": "timestamp", "response_completed_at": "timestamp", "last_accessed": "timestamp", "account_creation_date": "timestamp", "response_started_at": "timestamp", "account_expiration_date": "timestamp", "last_login_date": "timestamp", "password_expiration_date": "timestamp", "password_last_changed_date": "timestamp"}}, "created_at": 1711137323.4256861, "relation_name": "\"postgres\".\"qualtrics_source_integration_tests\".\"directory\"", "raw_code": "", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/qualtrics/dbt_qualtrics_source/integration_tests", "depends_on": {"macros": []}}, "seed.qualtrics_source_integration_tests.question_response": {"database": "postgres", "schema": "qualtrics_source_integration_tests", "name": "question_response", "resource_type": "seed", "package_name": "qualtrics_source_integration_tests", "path": "question_response.csv", "original_file_path": "seeds/question_response.csv", "unique_id": "seed.qualtrics_source_integration_tests.question_response", "fqn": ["qualtrics_source_integration_tests", "question_response"], "alias": "question_response", "checksum": {"name": "sha256", "checksum": "4c2584fca86b3712ad4748130f395e21ba9391a1bc96cf657ff2bbb2dd353400"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": [], "meta": {}, "group": null, "materialized": "seed", "incremental_strategy": null, "persist_docs": {}, "post-hook": [], "pre-hook": [], "quoting": {}, "column_types": {"_fivetran_synced": "timestamp", "directory_unsubscribe_date": "timestamp", "response_completed_at": "timestamp", "last_accessed": "timestamp", "account_creation_date": "timestamp", "response_started_at": "timestamp", "account_expiration_date": "timestamp", "last_login_date": "timestamp", "password_expiration_date": "timestamp", "password_last_changed_date": "timestamp"}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "on_configuration_change": "apply", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false, "alias_types": true}, "delimiter": ",", "quote_columns": null}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"column_types": {"_fivetran_synced": "timestamp", "directory_unsubscribe_date": "timestamp", "response_completed_at": "timestamp", "last_accessed": "timestamp", "account_creation_date": "timestamp", "response_started_at": "timestamp", "account_expiration_date": "timestamp", "last_login_date": "timestamp", "password_expiration_date": "timestamp", "password_last_changed_date": "timestamp"}}, "created_at": 1711137323.427346, "relation_name": "\"postgres\".\"qualtrics_source_integration_tests\".\"question_response\"", "raw_code": "", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/qualtrics/dbt_qualtrics_source/integration_tests", "depends_on": {"macros": []}}, "seed.qualtrics_source_integration_tests.directory_contact": {"database": "postgres", "schema": "qualtrics_source_integration_tests", "name": "directory_contact", "resource_type": "seed", "package_name": "qualtrics_source_integration_tests", "path": "directory_contact.csv", "original_file_path": "seeds/directory_contact.csv", "unique_id": "seed.qualtrics_source_integration_tests.directory_contact", "fqn": ["qualtrics_source_integration_tests", "directory_contact"], "alias": "directory_contact", "checksum": {"name": "sha256", "checksum": "8b9865464b7e644bb92fe2f8929cc64391cc1ce0ebcc07ebd1fa599d50a63b89"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": [], "meta": {}, "group": null, "materialized": "seed", "incremental_strategy": null, "persist_docs": {}, "post-hook": [], "pre-hook": [], "quoting": {}, "column_types": {"_fivetran_synced": "timestamp", "directory_unsubscribe_date": "timestamp", "response_completed_at": "timestamp", "last_accessed": "timestamp", "account_creation_date": "timestamp", "response_started_at": "timestamp", "account_expiration_date": "timestamp", "last_login_date": "timestamp", "password_expiration_date": "timestamp", "password_last_changed_date": "timestamp", "phone": "varchar"}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "on_configuration_change": "apply", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false, "alias_types": true}, "delimiter": ",", "quote_columns": null}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"column_types": {"phone": "{{ 'string' if target.type in ['bigquery','spark','databricks'] else 'varchar' }}"}}, "created_at": 1711137323.4291258, "relation_name": "\"postgres\".\"qualtrics_source_integration_tests\".\"directory_contact\"", "raw_code": "", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/qualtrics/dbt_qualtrics_source/integration_tests", "depends_on": {"macros": []}}, "seed.qualtrics_source_integration_tests.sub_question": {"database": "postgres", "schema": "qualtrics_source_integration_tests", "name": "sub_question", "resource_type": "seed", "package_name": "qualtrics_source_integration_tests", "path": "sub_question.csv", "original_file_path": "seeds/sub_question.csv", "unique_id": "seed.qualtrics_source_integration_tests.sub_question", "fqn": ["qualtrics_source_integration_tests", "sub_question"], "alias": "sub_question", "checksum": {"name": "sha256", "checksum": "22dc12ba9c3510d14573c0a6eec4dea32ee541c2bbdca310bdf6febd27f5a2e1"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": [], "meta": {}, "group": null, "materialized": "seed", "incremental_strategy": null, "persist_docs": {}, "post-hook": [], "pre-hook": [], "quoting": {}, "column_types": {"_fivetran_synced": "timestamp", "directory_unsubscribe_date": "timestamp", "response_completed_at": "timestamp", "last_accessed": "timestamp", "account_creation_date": "timestamp", "response_started_at": "timestamp", "account_expiration_date": "timestamp", "last_login_date": "timestamp", "password_expiration_date": "timestamp", "password_last_changed_date": "timestamp"}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "on_configuration_change": "apply", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false, "alias_types": true}, "delimiter": ",", "quote_columns": null}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"column_types": {"_fivetran_synced": "timestamp", "directory_unsubscribe_date": "timestamp", "response_completed_at": "timestamp", "last_accessed": "timestamp", "account_creation_date": "timestamp", "response_started_at": "timestamp", "account_expiration_date": "timestamp", "last_login_date": "timestamp", "password_expiration_date": "timestamp", "password_last_changed_date": "timestamp"}}, "created_at": 1711137323.430629, "relation_name": "\"postgres\".\"qualtrics_source_integration_tests\".\"sub_question\"", "raw_code": "", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/qualtrics/dbt_qualtrics_source/integration_tests", "depends_on": {"macros": []}}, "seed.qualtrics_source_integration_tests.survey_version": {"database": "postgres", "schema": "qualtrics_source_integration_tests", "name": "survey_version", "resource_type": "seed", "package_name": "qualtrics_source_integration_tests", "path": "survey_version.csv", "original_file_path": "seeds/survey_version.csv", "unique_id": "seed.qualtrics_source_integration_tests.survey_version", "fqn": ["qualtrics_source_integration_tests", "survey_version"], "alias": "survey_version", "checksum": {"name": "sha256", "checksum": "e62bb692f7cbb579d1e3ef22873840a5d1e27168fbb795fda6bc4a401fe6924d"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": [], "meta": {}, "group": null, "materialized": "seed", "incremental_strategy": null, "persist_docs": {}, "post-hook": [], "pre-hook": [], "quoting": {}, "column_types": {"_fivetran_synced": "timestamp", "directory_unsubscribe_date": "timestamp", "response_completed_at": "timestamp", "last_accessed": "timestamp", "account_creation_date": "timestamp", "response_started_at": "timestamp", "account_expiration_date": "timestamp", "last_login_date": "timestamp", "password_expiration_date": "timestamp", "password_last_changed_date": "timestamp"}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "on_configuration_change": "apply", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false, "alias_types": true}, "delimiter": ",", "quote_columns": null}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"column_types": {"_fivetran_synced": "timestamp", "directory_unsubscribe_date": "timestamp", "response_completed_at": "timestamp", "last_accessed": "timestamp", "account_creation_date": "timestamp", "response_started_at": "timestamp", "account_expiration_date": "timestamp", "last_login_date": "timestamp", "password_expiration_date": "timestamp", "password_last_changed_date": "timestamp"}}, "created_at": 1711137323.4319518, "relation_name": "\"postgres\".\"qualtrics_source_integration_tests\".\"survey_version\"", "raw_code": "", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/qualtrics/dbt_qualtrics_source/integration_tests", "depends_on": {"macros": []}}, "seed.qualtrics_source_integration_tests.user": {"database": "postgres", "schema": "qualtrics_source_integration_tests", "name": "user", "resource_type": "seed", "package_name": "qualtrics_source_integration_tests", "path": "user.csv", "original_file_path": "seeds/user.csv", "unique_id": "seed.qualtrics_source_integration_tests.user", "fqn": ["qualtrics_source_integration_tests", "user"], "alias": "user", "checksum": {"name": "sha256", "checksum": "9ce3e39e5b7abfdb378d2f45164add5a4969c2f46e80c9c306895259e9fc384e"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": [], "meta": {}, "group": null, "materialized": "seed", "incremental_strategy": null, "persist_docs": {}, "post-hook": [], "pre-hook": [], "quoting": {}, "column_types": {"_fivetran_synced": "timestamp", "directory_unsubscribe_date": "timestamp", "response_completed_at": "timestamp", "last_accessed": "timestamp", "account_creation_date": "timestamp", "response_started_at": "timestamp", "account_expiration_date": "timestamp", "last_login_date": "timestamp", "password_expiration_date": "timestamp", "password_last_changed_date": "timestamp"}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "on_configuration_change": "apply", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false, "alias_types": true}, "delimiter": ",", "quote_columns": null}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"column_types": {"_fivetran_synced": "timestamp", "directory_unsubscribe_date": "timestamp", "response_completed_at": "timestamp", "last_accessed": "timestamp", "account_creation_date": "timestamp", "response_started_at": "timestamp", "account_expiration_date": "timestamp", "last_login_date": "timestamp", "password_expiration_date": "timestamp", "password_last_changed_date": "timestamp"}}, "created_at": 1711137323.433239, "relation_name": "\"postgres\".\"qualtrics_source_integration_tests\".\"user\"", "raw_code": "", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/qualtrics/dbt_qualtrics_source/integration_tests", "depends_on": {"macros": []}}, "seed.qualtrics_source_integration_tests.survey": {"database": "postgres", "schema": "qualtrics_source_integration_tests", "name": "survey", "resource_type": "seed", "package_name": "qualtrics_source_integration_tests", "path": "survey.csv", "original_file_path": "seeds/survey.csv", "unique_id": "seed.qualtrics_source_integration_tests.survey", "fqn": ["qualtrics_source_integration_tests", "survey"], "alias": "survey", "checksum": {"name": "sha256", "checksum": "8061b3f8a96dc4c4c1a753ef22ade8e1a13f675b88c54049a30786cae350d491"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": [], "meta": {}, "group": null, "materialized": "seed", "incremental_strategy": null, "persist_docs": {}, "post-hook": [], "pre-hook": [], "quoting": {}, "column_types": {"_fivetran_synced": "timestamp", "directory_unsubscribe_date": "timestamp", "response_completed_at": "timestamp", "last_accessed": "timestamp", "account_creation_date": "timestamp", "response_started_at": "timestamp", "account_expiration_date": "timestamp", "last_login_date": "timestamp", "password_expiration_date": "timestamp", "password_last_changed_date": "timestamp"}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "on_configuration_change": "apply", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false, "alias_types": true}, "delimiter": ",", "quote_columns": null}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"column_types": {"_fivetran_synced": "timestamp", "directory_unsubscribe_date": "timestamp", "response_completed_at": "timestamp", "last_accessed": "timestamp", "account_creation_date": "timestamp", "response_started_at": "timestamp", "account_expiration_date": "timestamp", "last_login_date": "timestamp", "password_expiration_date": "timestamp", "password_last_changed_date": "timestamp"}}, "created_at": 1711137323.4344802, "relation_name": "\"postgres\".\"qualtrics_source_integration_tests\".\"survey\"", "raw_code": "", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/qualtrics/dbt_qualtrics_source/integration_tests", "depends_on": {"macros": []}}, "seed.qualtrics_source_integration_tests.survey_embedded_data": {"database": "postgres", "schema": "qualtrics_source_integration_tests", "name": "survey_embedded_data", "resource_type": "seed", "package_name": "qualtrics_source_integration_tests", "path": "survey_embedded_data.csv", "original_file_path": "seeds/survey_embedded_data.csv", "unique_id": "seed.qualtrics_source_integration_tests.survey_embedded_data", "fqn": ["qualtrics_source_integration_tests", "survey_embedded_data"], "alias": "survey_embedded_data", "checksum": {"name": "sha256", "checksum": "db8403da03e8b1a23a82e7c155e7b6cab6eeb98908365d908001caeb05761928"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": [], "meta": {}, "group": null, "materialized": "seed", "incremental_strategy": null, "persist_docs": {}, "post-hook": [], "pre-hook": [], "quoting": {}, "column_types": {"_fivetran_synced": "timestamp", "directory_unsubscribe_date": "timestamp", "response_completed_at": "timestamp", "last_accessed": "timestamp", "account_creation_date": "timestamp", "response_started_at": "timestamp", "account_expiration_date": "timestamp", "last_login_date": "timestamp", "password_expiration_date": "timestamp", "password_last_changed_date": "timestamp"}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "on_configuration_change": "apply", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false, "alias_types": true}, "delimiter": ",", "quote_columns": null}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"column_types": {"_fivetran_synced": "timestamp", "directory_unsubscribe_date": "timestamp", "response_completed_at": "timestamp", "last_accessed": "timestamp", "account_creation_date": "timestamp", "response_started_at": "timestamp", "account_expiration_date": "timestamp", "last_login_date": "timestamp", "password_expiration_date": "timestamp", "password_last_changed_date": "timestamp"}}, "created_at": 1711137323.435879, "relation_name": "\"postgres\".\"qualtrics_source_integration_tests\".\"survey_embedded_data\"", "raw_code": "", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/qualtrics/dbt_qualtrics_source/integration_tests", "depends_on": {"macros": []}}, "seed.qualtrics_source_integration_tests.question_option": {"database": "postgres", "schema": "qualtrics_source_integration_tests", "name": "question_option", "resource_type": "seed", "package_name": "qualtrics_source_integration_tests", "path": "question_option.csv", "original_file_path": "seeds/question_option.csv", "unique_id": "seed.qualtrics_source_integration_tests.question_option", "fqn": ["qualtrics_source_integration_tests", "question_option"], "alias": "question_option", "checksum": {"name": "sha256", "checksum": "68524f01bb9943b2cb964157c395380944fae319e858ede27d67643898b7f564"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": [], "meta": {}, "group": null, "materialized": "seed", "incremental_strategy": null, "persist_docs": {}, "post-hook": [], "pre-hook": [], "quoting": {}, "column_types": {"_fivetran_synced": "timestamp", "directory_unsubscribe_date": "timestamp", "response_completed_at": "timestamp", "last_accessed": "timestamp", "account_creation_date": "timestamp", "response_started_at": "timestamp", "account_expiration_date": "timestamp", "last_login_date": "timestamp", "password_expiration_date": "timestamp", "password_last_changed_date": "timestamp"}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "on_configuration_change": "apply", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false, "alias_types": true}, "delimiter": ",", "quote_columns": null}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"column_types": {"_fivetran_synced": "timestamp", "directory_unsubscribe_date": "timestamp", "response_completed_at": "timestamp", "last_accessed": "timestamp", "account_creation_date": "timestamp", "response_started_at": "timestamp", "account_expiration_date": "timestamp", "last_login_date": "timestamp", "password_expiration_date": "timestamp", "password_last_changed_date": "timestamp"}}, "created_at": 1711137323.437553, "relation_name": "\"postgres\".\"qualtrics_source_integration_tests\".\"question_option\"", "raw_code": "", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/qualtrics/dbt_qualtrics_source/integration_tests", "depends_on": {"macros": []}}, "seed.qualtrics_source_integration_tests.question": {"database": "postgres", "schema": "qualtrics_source_integration_tests", "name": "question", "resource_type": "seed", "package_name": "qualtrics_source_integration_tests", "path": "question.csv", "original_file_path": "seeds/question.csv", "unique_id": "seed.qualtrics_source_integration_tests.question", "fqn": ["qualtrics_source_integration_tests", "question"], "alias": "question", "checksum": {"name": "sha256", "checksum": "45504344559dedc7a9620fbcd4d5f52c5bbc4e1da9c5edf5ab6892d82c0e1a94"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": [], "meta": {}, "group": null, "materialized": "seed", "incremental_strategy": null, "persist_docs": {}, "post-hook": [], "pre-hook": [], "quoting": {}, "column_types": {"_fivetran_synced": "timestamp", "directory_unsubscribe_date": "timestamp", "response_completed_at": "timestamp", "last_accessed": "timestamp", "account_creation_date": "timestamp", "response_started_at": "timestamp", "account_expiration_date": "timestamp", "last_login_date": "timestamp", "password_expiration_date": "timestamp", "password_last_changed_date": "timestamp"}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "on_configuration_change": "apply", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false, "alias_types": true}, "delimiter": ",", "quote_columns": null}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"column_types": {"_fivetran_synced": "timestamp", "directory_unsubscribe_date": "timestamp", "response_completed_at": "timestamp", "last_accessed": "timestamp", "account_creation_date": "timestamp", "response_started_at": "timestamp", "account_expiration_date": "timestamp", "last_login_date": "timestamp", "password_expiration_date": "timestamp", "password_last_changed_date": "timestamp"}}, "created_at": 1711137323.4389682, "relation_name": "\"postgres\".\"qualtrics_source_integration_tests\".\"question\"", "raw_code": "", "root_path": "/Users/joseph.markiewicz/Documents/dbt_packages/qualtrics/dbt_qualtrics_source/integration_tests", "depends_on": {"macros": []}}, "model.qualtrics_source.stg_qualtrics__survey": {"database": "postgres", "schema": "qualtrics_source_integration_tests_qualtrics_source", "name": "stg_qualtrics__survey", "resource_type": "model", "package_name": "qualtrics_source", "path": "stg_qualtrics__survey.sql", "original_file_path": "models/stg_qualtrics__survey.sql", "unique_id": "model.qualtrics_source.stg_qualtrics__survey", "fqn": ["qualtrics_source", "stg_qualtrics__survey"], "alias": "stg_qualtrics__survey", "checksum": {"name": "sha256", "checksum": "cbb35dfc1e3a2a0c938e066404d8b9baf0cb72d76f465ea13a806ede28db1fc5"}, "config": {"enabled": true, "alias": null, "schema": "qualtrics_source", "database": null, "tags": ["qualtrics", "fivetran_package", "staging"], "meta": {}, "group": null, "materialized": "table", "incremental_strategy": null, "persist_docs": {}, "post-hook": [], "pre-hook": [], "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "on_configuration_change": "apply", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false, "alias_types": true}, "access": "protected"}, "tags": ["qualtrics", "fivetran_package", "staging"], "description": "Qualtrics survey.", "columns": {"is_deleted": {"name": "is_deleted", "description": "Boolean representing whether the record was soft-deleted in Qualtrics.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "_fivetran_synced": {"name": "_fivetran_synced", "description": "The time when a record was last updated by Fivetran.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "auto_scoring_category": {"name": "auto_scoring_category", "description": "The automated scoring category.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "brand_base_url": {"name": "brand_base_url", "description": "Base url for the organization/brand.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "brand_id": {"name": "brand_id", "description": "Unique ID of the organization/brand.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "bundle_short_name": {"name": "bundle_short_name", "description": "Short name for the content bundle that the survey is from.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "composition_type": {"name": "composition_type", "description": "Survey composition type.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "creator_user_id": {"name": "creator_user_id", "description": "The unique identifier for a specific `USER` who created the survey.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "default_scoring_category": {"name": "default_scoring_category", "description": "The default scoring category.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "division_id": {"name": "division_id", "description": "The unique identifier for the Division ID. Match pattern = ^DV_[0-9a-zA-Z]{11,15}$", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "survey_id": {"name": "survey_id", "description": "The unique identifier for this survey. Match pattern = ^SV_[a-zA-Z0-9]{11,15}$", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "last_accessed_at": {"name": "last_accessed_at", "description": "The date the survey was last accessed.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "last_activated_at": {"name": "last_activated_at", "description": "The date the survey was last activated.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "last_modified_at": {"name": "last_modified_at", "description": "The point in time when the record was last modified.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "owner_user_id": {"name": "owner_user_id", "description": "The unique identifier for a specific user who owns this.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "project_category": {"name": "project_category", "description": "Project category of the survey.\n\nAllowed values - `CORE`, `CX`, `EX`, `BX`, `PX`", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "project_type": {"name": "project_type", "description": "Type of [Qualtrics project](https://www.qualtrics.com/support/survey-platform/my-projects/my-projects-overview/#SelectingProjectType). Match pattern = ^[a-zA-Z]+$", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "registry_sha": {"name": "registry_sha", "description": "The survey registry SHA.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "registry_version": {"name": "registry_version", "description": "The survey registry version.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "schema_version": {"name": "schema_version", "description": "Qualtrics schema version.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "scoring_summary_after_questions": {"name": "scoring_summary_after_questions", "description": "Boolean representing whether the scoring summary is after questions.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "scoring_summary_after_survey": {"name": "scoring_summary_after_survey", "description": "Boolean representing whether the scoring summary is after the survey.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "scoring_summary_category": {"name": "scoring_summary_category", "description": "The unique identifier for the scoring.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "survey_name": {"name": "survey_name", "description": "Name of the survey.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "survey_status": {"name": "survey_status", "description": "The distribution status of the survey, or a flag indicating that it's a library block\n\nAllowed values - `Inactive`, `Active`, `Pending`, `LibBlock`, `Deactive`, `Temporary`", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "source_relation": {"name": "source_relation", "description": "The schema or database this record came from if you are making use of the qualtrics_union_schemas or qualtrics_union_databases variables, respectively. Empty string if you are not using either of these variables to union together multiple Qualtrics connectors.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "qualtrics_source://models/stg_qualtrics.yml", "build_path": null, "deferred": false, "unrendered_config": {"tags": ["qualtrics", "fivetran_package", "staging"], "schema": "qualtrics_source", "materialized": "table"}, "created_at": 1711137323.965832, "relation_name": "\"postgres\".\"qualtrics_source_integration_tests_qualtrics_source\".\"stg_qualtrics__survey\"", "raw_code": "with base as (\n\n select * \n from {{ ref('stg_qualtrics__survey_tmp') }}\n),\n\nfields as (\n\n select\n {{\n fivetran_utils.fill_staging_columns(\n source_columns=adapter.get_columns_in_relation(ref('stg_qualtrics__survey_tmp')),\n staging_columns=get_survey_columns()\n )\n }}\n\n {{ fivetran_utils.source_relation(\n union_schema_variable='qualtrics_union_schemas', \n union_database_variable='qualtrics_union_databases') \n }}\n \n from base\n),\n\nfinal as (\n \n select \n id as survey_id,\n survey_name,\n survey_status,\n brand_base_url,\n brand_id,\n bundle_short_name,\n composition_type,\n auto_scoring_category,\n default_scoring_category,\n division_id,\n creator_id as creator_user_id,\n owner_id as owner_user_id,\n project_category,\n project_type,\n registry_sha,\n registry_version,\n schema_version,\n scoring_summary_after_questions,\n scoring_summary_after_survey,\n scoring_summary_category,\n cast(last_accessed as {{ dbt.type_timestamp() }}) as last_accessed_at,\n cast(last_activated as {{ dbt.type_timestamp() }}) as last_activated_at,\n cast(last_modified as {{ dbt.type_timestamp() }}) as last_modified_at,\n _fivetran_deleted as is_deleted,\n _fivetran_synced,\n source_relation\n\n {{ fivetran_utils.fill_pass_through_columns('qualtrics__survey_pass_through_columns') }}\n\n from fields\n)\n\nselect *\nfrom final", "language": "sql", "refs": [{"name": "stg_qualtrics__survey_tmp", "package": null, "version": null}, {"name": "stg_qualtrics__survey_tmp", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.qualtrics_source.get_survey_columns", "macro.fivetran_utils.fill_staging_columns", "macro.fivetran_utils.source_relation", "macro.dbt.type_timestamp", "macro.fivetran_utils.fill_pass_through_columns"], "nodes": ["model.qualtrics_source.stg_qualtrics__survey_tmp"]}, "compiled_path": "target/compiled/qualtrics_source/models/stg_qualtrics__survey.sql", "compiled": true, "compiled_code": "with base as (\n\n select * \n from \"postgres\".\"qualtrics_source_integration_tests_qualtrics_source\".\"stg_qualtrics__survey_tmp\"\n),\n\nfields as (\n\n select\n \n \n \n _fivetran_deleted\n \n as \n \n _fivetran_deleted\n \n, \n \n \n _fivetran_synced\n \n as \n \n _fivetran_synced\n \n, \n \n \n auto_scoring_category\n \n as \n \n auto_scoring_category\n \n, \n \n \n brand_base_url\n \n as \n \n brand_base_url\n \n, \n \n \n brand_id\n \n as \n \n brand_id\n \n, \n \n \n bundle_short_name\n \n as \n \n bundle_short_name\n \n, \n \n \n composition_type\n \n as \n \n composition_type\n \n, \n \n \n creator_id\n \n as \n \n creator_id\n \n, \n \n \n default_scoring_category\n \n as \n \n default_scoring_category\n \n, \n \n \n division_id\n \n as \n \n division_id\n \n, \n \n \n id\n \n as \n \n id\n \n, \n \n \n last_accessed\n \n as \n \n last_accessed\n \n, \n \n \n last_activated\n \n as \n \n last_activated\n \n, \n \n \n last_modified\n \n as \n \n last_modified\n \n, \n \n \n owner_id\n \n as \n \n owner_id\n \n, \n \n \n project_category\n \n as \n \n project_category\n \n, \n \n \n project_type\n \n as \n \n project_type\n \n, \n \n \n registry_sha\n \n as \n \n registry_sha\n \n, \n \n \n registry_version\n \n as \n \n registry_version\n \n, \n \n \n schema_version\n \n as \n \n schema_version\n \n, \n \n \n scoring_summary_after_questions\n \n as \n \n scoring_summary_after_questions\n \n, \n \n \n scoring_summary_after_survey\n \n as \n \n scoring_summary_after_survey\n \n, \n \n \n scoring_summary_category\n \n as \n \n scoring_summary_category\n \n, \n \n \n survey_name\n \n as \n \n survey_name\n \n, \n \n \n survey_status\n \n as \n \n survey_status\n \n\n\n\n\n \n\n\n, cast('' as TEXT) as source_relation\n\n\n\n \n from base\n),\n\nfinal as (\n \n select \n id as survey_id,\n survey_name,\n survey_status,\n brand_base_url,\n brand_id,\n bundle_short_name,\n composition_type,\n auto_scoring_category,\n default_scoring_category,\n division_id,\n creator_id as creator_user_id,\n owner_id as owner_user_id,\n project_category,\n project_type,\n registry_sha,\n registry_version,\n schema_version,\n scoring_summary_after_questions,\n scoring_summary_after_survey,\n scoring_summary_category,\n cast(last_accessed as timestamp) as last_accessed_at,\n cast(last_activated as timestamp) as last_activated_at,\n cast(last_modified as timestamp) as last_modified_at,\n _fivetran_deleted as is_deleted,\n _fivetran_synced,\n source_relation\n\n \n\n\n\n\n\n from fields\n)\n\nselect *\nfrom final", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "alias_types": true, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null, "deprecation_date": null}, "model.qualtrics_source.stg_qualtrics__block_question": {"database": "postgres", "schema": "qualtrics_source_integration_tests_qualtrics_source", "name": "stg_qualtrics__block_question", "resource_type": "model", "package_name": "qualtrics_source", "path": "stg_qualtrics__block_question.sql", "original_file_path": "models/stg_qualtrics__block_question.sql", "unique_id": "model.qualtrics_source.stg_qualtrics__block_question", "fqn": ["qualtrics_source", "stg_qualtrics__block_question"], "alias": "stg_qualtrics__block_question", "checksum": {"name": "sha256", "checksum": "9058b1a430fb1b6aea93f2c7b97324dd96ba56eab90265bbd4837bd7c29eecbd"}, "config": {"enabled": true, "alias": null, "schema": "qualtrics_source", "database": null, "tags": ["qualtrics", "fivetran_package", "staging"], "meta": {}, "group": null, "materialized": "table", "incremental_strategy": null, "persist_docs": {}, "post-hook": [], "pre-hook": [], "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "on_configuration_change": "apply", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false, "alias_types": true}, "access": "protected"}, "tags": ["qualtrics", "fivetran_package", "staging"], "description": "Table relating questions and blocks together.", "columns": {"is_deleted": {"name": "is_deleted", "description": "Boolean representing whether the record was soft-deleted in Qualtrics.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "_fivetran_synced": {"name": "_fivetran_synced", "description": "The time when a record was last updated by Fivetran.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "block_id": {"name": "block_id", "description": "The ID of the survey block. Match pattern = ^BL_[a-zA-Z0-9]{11,15}$", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "question_id": {"name": "question_id", "description": "The unique identifier for the question. Match pattern = ^QID[a-zA-Z0-9]+$", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "survey_id": {"name": "survey_id", "description": "The unique identifier for this survey. Match pattern = ^SV_[a-zA-Z0-9]{11,15}$", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "source_relation": {"name": "source_relation", "description": "The schema or database this record came from if you are making use of the qualtrics_union_schemas or qualtrics_union_databases variables, respectively. Empty string if you are not using either of these variables to union together multiple Qualtrics connectors.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "qualtrics_source://models/stg_qualtrics.yml", "build_path": null, "deferred": false, "unrendered_config": {"tags": ["qualtrics", "fivetran_package", "staging"], "schema": "qualtrics_source", "materialized": "table"}, "created_at": 1711137323.977526, "relation_name": "\"postgres\".\"qualtrics_source_integration_tests_qualtrics_source\".\"stg_qualtrics__block_question\"", "raw_code": "with base as (\n\n select * \n from {{ ref('stg_qualtrics__block_question_tmp') }}\n),\n\nfields as (\n\n select\n {{\n fivetran_utils.fill_staging_columns(\n source_columns=adapter.get_columns_in_relation(ref('stg_qualtrics__block_question_tmp')),\n staging_columns=get_block_question_columns()\n )\n }}\n\n {{ fivetran_utils.source_relation(\n union_schema_variable='qualtrics_union_schemas', \n union_database_variable='qualtrics_union_databases') \n }}\n\n from base\n),\n\nfinal as (\n \n select \n block_id,\n question_id,\n survey_id,\n _fivetran_deleted as is_deleted,\n _fivetran_synced,\n source_relation\n \n from fields\n)\n\nselect *\nfrom final", "language": "sql", "refs": [{"name": "stg_qualtrics__block_question_tmp", "package": null, "version": null}, {"name": "stg_qualtrics__block_question_tmp", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.qualtrics_source.get_block_question_columns", "macro.fivetran_utils.fill_staging_columns", "macro.fivetran_utils.source_relation"], "nodes": ["model.qualtrics_source.stg_qualtrics__block_question_tmp"]}, "compiled_path": "target/compiled/qualtrics_source/models/stg_qualtrics__block_question.sql", "compiled": true, "compiled_code": "with base as (\n\n select * \n from \"postgres\".\"qualtrics_source_integration_tests_qualtrics_source\".\"stg_qualtrics__block_question_tmp\"\n),\n\nfields as (\n\n select\n \n \n \n _fivetran_deleted\n \n as \n \n _fivetran_deleted\n \n, \n \n \n _fivetran_synced\n \n as \n \n _fivetran_synced\n \n, \n \n \n block_id\n \n as \n \n block_id\n \n, \n \n \n question_id\n \n as \n \n question_id\n \n, \n \n \n survey_id\n \n as \n \n survey_id\n \n\n\n\n\n \n\n\n, cast('' as TEXT) as source_relation\n\n\n\n\n from base\n),\n\nfinal as (\n \n select \n block_id,\n question_id,\n survey_id,\n _fivetran_deleted as is_deleted,\n _fivetran_synced,\n source_relation\n \n from fields\n)\n\nselect *\nfrom final", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "alias_types": true, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null, "deprecation_date": null}, "model.qualtrics_source.stg_qualtrics__question_option": {"database": "postgres", "schema": "qualtrics_source_integration_tests_qualtrics_source", "name": "stg_qualtrics__question_option", "resource_type": "model", "package_name": "qualtrics_source", "path": "stg_qualtrics__question_option.sql", "original_file_path": "models/stg_qualtrics__question_option.sql", "unique_id": "model.qualtrics_source.stg_qualtrics__question_option", "fqn": ["qualtrics_source", "stg_qualtrics__question_option"], "alias": "stg_qualtrics__question_option", "checksum": {"name": "sha256", "checksum": "b7f4a09e6ecbc2e72900e78ffe3bbd104183414ffda7453c5f5e620609ae40a4"}, "config": {"enabled": true, "alias": null, "schema": "qualtrics_source", "database": null, "tags": ["qualtrics", "fivetran_package", "staging"], "meta": {}, "group": null, "materialized": "table", "incremental_strategy": null, "persist_docs": {}, "post-hook": [], "pre-hook": [], "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "on_configuration_change": "apply", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false, "alias_types": true}, "access": "protected"}, "tags": ["qualtrics", "fivetran_package", "staging"], "description": "Choice options for survey questions.", "columns": {"is_deleted": {"name": "is_deleted", "description": "Boolean representing whether the record was soft-deleted in Qualtrics.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "_fivetran_synced": {"name": "_fivetran_synced", "description": "The time when a record was last updated by Fivetran.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "key": {"name": "key", "description": "The key of the `QUESTION_OPTION` that was chosen.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "question_id": {"name": "question_id", "description": "The unique identifier for the question. Match pattern = ^QID[a-zA-Z0-9]+$", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "recode_value": {"name": "recode_value", "description": "Recode/mapping value for the option.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "survey_id": {"name": "survey_id", "description": "The unique identifier for this survey. Match pattern = ^SV_[a-zA-Z0-9]{11,15}$", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "text": {"name": "text", "description": "Question option text.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "source_relation": {"name": "source_relation", "description": "The schema or database this record came from if you are making use of the qualtrics_union_schemas or qualtrics_union_databases variables, respectively. Empty string if you are not using either of these variables to union together multiple Qualtrics connectors.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "qualtrics_source://models/stg_qualtrics.yml", "build_path": null, "deferred": false, "unrendered_config": {"tags": ["qualtrics", "fivetran_package", "staging"], "schema": "qualtrics_source", "materialized": "table"}, "created_at": 1711137323.970915, "relation_name": "\"postgres\".\"qualtrics_source_integration_tests_qualtrics_source\".\"stg_qualtrics__question_option\"", "raw_code": "with base as (\n\n select * \n from {{ ref('stg_qualtrics__question_option_tmp') }}\n),\n\nfields as (\n\n select\n {{\n fivetran_utils.fill_staging_columns(\n source_columns=adapter.get_columns_in_relation(ref('stg_qualtrics__question_option_tmp')),\n staging_columns=get_question_option_columns()\n )\n }}\n\n {{ fivetran_utils.source_relation(\n union_schema_variable='qualtrics_union_schemas', \n union_database_variable='qualtrics_union_databases') \n }}\n \n from base\n),\n\nfinal as (\n \n select \n question_id,\n survey_id,\n key,\n recode_value,\n text,\n _fivetran_deleted as is_deleted,\n _fivetran_synced,\n source_relation\n \n from fields\n)\n\nselect *\nfrom final", "language": "sql", "refs": [{"name": "stg_qualtrics__question_option_tmp", "package": null, "version": null}, {"name": "stg_qualtrics__question_option_tmp", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.qualtrics_source.get_question_option_columns", "macro.fivetran_utils.fill_staging_columns", "macro.fivetran_utils.source_relation"], "nodes": ["model.qualtrics_source.stg_qualtrics__question_option_tmp"]}, "compiled_path": "target/compiled/qualtrics_source/models/stg_qualtrics__question_option.sql", "compiled": true, "compiled_code": "with base as (\n\n select * \n from \"postgres\".\"qualtrics_source_integration_tests_qualtrics_source\".\"stg_qualtrics__question_option_tmp\"\n),\n\nfields as (\n\n select\n \n \n \n _fivetran_deleted\n \n as \n \n _fivetran_deleted\n \n, \n \n \n _fivetran_synced\n \n as \n \n _fivetran_synced\n \n, \n \n \n key\n \n as \n \n key\n \n, \n \n \n question_id\n \n as \n \n question_id\n \n, \n \n \n recode_value\n \n as \n \n recode_value\n \n, \n \n \n survey_id\n \n as \n \n survey_id\n \n, \n \n \n text\n \n as \n \n text\n \n\n\n\n\n \n\n\n, cast('' as TEXT) as source_relation\n\n\n\n \n from base\n),\n\nfinal as (\n \n select \n question_id,\n survey_id,\n key,\n recode_value,\n text,\n _fivetran_deleted as is_deleted,\n _fivetran_synced,\n source_relation\n \n from fields\n)\n\nselect *\nfrom final", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "alias_types": true, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null, "deprecation_date": null}, "model.qualtrics_source.stg_qualtrics__contact_mailing_list_membership": {"database": "postgres", "schema": "qualtrics_source_integration_tests_qualtrics_source", "name": "stg_qualtrics__contact_mailing_list_membership", "resource_type": "model", "package_name": "qualtrics_source", "path": "stg_qualtrics__contact_mailing_list_membership.sql", "original_file_path": "models/stg_qualtrics__contact_mailing_list_membership.sql", "unique_id": "model.qualtrics_source.stg_qualtrics__contact_mailing_list_membership", "fqn": ["qualtrics_source", "stg_qualtrics__contact_mailing_list_membership"], "alias": "stg_qualtrics__contact_mailing_list_membership", "checksum": {"name": "sha256", "checksum": "f2804491e5f571f910c142a7d6eec5c1124ff6ba452302f8304ef35fc73badcd"}, "config": {"enabled": true, "alias": null, "schema": "qualtrics_source", "database": null, "tags": ["qualtrics", "fivetran_package", "staging"], "meta": {}, "group": null, "materialized": "table", "incremental_strategy": null, "persist_docs": {}, "post-hook": [], "pre-hook": [], "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "on_configuration_change": "apply", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false, "alias_types": true}, "access": "protected"}, "tags": ["qualtrics", "fivetran_package", "staging"], "description": "Table relating contacts to mailing lists they are a part of.", "columns": {"_fivetran_synced": {"name": "_fivetran_synced", "description": "The time when a record was last updated by Fivetran.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "contact_id": {"name": "contact_id", "description": "The ID for the contact. Example - CID_012345678901234", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "contact_lookup_id": {"name": "contact_lookup_id", "description": "Optional contact lookup ID for individual distribution.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "directory_id": {"name": "directory_id", "description": "The directory ID, also known as a pool ID. Example - POOL_012345678901234", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "mailing_list_id": {"name": "mailing_list_id", "description": "The ID for the mailing list.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "name": {"name": "name", "description": "Name of the mailing list.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "owner_user_id": {"name": "owner_user_id", "description": "The unique identifier for a specific user who owns this.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "unsubscribed_at": {"name": "unsubscribed_at", "description": "Date and time the user opted out of this mailing list.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "is_unsubscribed": {"name": "is_unsubscribed", "description": "Boolean indicating whether the contact has opted out of receiving email through this mailing list.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "source_relation": {"name": "source_relation", "description": "The schema or database this record came from if you are making use of the qualtrics_union_schemas or qualtrics_union_databases variables, respectively. Empty string if you are not using either of these variables to union together multiple Qualtrics connectors.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "qualtrics_source://models/stg_qualtrics.yml", "build_path": null, "deferred": false, "unrendered_config": {"tags": ["qualtrics", "fivetran_package", "staging"], "schema": "qualtrics_source", "materialized": "table"}, "created_at": 1711137323.986103, "relation_name": "\"postgres\".\"qualtrics_source_integration_tests_qualtrics_source\".\"stg_qualtrics__contact_mailing_list_membership\"", "raw_code": "with base as (\n\n select * \n from {{ ref('stg_qualtrics__contact_mailing_list_membership_tmp') }}\n),\n\nfields as (\n\n select\n {{\n fivetran_utils.fill_staging_columns(\n source_columns=adapter.get_columns_in_relation(ref('stg_qualtrics__contact_mailing_list_membership_tmp')),\n staging_columns=get_contact_mailing_list_membership_columns()\n )\n }}\n\n {{ fivetran_utils.source_relation(\n union_schema_variable='qualtrics_union_schemas', \n union_database_variable='qualtrics_union_databases') \n }}\n \n from base\n),\n\nfinal as (\n \n select \n contact_id,\n contact_lookup_id,\n directory_id,\n mailing_list_id,\n name,\n owner_id as owner_user_id,\n unsubscribe_date as unsubscribed_at,\n unsubscribed as is_unsubscribed,\n _fivetran_synced,\n source_relation\n\n from fields\n)\n\nselect *\nfrom final", "language": "sql", "refs": [{"name": "stg_qualtrics__contact_mailing_list_membership_tmp", "package": null, "version": null}, {"name": "stg_qualtrics__contact_mailing_list_membership_tmp", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.qualtrics_source.get_contact_mailing_list_membership_columns", "macro.fivetran_utils.fill_staging_columns", "macro.fivetran_utils.source_relation"], "nodes": ["model.qualtrics_source.stg_qualtrics__contact_mailing_list_membership_tmp"]}, "compiled_path": "target/compiled/qualtrics_source/models/stg_qualtrics__contact_mailing_list_membership.sql", "compiled": true, "compiled_code": "with base as (\n\n select * \n from \"postgres\".\"qualtrics_source_integration_tests_qualtrics_source\".\"stg_qualtrics__contact_mailing_list_membership_tmp\"\n),\n\nfields as (\n\n select\n \n \n \n _fivetran_synced\n \n as \n \n _fivetran_synced\n \n, \n \n \n contact_id\n \n as \n \n contact_id\n \n, \n \n \n contact_lookup_id\n \n as \n \n contact_lookup_id\n \n, \n \n \n directory_id\n \n as \n \n directory_id\n \n, \n \n \n mailing_list_id\n \n as \n \n mailing_list_id\n \n, \n \n \n name\n \n as \n \n name\n \n, \n \n \n owner_id\n \n as \n \n owner_id\n \n, \n \n \n unsubscribe_date\n \n as \n \n unsubscribe_date\n \n, \n \n \n unsubscribed\n \n as \n \n unsubscribed\n \n\n\n\n\n \n\n\n, cast('' as TEXT) as source_relation\n\n\n\n \n from base\n),\n\nfinal as (\n \n select \n contact_id,\n contact_lookup_id,\n directory_id,\n mailing_list_id,\n name,\n owner_id as owner_user_id,\n unsubscribe_date as unsubscribed_at,\n unsubscribed as is_unsubscribed,\n _fivetran_synced,\n source_relation\n\n from fields\n)\n\nselect *\nfrom final", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "alias_types": true, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null, "deprecation_date": null}, "model.qualtrics_source.stg_qualtrics__directory_contact": {"database": "postgres", "schema": "qualtrics_source_integration_tests_qualtrics_source", "name": "stg_qualtrics__directory_contact", "resource_type": "model", "package_name": "qualtrics_source", "path": "stg_qualtrics__directory_contact.sql", "original_file_path": "models/stg_qualtrics__directory_contact.sql", "unique_id": "model.qualtrics_source.stg_qualtrics__directory_contact", "fqn": ["qualtrics_source", "stg_qualtrics__directory_contact"], "alias": "stg_qualtrics__directory_contact", "checksum": {"name": "sha256", "checksum": "5e6d3dc62c11df35205fd07f27d0acf160e19ad02ec854ffc8ce9713cc6c9ddf"}, "config": {"enabled": true, "alias": null, "schema": "qualtrics_source", "database": null, "tags": ["qualtrics", "fivetran_package", "staging"], "meta": {}, "group": null, "materialized": "table", "incremental_strategy": null, "persist_docs": {}, "post-hook": [], "pre-hook": [], "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "on_configuration_change": "apply", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false, "alias_types": true}, "access": "protected"}, "tags": ["qualtrics", "fivetran_package", "staging"], "description": "Tablle relating contacts to the directories they are a part of.", "columns": {"_fivetran_synced": {"name": "_fivetran_synced", "description": "The time when a record was last updated by Fivetran.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "created_at": {"name": "created_at", "description": "The creation date and time of the record, expressed as an ISO 8601 value.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "directory_id": {"name": "directory_id", "description": "The directory ID, also known as a pool ID. Example - POOL_012345678901234", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "unsubscribed_from_directory_at": {"name": "unsubscribed_from_directory_at", "description": "Date and time the user opted out of the directory.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "is_unsubscribed_from_directory": {"name": "is_unsubscribed_from_directory", "description": "Boolean indicating whether the contact unsubscribed from all contact from the Directory.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "email": {"name": "email", "description": "Contact's email address. Must be in proper email format.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "email_domain": {"name": "email_domain", "description": "Domain of the contact's email address.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "ext_ref": {"name": "ext_ref", "description": "The external reference for the contact.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "first_name": {"name": "first_name", "description": "Contact's first name.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "contact_id": {"name": "contact_id", "description": "The ID for the contact. Example - CID_012345678901234", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "language": {"name": "language", "description": "The user's default language.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "last_modified_at": {"name": "last_modified_at", "description": "The point in time when the record was last modified.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "last_name": {"name": "last_name", "description": "Contact's surname.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "phone": {"name": "phone", "description": "Contact's phone number.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "source_relation": {"name": "source_relation", "description": "The schema or database this record came from if you are making use of the qualtrics_union_schemas or qualtrics_union_databases variables, respectively. Empty string if you are not using either of these variables to union together multiple Qualtrics connectors.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "qualtrics_source://models/stg_qualtrics.yml", "build_path": null, "deferred": false, "unrendered_config": {"tags": ["qualtrics", "fivetran_package", "staging"], "schema": "qualtrics_source", "materialized": "table"}, "created_at": 1711137323.9804852, "relation_name": "\"postgres\".\"qualtrics_source_integration_tests_qualtrics_source\".\"stg_qualtrics__directory_contact\"", "raw_code": "with base as (\n\n select * \n from {{ ref('stg_qualtrics__directory_contact_tmp') }}\n),\n\nfields as (\n\n select\n {{\n fivetran_utils.fill_staging_columns(\n source_columns=adapter.get_columns_in_relation(ref('stg_qualtrics__directory_contact_tmp')),\n staging_columns=get_directory_contact_columns()\n )\n }}\n\n {{ fivetran_utils.source_relation(\n union_schema_variable='qualtrics_union_schemas', \n union_database_variable='qualtrics_union_databases') \n }}\n \n from base\n),\n\nfinal as (\n \n select \n cast(creation_date as {{ dbt.type_timestamp() }}) as created_at,\n directory_id,\n cast(directory_unsubscribe_date as {{ dbt.type_timestamp() }}) as unsubscribed_from_directory_at,\n directory_unsubscribed as is_unsubscribed_from_directory,\n lower(email) as email,\n lower(email_domain) as email_domain,\n ext_ref,\n first_name,\n last_name,\n REGEXP_REPLACE(phone, '[^0-9]', '') AS phone, -- remove any non-numeric chars\n id as contact_id,\n language,\n cast(last_modified as {{ dbt.type_timestamp() }}) as last_modified_at,\n _fivetran_synced,\n source_relation\n\n {{ fivetran_utils.fill_pass_through_columns('qualtrics__directory_contact_pass_through_columns') }}\n\n from fields\n)\n\nselect *\nfrom final", "language": "sql", "refs": [{"name": "stg_qualtrics__directory_contact_tmp", "package": null, "version": null}, {"name": "stg_qualtrics__directory_contact_tmp", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.qualtrics_source.get_directory_contact_columns", "macro.fivetran_utils.fill_staging_columns", "macro.fivetran_utils.source_relation", "macro.dbt.type_timestamp", "macro.fivetran_utils.fill_pass_through_columns"], "nodes": ["model.qualtrics_source.stg_qualtrics__directory_contact_tmp"]}, "compiled_path": "target/compiled/qualtrics_source/models/stg_qualtrics__directory_contact.sql", "compiled": true, "compiled_code": "with base as (\n\n select * \n from \"postgres\".\"qualtrics_source_integration_tests_qualtrics_source\".\"stg_qualtrics__directory_contact_tmp\"\n),\n\nfields as (\n\n select\n \n \n \n _fivetran_synced\n \n as \n \n _fivetran_synced\n \n, \n \n \n creation_date\n \n as \n \n creation_date\n \n, \n \n \n directory_id\n \n as \n \n directory_id\n \n, \n \n \n directory_unsubscribe_date\n \n as \n \n directory_unsubscribe_date\n \n, \n \n \n directory_unsubscribed\n \n as \n \n directory_unsubscribed\n \n, \n \n \n email\n \n as \n \n email\n \n, \n \n \n email_domain\n \n as \n \n email_domain\n \n, \n \n \n ext_ref\n \n as \n \n ext_ref\n \n, \n \n \n first_name\n \n as \n \n first_name\n \n, \n \n \n id\n \n as \n \n id\n \n, \n \n \n language\n \n as \n \n language\n \n, \n \n \n last_modified\n \n as \n \n last_modified\n \n, \n \n \n last_name\n \n as \n \n last_name\n \n, \n \n \n phone\n \n as \n \n phone\n \n\n\n\n\n \n\n\n, cast('' as TEXT) as source_relation\n\n\n\n \n from base\n),\n\nfinal as (\n \n select \n cast(creation_date as timestamp) as created_at,\n directory_id,\n cast(directory_unsubscribe_date as timestamp) as unsubscribed_from_directory_at,\n directory_unsubscribed as is_unsubscribed_from_directory,\n lower(email) as email,\n lower(email_domain) as email_domain,\n ext_ref,\n first_name,\n last_name,\n REGEXP_REPLACE(phone, '[^0-9]', '') AS phone, -- remove any non-numeric chars\n id as contact_id,\n language,\n cast(last_modified as timestamp) as last_modified_at,\n _fivetran_synced,\n source_relation\n\n \n\n\n\n\n\n from fields\n)\n\nselect *\nfrom final", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "alias_types": true, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null, "deprecation_date": null}, "model.qualtrics_source.stg_qualtrics__question_response": {"database": "postgres", "schema": "qualtrics_source_integration_tests_qualtrics_source", "name": "stg_qualtrics__question_response", "resource_type": "model", "package_name": "qualtrics_source", "path": "stg_qualtrics__question_response.sql", "original_file_path": "models/stg_qualtrics__question_response.sql", "unique_id": "model.qualtrics_source.stg_qualtrics__question_response", "fqn": ["qualtrics_source", "stg_qualtrics__question_response"], "alias": "stg_qualtrics__question_response", "checksum": {"name": "sha256", "checksum": "30c4f871c3b5aebedfa5a2d8b2edb0f6d7f9536c180b39c43695476f672a7aea"}, "config": {"enabled": true, "alias": null, "schema": "qualtrics_source", "database": null, "tags": ["qualtrics", "fivetran_package", "staging"], "meta": {}, "group": null, "materialized": "table", "incremental_strategy": null, "persist_docs": {}, "post-hook": [], "pre-hook": [], "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "on_configuration_change": "apply", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false, "alias_types": true}, "access": "protected"}, "tags": ["qualtrics", "fivetran_package", "staging"], "description": "Responses to individual questions (and their sub-questions).", "columns": {"_fivetran_id": {"name": "_fivetran_id", "description": "Fivetran-generated unique key hashed on `response_id`, `question_id`, `sub_question_key`, `sub_question_text` , `question_option_key` , `loop_id` and `importId`.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "_fivetran_synced": {"name": "_fivetran_synced", "description": "The time when a record was last updated by Fivetran.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "loop_id": {"name": "loop_id", "description": "ID of the [Loop and Merge](https://www.qualtrics.com/support/survey-platform/survey-module/block-options/loop-and-merge/) object this response is associated with.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "question": {"name": "question", "description": "Question text.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "question_id": {"name": "question_id", "description": "The unique identifier for the question. Match pattern = ^QID[a-zA-Z0-9]+$", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "question_option_key": {"name": "question_option_key", "description": "The key of the `QUESTION_OPTION` that was chosen.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "response_id": {"name": "response_id", "description": "The unique ID for the `SURVEY_RESPONSE`.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "sub_question_key": {"name": "sub_question_key", "description": "Key of the sub question.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "sub_question_text": {"name": "sub_question_text", "description": "Sub question text.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "value": {"name": "value", "description": "Value of the question response.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "source_relation": {"name": "source_relation", "description": "The schema or database this record came from if you are making use of the qualtrics_union_schemas or qualtrics_union_databases variables, respectively. Empty string if you are not using either of these variables to union together multiple Qualtrics connectors.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "qualtrics_source://models/stg_qualtrics.yml", "build_path": null, "deferred": false, "unrendered_config": {"tags": ["qualtrics", "fivetran_package", "staging"], "schema": "qualtrics_source", "materialized": "table"}, "created_at": 1711137323.970138, "relation_name": "\"postgres\".\"qualtrics_source_integration_tests_qualtrics_source\".\"stg_qualtrics__question_response\"", "raw_code": "with base as (\n\n select * \n from {{ ref('stg_qualtrics__question_response_tmp') }}\n),\n\nfields as (\n\n select\n {{\n fivetran_utils.fill_staging_columns(\n source_columns=adapter.get_columns_in_relation(ref('stg_qualtrics__question_response_tmp')),\n staging_columns=get_question_response_columns()\n )\n }}\n \n {{ fivetran_utils.source_relation(\n union_schema_variable='qualtrics_union_schemas', \n union_database_variable='qualtrics_union_databases') \n }}\n \n from base\n),\n\nfinal as (\n \n select \n _fivetran_id,\n loop_id,\n question_id,\n question,\n question_option_key,\n response_id,\n sub_question_key,\n sub_question_text,\n value,\n _fivetran_synced,\n source_relation\n \n from fields\n)\n\nselect *\nfrom final", "language": "sql", "refs": [{"name": "stg_qualtrics__question_response_tmp", "package": null, "version": null}, {"name": "stg_qualtrics__question_response_tmp", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.qualtrics_source.get_question_response_columns", "macro.fivetran_utils.fill_staging_columns", "macro.fivetran_utils.source_relation"], "nodes": ["model.qualtrics_source.stg_qualtrics__question_response_tmp"]}, "compiled_path": "target/compiled/qualtrics_source/models/stg_qualtrics__question_response.sql", "compiled": true, "compiled_code": "with base as (\n\n select * \n from \"postgres\".\"qualtrics_source_integration_tests_qualtrics_source\".\"stg_qualtrics__question_response_tmp\"\n),\n\nfields as (\n\n select\n \n \n \n _fivetran_id\n \n as \n \n _fivetran_id\n \n, \n \n \n _fivetran_synced\n \n as \n \n _fivetran_synced\n \n, \n \n \n loop_id\n \n as \n \n loop_id\n \n, \n \n \n question\n \n as \n \n question\n \n, \n \n \n question_id\n \n as \n \n question_id\n \n, \n \n \n question_option_key\n \n as \n \n question_option_key\n \n, \n \n \n response_id\n \n as \n \n response_id\n \n, \n \n \n sub_question_key\n \n as \n \n sub_question_key\n \n, \n \n \n sub_question_text\n \n as \n \n sub_question_text\n \n, \n \n \n value\n \n as \n \n value\n \n\n\n\n \n \n\n\n, cast('' as TEXT) as source_relation\n\n\n\n \n from base\n),\n\nfinal as (\n \n select \n _fivetran_id,\n loop_id,\n question_id,\n question,\n question_option_key,\n response_id,\n sub_question_key,\n sub_question_text,\n value,\n _fivetran_synced,\n source_relation\n \n from fields\n)\n\nselect *\nfrom final", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "alias_types": true, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null, "deprecation_date": null}, "model.qualtrics_source.stg_qualtrics__directory": {"database": "postgres", "schema": "qualtrics_source_integration_tests_qualtrics_source", "name": "stg_qualtrics__directory", "resource_type": "model", "package_name": "qualtrics_source", "path": "stg_qualtrics__directory.sql", "original_file_path": "models/stg_qualtrics__directory.sql", "unique_id": "model.qualtrics_source.stg_qualtrics__directory", "fqn": ["qualtrics_source", "stg_qualtrics__directory"], "alias": "stg_qualtrics__directory", "checksum": {"name": "sha256", "checksum": "46839c63e3b81e0963f546946a4509962c9b1c008bf131e875e0a8fcfe0cd68c"}, "config": {"enabled": true, "alias": null, "schema": "qualtrics_source", "database": null, "tags": ["qualtrics", "fivetran_package", "staging"], "meta": {}, "group": null, "materialized": "table", "incremental_strategy": null, "persist_docs": {}, "post-hook": [], "pre-hook": [], "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "on_configuration_change": "apply", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false, "alias_types": true}, "access": "protected"}, "tags": ["qualtrics", "fivetran_package", "staging"], "description": "A directory is an address book for the entire brand and contains all of the contacts that have been added by your users.", "columns": {"is_deleted": {"name": "is_deleted", "description": "Boolean representing whether the record was soft-deleted in Qualtrics.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "_fivetran_synced": {"name": "_fivetran_synced", "description": "The time when a record was last updated by Fivetran.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "is_deduped_on_email": {"name": "is_deduped_on_email", "description": "Boolean representing if directory contacts are deduped based on email.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "is_deduped_on_ext_ref": {"name": "is_deduped_on_ext_ref", "description": "Boolean representing if directory contacts are deduped based on an external data reference.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "is_deduped_on_first_name": {"name": "is_deduped_on_first_name", "description": "Boolean representing if directory contacts are deduped based on first name.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "is_deduped_on_last_name": {"name": "is_deduped_on_last_name", "description": "Boolean representing if directory contacts are deduped based on last name.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "is_deduped_on_phone": {"name": "is_deduped_on_phone", "description": "Boolean representing if directory contacts are deduped based on phone number.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "directory_id": {"name": "directory_id", "description": "The directory ID, also known as a pool ID. Example - POOL_012345678901234", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "is_default": {"name": "is_default", "description": "Boolean representing if this directory is the default one for your brand. \n\nThe default directory will be the first directory listed in the dropdown menu in Qualtrics.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "name": {"name": "name", "description": "Name of the directory.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "source_relation": {"name": "source_relation", "description": "The schema or database this record came from if you are making use of the qualtrics_union_schemas or qualtrics_union_databases variables, respectively. Empty string if you are not using either of these variables to union together multiple Qualtrics connectors.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "qualtrics_source://models/stg_qualtrics.yml", "build_path": null, "deferred": false, "unrendered_config": {"tags": ["qualtrics", "fivetran_package", "staging"], "schema": "qualtrics_source", "materialized": "table"}, "created_at": 1711137323.979166, "relation_name": "\"postgres\".\"qualtrics_source_integration_tests_qualtrics_source\".\"stg_qualtrics__directory\"", "raw_code": "with base as (\n\n select * \n from {{ ref('stg_qualtrics__directory_tmp') }}\n),\n\nfields as (\n\n select\n {{\n fivetran_utils.fill_staging_columns(\n source_columns=adapter.get_columns_in_relation(ref('stg_qualtrics__directory_tmp')),\n staging_columns=get_directory_columns()\n )\n }}\n\n {{ fivetran_utils.source_relation(\n union_schema_variable='qualtrics_union_schemas', \n union_database_variable='qualtrics_union_databases') \n }}\n \n from base\n),\n\nfinal as (\n \n select \n deduplication_criteria_email as is_deduped_on_email,\n deduplication_criteria_external_data_reference as is_deduped_on_ext_ref,\n deduplication_criteria_first_name as is_deduped_on_first_name,\n deduplication_criteria_last_name as is_deduped_on_last_name,\n deduplication_criteria_phone as is_deduped_on_phone,\n id as directory_id,\n is_default,\n name,\n _fivetran_deleted as is_deleted,\n _fivetran_synced,\n source_relation\n\n {{ fivetran_utils.fill_pass_through_columns('qualtrics__directory_pass_through_columns') }}\n\n from fields\n)\n\nselect *\nfrom final", "language": "sql", "refs": [{"name": "stg_qualtrics__directory_tmp", "package": null, "version": null}, {"name": "stg_qualtrics__directory_tmp", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.qualtrics_source.get_directory_columns", "macro.fivetran_utils.fill_staging_columns", "macro.fivetran_utils.source_relation", "macro.fivetran_utils.fill_pass_through_columns"], "nodes": ["model.qualtrics_source.stg_qualtrics__directory_tmp"]}, "compiled_path": "target/compiled/qualtrics_source/models/stg_qualtrics__directory.sql", "compiled": true, "compiled_code": "with base as (\n\n select * \n from \"postgres\".\"qualtrics_source_integration_tests_qualtrics_source\".\"stg_qualtrics__directory_tmp\"\n),\n\nfields as (\n\n select\n \n \n \n _fivetran_deleted\n \n as \n \n _fivetran_deleted\n \n, \n \n \n _fivetran_synced\n \n as \n \n _fivetran_synced\n \n, \n \n \n deduplication_criteria_email\n \n as \n \n deduplication_criteria_email\n \n, \n \n \n deduplication_criteria_external_data_reference\n \n as \n \n deduplication_criteria_external_data_reference\n \n, \n \n \n deduplication_criteria_first_name\n \n as \n \n deduplication_criteria_first_name\n \n, \n \n \n deduplication_criteria_last_name\n \n as \n \n deduplication_criteria_last_name\n \n, \n \n \n deduplication_criteria_phone\n \n as \n \n deduplication_criteria_phone\n \n, \n \n \n id\n \n as \n \n id\n \n, \n \n \n is_default\n \n as \n \n is_default\n \n, \n \n \n name\n \n as \n \n name\n \n\n\n\n\n \n\n\n, cast('' as TEXT) as source_relation\n\n\n\n \n from base\n),\n\nfinal as (\n \n select \n deduplication_criteria_email as is_deduped_on_email,\n deduplication_criteria_external_data_reference as is_deduped_on_ext_ref,\n deduplication_criteria_first_name as is_deduped_on_first_name,\n deduplication_criteria_last_name as is_deduped_on_last_name,\n deduplication_criteria_phone as is_deduped_on_phone,\n id as directory_id,\n is_default,\n name,\n _fivetran_deleted as is_deleted,\n _fivetran_synced,\n source_relation\n\n \n\n\n\n\n\n from fields\n)\n\nselect *\nfrom final", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "alias_types": true, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null, "deprecation_date": null}, "model.qualtrics_source.stg_qualtrics__distribution_contact": {"database": "postgres", "schema": "qualtrics_source_integration_tests_qualtrics_source", "name": "stg_qualtrics__distribution_contact", "resource_type": "model", "package_name": "qualtrics_source", "path": "stg_qualtrics__distribution_contact.sql", "original_file_path": "models/stg_qualtrics__distribution_contact.sql", "unique_id": "model.qualtrics_source.stg_qualtrics__distribution_contact", "fqn": ["qualtrics_source", "stg_qualtrics__distribution_contact"], "alias": "stg_qualtrics__distribution_contact", "checksum": {"name": "sha256", "checksum": "4f686edbd1142da3a32c04d5330cee06ac04d67113cb4332fa5c6a113c83419c"}, "config": {"enabled": true, "alias": null, "schema": "qualtrics_source", "database": null, "tags": ["qualtrics", "fivetran_package", "staging"], "meta": {}, "group": null, "materialized": "table", "incremental_strategy": null, "persist_docs": {}, "post-hook": [], "pre-hook": [], "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "on_configuration_change": "apply", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false, "alias_types": true}, "access": "protected"}, "tags": ["qualtrics", "fivetran_package", "staging"], "description": "Table relating contacts to distributions they've been a part of.", "columns": {"_fivetran_synced": {"name": "_fivetran_synced", "description": "The time when a record was last updated by Fivetran.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "contact_frequency_rule_id": {"name": "contact_frequency_rule_id", "description": "The contact frequency Rule ID. Ex - FQ_AAB234234", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "contact_id": {"name": "contact_id", "description": "The ID for the contact. Example - CID_012345678901234", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "contact_lookup_id": {"name": "contact_lookup_id", "description": "Optional contact lookup ID for individual distribution.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "distribution_id": {"name": "distribution_id", "description": "The unique Distribution ID.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "opened_at": {"name": "opened_at", "description": "The time a survey was opened by the respondent, will be null if the survey has not been opened.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "response_completed_at": {"name": "response_completed_at", "description": "The time a response was completed, will be null for uncompleted surveys.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "response_id": {"name": "response_id", "description": "The ID of the survey response submitted by this contact. If no survey response has been submitted, this value will be null. If the survey was setup to anonymize responses, then this value will be `Anonymous`.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "response_started_at": {"name": "response_started_at", "description": "The time a response was started by the respondent, will be null if survey has not been started.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "sent_at": {"name": "sent_at", "description": "The time a survey was sent to the respondent.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "status": {"name": "status", "description": "One of:\n- `Pending` - The distribution is scheduled but has yet to be sent.\n- `Success` - The distribution was successfully delivered to the contact.\n- `Error` - An error occurred while attempting to send the distribution.\n- `Opened` - The distribution was opened by the contact.\n- `Complaint` - The contact complained that the distribution was spam.\n- `Skipped` - The contact was skipped due to contact frequency rules or blacklisted contact information.\n- `Blocked` - The distribution failed to send, because the contact blocked it or the email was caught by the spam circuit breaker.\n- `Failure` - The distribution failed to be delivered.\n- `Unknown` - The distribution failed for an unknown reason.\n- `SoftBounce` - The distribution bounced but can be retried.\n- `HardBounce` - The distribution bounced and should not be retried.\n- `SurveyStarted` - The contact started the survey distributed.\n- `SurveyPartiallyFinished` - The contact submitted a partially completed survey response.\n- `SurveyFinished` - The contact submitted a completed survey response.\n- `SurveyScreenedOut` - The contact screened out while taking the survey.\n- `SessionExpired` - The contact's survey session has expired.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "survey_link": {"name": "survey_link", "description": "The survey link sent with the distribution. This is null when no link was sent.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "survey_session_id": {"name": "survey_session_id", "description": "An identifier that represents the session in which the respondent interacted with the survey", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "source_relation": {"name": "source_relation", "description": "The schema or database this record came from if you are making use of the qualtrics_union_schemas or qualtrics_union_databases variables, respectively. Empty string if you are not using either of these variables to union together multiple Qualtrics connectors.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "qualtrics_source://models/stg_qualtrics.yml", "build_path": null, "deferred": false, "unrendered_config": {"tags": ["qualtrics", "fivetran_package", "staging"], "schema": "qualtrics_source", "materialized": "table"}, "created_at": 1711137323.984928, "relation_name": "\"postgres\".\"qualtrics_source_integration_tests_qualtrics_source\".\"stg_qualtrics__distribution_contact\"", "raw_code": "with base as (\n\n select * \n from {{ ref('stg_qualtrics__distribution_contact_tmp') }}\n),\n\nfields as (\n\n select\n {{\n fivetran_utils.fill_staging_columns(\n source_columns=adapter.get_columns_in_relation(ref('stg_qualtrics__distribution_contact_tmp')),\n staging_columns=get_distribution_contact_columns()\n )\n }}\n\n {{ fivetran_utils.source_relation(\n union_schema_variable='qualtrics_union_schemas', \n union_database_variable='qualtrics_union_databases') \n }}\n \n from base\n),\n\nfinal as (\n \n select \n contact_frequency_rule_id,\n contact_id,\n contact_lookup_id,\n distribution_id,\n cast(opened_at as {{ dbt.type_timestamp() }}) as opened_at,\n cast(response_completed_at as {{ dbt.type_timestamp() }}) as response_completed_at,\n response_id,\n cast(response_started_at as {{ dbt.type_timestamp() }}) as response_started_at,\n cast(sent_at as {{ dbt.type_timestamp() }}) as sent_at,\n status,\n survey_link,\n survey_session_id,\n _fivetran_synced,\n source_relation\n\n from fields\n)\n\nselect *\nfrom final", "language": "sql", "refs": [{"name": "stg_qualtrics__distribution_contact_tmp", "package": null, "version": null}, {"name": "stg_qualtrics__distribution_contact_tmp", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.qualtrics_source.get_distribution_contact_columns", "macro.fivetran_utils.fill_staging_columns", "macro.fivetran_utils.source_relation", "macro.dbt.type_timestamp"], "nodes": ["model.qualtrics_source.stg_qualtrics__distribution_contact_tmp"]}, "compiled_path": "target/compiled/qualtrics_source/models/stg_qualtrics__distribution_contact.sql", "compiled": true, "compiled_code": "with base as (\n\n select * \n from \"postgres\".\"qualtrics_source_integration_tests_qualtrics_source\".\"stg_qualtrics__distribution_contact_tmp\"\n),\n\nfields as (\n\n select\n \n \n \n _fivetran_synced\n \n as \n \n _fivetran_synced\n \n, \n \n \n contact_frequency_rule_id\n \n as \n \n contact_frequency_rule_id\n \n, \n \n \n contact_id\n \n as \n \n contact_id\n \n, \n \n \n contact_lookup_id\n \n as \n \n contact_lookup_id\n \n, \n \n \n distribution_id\n \n as \n \n distribution_id\n \n, \n \n \n opened_at\n \n as \n \n opened_at\n \n, \n \n \n response_completed_at\n \n as \n \n response_completed_at\n \n, \n \n \n response_id\n \n as \n \n response_id\n \n, \n \n \n response_started_at\n \n as \n \n response_started_at\n \n, \n \n \n sent_at\n \n as \n \n sent_at\n \n, \n \n \n status\n \n as \n \n status\n \n, \n \n \n survey_link\n \n as \n \n survey_link\n \n, \n \n \n survey_session_id\n \n as \n \n survey_session_id\n \n\n\n\n\n \n\n\n, cast('' as TEXT) as source_relation\n\n\n\n \n from base\n),\n\nfinal as (\n \n select \n contact_frequency_rule_id,\n contact_id,\n contact_lookup_id,\n distribution_id,\n cast(opened_at as timestamp) as opened_at,\n cast(response_completed_at as timestamp) as response_completed_at,\n response_id,\n cast(response_started_at as timestamp) as response_started_at,\n cast(sent_at as timestamp) as sent_at,\n status,\n survey_link,\n survey_session_id,\n _fivetran_synced,\n source_relation\n\n from fields\n)\n\nselect *\nfrom final", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "alias_types": true, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null, "deprecation_date": null}, "model.qualtrics_source.stg_qualtrics__block": {"database": "postgres", "schema": "qualtrics_source_integration_tests_qualtrics_source", "name": "stg_qualtrics__block", "resource_type": "model", "package_name": "qualtrics_source", "path": "stg_qualtrics__block.sql", "original_file_path": "models/stg_qualtrics__block.sql", "unique_id": "model.qualtrics_source.stg_qualtrics__block", "fqn": ["qualtrics_source", "stg_qualtrics__block"], "alias": "stg_qualtrics__block", "checksum": {"name": "sha256", "checksum": "cd863a598c429db991f7b567006b2b67b9308f85076e6fefe77b1f89355f1c1b"}, "config": {"enabled": true, "alias": null, "schema": "qualtrics_source", "database": null, "tags": ["qualtrics", "fivetran_package", "staging"], "meta": {}, "group": null, "materialized": "table", "incremental_strategy": null, "persist_docs": {}, "post-hook": [], "pre-hook": [], "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "on_configuration_change": "apply", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false, "alias_types": true}, "access": "protected"}, "tags": ["qualtrics", "fivetran_package", "staging"], "description": "Groups of questions, used to organize longer surveys and conditionally display sets of questions.", "columns": {"is_deleted": {"name": "is_deleted", "description": "Boolean representing whether the record was soft-deleted in Qualtrics.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "_fivetran_synced": {"name": "_fivetran_synced", "description": "The time when a record was last updated by Fivetran.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "is_locked": {"name": "is_locked", "description": "Boolean representing whether modification of the block and its contents is prevented.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "block_visibility": {"name": "block_visibility", "description": "Whether the questions in the block are 'collapsed' or 'expanded' by default.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "description": {"name": "description", "description": "Description given to the block.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "block_id": {"name": "block_id", "description": "The ID of the survey block. Match pattern = ^BL_[a-zA-Z0-9]{11,15}$", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "randomize_questions": {"name": "randomize_questions", "description": "If/how the block questions are randomized. Can be - `false` (no randomization), `RandomWithXPerPage` (randomize all and place X questions in each block), `RandomWithOnlyX` (randomly present only X out of the total questions), or `Advanced` (custom configuration)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "survey_id": {"name": "survey_id", "description": "The unique identifier for this survey. Match pattern = ^SV_[a-zA-Z0-9]{11,15}$", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "type": {"name": "type", "description": "Type of block. Can be `Trash`, `Default`, or `Standard`", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "source_relation": {"name": "source_relation", "description": "The schema or database this record came from if you are making use of the qualtrics_union_schemas or qualtrics_union_databases variables, respectively. Empty string if you are not using either of these variables to union together multiple Qualtrics connectors.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "qualtrics_source://models/stg_qualtrics.yml", "build_path": null, "deferred": false, "unrendered_config": {"tags": ["qualtrics", "fivetran_package", "staging"], "schema": "qualtrics_source", "materialized": "table"}, "created_at": 1711137323.977178, "relation_name": "\"postgres\".\"qualtrics_source_integration_tests_qualtrics_source\".\"stg_qualtrics__block\"", "raw_code": "with base as (\n\n select * \n from {{ ref('stg_qualtrics__block_tmp') }}\n),\n\nfields as (\n\n select\n {{\n fivetran_utils.fill_staging_columns(\n source_columns=adapter.get_columns_in_relation(ref('stg_qualtrics__block_tmp')),\n staging_columns=get_block_columns()\n )\n }}\n\n {{ fivetran_utils.source_relation(\n union_schema_variable='qualtrics_union_schemas', \n union_database_variable='qualtrics_union_databases') \n }}\n\n from base\n),\n\nfinal as (\n \n select \n block_locking as is_locked,\n block_visibility,\n description,\n id as block_id,\n randomize_questions,\n survey_id,\n type,\n _fivetran_deleted as is_deleted,\n _fivetran_synced,\n source_relation\n\n from fields\n)\n\nselect *\nfrom final", "language": "sql", "refs": [{"name": "stg_qualtrics__block_tmp", "package": null, "version": null}, {"name": "stg_qualtrics__block_tmp", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.qualtrics_source.get_block_columns", "macro.fivetran_utils.fill_staging_columns", "macro.fivetran_utils.source_relation"], "nodes": ["model.qualtrics_source.stg_qualtrics__block_tmp"]}, "compiled_path": "target/compiled/qualtrics_source/models/stg_qualtrics__block.sql", "compiled": true, "compiled_code": "with base as (\n\n select * \n from \"postgres\".\"qualtrics_source_integration_tests_qualtrics_source\".\"stg_qualtrics__block_tmp\"\n),\n\nfields as (\n\n select\n \n \n \n _fivetran_deleted\n \n as \n \n _fivetran_deleted\n \n, \n \n \n _fivetran_synced\n \n as \n \n _fivetran_synced\n \n, \n \n \n block_locking\n \n as \n \n block_locking\n \n, \n \n \n block_visibility\n \n as \n \n block_visibility\n \n, \n \n \n description\n \n as \n \n description\n \n, \n \n \n id\n \n as \n \n id\n \n, \n \n \n randomize_questions\n \n as \n \n randomize_questions\n \n, \n \n \n survey_id\n \n as \n \n survey_id\n \n, \n \n \n type\n \n as \n \n type\n \n\n\n\n\n \n\n\n, cast('' as TEXT) as source_relation\n\n\n\n\n from base\n),\n\nfinal as (\n \n select \n block_locking as is_locked,\n block_visibility,\n description,\n id as block_id,\n randomize_questions,\n survey_id,\n type,\n _fivetran_deleted as is_deleted,\n _fivetran_synced,\n source_relation\n\n from fields\n)\n\nselect *\nfrom final", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "alias_types": true, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null, "deprecation_date": null}, "model.qualtrics_source.stg_qualtrics__distribution": {"database": "postgres", "schema": "qualtrics_source_integration_tests_qualtrics_source", "name": "stg_qualtrics__distribution", "resource_type": "model", "package_name": "qualtrics_source", "path": "stg_qualtrics__distribution.sql", "original_file_path": "models/stg_qualtrics__distribution.sql", "unique_id": "model.qualtrics_source.stg_qualtrics__distribution", "fqn": ["qualtrics_source", "stg_qualtrics__distribution"], "alias": "stg_qualtrics__distribution", "checksum": {"name": "sha256", "checksum": "1ce7fa1b2aacfdbc380398459d2885374f031f58d73f009a6dbdc4fab4e3e576"}, "config": {"enabled": true, "alias": null, "schema": "qualtrics_source", "database": null, "tags": ["qualtrics", "fivetran_package", "staging"], "meta": {}, "group": null, "materialized": "table", "incremental_strategy": null, "persist_docs": {}, "post-hook": [], "pre-hook": [], "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "on_configuration_change": "apply", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false, "alias_types": true}, "access": "protected"}, "tags": ["qualtrics", "fivetran_package", "staging"], "description": "Use distributions to reach out to contacts in the XM Directory platform, with or without a survey attached.", "columns": {"is_deleted": {"name": "is_deleted", "description": "Boolean representing whether the record was soft-deleted in Qualtrics.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "_fivetran_synced": {"name": "_fivetran_synced", "description": "The time when a record was last updated by Fivetran.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "created_at": {"name": "created_at", "description": "The creation date and time of the record, expressed as an ISO 8601 value.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "header_from_email": {"name": "header_from_email", "description": "Email from address.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "header_from_name": {"name": "header_from_name", "description": "Email from name.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "header_reply_to_email": {"name": "header_reply_to_email", "description": "Email reply-to address.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "header_subject": {"name": "header_subject", "description": "Email subject; text or message id (MS_).", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "distribution_id": {"name": "distribution_id", "description": "The unique Distribution ID.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "message_library_id": {"name": "message_library_id", "description": "Library ID of the message.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "message_id": {"name": "message_id", "description": "The ID for the desired library message.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "message_text": {"name": "message_text", "description": "Text of the message to send.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "last_modified_at": {"name": "last_modified_at", "description": "The point in time when the record was last modified.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "organization_id": {"name": "organization_id", "description": "ID of the organization/brand this record belongs to.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "owner_user_id": {"name": "owner_user_id", "description": "The unique identifier for a specific user who owns this.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "parent_distribution_id": {"name": "parent_distribution_id", "description": "The unique ID of the parent distribution.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "recipient_contact_id": {"name": "recipient_contact_id", "description": "The contact ID of the recipient. Can point to `directory_contact` or `core_contact`.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "recipient_library_id": {"name": "recipient_library_id", "description": "Library ID of the message.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "recipient_mailing_list_id": {"name": "recipient_mailing_list_id", "description": "The mailing list or contact group associated with the distribution(s). Can point to `directory_mailing_list` or `core_mailing_list`.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "recipient_sample_id": {"name": "recipient_sample_id", "description": "The ID for the desired sample. Can point to `directory_sample` or `core_sample` (not included in package).", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "request_status": {"name": "request_status", "description": "The distribution's status. States include `Pending` and `Done`. The Pending state is for email that is scheduled to be sent at a later time.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "request_type": {"name": "request_type", "description": "The distribution's type. Types include `Invite`, `Reminder`, and `ThankYou`.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "send_at": {"name": "send_at", "description": "The date and time the request will be or was sent (in ISO 8601 format). Note that this date and time could be in the future if the email distribution is scheduled to send after a delay.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "survey_link_expires_at": {"name": "survey_link_expires_at", "description": "The expiration date for the link associated with the survey distribution. Null if `request_type` != `Invite`.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "survey_link_type": {"name": "survey_link_type", "description": "The link type (`Individual`, `Anonymous`, or `Multiple`) for the link associated with the survey distribution. Null if `request_type` != `Invite`.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "survey_id": {"name": "survey_id", "description": "The unique survey ID. Will be non-null even if `request_type` != `Invite`.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "source_relation": {"name": "source_relation", "description": "The schema or database this record came from if you are making use of the qualtrics_union_schemas or qualtrics_union_databases variables, respectively. Empty string if you are not using either of these variables to union together multiple Qualtrics connectors.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "qualtrics_source://models/stg_qualtrics.yml", "build_path": null, "deferred": false, "unrendered_config": {"tags": ["qualtrics", "fivetran_package", "staging"], "schema": "qualtrics_source", "materialized": "table"}, "created_at": 1711137323.983499, "relation_name": "\"postgres\".\"qualtrics_source_integration_tests_qualtrics_source\".\"stg_qualtrics__distribution\"", "raw_code": "with base as (\n\n select * \n from {{ ref('stg_qualtrics__distribution_tmp') }}\n),\n\nfields as (\n\n select\n {{\n fivetran_utils.fill_staging_columns(\n source_columns=adapter.get_columns_in_relation(ref('stg_qualtrics__distribution_tmp')),\n staging_columns=get_distribution_columns()\n )\n }}\n\n {{ fivetran_utils.source_relation(\n union_schema_variable='qualtrics_union_schemas', \n union_database_variable='qualtrics_union_databases') \n }}\n \n from base\n),\n\nfinal as (\n \n select \n cast(created_date as {{ dbt.type_timestamp() }}) as created_at,\n header_from_email,\n header_from_name,\n header_reply_to_email,\n header_subject,\n id as distribution_id,\n message_library_id,\n message_message_id as message_id,\n message_message_text as message_text,\n cast(modified_date as {{ dbt.type_timestamp() }}) as last_modified_at,\n organization_id,\n owner_id as owner_user_id,\n parent_distribution_id,\n recipient_contact_id,\n recipient_library_id,\n recipient_mailing_list_id,\n recipient_sample_id,\n request_status,\n request_type,\n cast(send_date as {{ dbt.type_timestamp() }}) as send_at,\n cast(survey_link_expiration_date as {{ dbt.type_timestamp() }}) as survey_link_expires_at,\n survey_link_link_type as survey_link_type,\n survey_link_survey_id as survey_id,\n _fivetran_deleted as is_deleted,\n _fivetran_synced,\n source_relation\n\n {{ fivetran_utils.fill_pass_through_columns('qualtrics__distribution_pass_through_columns') }}\n\n from fields\n)\n\nselect *\nfrom final", "language": "sql", "refs": [{"name": "stg_qualtrics__distribution_tmp", "package": null, "version": null}, {"name": "stg_qualtrics__distribution_tmp", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.qualtrics_source.get_distribution_columns", "macro.fivetran_utils.fill_staging_columns", "macro.fivetran_utils.source_relation", "macro.dbt.type_timestamp", "macro.fivetran_utils.fill_pass_through_columns"], "nodes": ["model.qualtrics_source.stg_qualtrics__distribution_tmp"]}, "compiled_path": "target/compiled/qualtrics_source/models/stg_qualtrics__distribution.sql", "compiled": true, "compiled_code": "with base as (\n\n select * \n from \"postgres\".\"qualtrics_source_integration_tests_qualtrics_source\".\"stg_qualtrics__distribution_tmp\"\n),\n\nfields as (\n\n select\n \n \n \n _fivetran_deleted\n \n as \n \n _fivetran_deleted\n \n, \n \n \n _fivetran_synced\n \n as \n \n _fivetran_synced\n \n, \n \n \n created_date\n \n as \n \n created_date\n \n, \n \n \n header_from_email\n \n as \n \n header_from_email\n \n, \n \n \n header_from_name\n \n as \n \n header_from_name\n \n, \n \n \n header_reply_to_email\n \n as \n \n header_reply_to_email\n \n, \n \n \n header_subject\n \n as \n \n header_subject\n \n, \n \n \n id\n \n as \n \n id\n \n, \n \n \n message_library_id\n \n as \n \n message_library_id\n \n, \n \n \n message_message_id\n \n as \n \n message_message_id\n \n, \n \n \n message_message_text\n \n as \n \n message_message_text\n \n, \n \n \n modified_date\n \n as \n \n modified_date\n \n, \n \n \n organization_id\n \n as \n \n organization_id\n \n, \n \n \n owner_id\n \n as \n \n owner_id\n \n, \n \n \n parent_distribution_id\n \n as \n \n parent_distribution_id\n \n, \n \n \n recipient_contact_id\n \n as \n \n recipient_contact_id\n \n, \n \n \n recipient_library_id\n \n as \n \n recipient_library_id\n \n, \n \n \n recipient_mailing_list_id\n \n as \n \n recipient_mailing_list_id\n \n, \n \n \n recipient_sample_id\n \n as \n \n recipient_sample_id\n \n, \n \n \n request_status\n \n as \n \n request_status\n \n, \n \n \n request_type\n \n as \n \n request_type\n \n, \n \n \n send_date\n \n as \n \n send_date\n \n, \n \n \n survey_link_expiration_date\n \n as \n \n survey_link_expiration_date\n \n, \n \n \n survey_link_link_type\n \n as \n \n survey_link_link_type\n \n, \n \n \n survey_link_survey_id\n \n as \n \n survey_link_survey_id\n \n\n\n\n\n \n\n\n, cast('' as TEXT) as source_relation\n\n\n\n \n from base\n),\n\nfinal as (\n \n select \n cast(created_date as timestamp) as created_at,\n header_from_email,\n header_from_name,\n header_reply_to_email,\n header_subject,\n id as distribution_id,\n message_library_id,\n message_message_id as message_id,\n message_message_text as message_text,\n cast(modified_date as timestamp) as last_modified_at,\n organization_id,\n owner_id as owner_user_id,\n parent_distribution_id,\n recipient_contact_id,\n recipient_library_id,\n recipient_mailing_list_id,\n recipient_sample_id,\n request_status,\n request_type,\n cast(send_date as timestamp) as send_at,\n cast(survey_link_expiration_date as timestamp) as survey_link_expires_at,\n survey_link_link_type as survey_link_type,\n survey_link_survey_id as survey_id,\n _fivetran_deleted as is_deleted,\n _fivetran_synced,\n source_relation\n\n \n\n\n\n\n\n from fields\n)\n\nselect *\nfrom final", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "alias_types": true, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null, "deprecation_date": null}, "model.qualtrics_source.stg_qualtrics__survey_embedded_data": {"database": "postgres", "schema": "qualtrics_source_integration_tests_qualtrics_source", "name": "stg_qualtrics__survey_embedded_data", "resource_type": "model", "package_name": "qualtrics_source", "path": "stg_qualtrics__survey_embedded_data.sql", "original_file_path": "models/stg_qualtrics__survey_embedded_data.sql", "unique_id": "model.qualtrics_source.stg_qualtrics__survey_embedded_data", "fqn": ["qualtrics_source", "stg_qualtrics__survey_embedded_data"], "alias": "stg_qualtrics__survey_embedded_data", "checksum": {"name": "sha256", "checksum": "f414470a3eeb52358ba7caf772f85b20b103f04e906d338f81985ec0892d14ac"}, "config": {"enabled": true, "alias": null, "schema": "qualtrics_source", "database": null, "tags": ["qualtrics", "fivetran_package", "staging"], "meta": {}, "group": null, "materialized": "table", "incremental_strategy": null, "persist_docs": {}, "post-hook": [], "pre-hook": [], "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "on_configuration_change": "apply", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false, "alias_types": true}, "access": "protected"}, "tags": ["qualtrics", "fivetran_package", "staging"], "description": "Any extra information you would like recorded in addition to the question responses.", "columns": {"_fivetran_synced": {"name": "_fivetran_synced", "description": "The time when a record was last updated by Fivetran.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "import_id": {"name": "import_id", "description": "A unique identifier to recognize this import job of embedded survey data.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "key": {"name": "key", "description": "Key of the embedded survey data element.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "response_id": {"name": "response_id", "description": "The unique ID for the `SURVEY_RESPONSE`.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "value": {"name": "value", "description": "Key of the embedded survey data element.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "source_relation": {"name": "source_relation", "description": "The schema or database this record came from if you are making use of the qualtrics_union_schemas or qualtrics_union_databases variables, respectively. Empty string if you are not using either of these variables to union together multiple Qualtrics connectors.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "qualtrics_source://models/stg_qualtrics.yml", "build_path": null, "deferred": false, "unrendered_config": {"tags": ["qualtrics", "fivetran_package", "staging"], "schema": "qualtrics_source", "materialized": "table"}, "created_at": 1711137323.9759328, "relation_name": "\"postgres\".\"qualtrics_source_integration_tests_qualtrics_source\".\"stg_qualtrics__survey_embedded_data\"", "raw_code": "with base as (\n\n select * \n from {{ ref('stg_qualtrics__survey_embedded_data_tmp') }}\n),\n\nfields as (\n\n select\n {{\n fivetran_utils.fill_staging_columns(\n source_columns=adapter.get_columns_in_relation(ref('stg_qualtrics__survey_embedded_data_tmp')),\n staging_columns=get_survey_embedded_data_columns()\n )\n }}\n\n {{ fivetran_utils.source_relation(\n union_schema_variable='qualtrics_union_schemas', \n union_database_variable='qualtrics_union_databases') \n }}\n \n from base\n),\n\nfinal as (\n \n select \n import_id,\n key,\n response_id,\n value,\n _fivetran_synced,\n source_relation\n \n from fields\n)\n\nselect *\nfrom final", "language": "sql", "refs": [{"name": "stg_qualtrics__survey_embedded_data_tmp", "package": null, "version": null}, {"name": "stg_qualtrics__survey_embedded_data_tmp", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.qualtrics_source.get_survey_embedded_data_columns", "macro.fivetran_utils.fill_staging_columns", "macro.fivetran_utils.source_relation"], "nodes": ["model.qualtrics_source.stg_qualtrics__survey_embedded_data_tmp"]}, "compiled_path": "target/compiled/qualtrics_source/models/stg_qualtrics__survey_embedded_data.sql", "compiled": true, "compiled_code": "with base as (\n\n select * \n from \"postgres\".\"qualtrics_source_integration_tests_qualtrics_source\".\"stg_qualtrics__survey_embedded_data_tmp\"\n),\n\nfields as (\n\n select\n \n \n \n _fivetran_synced\n \n as \n \n _fivetran_synced\n \n, \n \n \n import_id\n \n as \n \n import_id\n \n, \n \n \n key\n \n as \n \n key\n \n, \n \n \n response_id\n \n as \n \n response_id\n \n, \n \n \n value\n \n as \n \n value\n \n\n\n\n\n \n\n\n, cast('' as TEXT) as source_relation\n\n\n\n \n from base\n),\n\nfinal as (\n \n select \n import_id,\n key,\n response_id,\n value,\n _fivetran_synced,\n source_relation\n \n from fields\n)\n\nselect *\nfrom final", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "alias_types": true, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null, "deprecation_date": null}, "model.qualtrics_source.stg_qualtrics__survey_response": {"database": "postgres", "schema": "qualtrics_source_integration_tests_qualtrics_source", "name": "stg_qualtrics__survey_response", "resource_type": "model", "package_name": "qualtrics_source", "path": "stg_qualtrics__survey_response.sql", "original_file_path": "models/stg_qualtrics__survey_response.sql", "unique_id": "model.qualtrics_source.stg_qualtrics__survey_response", "fqn": ["qualtrics_source", "stg_qualtrics__survey_response"], "alias": "stg_qualtrics__survey_response", "checksum": {"name": "sha256", "checksum": "db8ec5190c419e9b3b639de50465ae2f5decabef48340d3597f71f8734869cd7"}, "config": {"enabled": true, "alias": null, "schema": "qualtrics_source", "database": null, "tags": ["qualtrics", "fivetran_package", "staging"], "meta": {}, "group": null, "materialized": "table", "incremental_strategy": null, "persist_docs": {}, "post-hook": [], "pre-hook": [], "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "on_configuration_change": "apply", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false, "alias_types": true}, "access": "protected"}, "tags": ["qualtrics", "fivetran_package", "staging"], "description": "Individual responses to surveys. A response becomes \"recorded\" when a respondent submits a survey, a survey is manually closed from the Responses in Progress page, or a survey session expires.\n", "columns": {"_fivetran_synced": {"name": "_fivetran_synced", "description": "The time when a record was last updated by Fivetran.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "distribution_channel": {"name": "distribution_channel", "description": "The method by which the survey was distributed to respondents.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "duration_in_seconds": {"name": "duration_in_seconds", "description": "How long it took for the respondent to finish the survey in seconds.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "finished_at": {"name": "finished_at", "description": "The point in time when the survey response was finished.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "is_finished": {"name": "is_finished", "description": "Boolean (stored as int) indicating if the respondent finished and submitted the survey, the value will be 1, otherwise it will be 0.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "response_id": {"name": "response_id", "description": "The unique ID for the `SURVEY_RESPONSE`.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "ip_address": {"name": "ip_address", "description": "IP address of the recipient.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "last_modified_at": {"name": "last_modified_at", "description": "The point in time when the record was last modified.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "location_latitude": {"name": "location_latitude", "description": "The approximate location of the respondent at the time the survey was taken.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "location_longitude": {"name": "location_longitude", "description": "The approximate location of the respondent at the time the survey was taken.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "progress": {"name": "progress", "description": "How far the respondent has progressed through the survey as a percentage out of 100.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "recipient_email": {"name": "recipient_email", "description": "Email of the [recipient](https://api.qualtrics.com/ZG9jOjg3NzY2OQ-getting-information-about-distributions#the-recipients-object) if they are a single recipient (not a mailing list or sample).", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "recipient_first_name": {"name": "recipient_first_name", "description": "First name of the [recipient](https://api.qualtrics.com/ZG9jOjg3NzY2OQ-getting-information-about-distributions#the-recipients-object) if they are a single recipient (not a mailing list or sample).", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "recipient_last_name": {"name": "recipient_last_name", "description": "Last name of the [recipient](https://api.qualtrics.com/ZG9jOjg3NzY2OQ-getting-information-about-distributions#the-recipients-object) if they are a single recipient (not a mailing list or sample).", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "recorded_date": {"name": "recorded_date", "description": "The point in time when the survey response was recorded.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "started_at": {"name": "started_at", "description": "The point in time when the survey response was recorded.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "status": {"name": "status", "description": "The type of response.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "survey_id": {"name": "survey_id", "description": "The unique identifier for this survey. Match pattern = ^SV_[a-zA-Z0-9]{11,15}$", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "user_language": {"name": "user_language", "description": "The language of the respondent.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "source_relation": {"name": "source_relation", "description": "The schema or database this record came from if you are making use of the qualtrics_union_schemas or qualtrics_union_databases variables, respectively. Empty string if you are not using either of these variables to union together multiple Qualtrics connectors.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "qualtrics_source://models/stg_qualtrics.yml", "build_path": null, "deferred": false, "unrendered_config": {"tags": ["qualtrics", "fivetran_package", "staging"], "schema": "qualtrics_source", "materialized": "table"}, "created_at": 1711137323.9735732, "relation_name": "\"postgres\".\"qualtrics_source_integration_tests_qualtrics_source\".\"stg_qualtrics__survey_response\"", "raw_code": "with base as (\n\n select * \n from {{ ref('stg_qualtrics__survey_response_tmp') }}\n),\n\nfields as (\n\n select\n {{\n fivetran_utils.fill_staging_columns(\n source_columns=adapter.get_columns_in_relation(ref('stg_qualtrics__survey_response_tmp')),\n staging_columns=get_survey_response_columns()\n )\n }}\n\n {{ fivetran_utils.source_relation(\n union_schema_variable='qualtrics_union_schemas', \n union_database_variable='qualtrics_union_databases') \n }}\n \n from base\n),\n\nfinal as (\n \n select \n distribution_channel,\n duration_in_seconds,\n cast(end_date as {{ dbt.type_timestamp() }}) as finished_at,\n cast(finished as {{ dbt.type_boolean() }}) as is_finished,\n id as response_id,\n ip_address,\n cast(last_modified_date as {{ dbt.type_timestamp() }}) as last_modified_at,\n location_latitude,\n location_longitude,\n progress,\n lower(recipient_email) as recipient_email,\n recipient_first_name,\n recipient_last_name,\n recorded_date,\n cast(start_date as {{ dbt.type_timestamp() }}) as started_at,\n status,\n survey_id,\n user_language,\n _fivetran_synced,\n source_relation\n \n from fields\n)\n\nselect *\nfrom final", "language": "sql", "refs": [{"name": "stg_qualtrics__survey_response_tmp", "package": null, "version": null}, {"name": "stg_qualtrics__survey_response_tmp", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.qualtrics_source.get_survey_response_columns", "macro.fivetran_utils.fill_staging_columns", "macro.fivetran_utils.source_relation", "macro.dbt.type_timestamp", "macro.dbt.type_boolean"], "nodes": ["model.qualtrics_source.stg_qualtrics__survey_response_tmp"]}, "compiled_path": "target/compiled/qualtrics_source/models/stg_qualtrics__survey_response.sql", "compiled": true, "compiled_code": "with base as (\n\n select * \n from \"postgres\".\"qualtrics_source_integration_tests_qualtrics_source\".\"stg_qualtrics__survey_response_tmp\"\n),\n\nfields as (\n\n select\n \n \n \n _fivetran_synced\n \n as \n \n _fivetran_synced\n \n, \n \n \n distribution_channel\n \n as \n \n distribution_channel\n \n, \n \n \n duration_in_seconds\n \n as \n \n duration_in_seconds\n \n, \n \n \n end_date\n \n as \n \n end_date\n \n, \n \n \n finished\n \n as \n \n finished\n \n, \n \n \n id\n \n as \n \n id\n \n, \n \n \n ip_address\n \n as \n \n ip_address\n \n, \n \n \n last_modified_date\n \n as \n \n last_modified_date\n \n, \n \n \n location_latitude\n \n as \n \n location_latitude\n \n, \n \n \n location_longitude\n \n as \n \n location_longitude\n \n, \n \n \n progress\n \n as \n \n progress\n \n, \n \n \n recipient_email\n \n as \n \n recipient_email\n \n, \n \n \n recipient_first_name\n \n as \n \n recipient_first_name\n \n, \n \n \n recipient_last_name\n \n as \n \n recipient_last_name\n \n, \n \n \n recorded_date\n \n as \n \n recorded_date\n \n, \n \n \n start_date\n \n as \n \n start_date\n \n, \n \n \n status\n \n as \n \n status\n \n, \n \n \n survey_id\n \n as \n \n survey_id\n \n, \n \n \n user_language\n \n as \n \n user_language\n \n\n\n\n\n \n\n\n, cast('' as TEXT) as source_relation\n\n\n\n \n from base\n),\n\nfinal as (\n \n select \n distribution_channel,\n duration_in_seconds,\n cast(end_date as timestamp) as finished_at,\n cast(finished as boolean) as is_finished,\n id as response_id,\n ip_address,\n cast(last_modified_date as timestamp) as last_modified_at,\n location_latitude,\n location_longitude,\n progress,\n lower(recipient_email) as recipient_email,\n recipient_first_name,\n recipient_last_name,\n recorded_date,\n cast(start_date as timestamp) as started_at,\n status,\n survey_id,\n user_language,\n _fivetran_synced,\n source_relation\n \n from fields\n)\n\nselect *\nfrom final", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "alias_types": true, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null, "deprecation_date": null}, "model.qualtrics_source.stg_qualtrics__user": {"database": "postgres", "schema": "qualtrics_source_integration_tests_qualtrics_source", "name": "stg_qualtrics__user", "resource_type": "model", "package_name": "qualtrics_source", "path": "stg_qualtrics__user.sql", "original_file_path": "models/stg_qualtrics__user.sql", "unique_id": "model.qualtrics_source.stg_qualtrics__user", "fqn": ["qualtrics_source", "stg_qualtrics__user"], "alias": "stg_qualtrics__user", "checksum": {"name": "sha256", "checksum": "5a71bf6930670052f8d6924fdc902a2854badfa5f8f4b045c672016bb86b4c26"}, "config": {"enabled": true, "alias": null, "schema": "qualtrics_source", "database": null, "tags": ["qualtrics", "fivetran_package", "staging"], "meta": {}, "group": null, "materialized": "table", "incremental_strategy": null, "persist_docs": {}, "post-hook": [], "pre-hook": [], "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "on_configuration_change": "apply", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false, "alias_types": true}, "access": "protected"}, "tags": ["qualtrics", "fivetran_package", "staging"], "description": "These are the users in your organizations, not the contacts for whom you are building content like surveys and messages.", "columns": {"is_deleted": {"name": "is_deleted", "description": "Boolean representing whether the record was soft-deleted in Qualtrics.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "_fivetran_synced": {"name": "_fivetran_synced", "description": "The time when a record was last updated by Fivetran.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "account_created_at": {"name": "account_created_at", "description": "The date and time that the account was created. Dates and times are expressed in ISO 8601 format.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "account_expires_at": {"name": "account_expires_at", "description": "The date the account expires. Dates and times are expressed in ISO 8601 format.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "account_status": {"name": "account_status", "description": "Either `active`, `disabled`, or `notVerified`.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "division_id": {"name": "division_id", "description": "The unique identifier for the Division ID. Match pattern = ^DV_[0-9a-zA-Z]{11,15}$", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "email": {"name": "email", "description": "The user's email address.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "first_name": {"name": "first_name", "description": "The user's first name or given name.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "user_id": {"name": "user_id", "description": "Unique ID of the user. Match pattern = ^((UR)|(URH))_[0-9a-zA-Z]{11,15}$", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "language": {"name": "language", "description": "The user's default language.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "last_login_at": {"name": "last_login_at", "description": "The date and time the user last logged into the user interface. Dates and times are expressed in ISO 8601 format.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "last_name": {"name": "last_name", "description": "User's surname.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "organization_id": {"name": "organization_id", "description": "ID of the organization/brand this record belongs to.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "password_expires_at": {"name": "password_expires_at", "description": "The date the account password expires. Dates and times are expressed in ISO 8601 format.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "password_last_changed_at": {"name": "password_last_changed_at", "description": "The date the account password was last changed. Dates and times are expressed in ISO 8601 format.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "response_count_auditable": {"name": "response_count_auditable", "description": "The count of auditable responses.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "response_count_deleted": {"name": "response_count_deleted", "description": "The count of deleted responses.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "response_count_generated": {"name": "response_count_generated", "description": "The count of generated responses.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "time_zone": {"name": "time_zone", "description": "The IANA time zone setting for the user.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "is_unsubscribed": {"name": "is_unsubscribed", "description": "Boolean indicating if the user unsubscribed.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "user_type": {"name": "user_type", "description": "ID of the user type. See mappings of user types to their type IDs [here](https://api.qualtrics.com/dc2be1c61af61-user-type).", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "username": {"name": "username", "description": "UI-facing username for the account.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "source_relation": {"name": "source_relation", "description": "The schema or database this record came from if you are making use of the qualtrics_union_schemas or qualtrics_union_databases variables, respectively. Empty string if you are not using either of these variables to union together multiple Qualtrics connectors.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "qualtrics_source://models/stg_qualtrics.yml", "build_path": null, "deferred": false, "unrendered_config": {"tags": ["qualtrics", "fivetran_package", "staging"], "schema": "qualtrics_source", "materialized": "table"}, "created_at": 1711137323.961684, "relation_name": "\"postgres\".\"qualtrics_source_integration_tests_qualtrics_source\".\"stg_qualtrics__user\"", "raw_code": "with base as (\n\n select * \n from {{ ref('stg_qualtrics__user_tmp') }}\n),\n\nfields as (\n\n select\n {{\n fivetran_utils.fill_staging_columns(\n source_columns=adapter.get_columns_in_relation(ref('stg_qualtrics__user_tmp')),\n staging_columns=get_user_columns()\n )\n }}\n\n {{ fivetran_utils.source_relation(\n union_schema_variable='qualtrics_union_schemas', \n union_database_variable='qualtrics_union_databases') \n }}\n \n from base\n),\n\nfinal as (\n \n select \n cast(account_creation_date as {{ dbt.type_timestamp() }}) as account_created_at,\n cast(account_expiration_date as {{ dbt.type_timestamp() }}) as account_expires_at,\n account_status,\n division_id,\n email,\n first_name,\n id as user_id,\n language,\n cast(last_login_date as {{ dbt.type_timestamp() }}) as last_login_at,\n last_name,\n organization_id,\n cast(password_expiration_date as {{ dbt.type_timestamp() }}) as password_expires_at,\n cast(password_last_changed_date as {{ dbt.type_timestamp() }}) as password_last_changed_at,\n response_count_auditable,\n response_count_deleted,\n response_count_generated,\n time_zone,\n unsubscribed as is_unsubscribed,\n user_type,\n username,\n _fivetran_deleted as is_deleted,\n _fivetran_synced,\n source_relation\n from fields\n)\n\nselect *\nfrom final", "language": "sql", "refs": [{"name": "stg_qualtrics__user_tmp", "package": null, "version": null}, {"name": "stg_qualtrics__user_tmp", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.qualtrics_source.get_user_columns", "macro.fivetran_utils.fill_staging_columns", "macro.fivetran_utils.source_relation", "macro.dbt.type_timestamp"], "nodes": ["model.qualtrics_source.stg_qualtrics__user_tmp"]}, "compiled_path": "target/compiled/qualtrics_source/models/stg_qualtrics__user.sql", "compiled": true, "compiled_code": "with base as (\n\n select * \n from \"postgres\".\"qualtrics_source_integration_tests_qualtrics_source\".\"stg_qualtrics__user_tmp\"\n),\n\nfields as (\n\n select\n \n \n \n _fivetran_deleted\n \n as \n \n _fivetran_deleted\n \n, \n \n \n _fivetran_synced\n \n as \n \n _fivetran_synced\n \n, \n \n \n account_creation_date\n \n as \n \n account_creation_date\n \n, \n \n \n account_expiration_date\n \n as \n \n account_expiration_date\n \n, \n \n \n account_status\n \n as \n \n account_status\n \n, \n \n \n division_id\n \n as \n \n division_id\n \n, \n \n \n email\n \n as \n \n email\n \n, \n \n \n first_name\n \n as \n \n first_name\n \n, \n \n \n id\n \n as \n \n id\n \n, \n \n \n language\n \n as \n \n language\n \n, \n \n \n last_login_date\n \n as \n \n last_login_date\n \n, \n \n \n last_name\n \n as \n \n last_name\n \n, \n \n \n organization_id\n \n as \n \n organization_id\n \n, \n \n \n password_expiration_date\n \n as \n \n password_expiration_date\n \n, \n \n \n password_last_changed_date\n \n as \n \n password_last_changed_date\n \n, \n \n \n response_count_auditable\n \n as \n \n response_count_auditable\n \n, \n \n \n response_count_deleted\n \n as \n \n response_count_deleted\n \n, \n \n \n response_count_generated\n \n as \n \n response_count_generated\n \n, \n \n \n time_zone\n \n as \n \n time_zone\n \n, \n \n \n unsubscribed\n \n as \n \n unsubscribed\n \n, \n \n \n user_type\n \n as \n \n user_type\n \n, \n \n \n username\n \n as \n \n username\n \n\n\n\n\n \n\n\n, cast('' as TEXT) as source_relation\n\n\n\n \n from base\n),\n\nfinal as (\n \n select \n cast(account_creation_date as timestamp) as account_created_at,\n cast(account_expiration_date as timestamp) as account_expires_at,\n account_status,\n division_id,\n email,\n first_name,\n id as user_id,\n language,\n cast(last_login_date as timestamp) as last_login_at,\n last_name,\n organization_id,\n cast(password_expiration_date as timestamp) as password_expires_at,\n cast(password_last_changed_date as timestamp) as password_last_changed_at,\n response_count_auditable,\n response_count_deleted,\n response_count_generated,\n time_zone,\n unsubscribed as is_unsubscribed,\n user_type,\n username,\n _fivetran_deleted as is_deleted,\n _fivetran_synced,\n source_relation\n from fields\n)\n\nselect *\nfrom final", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "alias_types": true, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null, "deprecation_date": null}, "model.qualtrics_source.stg_qualtrics__question": {"database": "postgres", "schema": "qualtrics_source_integration_tests_qualtrics_source", "name": "stg_qualtrics__question", "resource_type": "model", "package_name": "qualtrics_source", "path": "stg_qualtrics__question.sql", "original_file_path": "models/stg_qualtrics__question.sql", "unique_id": "model.qualtrics_source.stg_qualtrics__question", "fqn": ["qualtrics_source", "stg_qualtrics__question"], "alias": "stg_qualtrics__question", "checksum": {"name": "sha256", "checksum": "ec8c895c4dbafa5d536bcc7713eb26f718794c2052787ed2284fa23cb25f72ee"}, "config": {"enabled": true, "alias": null, "schema": "qualtrics_source", "database": null, "tags": ["qualtrics", "fivetran_package", "staging"], "meta": {}, "group": null, "materialized": "table", "incremental_strategy": null, "persist_docs": {}, "post-hook": [], "pre-hook": [], "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "on_configuration_change": "apply", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false, "alias_types": true}, "access": "protected"}, "tags": ["qualtrics", "fivetran_package", "staging"], "description": "Questions within a survey.", "columns": {"is_deleted": {"name": "is_deleted", "description": "Boolean representing whether the record was soft-deleted in Qualtrics.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "_fivetran_synced": {"name": "_fivetran_synced", "description": "The time when a record was last updated by Fivetran.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "data_export_tag": {"name": "data_export_tag", "description": "The tag to identify the question in exported data.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "is_data_hidden": {"name": "is_data_hidden", "description": "Boolean that represents whether the embedded data is hidden.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "is_data_private": {"name": "is_data_private", "description": "Boolean that represents whether the embedded data is private.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "question_id": {"name": "question_id", "description": "The unique identifier for the question. Match pattern = ^QID[a-zA-Z0-9]+$", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "next_answer_id": {"name": "next_answer_id", "description": "For Matrix questions, the vertical options are denoted as \"Answers\" in the question's structure. \nID of the next answer for this question. ?", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "next_choice_id": {"name": "next_choice_id", "description": "For Matrix questions, the horizontal options are denoted as \"Choices\" in the question's structure. \n\nID of the next choice for this question. ?", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "question_description": {"name": "question_description", "description": "Label to identify the question.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "question_description_option": {"name": "question_description_option", "description": "An optional user-provided field for question descriptions. Accepted values = `UseText`, `SpecifyLabel`", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "question_text": {"name": "question_text", "description": "Text for the question.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "question_text_unsafe": {"name": "question_text_unsafe", "description": "Un-paresed version of the question text.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "question_type": {"name": "question_type", "description": "The type of question. Can be -\n`MC`,`Matrix`,`Captcha`,`CS`,`DB`,`DD`,`Draw`,`DynamicMatrix`,`FileUpload`,`GAP`,`HeatMap`,`HL`,`HotSpot`,`Meta`,`PGR`,`RO`,`SBS`,`Slider`,`SS`,`TE`,`Timing`,`TreeSelect`", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "selector": {"name": "selector", "description": "How answers are selected such as single answer, multiple answer, etc. Accepted values - \n- `Bipolar`\n- `Browser`\n- `Captcha`\n- `CompactView`\n- `CS`\n- `D`\n- `DL`\n- `DND`\n- `DragAndDrop`\n- `ESTB`\n- `FORM`\n- `FileUpload`\n- `GRB`\n- `HBAR`\n- `HR`\n- `HSLIDER`\n- `I`\n- `Image`\n- `LikeDislike`\n- `Likert`\n- `MACOL`\n- `MAHR`\n- `MAVR`\n- `ML`\n- `MSB`\n- `MaxDiff`\n- `NPS`\n- `OH`\n- `OnOff`\n- `POS`\n- `PTB`\n- `PW`\n- `PageTimer`\n- `Profile`\n- `RB`\n- `RO`\n- `SACOL`\n- `SAHR`\n- `SAVR`\n- `SB`\n- `SBSMatrix`\n- `SL`\n- `STAR`\n- `ScreenCapture`\n- `SearchOnly`\n- `Signature`\n- `TA`\n- `TB`\n- `TBelow`\n- `TE`\n- `TL`\n- `TRight`\n- `Text`\n- `V1`\n- `V2`\n- `VR`\n- `VRTL`\n- `WTXB`", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "sub_selector": {"name": "sub_selector", "description": "How subquestion answers are selected. Allowed values - SingleAnswer, DL, GR, DND, Long, Medium, MultipleAnswer, Columns, NoColumns, Short, TX, TXOT, WOTXB, WOTB, WTB, WTXB, WVTB.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "survey_id": {"name": "survey_id", "description": "The unique identifier for this survey. Match pattern = ^SV_[a-zA-Z0-9]{11,15}$", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "validation_setting_force_response": {"name": "validation_setting_force_response", "description": "The response from forcing respondents to answer a question or request that they consider answering the question before leaving the page", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "validation_setting_force_response_type": {"name": "validation_setting_force_response_type", "description": "The type of response from forcing respondents to answer a question or request that they consider answering the question before leaving the page", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "validation_setting_type": {"name": "validation_setting_type", "description": "The type of forced response validation that is set.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "source_relation": {"name": "source_relation", "description": "The schema or database this record came from if you are making use of the qualtrics_union_schemas or qualtrics_union_databases variables, respectively. Empty string if you are not using either of these variables to union together multiple Qualtrics connectors.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "qualtrics_source://models/stg_qualtrics.yml", "build_path": null, "deferred": false, "unrendered_config": {"tags": ["qualtrics", "fivetran_package", "staging"], "schema": "qualtrics_source", "materialized": "table"}, "created_at": 1711137323.9682481, "relation_name": "\"postgres\".\"qualtrics_source_integration_tests_qualtrics_source\".\"stg_qualtrics__question\"", "raw_code": "with base as (\n\n select * \n from {{ ref('stg_qualtrics__question_tmp') }}\n),\n\nfields as (\n\n select\n {{\n fivetran_utils.fill_staging_columns(\n source_columns=adapter.get_columns_in_relation(ref('stg_qualtrics__question_tmp')),\n staging_columns=get_question_columns()\n )\n }}\n\n {{ fivetran_utils.source_relation(\n union_schema_variable='qualtrics_union_schemas', \n union_database_variable='qualtrics_union_databases') \n }}\n \n from base\n),\n\nfinal as (\n \n select \n data_export_tag,\n data_visibility_hidden as is_data_hidden,\n data_visibility_private as is_data_private,\n id as question_id,\n next_answer_id,\n next_choice_id,\n question_description,\n question_description_option,\n question_text,\n question_text_unsafe,\n question_type,\n selector,\n sub_selector,\n survey_id,\n validation_setting_force_response,\n validation_setting_force_response_type,\n validation_setting_type,\n _fivetran_deleted as is_deleted,\n _fivetran_synced,\n source_relation\n from fields\n)\n\nselect *\nfrom final", "language": "sql", "refs": [{"name": "stg_qualtrics__question_tmp", "package": null, "version": null}, {"name": "stg_qualtrics__question_tmp", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.qualtrics_source.get_question_columns", "macro.fivetran_utils.fill_staging_columns", "macro.fivetran_utils.source_relation"], "nodes": ["model.qualtrics_source.stg_qualtrics__question_tmp"]}, "compiled_path": "target/compiled/qualtrics_source/models/stg_qualtrics__question.sql", "compiled": true, "compiled_code": "with base as (\n\n select * \n from \"postgres\".\"qualtrics_source_integration_tests_qualtrics_source\".\"stg_qualtrics__question_tmp\"\n),\n\nfields as (\n\n select\n \n \n \n _fivetran_deleted\n \n as \n \n _fivetran_deleted\n \n, \n \n \n _fivetran_synced\n \n as \n \n _fivetran_synced\n \n, \n \n \n data_export_tag\n \n as \n \n data_export_tag\n \n, \n \n \n data_visibility_hidden\n \n as \n \n data_visibility_hidden\n \n, \n \n \n data_visibility_private\n \n as \n \n data_visibility_private\n \n, \n \n \n id\n \n as \n \n id\n \n, \n \n \n next_answer_id\n \n as \n \n next_answer_id\n \n, \n \n \n next_choice_id\n \n as \n \n next_choice_id\n \n, \n \n \n question_description\n \n as \n \n question_description\n \n, \n \n \n question_description_option\n \n as \n \n question_description_option\n \n, \n \n \n question_text\n \n as \n \n question_text\n \n, \n \n \n question_text_unsafe\n \n as \n \n question_text_unsafe\n \n, \n \n \n question_type\n \n as \n \n question_type\n \n, \n \n \n selector\n \n as \n \n selector\n \n, \n \n \n sub_selector\n \n as \n \n sub_selector\n \n, \n \n \n survey_id\n \n as \n \n survey_id\n \n, \n \n \n validation_setting_force_response\n \n as \n \n validation_setting_force_response\n \n, \n \n \n validation_setting_force_response_type\n \n as \n \n validation_setting_force_response_type\n \n, \n \n \n validation_setting_type\n \n as \n \n validation_setting_type\n \n\n\n\n\n \n\n\n, cast('' as TEXT) as source_relation\n\n\n\n \n from base\n),\n\nfinal as (\n \n select \n data_export_tag,\n data_visibility_hidden as is_data_hidden,\n data_visibility_private as is_data_private,\n id as question_id,\n next_answer_id,\n next_choice_id,\n question_description,\n question_description_option,\n question_text,\n question_text_unsafe,\n question_type,\n selector,\n sub_selector,\n survey_id,\n validation_setting_force_response,\n validation_setting_force_response_type,\n validation_setting_type,\n _fivetran_deleted as is_deleted,\n _fivetran_synced,\n source_relation\n from fields\n)\n\nselect *\nfrom final", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "alias_types": true, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null, "deprecation_date": null}, "model.qualtrics_source.stg_qualtrics__sub_question": {"database": "postgres", "schema": "qualtrics_source_integration_tests_qualtrics_source", "name": "stg_qualtrics__sub_question", "resource_type": "model", "package_name": "qualtrics_source", "path": "stg_qualtrics__sub_question.sql", "original_file_path": "models/stg_qualtrics__sub_question.sql", "unique_id": "model.qualtrics_source.stg_qualtrics__sub_question", "fqn": ["qualtrics_source", "stg_qualtrics__sub_question"], "alias": "stg_qualtrics__sub_question", "checksum": {"name": "sha256", "checksum": "7b5cd7b6b1d8254e2ef3ff2225d359996599511285af6ab50757b06655f39164"}, "config": {"enabled": true, "alias": null, "schema": "qualtrics_source", "database": null, "tags": ["qualtrics", "fivetran_package", "staging"], "meta": {}, "group": null, "materialized": "table", "incremental_strategy": null, "persist_docs": {}, "post-hook": [], "pre-hook": [], "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "on_configuration_change": "apply", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false, "alias_types": true}, "access": "protected"}, "tags": ["qualtrics", "fivetran_package", "staging"], "description": "Sub-questions of questions.", "columns": {"is_deleted": {"name": "is_deleted", "description": "Boolean representing whether the record was soft-deleted in Qualtrics.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "_fivetran_synced": {"name": "_fivetran_synced", "description": "The time when a record was last updated by Fivetran.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "choice_data_export_tag": {"name": "choice_data_export_tag", "description": "The tag to identify the question choice in exported data.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "key": {"name": "key", "description": "Key of the sub question.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "question_id": {"name": "question_id", "description": "The unique identifier for the question. Match pattern = ^QID[a-zA-Z0-9]+$", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "survey_id": {"name": "survey_id", "description": "The unique identifier for this survey. Match pattern = ^SV_[a-zA-Z0-9]{11,15}$", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "text": {"name": "text", "description": "Sub question text.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "source_relation": {"name": "source_relation", "description": "The schema or database this record came from if you are making use of the qualtrics_union_schemas or qualtrics_union_databases variables, respectively. Empty string if you are not using either of these variables to union together multiple Qualtrics connectors.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "qualtrics_source://models/stg_qualtrics.yml", "build_path": null, "deferred": false, "unrendered_config": {"tags": ["qualtrics", "fivetran_package", "staging"], "schema": "qualtrics_source", "materialized": "table"}, "created_at": 1711137323.974154, "relation_name": "\"postgres\".\"qualtrics_source_integration_tests_qualtrics_source\".\"stg_qualtrics__sub_question\"", "raw_code": "with base as (\n\n select * \n from {{ ref('stg_qualtrics__sub_question_tmp') }}\n),\n\nfields as (\n\n select\n {{\n fivetran_utils.fill_staging_columns(\n source_columns=adapter.get_columns_in_relation(ref('stg_qualtrics__sub_question_tmp')),\n staging_columns=get_sub_question_columns()\n )\n }}\n\n {{ fivetran_utils.source_relation(\n union_schema_variable='qualtrics_union_schemas', \n union_database_variable='qualtrics_union_databases') \n }}\n \n from base\n),\n\nfinal as (\n \n select \n choice_data_export_tag,\n key,\n question_id,\n survey_id,\n text,\n _fivetran_deleted as is_deleted,\n _fivetran_synced,\n source_relation\n \n from fields\n)\n\nselect *\nfrom final", "language": "sql", "refs": [{"name": "stg_qualtrics__sub_question_tmp", "package": null, "version": null}, {"name": "stg_qualtrics__sub_question_tmp", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.qualtrics_source.get_sub_question_columns", "macro.fivetran_utils.fill_staging_columns", "macro.fivetran_utils.source_relation"], "nodes": ["model.qualtrics_source.stg_qualtrics__sub_question_tmp"]}, "compiled_path": "target/compiled/qualtrics_source/models/stg_qualtrics__sub_question.sql", "compiled": true, "compiled_code": "with base as (\n\n select * \n from \"postgres\".\"qualtrics_source_integration_tests_qualtrics_source\".\"stg_qualtrics__sub_question_tmp\"\n),\n\nfields as (\n\n select\n \n \n \n _fivetran_deleted\n \n as \n \n _fivetran_deleted\n \n, \n \n \n _fivetran_synced\n \n as \n \n _fivetran_synced\n \n, \n \n \n choice_data_export_tag\n \n as \n \n choice_data_export_tag\n \n, \n \n \n key\n \n as \n \n key\n \n, \n \n \n question_id\n \n as \n \n question_id\n \n, \n \n \n survey_id\n \n as \n \n survey_id\n \n, \n \n \n text\n \n as \n \n text\n \n\n\n\n\n \n\n\n, cast('' as TEXT) as source_relation\n\n\n\n \n from base\n),\n\nfinal as (\n \n select \n choice_data_export_tag,\n key,\n question_id,\n survey_id,\n text,\n _fivetran_deleted as is_deleted,\n _fivetran_synced,\n source_relation\n \n from fields\n)\n\nselect *\nfrom final", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "alias_types": true, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null, "deprecation_date": null}, "model.qualtrics_source.stg_qualtrics__survey_version": {"database": "postgres", "schema": "qualtrics_source_integration_tests_qualtrics_source", "name": "stg_qualtrics__survey_version", "resource_type": "model", "package_name": "qualtrics_source", "path": "stg_qualtrics__survey_version.sql", "original_file_path": "models/stg_qualtrics__survey_version.sql", "unique_id": "model.qualtrics_source.stg_qualtrics__survey_version", "fqn": ["qualtrics_source", "stg_qualtrics__survey_version"], "alias": "stg_qualtrics__survey_version", "checksum": {"name": "sha256", "checksum": "8650ea4cc791924e58fefae0f4b52a720456eecf2d2b022b782dc7a8330fa739"}, "config": {"enabled": true, "alias": null, "schema": "qualtrics_source", "database": null, "tags": ["qualtrics", "fivetran_package", "staging"], "meta": {}, "group": null, "materialized": "table", "incremental_strategy": null, "persist_docs": {}, "post-hook": [], "pre-hook": [], "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "on_configuration_change": "apply", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false, "alias_types": true}, "access": "protected"}, "tags": ["qualtrics", "fivetran_package", "staging"], "description": "Published and un-published versions of surveys.", "columns": {"is_deleted": {"name": "is_deleted", "description": "Boolean representing whether the record was soft-deleted in Qualtrics.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "_fivetran_synced": {"name": "_fivetran_synced", "description": "The time when a record was last updated by Fivetran.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "created_at": {"name": "created_at", "description": "The creation date and time of the record, expressed as an ISO 8601 value.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "version_description": {"name": "version_description", "description": "A user-provided description of the survey version.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "version_id": {"name": "version_id", "description": "The unique identifier for this survey version.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "is_published": {"name": "is_published", "description": "Boolean that, when true, publishes the version.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "survey_id": {"name": "survey_id", "description": "The unique identifier for this survey. Match pattern = ^SV_[a-zA-Z0-9]{11,15}$", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "publisher_user_id": {"name": "publisher_user_id", "description": "ID of `USER` who published this survey version in your org.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "version_number": {"name": "version_number", "description": "The version number of this survey.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "was_published": {"name": "was_published", "description": "Boolean that is true if the survey version was published.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "source_relation": {"name": "source_relation", "description": "The schema or database this record came from if you are making use of the qualtrics_union_schemas or qualtrics_union_databases variables, respectively. Empty string if you are not using either of these variables to union together multiple Qualtrics connectors.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "qualtrics_source://models/stg_qualtrics.yml", "build_path": null, "deferred": false, "unrendered_config": {"tags": ["qualtrics", "fivetran_package", "staging"], "schema": "qualtrics_source", "materialized": "table"}, "created_at": 1711137323.97546, "relation_name": "\"postgres\".\"qualtrics_source_integration_tests_qualtrics_source\".\"stg_qualtrics__survey_version\"", "raw_code": "with base as (\n\n select * \n from {{ ref('stg_qualtrics__survey_version_tmp') }}\n),\n\nfields as (\n\n select\n {{\n fivetran_utils.fill_staging_columns(\n source_columns=adapter.get_columns_in_relation(ref('stg_qualtrics__survey_version_tmp')),\n staging_columns=get_survey_version_columns()\n )\n }}\n\n {{ fivetran_utils.source_relation(\n union_schema_variable='qualtrics_union_schemas', \n union_database_variable='qualtrics_union_databases') \n }}\n \n from base\n),\n\nfinal as (\n \n select \n cast(creation_date as {{ dbt.type_timestamp() }}) as created_at,\n description as version_description,\n id as version_id,\n published as is_published,\n survey_id,\n user_id as publisher_user_id,\n version_number,\n was_published,\n _fivetran_deleted as is_deleted,\n _fivetran_synced,\n source_relation\n \n from fields\n)\n\nselect *\nfrom final", "language": "sql", "refs": [{"name": "stg_qualtrics__survey_version_tmp", "package": null, "version": null}, {"name": "stg_qualtrics__survey_version_tmp", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.qualtrics_source.get_survey_version_columns", "macro.fivetran_utils.fill_staging_columns", "macro.fivetran_utils.source_relation", "macro.dbt.type_timestamp"], "nodes": ["model.qualtrics_source.stg_qualtrics__survey_version_tmp"]}, "compiled_path": "target/compiled/qualtrics_source/models/stg_qualtrics__survey_version.sql", "compiled": true, "compiled_code": "with base as (\n\n select * \n from \"postgres\".\"qualtrics_source_integration_tests_qualtrics_source\".\"stg_qualtrics__survey_version_tmp\"\n),\n\nfields as (\n\n select\n \n \n \n _fivetran_deleted\n \n as \n \n _fivetran_deleted\n \n, \n \n \n _fivetran_synced\n \n as \n \n _fivetran_synced\n \n, \n \n \n creation_date\n \n as \n \n creation_date\n \n, \n \n \n description\n \n as \n \n description\n \n, \n \n \n id\n \n as \n \n id\n \n, \n \n \n published\n \n as \n \n published\n \n, \n \n \n survey_id\n \n as \n \n survey_id\n \n, \n \n \n user_id\n \n as \n \n user_id\n \n, \n \n \n version_number\n \n as \n \n version_number\n \n, \n \n \n was_published\n \n as \n \n was_published\n \n\n\n\n\n \n\n\n, cast('' as TEXT) as source_relation\n\n\n\n \n from base\n),\n\nfinal as (\n \n select \n cast(creation_date as timestamp) as created_at,\n description as version_description,\n id as version_id,\n published as is_published,\n survey_id,\n user_id as publisher_user_id,\n version_number,\n was_published,\n _fivetran_deleted as is_deleted,\n _fivetran_synced,\n source_relation\n \n from fields\n)\n\nselect *\nfrom final", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "alias_types": true, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null, "deprecation_date": null}, "model.qualtrics_source.stg_qualtrics__directory_mailing_list": {"database": "postgres", "schema": "qualtrics_source_integration_tests_qualtrics_source", "name": "stg_qualtrics__directory_mailing_list", "resource_type": "model", "package_name": "qualtrics_source", "path": "stg_qualtrics__directory_mailing_list.sql", "original_file_path": "models/stg_qualtrics__directory_mailing_list.sql", "unique_id": "model.qualtrics_source.stg_qualtrics__directory_mailing_list", "fqn": ["qualtrics_source", "stg_qualtrics__directory_mailing_list"], "alias": "stg_qualtrics__directory_mailing_list", "checksum": {"name": "sha256", "checksum": "bfb018e75c7c0a1ee4783f47591e0c9d7ce0969a47774fe6b361847c28a22ecd"}, "config": {"enabled": true, "alias": null, "schema": "qualtrics_source", "database": null, "tags": ["qualtrics", "fivetran_package", "staging"], "meta": {}, "group": null, "materialized": "table", "incremental_strategy": null, "persist_docs": {}, "post-hook": [], "pre-hook": [], "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "on_configuration_change": "apply", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false, "alias_types": true}, "access": "protected"}, "tags": ["qualtrics", "fivetran_package", "staging"], "description": "Mailing lists are lists of contacts that can receive emails and survey invitations. You can create mailing lists either through file upload or manually.", "columns": {"is_deleted": {"name": "is_deleted", "description": "Boolean representing whether the record was soft-deleted in Qualtrics.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "_fivetran_synced": {"name": "_fivetran_synced", "description": "The time when a record was last updated by Fivetran.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "created_at": {"name": "created_at", "description": "The creation date and time of the record, expressed as an ISO 8601 value.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "directory_id": {"name": "directory_id", "description": "The directory ID, also known as a pool ID. Example - POOL_012345678901234", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "mailing_list_id": {"name": "mailing_list_id", "description": "The ID for the mailing list.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "last_modified_at": {"name": "last_modified_at", "description": "The point in time when the record was last modified.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "name": {"name": "name", "description": "Name of the mailing list.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "owner_user_id": {"name": "owner_user_id", "description": "The unique identifier for a specific user who owns this.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "source_relation": {"name": "source_relation", "description": "The schema or database this record came from if you are making use of the qualtrics_union_schemas or qualtrics_union_databases variables, respectively. Empty string if you are not using either of these variables to union together multiple Qualtrics connectors.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "qualtrics_source://models/stg_qualtrics.yml", "build_path": null, "deferred": false, "unrendered_config": {"tags": ["qualtrics", "fivetran_package", "staging"], "schema": "qualtrics_source", "materialized": "table"}, "created_at": 1711137323.985523, "relation_name": "\"postgres\".\"qualtrics_source_integration_tests_qualtrics_source\".\"stg_qualtrics__directory_mailing_list\"", "raw_code": "with base as (\n\n select * \n from {{ ref('stg_qualtrics__directory_mailing_list_tmp') }}\n),\n\nfields as (\n\n select\n {{\n fivetran_utils.fill_staging_columns(\n source_columns=adapter.get_columns_in_relation(ref('stg_qualtrics__directory_mailing_list_tmp')),\n staging_columns=get_directory_mailing_list_columns()\n )\n }}\n\n {{ fivetran_utils.source_relation(\n union_schema_variable='qualtrics_union_schemas', \n union_database_variable='qualtrics_union_databases') \n }}\n \n from base\n),\n\nfinal as (\n \n select \n cast(creation_date as {{ dbt.type_timestamp() }}) as created_at,\n directory_id,\n id as mailing_list_id,\n cast(last_modified_date as {{ dbt.type_timestamp() }}) as last_modified_at,\n name,\n owner_id as owner_user_id,\n _fivetran_deleted as is_deleted,\n _fivetran_synced,\n source_relation\n\n from fields\n)\n\nselect *\nfrom final", "language": "sql", "refs": [{"name": "stg_qualtrics__directory_mailing_list_tmp", "package": null, "version": null}, {"name": "stg_qualtrics__directory_mailing_list_tmp", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.qualtrics_source.get_directory_mailing_list_columns", "macro.fivetran_utils.fill_staging_columns", "macro.fivetran_utils.source_relation", "macro.dbt.type_timestamp"], "nodes": ["model.qualtrics_source.stg_qualtrics__directory_mailing_list_tmp"]}, "compiled_path": "target/compiled/qualtrics_source/models/stg_qualtrics__directory_mailing_list.sql", "compiled": true, "compiled_code": "with base as (\n\n select * \n from \"postgres\".\"qualtrics_source_integration_tests_qualtrics_source\".\"stg_qualtrics__directory_mailing_list_tmp\"\n),\n\nfields as (\n\n select\n \n \n \n _fivetran_deleted\n \n as \n \n _fivetran_deleted\n \n, \n \n \n _fivetran_synced\n \n as \n \n _fivetran_synced\n \n, \n \n \n creation_date\n \n as \n \n creation_date\n \n, \n \n \n directory_id\n \n as \n \n directory_id\n \n, \n \n \n id\n \n as \n \n id\n \n, \n \n \n last_modified_date\n \n as \n \n last_modified_date\n \n, \n \n \n name\n \n as \n \n name\n \n, \n \n \n owner_id\n \n as \n \n owner_id\n \n\n\n\n\n \n\n\n, cast('' as TEXT) as source_relation\n\n\n\n \n from base\n),\n\nfinal as (\n \n select \n cast(creation_date as timestamp) as created_at,\n directory_id,\n id as mailing_list_id,\n cast(last_modified_date as timestamp) as last_modified_at,\n name,\n owner_id as owner_user_id,\n _fivetran_deleted as is_deleted,\n _fivetran_synced,\n source_relation\n\n from fields\n)\n\nselect *\nfrom final", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "alias_types": true, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null, "deprecation_date": null}, "model.qualtrics_source.stg_qualtrics__directory_tmp": {"database": "postgres", "schema": "qualtrics_source_integration_tests_qualtrics_source", "name": "stg_qualtrics__directory_tmp", "resource_type": "model", "package_name": "qualtrics_source", "path": "tmp/stg_qualtrics__directory_tmp.sql", "original_file_path": "models/tmp/stg_qualtrics__directory_tmp.sql", "unique_id": "model.qualtrics_source.stg_qualtrics__directory_tmp", "fqn": ["qualtrics_source", "tmp", "stg_qualtrics__directory_tmp"], "alias": "stg_qualtrics__directory_tmp", "checksum": {"name": "sha256", "checksum": "4b3ca7ae5e5b4cf6204f4dafaf2218823498901d5d2354deaaf33b77f72e8ef1"}, "config": {"enabled": true, "alias": null, "schema": "qualtrics_source", "database": null, "tags": ["qualtrics", "fivetran_package", "staging"], "meta": {}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "post-hook": [], "pre-hook": [], "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "on_configuration_change": "apply", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false, "alias_types": true}, "access": "protected"}, "tags": ["qualtrics", "fivetran_package", "staging"], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"tags": ["qualtrics", "fivetran_package", "staging"], "schema": "qualtrics_source", "materialized": "view"}, "created_at": 1711137323.7677948, "relation_name": "\"postgres\".\"qualtrics_source_integration_tests_qualtrics_source\".\"stg_qualtrics__directory_tmp\"", "raw_code": "{{\n fivetran_utils.union_data(\n table_identifier='directory', \n database_variable='qualtrics_database', \n schema_variable='qualtrics_schema', \n default_database=target.database,\n default_schema='qualtrics',\n default_variable='directory',\n union_schema_variable='qualtrics_union_schemas',\n union_database_variable='qualtrics_union_databases'\n )\n}}", "language": "sql", "refs": [], "sources": [["qualtrics", "directory"], ["qualtrics", "directory"]], "metrics": [], "depends_on": {"macros": ["macro.fivetran_utils.union_data"], "nodes": ["source.qualtrics_source.qualtrics.directory"]}, "compiled_path": "target/compiled/qualtrics_source/models/tmp/stg_qualtrics__directory_tmp.sql", "compiled": true, "compiled_code": "\n \n \n \n \n \n \n \n select * \n from \"postgres\".\"qualtrics_source_integration_tests\".\"directory\"", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "alias_types": true, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null, "deprecation_date": null}, "model.qualtrics_source.stg_qualtrics__question_tmp": {"database": "postgres", "schema": "qualtrics_source_integration_tests_qualtrics_source", "name": "stg_qualtrics__question_tmp", "resource_type": "model", "package_name": "qualtrics_source", "path": "tmp/stg_qualtrics__question_tmp.sql", "original_file_path": "models/tmp/stg_qualtrics__question_tmp.sql", "unique_id": "model.qualtrics_source.stg_qualtrics__question_tmp", "fqn": ["qualtrics_source", "tmp", "stg_qualtrics__question_tmp"], "alias": "stg_qualtrics__question_tmp", "checksum": {"name": "sha256", "checksum": "ed11295b4e9d0a28951ddf5a65d957af91c50eef5fc16b8f9f635effb3459fa7"}, "config": {"enabled": true, "alias": null, "schema": "qualtrics_source", "database": null, "tags": ["qualtrics", "fivetran_package", "staging"], "meta": {}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "post-hook": [], "pre-hook": [], "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "on_configuration_change": "apply", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false, "alias_types": true}, "access": "protected"}, "tags": ["qualtrics", "fivetran_package", "staging"], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"tags": ["qualtrics", "fivetran_package", "staging"], "schema": "qualtrics_source", "materialized": "view"}, "created_at": 1711137323.78578, "relation_name": "\"postgres\".\"qualtrics_source_integration_tests_qualtrics_source\".\"stg_qualtrics__question_tmp\"", "raw_code": "{{\n fivetran_utils.union_data(\n table_identifier='question', \n database_variable='qualtrics_database', \n schema_variable='qualtrics_schema', \n default_database=target.database,\n default_schema='qualtrics',\n default_variable='question',\n union_schema_variable='qualtrics_union_schemas',\n union_database_variable='qualtrics_union_databases'\n )\n}}", "language": "sql", "refs": [], "sources": [["qualtrics", "question"], ["qualtrics", "question"]], "metrics": [], "depends_on": {"macros": ["macro.fivetran_utils.union_data"], "nodes": ["source.qualtrics_source.qualtrics.question"]}, "compiled_path": "target/compiled/qualtrics_source/models/tmp/stg_qualtrics__question_tmp.sql", "compiled": true, "compiled_code": "\n \n \n \n \n \n \n \n select * \n from \"postgres\".\"qualtrics_source_integration_tests\".\"question\"", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "alias_types": true, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null, "deprecation_date": null}, "model.qualtrics_source.stg_qualtrics__question_option_tmp": {"database": "postgres", "schema": "qualtrics_source_integration_tests_qualtrics_source", "name": "stg_qualtrics__question_option_tmp", "resource_type": "model", "package_name": "qualtrics_source", "path": "tmp/stg_qualtrics__question_option_tmp.sql", "original_file_path": "models/tmp/stg_qualtrics__question_option_tmp.sql", "unique_id": "model.qualtrics_source.stg_qualtrics__question_option_tmp", "fqn": ["qualtrics_source", "tmp", "stg_qualtrics__question_option_tmp"], "alias": "stg_qualtrics__question_option_tmp", "checksum": {"name": "sha256", "checksum": "c61331fb87b4a42e950006a3c7ff7b2e5e138de5f8f572e6bb1af3899160e97b"}, "config": {"enabled": true, "alias": null, "schema": "qualtrics_source", "database": null, "tags": ["qualtrics", "fivetran_package", "staging"], "meta": {}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "post-hook": [], "pre-hook": [], "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "on_configuration_change": "apply", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false, "alias_types": true}, "access": "protected"}, "tags": ["qualtrics", "fivetran_package", "staging"], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"tags": ["qualtrics", "fivetran_package", "staging"], "schema": "qualtrics_source", "materialized": "view"}, "created_at": 1711137323.790006, "relation_name": "\"postgres\".\"qualtrics_source_integration_tests_qualtrics_source\".\"stg_qualtrics__question_option_tmp\"", "raw_code": "{{\n fivetran_utils.union_data(\n table_identifier='question_option', \n database_variable='qualtrics_database', \n schema_variable='qualtrics_schema', \n default_database=target.database,\n default_schema='qualtrics',\n default_variable='question_option',\n union_schema_variable='qualtrics_union_schemas',\n union_database_variable='qualtrics_union_databases'\n )\n}}", "language": "sql", "refs": [], "sources": [["qualtrics", "question_option"], ["qualtrics", "question_option"]], "metrics": [], "depends_on": {"macros": ["macro.fivetran_utils.union_data"], "nodes": ["source.qualtrics_source.qualtrics.question_option"]}, "compiled_path": "target/compiled/qualtrics_source/models/tmp/stg_qualtrics__question_option_tmp.sql", "compiled": true, "compiled_code": "\n \n \n \n \n \n \n \n select * \n from \"postgres\".\"qualtrics_source_integration_tests\".\"question_option\"", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "alias_types": true, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null, "deprecation_date": null}, "model.qualtrics_source.stg_qualtrics__distribution_contact_tmp": {"database": "postgres", "schema": "qualtrics_source_integration_tests_qualtrics_source", "name": "stg_qualtrics__distribution_contact_tmp", "resource_type": "model", "package_name": "qualtrics_source", "path": "tmp/stg_qualtrics__distribution_contact_tmp.sql", "original_file_path": "models/tmp/stg_qualtrics__distribution_contact_tmp.sql", "unique_id": "model.qualtrics_source.stg_qualtrics__distribution_contact_tmp", "fqn": ["qualtrics_source", "tmp", "stg_qualtrics__distribution_contact_tmp"], "alias": "stg_qualtrics__distribution_contact_tmp", "checksum": {"name": "sha256", "checksum": "7b4914cb30b388e7eb0fdc4e0c3314306dd19c8103f0fa51250e462f368653c5"}, "config": {"enabled": true, "alias": null, "schema": "qualtrics_source", "database": null, "tags": ["qualtrics", "fivetran_package", "staging"], "meta": {}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "post-hook": [], "pre-hook": [], "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "on_configuration_change": "apply", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false, "alias_types": true}, "access": "protected"}, "tags": ["qualtrics", "fivetran_package", "staging"], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"tags": ["qualtrics", "fivetran_package", "staging"], "schema": "qualtrics_source", "materialized": "view"}, "created_at": 1711137323.794275, "relation_name": "\"postgres\".\"qualtrics_source_integration_tests_qualtrics_source\".\"stg_qualtrics__distribution_contact_tmp\"", "raw_code": "{{\n fivetran_utils.union_data(\n table_identifier='distribution_contact', \n database_variable='qualtrics_database', \n schema_variable='qualtrics_schema', \n default_database=target.database,\n default_schema='qualtrics',\n default_variable='distribution_contact',\n union_schema_variable='qualtrics_union_schemas',\n union_database_variable='qualtrics_union_databases'\n )\n}}", "language": "sql", "refs": [], "sources": [["qualtrics", "distribution_contact"], ["qualtrics", "distribution_contact"]], "metrics": [], "depends_on": {"macros": ["macro.fivetran_utils.union_data"], "nodes": ["source.qualtrics_source.qualtrics.distribution_contact"]}, "compiled_path": "target/compiled/qualtrics_source/models/tmp/stg_qualtrics__distribution_contact_tmp.sql", "compiled": true, "compiled_code": "\n \n \n \n \n \n \n \n select * \n from \"postgres\".\"qualtrics_source_integration_tests\".\"distribution_contact\"", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "alias_types": true, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null, "deprecation_date": null}, "model.qualtrics_source.stg_qualtrics__survey_tmp": {"database": "postgres", "schema": "qualtrics_source_integration_tests_qualtrics_source", "name": "stg_qualtrics__survey_tmp", "resource_type": "model", "package_name": "qualtrics_source", "path": "tmp/stg_qualtrics__survey_tmp.sql", "original_file_path": "models/tmp/stg_qualtrics__survey_tmp.sql", "unique_id": "model.qualtrics_source.stg_qualtrics__survey_tmp", "fqn": ["qualtrics_source", "tmp", "stg_qualtrics__survey_tmp"], "alias": "stg_qualtrics__survey_tmp", "checksum": {"name": "sha256", "checksum": "12ed41a2542f0bb532da7e4b1c3f286208d64e8c03b844dd8fd988aba3bc00cb"}, "config": {"enabled": true, "alias": null, "schema": "qualtrics_source", "database": null, "tags": ["qualtrics", "fivetran_package", "staging"], "meta": {}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "post-hook": [], "pre-hook": [], "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "on_configuration_change": "apply", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false, "alias_types": true}, "access": "protected"}, "tags": ["qualtrics", "fivetran_package", "staging"], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"tags": ["qualtrics", "fivetran_package", "staging"], "schema": "qualtrics_source", "materialized": "view"}, "created_at": 1711137323.803835, "relation_name": "\"postgres\".\"qualtrics_source_integration_tests_qualtrics_source\".\"stg_qualtrics__survey_tmp\"", "raw_code": "{{\n fivetran_utils.union_data(\n table_identifier='survey', \n database_variable='qualtrics_database', \n schema_variable='qualtrics_schema', \n default_database=target.database,\n default_schema='qualtrics',\n default_variable='survey',\n union_schema_variable='qualtrics_union_schemas',\n union_database_variable='qualtrics_union_databases'\n )\n}}", "language": "sql", "refs": [], "sources": [["qualtrics", "survey"], ["qualtrics", "survey"]], "metrics": [], "depends_on": {"macros": ["macro.fivetran_utils.union_data"], "nodes": ["source.qualtrics_source.qualtrics.survey"]}, "compiled_path": "target/compiled/qualtrics_source/models/tmp/stg_qualtrics__survey_tmp.sql", "compiled": true, "compiled_code": "\n \n \n \n \n \n \n \n select * \n from \"postgres\".\"qualtrics_source_integration_tests\".\"survey\"", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "alias_types": true, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null, "deprecation_date": null}, "model.qualtrics_source.stg_qualtrics__contact_mailing_list_membership_tmp": {"database": "postgres", "schema": "qualtrics_source_integration_tests_qualtrics_source", "name": "stg_qualtrics__contact_mailing_list_membership_tmp", "resource_type": "model", "package_name": "qualtrics_source", "path": "tmp/stg_qualtrics__contact_mailing_list_membership_tmp.sql", "original_file_path": "models/tmp/stg_qualtrics__contact_mailing_list_membership_tmp.sql", "unique_id": "model.qualtrics_source.stg_qualtrics__contact_mailing_list_membership_tmp", "fqn": ["qualtrics_source", "tmp", "stg_qualtrics__contact_mailing_list_membership_tmp"], "alias": "stg_qualtrics__contact_mailing_list_membership_tmp", "checksum": {"name": "sha256", "checksum": "a464f668cf8d5bc468086e33aedf9b3b3acf48d3aa1464665853720f10c615f4"}, "config": {"enabled": true, "alias": null, "schema": "qualtrics_source", "database": null, "tags": ["qualtrics", "fivetran_package", "staging"], "meta": {}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "post-hook": [], "pre-hook": [], "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "on_configuration_change": "apply", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false, "alias_types": true}, "access": "protected"}, "tags": ["qualtrics", "fivetran_package", "staging"], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"tags": ["qualtrics", "fivetran_package", "staging"], "schema": "qualtrics_source", "materialized": "view"}, "created_at": 1711137323.8080618, "relation_name": "\"postgres\".\"qualtrics_source_integration_tests_qualtrics_source\".\"stg_qualtrics__contact_mailing_list_membership_tmp\"", "raw_code": "{{\n fivetran_utils.union_data(\n table_identifier='contact_mailing_list_membership', \n database_variable='qualtrics_database', \n schema_variable='qualtrics_schema', \n default_database=target.database,\n default_schema='qualtrics',\n default_variable='contact_mailing_list_membership',\n union_schema_variable='qualtrics_union_schemas',\n union_database_variable='qualtrics_union_databases'\n )\n}}", "language": "sql", "refs": [], "sources": [["qualtrics", "contact_mailing_list_membership"], ["qualtrics", "contact_mailing_list_membership"]], "metrics": [], "depends_on": {"macros": ["macro.fivetran_utils.union_data"], "nodes": ["source.qualtrics_source.qualtrics.contact_mailing_list_membership"]}, "compiled_path": "target/compiled/qualtrics_source/models/tmp/stg_qualtrics__contact_mailing_list_membership_tmp.sql", "compiled": true, "compiled_code": "\n \n \n \n \n \n \n \n select * \n from \"postgres\".\"qualtrics_source_integration_tests\".\"contact_mailing_list_membership\"", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "alias_types": true, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null, "deprecation_date": null}, "model.qualtrics_source.stg_qualtrics__distribution_tmp": {"database": "postgres", "schema": "qualtrics_source_integration_tests_qualtrics_source", "name": "stg_qualtrics__distribution_tmp", "resource_type": "model", "package_name": "qualtrics_source", "path": "tmp/stg_qualtrics__distribution_tmp.sql", "original_file_path": "models/tmp/stg_qualtrics__distribution_tmp.sql", "unique_id": "model.qualtrics_source.stg_qualtrics__distribution_tmp", "fqn": ["qualtrics_source", "tmp", "stg_qualtrics__distribution_tmp"], "alias": "stg_qualtrics__distribution_tmp", "checksum": {"name": "sha256", "checksum": "7166ec5e6cf825ee9daa5783aa236f30a294cd79d614420a921b8fe59c8530b9"}, "config": {"enabled": true, "alias": null, "schema": "qualtrics_source", "database": null, "tags": ["qualtrics", "fivetran_package", "staging"], "meta": {}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "post-hook": [], "pre-hook": [], "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "on_configuration_change": "apply", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false, "alias_types": true}, "access": "protected"}, "tags": ["qualtrics", "fivetran_package", "staging"], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"tags": ["qualtrics", "fivetran_package", "staging"], "schema": "qualtrics_source", "materialized": "view"}, "created_at": 1711137323.811811, "relation_name": "\"postgres\".\"qualtrics_source_integration_tests_qualtrics_source\".\"stg_qualtrics__distribution_tmp\"", "raw_code": "{{\n fivetran_utils.union_data(\n table_identifier='distribution', \n database_variable='qualtrics_database', \n schema_variable='qualtrics_schema', \n default_database=target.database,\n default_schema='qualtrics',\n default_variable='distribution',\n union_schema_variable='qualtrics_union_schemas',\n union_database_variable='qualtrics_union_databases'\n )\n}}", "language": "sql", "refs": [], "sources": [["qualtrics", "distribution"], ["qualtrics", "distribution"]], "metrics": [], "depends_on": {"macros": ["macro.fivetran_utils.union_data"], "nodes": ["source.qualtrics_source.qualtrics.distribution"]}, "compiled_path": "target/compiled/qualtrics_source/models/tmp/stg_qualtrics__distribution_tmp.sql", "compiled": true, "compiled_code": "\n \n \n \n \n \n \n \n select * \n from \"postgres\".\"qualtrics_source_integration_tests\".\"distribution\"", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "alias_types": true, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null, "deprecation_date": null}, "model.qualtrics_source.stg_qualtrics__block_question_tmp": {"database": "postgres", "schema": "qualtrics_source_integration_tests_qualtrics_source", "name": "stg_qualtrics__block_question_tmp", "resource_type": "model", "package_name": "qualtrics_source", "path": "tmp/stg_qualtrics__block_question_tmp.sql", "original_file_path": "models/tmp/stg_qualtrics__block_question_tmp.sql", "unique_id": "model.qualtrics_source.stg_qualtrics__block_question_tmp", "fqn": ["qualtrics_source", "tmp", "stg_qualtrics__block_question_tmp"], "alias": "stg_qualtrics__block_question_tmp", "checksum": {"name": "sha256", "checksum": "0b9b7b5c2613f28eeef8c4a2825f977b966a129f8d295bac6d5e374aac6d79b5"}, "config": {"enabled": true, "alias": null, "schema": "qualtrics_source", "database": null, "tags": ["qualtrics", "fivetran_package", "staging"], "meta": {}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "post-hook": [], "pre-hook": [], "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "on_configuration_change": "apply", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false, "alias_types": true}, "access": "protected"}, "tags": ["qualtrics", "fivetran_package", "staging"], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"tags": ["qualtrics", "fivetran_package", "staging"], "schema": "qualtrics_source", "materialized": "view"}, "created_at": 1711137323.815568, "relation_name": "\"postgres\".\"qualtrics_source_integration_tests_qualtrics_source\".\"stg_qualtrics__block_question_tmp\"", "raw_code": "{{\n fivetran_utils.union_data(\n table_identifier='block_question', \n database_variable='qualtrics_database', \n schema_variable='qualtrics_schema', \n default_database=target.database,\n default_schema='qualtrics',\n default_variable='block_question',\n union_schema_variable='qualtrics_union_schemas',\n union_database_variable='qualtrics_union_databases'\n )\n}}", "language": "sql", "refs": [], "sources": [["qualtrics", "block_question"], ["qualtrics", "block_question"]], "metrics": [], "depends_on": {"macros": ["macro.fivetran_utils.union_data"], "nodes": ["source.qualtrics_source.qualtrics.block_question"]}, "compiled_path": "target/compiled/qualtrics_source/models/tmp/stg_qualtrics__block_question_tmp.sql", "compiled": true, "compiled_code": "\n \n \n \n \n \n \n \n select * \n from \"postgres\".\"qualtrics_source_integration_tests\".\"block_question\"", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "alias_types": true, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null, "deprecation_date": null}, "model.qualtrics_source.stg_qualtrics__survey_response_tmp": {"database": "postgres", "schema": "qualtrics_source_integration_tests_qualtrics_source", "name": "stg_qualtrics__survey_response_tmp", "resource_type": "model", "package_name": "qualtrics_source", "path": "tmp/stg_qualtrics__survey_response_tmp.sql", "original_file_path": "models/tmp/stg_qualtrics__survey_response_tmp.sql", "unique_id": "model.qualtrics_source.stg_qualtrics__survey_response_tmp", "fqn": ["qualtrics_source", "tmp", "stg_qualtrics__survey_response_tmp"], "alias": "stg_qualtrics__survey_response_tmp", "checksum": {"name": "sha256", "checksum": "f047d640e7020023f2214578322056d33cebc53a7bee067b398e2195d83d37b4"}, "config": {"enabled": true, "alias": null, "schema": "qualtrics_source", "database": null, "tags": ["qualtrics", "fivetran_package", "staging"], "meta": {}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "post-hook": [], "pre-hook": [], "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "on_configuration_change": "apply", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false, "alias_types": true}, "access": "protected"}, "tags": ["qualtrics", "fivetran_package", "staging"], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"tags": ["qualtrics", "fivetran_package", "staging"], "schema": "qualtrics_source", "materialized": "view"}, "created_at": 1711137323.8193212, "relation_name": "\"postgres\".\"qualtrics_source_integration_tests_qualtrics_source\".\"stg_qualtrics__survey_response_tmp\"", "raw_code": "{{\n fivetran_utils.union_data(\n table_identifier='survey_response', \n database_variable='qualtrics_database', \n schema_variable='qualtrics_schema', \n default_database=target.database,\n default_schema='qualtrics',\n default_variable='survey_response',\n union_schema_variable='qualtrics_union_schemas',\n union_database_variable='qualtrics_union_databases'\n )\n}}", "language": "sql", "refs": [], "sources": [["qualtrics", "survey_response"], ["qualtrics", "survey_response"]], "metrics": [], "depends_on": {"macros": ["macro.fivetran_utils.union_data"], "nodes": ["source.qualtrics_source.qualtrics.survey_response"]}, "compiled_path": "target/compiled/qualtrics_source/models/tmp/stg_qualtrics__survey_response_tmp.sql", "compiled": true, "compiled_code": "\n \n \n \n \n \n \n \n select * \n from \"postgres\".\"qualtrics_source_integration_tests\".\"survey_response\"", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "alias_types": true, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null, "deprecation_date": null}, "model.qualtrics_source.stg_qualtrics__directory_mailing_list_tmp": {"database": "postgres", "schema": "qualtrics_source_integration_tests_qualtrics_source", "name": "stg_qualtrics__directory_mailing_list_tmp", "resource_type": "model", "package_name": "qualtrics_source", "path": "tmp/stg_qualtrics__directory_mailing_list_tmp.sql", "original_file_path": "models/tmp/stg_qualtrics__directory_mailing_list_tmp.sql", "unique_id": "model.qualtrics_source.stg_qualtrics__directory_mailing_list_tmp", "fqn": ["qualtrics_source", "tmp", "stg_qualtrics__directory_mailing_list_tmp"], "alias": "stg_qualtrics__directory_mailing_list_tmp", "checksum": {"name": "sha256", "checksum": "88534ae79c01bf33fa6890ad5e720be4406faab978c6c3a5c3e3205973786c01"}, "config": {"enabled": true, "alias": null, "schema": "qualtrics_source", "database": null, "tags": ["qualtrics", "fivetran_package", "staging"], "meta": {}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "post-hook": [], "pre-hook": [], "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "on_configuration_change": "apply", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false, "alias_types": true}, "access": "protected"}, "tags": ["qualtrics", "fivetran_package", "staging"], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"tags": ["qualtrics", "fivetran_package", "staging"], "schema": "qualtrics_source", "materialized": "view"}, "created_at": 1711137323.8238988, "relation_name": "\"postgres\".\"qualtrics_source_integration_tests_qualtrics_source\".\"stg_qualtrics__directory_mailing_list_tmp\"", "raw_code": "{{\n fivetran_utils.union_data(\n table_identifier='directory_mailing_list', \n database_variable='qualtrics_database', \n schema_variable='qualtrics_schema', \n default_database=target.database,\n default_schema='qualtrics',\n default_variable='directory_mailing_list',\n union_schema_variable='qualtrics_union_schemas',\n union_database_variable='qualtrics_union_databases'\n )\n}}", "language": "sql", "refs": [], "sources": [["qualtrics", "directory_mailing_list"], ["qualtrics", "directory_mailing_list"]], "metrics": [], "depends_on": {"macros": ["macro.fivetran_utils.union_data"], "nodes": ["source.qualtrics_source.qualtrics.directory_mailing_list"]}, "compiled_path": "target/compiled/qualtrics_source/models/tmp/stg_qualtrics__directory_mailing_list_tmp.sql", "compiled": true, "compiled_code": "\n \n \n \n \n \n \n \n select * \n from \"postgres\".\"qualtrics_source_integration_tests\".\"directory_mailing_list\"", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "alias_types": true, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null, "deprecation_date": null}, "model.qualtrics_source.stg_qualtrics__directory_contact_tmp": {"database": "postgres", "schema": "qualtrics_source_integration_tests_qualtrics_source", "name": "stg_qualtrics__directory_contact_tmp", "resource_type": "model", "package_name": "qualtrics_source", "path": "tmp/stg_qualtrics__directory_contact_tmp.sql", "original_file_path": "models/tmp/stg_qualtrics__directory_contact_tmp.sql", "unique_id": "model.qualtrics_source.stg_qualtrics__directory_contact_tmp", "fqn": ["qualtrics_source", "tmp", "stg_qualtrics__directory_contact_tmp"], "alias": "stg_qualtrics__directory_contact_tmp", "checksum": {"name": "sha256", "checksum": "cd03fb1bde2bfd3e28707465eba10e23984e73cd9d5035e899e1c5e56a98f54b"}, "config": {"enabled": true, "alias": null, "schema": "qualtrics_source", "database": null, "tags": ["qualtrics", "fivetran_package", "staging"], "meta": {}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "post-hook": [], "pre-hook": [], "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "on_configuration_change": "apply", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false, "alias_types": true}, "access": "protected"}, "tags": ["qualtrics", "fivetran_package", "staging"], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"tags": ["qualtrics", "fivetran_package", "staging"], "schema": "qualtrics_source", "materialized": "view"}, "created_at": 1711137323.8282292, "relation_name": "\"postgres\".\"qualtrics_source_integration_tests_qualtrics_source\".\"stg_qualtrics__directory_contact_tmp\"", "raw_code": "{{\n fivetran_utils.union_data(\n table_identifier='directory_contact', \n database_variable='qualtrics_database', \n schema_variable='qualtrics_schema', \n default_database=target.database,\n default_schema='qualtrics',\n default_variable='directory_contact',\n union_schema_variable='qualtrics_union_schemas',\n union_database_variable='qualtrics_union_databases'\n )\n}}", "language": "sql", "refs": [], "sources": [["qualtrics", "directory_contact"], ["qualtrics", "directory_contact"]], "metrics": [], "depends_on": {"macros": ["macro.fivetran_utils.union_data"], "nodes": ["source.qualtrics_source.qualtrics.directory_contact"]}, "compiled_path": "target/compiled/qualtrics_source/models/tmp/stg_qualtrics__directory_contact_tmp.sql", "compiled": true, "compiled_code": "\n \n \n \n \n \n \n \n select * \n from \"postgres\".\"qualtrics_source_integration_tests\".\"directory_contact\"", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "alias_types": true, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null, "deprecation_date": null}, "model.qualtrics_source.stg_qualtrics__block_tmp": {"database": "postgres", "schema": "qualtrics_source_integration_tests_qualtrics_source", "name": "stg_qualtrics__block_tmp", "resource_type": "model", "package_name": "qualtrics_source", "path": "tmp/stg_qualtrics__block_tmp.sql", "original_file_path": "models/tmp/stg_qualtrics__block_tmp.sql", "unique_id": "model.qualtrics_source.stg_qualtrics__block_tmp", "fqn": ["qualtrics_source", "tmp", "stg_qualtrics__block_tmp"], "alias": "stg_qualtrics__block_tmp", "checksum": {"name": "sha256", "checksum": "b4300ff80d5e8628a57e45a6ac0febcecf9ac198880b8296064aede3fbb5456c"}, "config": {"enabled": true, "alias": null, "schema": "qualtrics_source", "database": null, "tags": ["qualtrics", "fivetran_package", "staging"], "meta": {}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "post-hook": [], "pre-hook": [], "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "on_configuration_change": "apply", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false, "alias_types": true}, "access": "protected"}, "tags": ["qualtrics", "fivetran_package", "staging"], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"tags": ["qualtrics", "fivetran_package", "staging"], "schema": "qualtrics_source", "materialized": "view"}, "created_at": 1711137323.832596, "relation_name": "\"postgres\".\"qualtrics_source_integration_tests_qualtrics_source\".\"stg_qualtrics__block_tmp\"", "raw_code": "{{\n fivetran_utils.union_data(\n table_identifier='block', \n database_variable='qualtrics_database', \n schema_variable='qualtrics_schema', \n default_database=target.database,\n default_schema='qualtrics',\n default_variable='block',\n union_schema_variable='qualtrics_union_schemas',\n union_database_variable='qualtrics_union_databases'\n )\n}}", "language": "sql", "refs": [], "sources": [["qualtrics", "block"], ["qualtrics", "block"]], "metrics": [], "depends_on": {"macros": ["macro.fivetran_utils.union_data"], "nodes": ["source.qualtrics_source.qualtrics.block"]}, "compiled_path": "target/compiled/qualtrics_source/models/tmp/stg_qualtrics__block_tmp.sql", "compiled": true, "compiled_code": "\n \n \n \n \n \n \n \n select * \n from \"postgres\".\"qualtrics_source_integration_tests\".\"block\"", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "alias_types": true, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null, "deprecation_date": null}, "model.qualtrics_source.stg_qualtrics__survey_embedded_data_tmp": {"database": "postgres", "schema": "qualtrics_source_integration_tests_qualtrics_source", "name": "stg_qualtrics__survey_embedded_data_tmp", "resource_type": "model", "package_name": "qualtrics_source", "path": "tmp/stg_qualtrics__survey_embedded_data_tmp.sql", "original_file_path": "models/tmp/stg_qualtrics__survey_embedded_data_tmp.sql", "unique_id": "model.qualtrics_source.stg_qualtrics__survey_embedded_data_tmp", "fqn": ["qualtrics_source", "tmp", "stg_qualtrics__survey_embedded_data_tmp"], "alias": "stg_qualtrics__survey_embedded_data_tmp", "checksum": {"name": "sha256", "checksum": "b1007ac04a063897a03a96e7648d588d1ec0034d4f1ae0cbcc6c206bff6db3b0"}, "config": {"enabled": true, "alias": null, "schema": "qualtrics_source", "database": null, "tags": ["qualtrics", "fivetran_package", "staging"], "meta": {}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "post-hook": [], "pre-hook": [], "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "on_configuration_change": "apply", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false, "alias_types": true}, "access": "protected"}, "tags": ["qualtrics", "fivetran_package", "staging"], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"tags": ["qualtrics", "fivetran_package", "staging"], "schema": "qualtrics_source", "materialized": "view"}, "created_at": 1711137323.836713, "relation_name": "\"postgres\".\"qualtrics_source_integration_tests_qualtrics_source\".\"stg_qualtrics__survey_embedded_data_tmp\"", "raw_code": "{{\n fivetran_utils.union_data(\n table_identifier='survey_embedded_data', \n database_variable='qualtrics_database', \n schema_variable='qualtrics_schema', \n default_database=target.database,\n default_schema='qualtrics',\n default_variable='survey_embedded_data',\n union_schema_variable='qualtrics_union_schemas',\n union_database_variable='qualtrics_union_databases'\n )\n}}", "language": "sql", "refs": [], "sources": [["qualtrics", "survey_embedded_data"], ["qualtrics", "survey_embedded_data"]], "metrics": [], "depends_on": {"macros": ["macro.fivetran_utils.union_data"], "nodes": ["source.qualtrics_source.qualtrics.survey_embedded_data"]}, "compiled_path": "target/compiled/qualtrics_source/models/tmp/stg_qualtrics__survey_embedded_data_tmp.sql", "compiled": true, "compiled_code": "\n \n \n \n \n \n \n \n select * \n from \"postgres\".\"qualtrics_source_integration_tests\".\"survey_embedded_data\"", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "alias_types": true, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null, "deprecation_date": null}, "model.qualtrics_source.stg_qualtrics__user_tmp": {"database": "postgres", "schema": "qualtrics_source_integration_tests_qualtrics_source", "name": "stg_qualtrics__user_tmp", "resource_type": "model", "package_name": "qualtrics_source", "path": "tmp/stg_qualtrics__user_tmp.sql", "original_file_path": "models/tmp/stg_qualtrics__user_tmp.sql", "unique_id": "model.qualtrics_source.stg_qualtrics__user_tmp", "fqn": ["qualtrics_source", "tmp", "stg_qualtrics__user_tmp"], "alias": "stg_qualtrics__user_tmp", "checksum": {"name": "sha256", "checksum": "1520d2da463067fc5857960e55a02f71a05318d4491f70cca4a6e35d86418b73"}, "config": {"enabled": true, "alias": null, "schema": "qualtrics_source", "database": null, "tags": ["qualtrics", "fivetran_package", "staging"], "meta": {}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "post-hook": [], "pre-hook": [], "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "on_configuration_change": "apply", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false, "alias_types": true}, "access": "protected"}, "tags": ["qualtrics", "fivetran_package", "staging"], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"tags": ["qualtrics", "fivetran_package", "staging"], "schema": "qualtrics_source", "materialized": "view"}, "created_at": 1711137323.840905, "relation_name": "\"postgres\".\"qualtrics_source_integration_tests_qualtrics_source\".\"stg_qualtrics__user_tmp\"", "raw_code": "{{\n fivetran_utils.union_data(\n table_identifier='user', \n database_variable='qualtrics_database', \n schema_variable='qualtrics_schema', \n default_database=target.database,\n default_schema='qualtrics',\n default_variable='user',\n union_schema_variable='qualtrics_union_schemas',\n union_database_variable='qualtrics_union_databases'\n )\n}}", "language": "sql", "refs": [], "sources": [["qualtrics", "user"], ["qualtrics", "user"]], "metrics": [], "depends_on": {"macros": ["macro.fivetran_utils.union_data"], "nodes": ["source.qualtrics_source.qualtrics.user"]}, "compiled_path": "target/compiled/qualtrics_source/models/tmp/stg_qualtrics__user_tmp.sql", "compiled": true, "compiled_code": "\n \n \n \n \n \n \n \n select * \n from \"postgres\".\"qualtrics_source_integration_tests\".\"user\"", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "alias_types": true, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null, "deprecation_date": null}, "model.qualtrics_source.stg_qualtrics__question_response_tmp": {"database": "postgres", "schema": "qualtrics_source_integration_tests_qualtrics_source", "name": "stg_qualtrics__question_response_tmp", "resource_type": "model", "package_name": "qualtrics_source", "path": "tmp/stg_qualtrics__question_response_tmp.sql", "original_file_path": "models/tmp/stg_qualtrics__question_response_tmp.sql", "unique_id": "model.qualtrics_source.stg_qualtrics__question_response_tmp", "fqn": ["qualtrics_source", "tmp", "stg_qualtrics__question_response_tmp"], "alias": "stg_qualtrics__question_response_tmp", "checksum": {"name": "sha256", "checksum": "4c4e65873dc78879bf922bdb9d12a38f92731ad219328e9100f92e93acd9270c"}, "config": {"enabled": true, "alias": null, "schema": "qualtrics_source", "database": null, "tags": ["qualtrics", "fivetran_package", "staging"], "meta": {}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "post-hook": [], "pre-hook": [], "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "on_configuration_change": "apply", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false, "alias_types": true}, "access": "protected"}, "tags": ["qualtrics", "fivetran_package", "staging"], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"tags": ["qualtrics", "fivetran_package", "staging"], "schema": "qualtrics_source", "materialized": "view"}, "created_at": 1711137323.845771, "relation_name": "\"postgres\".\"qualtrics_source_integration_tests_qualtrics_source\".\"stg_qualtrics__question_response_tmp\"", "raw_code": "{{\n fivetran_utils.union_data(\n table_identifier='question_response', \n database_variable='qualtrics_database', \n schema_variable='qualtrics_schema', \n default_database=target.database,\n default_schema='qualtrics',\n default_variable='question_response',\n union_schema_variable='qualtrics_union_schemas',\n union_database_variable='qualtrics_union_databases'\n )\n}}", "language": "sql", "refs": [], "sources": [["qualtrics", "question_response"], ["qualtrics", "question_response"]], "metrics": [], "depends_on": {"macros": ["macro.fivetran_utils.union_data"], "nodes": ["source.qualtrics_source.qualtrics.question_response"]}, "compiled_path": "target/compiled/qualtrics_source/models/tmp/stg_qualtrics__question_response_tmp.sql", "compiled": true, "compiled_code": "\n \n \n \n \n \n \n \n select * \n from \"postgres\".\"qualtrics_source_integration_tests\".\"question_response\"", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "alias_types": true, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null, "deprecation_date": null}, "model.qualtrics_source.stg_qualtrics__survey_version_tmp": {"database": "postgres", "schema": "qualtrics_source_integration_tests_qualtrics_source", "name": "stg_qualtrics__survey_version_tmp", "resource_type": "model", "package_name": "qualtrics_source", "path": "tmp/stg_qualtrics__survey_version_tmp.sql", "original_file_path": "models/tmp/stg_qualtrics__survey_version_tmp.sql", "unique_id": "model.qualtrics_source.stg_qualtrics__survey_version_tmp", "fqn": ["qualtrics_source", "tmp", "stg_qualtrics__survey_version_tmp"], "alias": "stg_qualtrics__survey_version_tmp", "checksum": {"name": "sha256", "checksum": "7de6955c25cf9112b7f4812bc1ee82a99adb7bd0596a503a8c3418d99be7b0fc"}, "config": {"enabled": true, "alias": null, "schema": "qualtrics_source", "database": null, "tags": ["qualtrics", "fivetran_package", "staging"], "meta": {}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "post-hook": [], "pre-hook": [], "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "on_configuration_change": "apply", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false, "alias_types": true}, "access": "protected"}, "tags": ["qualtrics", "fivetran_package", "staging"], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"tags": ["qualtrics", "fivetran_package", "staging"], "schema": "qualtrics_source", "materialized": "view"}, "created_at": 1711137323.8535612, "relation_name": "\"postgres\".\"qualtrics_source_integration_tests_qualtrics_source\".\"stg_qualtrics__survey_version_tmp\"", "raw_code": "{{\n fivetran_utils.union_data(\n table_identifier='survey_version', \n database_variable='qualtrics_database', \n schema_variable='qualtrics_schema', \n default_database=target.database,\n default_schema='qualtrics',\n default_variable='survey_version',\n union_schema_variable='qualtrics_union_schemas',\n union_database_variable='qualtrics_union_databases'\n )\n}}", "language": "sql", "refs": [], "sources": [["qualtrics", "survey_version"], ["qualtrics", "survey_version"]], "metrics": [], "depends_on": {"macros": ["macro.fivetran_utils.union_data"], "nodes": ["source.qualtrics_source.qualtrics.survey_version"]}, "compiled_path": "target/compiled/qualtrics_source/models/tmp/stg_qualtrics__survey_version_tmp.sql", "compiled": true, "compiled_code": "\n \n \n \n \n \n \n \n select * \n from \"postgres\".\"qualtrics_source_integration_tests\".\"survey_version\"", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "alias_types": true, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null, "deprecation_date": null}, "model.qualtrics_source.stg_qualtrics__sub_question_tmp": {"database": "postgres", "schema": "qualtrics_source_integration_tests_qualtrics_source", "name": "stg_qualtrics__sub_question_tmp", "resource_type": "model", "package_name": "qualtrics_source", "path": "tmp/stg_qualtrics__sub_question_tmp.sql", "original_file_path": "models/tmp/stg_qualtrics__sub_question_tmp.sql", "unique_id": "model.qualtrics_source.stg_qualtrics__sub_question_tmp", "fqn": ["qualtrics_source", "tmp", "stg_qualtrics__sub_question_tmp"], "alias": "stg_qualtrics__sub_question_tmp", "checksum": {"name": "sha256", "checksum": "e1c78c3bfc4b8edd62ca16fd5a3f88e9a9eb6dccaf68c1fd07cbea82f7608895"}, "config": {"enabled": true, "alias": null, "schema": "qualtrics_source", "database": null, "tags": ["qualtrics", "fivetran_package", "staging"], "meta": {}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "post-hook": [], "pre-hook": [], "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "on_configuration_change": "apply", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false, "alias_types": true}, "access": "protected"}, "tags": ["qualtrics", "fivetran_package", "staging"], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"tags": ["qualtrics", "fivetran_package", "staging"], "schema": "qualtrics_source", "materialized": "view"}, "created_at": 1711137323.8576682, "relation_name": "\"postgres\".\"qualtrics_source_integration_tests_qualtrics_source\".\"stg_qualtrics__sub_question_tmp\"", "raw_code": "{{\n fivetran_utils.union_data(\n table_identifier='sub_question', \n database_variable='qualtrics_database', \n schema_variable='qualtrics_schema', \n default_database=target.database,\n default_schema='qualtrics',\n default_variable='sub_question',\n union_schema_variable='qualtrics_union_schemas',\n union_database_variable='qualtrics_union_databases'\n )\n}}", "language": "sql", "refs": [], "sources": [["qualtrics", "sub_question"], ["qualtrics", "sub_question"]], "metrics": [], "depends_on": {"macros": ["macro.fivetran_utils.union_data"], "nodes": ["source.qualtrics_source.qualtrics.sub_question"]}, "compiled_path": "target/compiled/qualtrics_source/models/tmp/stg_qualtrics__sub_question_tmp.sql", "compiled": true, "compiled_code": "\n \n \n \n \n \n \n \n select * \n from \"postgres\".\"qualtrics_source_integration_tests\".\"sub_question\"", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "alias_types": true, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null, "deprecation_date": null}, "test.qualtrics_source.not_null_stg_qualtrics__user_user_id.816e912ff9": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "user_id", "model": "{{ get_where_subquery(ref('stg_qualtrics__user')) }}"}, "namespace": null}, "database": "postgres", "schema": "qualtrics_source_integration_tests_dbt_test__audit", "name": "not_null_stg_qualtrics__user_user_id", "resource_type": "test", "package_name": "qualtrics_source", "path": "not_null_stg_qualtrics__user_user_id.sql", "original_file_path": "models/stg_qualtrics.yml", "unique_id": "test.qualtrics_source.not_null_stg_qualtrics__user_user_id.816e912ff9", "fqn": ["qualtrics_source", "not_null_stg_qualtrics__user_user_id"], "alias": "not_null_stg_qualtrics__user_user_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "store_failures_as": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1711137324.031082, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "stg_qualtrics__user", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.qualtrics_source.stg_qualtrics__user"]}, "compiled_path": "target/compiled/qualtrics_source/models/stg_qualtrics.yml/not_null_stg_qualtrics__user_user_id.sql", "compiled": true, "compiled_code": "\n \n \n\n\n\nselect user_id\nfrom \"postgres\".\"qualtrics_source_integration_tests_qualtrics_source\".\"stg_qualtrics__user\"\nwhere user_id is null\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "alias_types": true, "checksum": null}, "column_name": "user_id", "file_key_name": "models.stg_qualtrics__user", "attached_node": "model.qualtrics_source.stg_qualtrics__user"}, "test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__user_user_id__source_relation.73c4de157d": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["user_id", "source_relation"], "model": "{{ get_where_subquery(ref('stg_qualtrics__user')) }}"}, "namespace": "dbt_utils"}, "database": "postgres", "schema": "qualtrics_source_integration_tests_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_stg_qualtrics__user_user_id__source_relation", "resource_type": "test", "package_name": "qualtrics_source", "path": "dbt_utils_unique_combination_o_18f05248a708f9c9e991884ca8029d67.sql", "original_file_path": "models/stg_qualtrics.yml", "unique_id": "test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__user_user_id__source_relation.73c4de157d", "fqn": ["qualtrics_source", "dbt_utils_unique_combination_of_columns_stg_qualtrics__user_user_id__source_relation"], "alias": "dbt_utils_unique_combination_o_18f05248a708f9c9e991884ca8029d67", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_18f05248a708f9c9e991884ca8029d67", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "store_failures_as": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_18f05248a708f9c9e991884ca8029d67"}, "created_at": 1711137324.0325482, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_18f05248a708f9c9e991884ca8029d67\") }}", "language": "sql", "refs": [{"name": "stg_qualtrics__user", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.qualtrics_source.stg_qualtrics__user"]}, "compiled_path": "target/compiled/qualtrics_source/models/stg_qualtrics.yml/dbt_utils_unique_combination_o_18f05248a708f9c9e991884ca8029d67.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n user_id, source_relation\n from \"postgres\".\"qualtrics_source_integration_tests_qualtrics_source\".\"stg_qualtrics__user\"\n group by user_id, source_relation\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "alias_types": true, "checksum": null}, "column_name": null, "file_key_name": "models.stg_qualtrics__user", "attached_node": "model.qualtrics_source.stg_qualtrics__user"}, "test.qualtrics_source.not_null_stg_qualtrics__survey_survey_id.2796651e04": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "survey_id", "model": "{{ get_where_subquery(ref('stg_qualtrics__survey')) }}"}, "namespace": null}, "database": "postgres", "schema": "qualtrics_source_integration_tests_dbt_test__audit", "name": "not_null_stg_qualtrics__survey_survey_id", "resource_type": "test", "package_name": "qualtrics_source", "path": "not_null_stg_qualtrics__survey_survey_id.sql", "original_file_path": "models/stg_qualtrics.yml", "unique_id": "test.qualtrics_source.not_null_stg_qualtrics__survey_survey_id.2796651e04", "fqn": ["qualtrics_source", "not_null_stg_qualtrics__survey_survey_id"], "alias": "not_null_stg_qualtrics__survey_survey_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "store_failures_as": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1711137324.03914, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "stg_qualtrics__survey", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.qualtrics_source.stg_qualtrics__survey"]}, "compiled_path": "target/compiled/qualtrics_source/models/stg_qualtrics.yml/not_null_stg_qualtrics__survey_survey_id.sql", "compiled": true, "compiled_code": "\n \n \n\n\n\nselect survey_id\nfrom \"postgres\".\"qualtrics_source_integration_tests_qualtrics_source\".\"stg_qualtrics__survey\"\nwhere survey_id is null\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "alias_types": true, "checksum": null}, "column_name": "survey_id", "file_key_name": "models.stg_qualtrics__survey", "attached_node": "model.qualtrics_source.stg_qualtrics__survey"}, "test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__survey_survey_id__source_relation.a1fd5a2968": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["survey_id", "source_relation"], "model": "{{ get_where_subquery(ref('stg_qualtrics__survey')) }}"}, "namespace": "dbt_utils"}, "database": "postgres", "schema": "qualtrics_source_integration_tests_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_stg_qualtrics__survey_survey_id__source_relation", "resource_type": "test", "package_name": "qualtrics_source", "path": "dbt_utils_unique_combination_o_c19e664fe90b5b53e739e6d011feb36b.sql", "original_file_path": "models/stg_qualtrics.yml", "unique_id": "test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__survey_survey_id__source_relation.a1fd5a2968", "fqn": ["qualtrics_source", "dbt_utils_unique_combination_of_columns_stg_qualtrics__survey_survey_id__source_relation"], "alias": "dbt_utils_unique_combination_o_c19e664fe90b5b53e739e6d011feb36b", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_c19e664fe90b5b53e739e6d011feb36b", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "store_failures_as": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_c19e664fe90b5b53e739e6d011feb36b"}, "created_at": 1711137324.04044, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_c19e664fe90b5b53e739e6d011feb36b\") }}", "language": "sql", "refs": [{"name": "stg_qualtrics__survey", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.qualtrics_source.stg_qualtrics__survey"]}, "compiled_path": "target/compiled/qualtrics_source/models/stg_qualtrics.yml/dbt_utils_unique_combination_o_c19e664fe90b5b53e739e6d011feb36b.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n survey_id, source_relation\n from \"postgres\".\"qualtrics_source_integration_tests_qualtrics_source\".\"stg_qualtrics__survey\"\n group by survey_id, source_relation\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "alias_types": true, "checksum": null}, "column_name": null, "file_key_name": "models.stg_qualtrics__survey", "attached_node": "model.qualtrics_source.stg_qualtrics__survey"}, "test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__question_question_id__survey_id__source_relation.1e5f78924a": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["question_id", "survey_id", "source_relation"], "model": "{{ get_where_subquery(ref('stg_qualtrics__question')) }}"}, "namespace": "dbt_utils"}, "database": "postgres", "schema": "qualtrics_source_integration_tests_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_stg_qualtrics__question_question_id__survey_id__source_relation", "resource_type": "test", "package_name": "qualtrics_source", "path": "dbt_utils_unique_combination_o_55aafd880719613c53b000b2b858904a.sql", "original_file_path": "models/stg_qualtrics.yml", "unique_id": "test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__question_question_id__survey_id__source_relation.1e5f78924a", "fqn": ["qualtrics_source", "dbt_utils_unique_combination_of_columns_stg_qualtrics__question_question_id__survey_id__source_relation"], "alias": "dbt_utils_unique_combination_o_55aafd880719613c53b000b2b858904a", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_55aafd880719613c53b000b2b858904a", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "store_failures_as": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_55aafd880719613c53b000b2b858904a"}, "created_at": 1711137324.0434282, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_55aafd880719613c53b000b2b858904a\") }}", "language": "sql", "refs": [{"name": "stg_qualtrics__question", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.qualtrics_source.stg_qualtrics__question"]}, "compiled_path": "target/compiled/qualtrics_source/models/stg_qualtrics.yml/dbt_utils_unique_combination_o_55aafd880719613c53b000b2b858904a.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n question_id, survey_id, source_relation\n from \"postgres\".\"qualtrics_source_integration_tests_qualtrics_source\".\"stg_qualtrics__question\"\n group by question_id, survey_id, source_relation\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "alias_types": true, "checksum": null}, "column_name": null, "file_key_name": "models.stg_qualtrics__question", "attached_node": "model.qualtrics_source.stg_qualtrics__question"}, "test.qualtrics_source.not_null_stg_qualtrics__question_response__fivetran_id.6e47cc53d7": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "_fivetran_id", "model": "{{ get_where_subquery(ref('stg_qualtrics__question_response')) }}"}, "namespace": null}, "database": "postgres", "schema": "qualtrics_source_integration_tests_dbt_test__audit", "name": "not_null_stg_qualtrics__question_response__fivetran_id", "resource_type": "test", "package_name": "qualtrics_source", "path": "not_null_stg_qualtrics__question_response__fivetran_id.sql", "original_file_path": "models/stg_qualtrics.yml", "unique_id": "test.qualtrics_source.not_null_stg_qualtrics__question_response__fivetran_id.6e47cc53d7", "fqn": ["qualtrics_source", "not_null_stg_qualtrics__question_response__fivetran_id"], "alias": "not_null_stg_qualtrics__question_response__fivetran_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "store_failures_as": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1711137324.0464709, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "stg_qualtrics__question_response", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.qualtrics_source.stg_qualtrics__question_response"]}, "compiled_path": "target/compiled/qualtrics_source/models/stg_qualtrics.yml/not_null_stg_qualtrics__question_response__fivetran_id.sql", "compiled": true, "compiled_code": "\n \n \n\n\n\nselect _fivetran_id\nfrom \"postgres\".\"qualtrics_source_integration_tests_qualtrics_source\".\"stg_qualtrics__question_response\"\nwhere _fivetran_id is null\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "alias_types": true, "checksum": null}, "column_name": "_fivetran_id", "file_key_name": "models.stg_qualtrics__question_response", "attached_node": "model.qualtrics_source.stg_qualtrics__question_response"}, "test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__question_response__fivetran_id__source_relation.2e0556a912": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["_fivetran_id", "source_relation"], "model": "{{ get_where_subquery(ref('stg_qualtrics__question_response')) }}"}, "namespace": "dbt_utils"}, "database": "postgres", "schema": "qualtrics_source_integration_tests_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_stg_qualtrics__question_response__fivetran_id__source_relation", "resource_type": "test", "package_name": "qualtrics_source", "path": "dbt_utils_unique_combination_o_ec387233df4eeec30e9bfb035d5442aa.sql", "original_file_path": "models/stg_qualtrics.yml", "unique_id": "test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__question_response__fivetran_id__source_relation.2e0556a912", "fqn": ["qualtrics_source", "dbt_utils_unique_combination_of_columns_stg_qualtrics__question_response__fivetran_id__source_relation"], "alias": "dbt_utils_unique_combination_o_ec387233df4eeec30e9bfb035d5442aa", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_ec387233df4eeec30e9bfb035d5442aa", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "store_failures_as": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_ec387233df4eeec30e9bfb035d5442aa"}, "created_at": 1711137324.047652, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_ec387233df4eeec30e9bfb035d5442aa\") }}", "language": "sql", "refs": [{"name": "stg_qualtrics__question_response", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.qualtrics_source.stg_qualtrics__question_response"]}, "compiled_path": "target/compiled/qualtrics_source/models/stg_qualtrics.yml/dbt_utils_unique_combination_o_ec387233df4eeec30e9bfb035d5442aa.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n _fivetran_id, source_relation\n from \"postgres\".\"qualtrics_source_integration_tests_qualtrics_source\".\"stg_qualtrics__question_response\"\n group by _fivetran_id, source_relation\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "alias_types": true, "checksum": null}, "column_name": null, "file_key_name": "models.stg_qualtrics__question_response", "attached_node": "model.qualtrics_source.stg_qualtrics__question_response"}, "test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__question_option_question_id__survey_id__key__source_relation.af5af3057f": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["question_id", "survey_id", "key", "source_relation"], "model": "{{ get_where_subquery(ref('stg_qualtrics__question_option')) }}"}, "namespace": "dbt_utils"}, "database": "postgres", "schema": "qualtrics_source_integration_tests_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_stg_qualtrics__question_option_question_id__survey_id__key__source_relation", "resource_type": "test", "package_name": "qualtrics_source", "path": "dbt_utils_unique_combination_o_da96316b5057751c21638414780b06ad.sql", "original_file_path": "models/stg_qualtrics.yml", "unique_id": "test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__question_option_question_id__survey_id__key__source_relation.af5af3057f", "fqn": ["qualtrics_source", "dbt_utils_unique_combination_of_columns_stg_qualtrics__question_option_question_id__survey_id__key__source_relation"], "alias": "dbt_utils_unique_combination_o_da96316b5057751c21638414780b06ad", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_da96316b5057751c21638414780b06ad", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "store_failures_as": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_da96316b5057751c21638414780b06ad"}, "created_at": 1711137324.050515, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_da96316b5057751c21638414780b06ad\") }}", "language": "sql", "refs": [{"name": "stg_qualtrics__question_option", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.qualtrics_source.stg_qualtrics__question_option"]}, "compiled_path": "target/compiled/qualtrics_source/models/stg_qualtrics.yml/dbt_utils_unique_combination_o_da96316b5057751c21638414780b06ad.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n question_id, survey_id, key, source_relation\n from \"postgres\".\"qualtrics_source_integration_tests_qualtrics_source\".\"stg_qualtrics__question_option\"\n group by question_id, survey_id, key, source_relation\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "alias_types": true, "checksum": null}, "column_name": null, "file_key_name": "models.stg_qualtrics__question_option", "attached_node": "model.qualtrics_source.stg_qualtrics__question_option"}, "test.qualtrics_source.not_null_stg_qualtrics__survey_response_response_id.864d3a83e3": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "response_id", "model": "{{ get_where_subquery(ref('stg_qualtrics__survey_response')) }}"}, "namespace": null}, "database": "postgres", "schema": "qualtrics_source_integration_tests_dbt_test__audit", "name": "not_null_stg_qualtrics__survey_response_response_id", "resource_type": "test", "package_name": "qualtrics_source", "path": "not_null_stg_qualtrics__survey_response_response_id.sql", "original_file_path": "models/stg_qualtrics.yml", "unique_id": "test.qualtrics_source.not_null_stg_qualtrics__survey_response_response_id.864d3a83e3", "fqn": ["qualtrics_source", "not_null_stg_qualtrics__survey_response_response_id"], "alias": "not_null_stg_qualtrics__survey_response_response_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "store_failures_as": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1711137324.053039, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "stg_qualtrics__survey_response", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.qualtrics_source.stg_qualtrics__survey_response"]}, "compiled_path": "target/compiled/qualtrics_source/models/stg_qualtrics.yml/not_null_stg_qualtrics__survey_response_response_id.sql", "compiled": true, "compiled_code": "\n \n \n\n\n\nselect response_id\nfrom \"postgres\".\"qualtrics_source_integration_tests_qualtrics_source\".\"stg_qualtrics__survey_response\"\nwhere response_id is null\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "alias_types": true, "checksum": null}, "column_name": "response_id", "file_key_name": "models.stg_qualtrics__survey_response", "attached_node": "model.qualtrics_source.stg_qualtrics__survey_response"}, "test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__survey_response_response_id__source_relation.c97ddff72b": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["response_id", "source_relation"], "model": "{{ get_where_subquery(ref('stg_qualtrics__survey_response')) }}"}, "namespace": "dbt_utils"}, "database": "postgres", "schema": "qualtrics_source_integration_tests_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_stg_qualtrics__survey_response_response_id__source_relation", "resource_type": "test", "package_name": "qualtrics_source", "path": "dbt_utils_unique_combination_o_4b6d65a8c633cf1cbbf90221fda685c2.sql", "original_file_path": "models/stg_qualtrics.yml", "unique_id": "test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__survey_response_response_id__source_relation.c97ddff72b", "fqn": ["qualtrics_source", "dbt_utils_unique_combination_of_columns_stg_qualtrics__survey_response_response_id__source_relation"], "alias": "dbt_utils_unique_combination_o_4b6d65a8c633cf1cbbf90221fda685c2", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_4b6d65a8c633cf1cbbf90221fda685c2", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "store_failures_as": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_4b6d65a8c633cf1cbbf90221fda685c2"}, "created_at": 1711137324.054267, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_4b6d65a8c633cf1cbbf90221fda685c2\") }}", "language": "sql", "refs": [{"name": "stg_qualtrics__survey_response", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.qualtrics_source.stg_qualtrics__survey_response"]}, "compiled_path": "target/compiled/qualtrics_source/models/stg_qualtrics.yml/dbt_utils_unique_combination_o_4b6d65a8c633cf1cbbf90221fda685c2.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n response_id, source_relation\n from \"postgres\".\"qualtrics_source_integration_tests_qualtrics_source\".\"stg_qualtrics__survey_response\"\n group by response_id, source_relation\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "alias_types": true, "checksum": null}, "column_name": null, "file_key_name": "models.stg_qualtrics__survey_response", "attached_node": "model.qualtrics_source.stg_qualtrics__survey_response"}, "test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__sub_question_question_id__survey_id__key__source_relation.12c68e2ef2": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["question_id", "survey_id", "key", "source_relation"], "model": "{{ get_where_subquery(ref('stg_qualtrics__sub_question')) }}"}, "namespace": "dbt_utils"}, "database": "postgres", "schema": "qualtrics_source_integration_tests_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_stg_qualtrics__sub_question_question_id__survey_id__key__source_relation", "resource_type": "test", "package_name": "qualtrics_source", "path": "dbt_utils_unique_combination_o_2b9662452e1b0c5e6c3c69d1c14821fd.sql", "original_file_path": "models/stg_qualtrics.yml", "unique_id": "test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__sub_question_question_id__survey_id__key__source_relation.12c68e2ef2", "fqn": ["qualtrics_source", "dbt_utils_unique_combination_of_columns_stg_qualtrics__sub_question_question_id__survey_id__key__source_relation"], "alias": "dbt_utils_unique_combination_o_2b9662452e1b0c5e6c3c69d1c14821fd", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_2b9662452e1b0c5e6c3c69d1c14821fd", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "store_failures_as": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_2b9662452e1b0c5e6c3c69d1c14821fd"}, "created_at": 1711137324.056895, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_2b9662452e1b0c5e6c3c69d1c14821fd\") }}", "language": "sql", "refs": [{"name": "stg_qualtrics__sub_question", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.qualtrics_source.stg_qualtrics__sub_question"]}, "compiled_path": "target/compiled/qualtrics_source/models/stg_qualtrics.yml/dbt_utils_unique_combination_o_2b9662452e1b0c5e6c3c69d1c14821fd.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n question_id, survey_id, key, source_relation\n from \"postgres\".\"qualtrics_source_integration_tests_qualtrics_source\".\"stg_qualtrics__sub_question\"\n group by question_id, survey_id, key, source_relation\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "alias_types": true, "checksum": null}, "column_name": null, "file_key_name": "models.stg_qualtrics__sub_question", "attached_node": "model.qualtrics_source.stg_qualtrics__sub_question"}, "test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__survey_version_version_id__survey_id__source_relation.513ef528c1": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["version_id", "survey_id", "source_relation"], "model": "{{ get_where_subquery(ref('stg_qualtrics__survey_version')) }}"}, "namespace": "dbt_utils"}, "database": "postgres", "schema": "qualtrics_source_integration_tests_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_stg_qualtrics__survey_version_version_id__survey_id__source_relation", "resource_type": "test", "package_name": "qualtrics_source", "path": "dbt_utils_unique_combination_o_b063fac05c003d55d85510f91bdee2a4.sql", "original_file_path": "models/stg_qualtrics.yml", "unique_id": "test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__survey_version_version_id__survey_id__source_relation.513ef528c1", "fqn": ["qualtrics_source", "dbt_utils_unique_combination_of_columns_stg_qualtrics__survey_version_version_id__survey_id__source_relation"], "alias": "dbt_utils_unique_combination_o_b063fac05c003d55d85510f91bdee2a4", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_b063fac05c003d55d85510f91bdee2a4", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "store_failures_as": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_b063fac05c003d55d85510f91bdee2a4"}, "created_at": 1711137324.059934, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_b063fac05c003d55d85510f91bdee2a4\") }}", "language": "sql", "refs": [{"name": "stg_qualtrics__survey_version", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.qualtrics_source.stg_qualtrics__survey_version"]}, "compiled_path": "target/compiled/qualtrics_source/models/stg_qualtrics.yml/dbt_utils_unique_combination_o_b063fac05c003d55d85510f91bdee2a4.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n version_id, survey_id, source_relation\n from \"postgres\".\"qualtrics_source_integration_tests_qualtrics_source\".\"stg_qualtrics__survey_version\"\n group by version_id, survey_id, source_relation\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "alias_types": true, "checksum": null}, "column_name": null, "file_key_name": "models.stg_qualtrics__survey_version", "attached_node": "model.qualtrics_source.stg_qualtrics__survey_version"}, "test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__survey_embedded_data_import_id__response_id__key__value__source_relation.73ba345920": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["import_id", "response_id", "key", "value", "source_relation"], "model": "{{ get_where_subquery(ref('stg_qualtrics__survey_embedded_data')) }}"}, "namespace": "dbt_utils"}, "database": "postgres", "schema": "qualtrics_source_integration_tests_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_stg_qualtrics__survey_embedded_data_import_id__response_id__key__value__source_relation", "resource_type": "test", "package_name": "qualtrics_source", "path": "dbt_utils_unique_combination_o_1c22b6d3b0634406466210bcaa3920a7.sql", "original_file_path": "models/stg_qualtrics.yml", "unique_id": "test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__survey_embedded_data_import_id__response_id__key__value__source_relation.73ba345920", "fqn": ["qualtrics_source", "dbt_utils_unique_combination_of_columns_stg_qualtrics__survey_embedded_data_import_id__response_id__key__value__source_relation"], "alias": "dbt_utils_unique_combination_o_1c22b6d3b0634406466210bcaa3920a7", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_1c22b6d3b0634406466210bcaa3920a7", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "store_failures_as": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_1c22b6d3b0634406466210bcaa3920a7"}, "created_at": 1711137324.0634382, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_1c22b6d3b0634406466210bcaa3920a7\") }}", "language": "sql", "refs": [{"name": "stg_qualtrics__survey_embedded_data", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.qualtrics_source.stg_qualtrics__survey_embedded_data"]}, "compiled_path": "target/compiled/qualtrics_source/models/stg_qualtrics.yml/dbt_utils_unique_combination_o_1c22b6d3b0634406466210bcaa3920a7.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n import_id, response_id, key, value, source_relation\n from \"postgres\".\"qualtrics_source_integration_tests_qualtrics_source\".\"stg_qualtrics__survey_embedded_data\"\n group by import_id, response_id, key, value, source_relation\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "alias_types": true, "checksum": null}, "column_name": null, "file_key_name": "models.stg_qualtrics__survey_embedded_data", "attached_node": "model.qualtrics_source.stg_qualtrics__survey_embedded_data"}, "test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__block_block_id__survey_id__source_relation.9105cad472": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["block_id", "survey_id", "source_relation"], "model": "{{ get_where_subquery(ref('stg_qualtrics__block')) }}"}, "namespace": "dbt_utils"}, "database": "postgres", "schema": "qualtrics_source_integration_tests_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_stg_qualtrics__block_block_id__survey_id__source_relation", "resource_type": "test", "package_name": "qualtrics_source", "path": "dbt_utils_unique_combination_o_ed191aee3da2fff9f522af5cd2bcfb75.sql", "original_file_path": "models/stg_qualtrics.yml", "unique_id": "test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__block_block_id__survey_id__source_relation.9105cad472", "fqn": ["qualtrics_source", "dbt_utils_unique_combination_of_columns_stg_qualtrics__block_block_id__survey_id__source_relation"], "alias": "dbt_utils_unique_combination_o_ed191aee3da2fff9f522af5cd2bcfb75", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_ed191aee3da2fff9f522af5cd2bcfb75", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "store_failures_as": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_ed191aee3da2fff9f522af5cd2bcfb75"}, "created_at": 1711137324.066289, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_ed191aee3da2fff9f522af5cd2bcfb75\") }}", "language": "sql", "refs": [{"name": "stg_qualtrics__block", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.qualtrics_source.stg_qualtrics__block"]}, "compiled_path": "target/compiled/qualtrics_source/models/stg_qualtrics.yml/dbt_utils_unique_combination_o_ed191aee3da2fff9f522af5cd2bcfb75.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n block_id, survey_id, source_relation\n from \"postgres\".\"qualtrics_source_integration_tests_qualtrics_source\".\"stg_qualtrics__block\"\n group by block_id, survey_id, source_relation\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "alias_types": true, "checksum": null}, "column_name": null, "file_key_name": "models.stg_qualtrics__block", "attached_node": "model.qualtrics_source.stg_qualtrics__block"}, "test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__block_question_block_id__question_id__survey_id__source_relation.2fd7c420b5": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["block_id", "question_id", "survey_id", "source_relation"], "model": "{{ get_where_subquery(ref('stg_qualtrics__block_question')) }}"}, "namespace": "dbt_utils"}, "database": "postgres", "schema": "qualtrics_source_integration_tests_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_stg_qualtrics__block_question_block_id__question_id__survey_id__source_relation", "resource_type": "test", "package_name": "qualtrics_source", "path": "dbt_utils_unique_combination_o_b9e7103461a1f607bb783c24bb35691d.sql", "original_file_path": "models/stg_qualtrics.yml", "unique_id": "test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__block_question_block_id__question_id__survey_id__source_relation.2fd7c420b5", "fqn": ["qualtrics_source", "dbt_utils_unique_combination_of_columns_stg_qualtrics__block_question_block_id__question_id__survey_id__source_relation"], "alias": "dbt_utils_unique_combination_o_b9e7103461a1f607bb783c24bb35691d", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_b9e7103461a1f607bb783c24bb35691d", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "store_failures_as": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_b9e7103461a1f607bb783c24bb35691d"}, "created_at": 1711137324.06913, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_b9e7103461a1f607bb783c24bb35691d\") }}", "language": "sql", "refs": [{"name": "stg_qualtrics__block_question", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.qualtrics_source.stg_qualtrics__block_question"]}, "compiled_path": "target/compiled/qualtrics_source/models/stg_qualtrics.yml/dbt_utils_unique_combination_o_b9e7103461a1f607bb783c24bb35691d.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n block_id, question_id, survey_id, source_relation\n from \"postgres\".\"qualtrics_source_integration_tests_qualtrics_source\".\"stg_qualtrics__block_question\"\n group by block_id, question_id, survey_id, source_relation\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "alias_types": true, "checksum": null}, "column_name": null, "file_key_name": "models.stg_qualtrics__block_question", "attached_node": "model.qualtrics_source.stg_qualtrics__block_question"}, "test.qualtrics_source.not_null_stg_qualtrics__directory_directory_id.65413cdcf7": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "directory_id", "model": "{{ get_where_subquery(ref('stg_qualtrics__directory')) }}"}, "namespace": null}, "database": "postgres", "schema": "qualtrics_source_integration_tests_dbt_test__audit", "name": "not_null_stg_qualtrics__directory_directory_id", "resource_type": "test", "package_name": "qualtrics_source", "path": "not_null_stg_qualtrics__directory_directory_id.sql", "original_file_path": "models/stg_qualtrics.yml", "unique_id": "test.qualtrics_source.not_null_stg_qualtrics__directory_directory_id.65413cdcf7", "fqn": ["qualtrics_source", "not_null_stg_qualtrics__directory_directory_id"], "alias": "not_null_stg_qualtrics__directory_directory_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "store_failures_as": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1711137324.071892, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "stg_qualtrics__directory", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.qualtrics_source.stg_qualtrics__directory"]}, "compiled_path": "target/compiled/qualtrics_source/models/stg_qualtrics.yml/not_null_stg_qualtrics__directory_directory_id.sql", "compiled": true, "compiled_code": "\n \n \n\n\n\nselect directory_id\nfrom \"postgres\".\"qualtrics_source_integration_tests_qualtrics_source\".\"stg_qualtrics__directory\"\nwhere directory_id is null\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "alias_types": true, "checksum": null}, "column_name": "directory_id", "file_key_name": "models.stg_qualtrics__directory", "attached_node": "model.qualtrics_source.stg_qualtrics__directory"}, "test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__directory_directory_id__source_relation.9c637ae3e0": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["directory_id", "source_relation"], "model": "{{ get_where_subquery(ref('stg_qualtrics__directory')) }}"}, "namespace": "dbt_utils"}, "database": "postgres", "schema": "qualtrics_source_integration_tests_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_stg_qualtrics__directory_directory_id__source_relation", "resource_type": "test", "package_name": "qualtrics_source", "path": "dbt_utils_unique_combination_o_2dc64be73e308f190fac02f2b18f6553.sql", "original_file_path": "models/stg_qualtrics.yml", "unique_id": "test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__directory_directory_id__source_relation.9c637ae3e0", "fqn": ["qualtrics_source", "dbt_utils_unique_combination_of_columns_stg_qualtrics__directory_directory_id__source_relation"], "alias": "dbt_utils_unique_combination_o_2dc64be73e308f190fac02f2b18f6553", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_2dc64be73e308f190fac02f2b18f6553", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "store_failures_as": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_2dc64be73e308f190fac02f2b18f6553"}, "created_at": 1711137324.072884, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_2dc64be73e308f190fac02f2b18f6553\") }}", "language": "sql", "refs": [{"name": "stg_qualtrics__directory", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.qualtrics_source.stg_qualtrics__directory"]}, "compiled_path": "target/compiled/qualtrics_source/models/stg_qualtrics.yml/dbt_utils_unique_combination_o_2dc64be73e308f190fac02f2b18f6553.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n directory_id, source_relation\n from \"postgres\".\"qualtrics_source_integration_tests_qualtrics_source\".\"stg_qualtrics__directory\"\n group by directory_id, source_relation\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "alias_types": true, "checksum": null}, "column_name": null, "file_key_name": "models.stg_qualtrics__directory", "attached_node": "model.qualtrics_source.stg_qualtrics__directory"}, "test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__directory_contact_contact_id__directory_id__source_relation.a3dc488ebf": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["contact_id", "directory_id", "source_relation"], "model": "{{ get_where_subquery(ref('stg_qualtrics__directory_contact')) }}"}, "namespace": "dbt_utils"}, "database": "postgres", "schema": "qualtrics_source_integration_tests_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_stg_qualtrics__directory_contact_contact_id__directory_id__source_relation", "resource_type": "test", "package_name": "qualtrics_source", "path": "dbt_utils_unique_combination_o_0685be386dbfe1d71c0859e65260182d.sql", "original_file_path": "models/stg_qualtrics.yml", "unique_id": "test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__directory_contact_contact_id__directory_id__source_relation.a3dc488ebf", "fqn": ["qualtrics_source", "dbt_utils_unique_combination_of_columns_stg_qualtrics__directory_contact_contact_id__directory_id__source_relation"], "alias": "dbt_utils_unique_combination_o_0685be386dbfe1d71c0859e65260182d", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_0685be386dbfe1d71c0859e65260182d", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "store_failures_as": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_0685be386dbfe1d71c0859e65260182d"}, "created_at": 1711137324.075716, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_0685be386dbfe1d71c0859e65260182d\") }}", "language": "sql", "refs": [{"name": "stg_qualtrics__directory_contact", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.qualtrics_source.stg_qualtrics__directory_contact"]}, "compiled_path": "target/compiled/qualtrics_source/models/stg_qualtrics.yml/dbt_utils_unique_combination_o_0685be386dbfe1d71c0859e65260182d.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n contact_id, directory_id, source_relation\n from \"postgres\".\"qualtrics_source_integration_tests_qualtrics_source\".\"stg_qualtrics__directory_contact\"\n group by contact_id, directory_id, source_relation\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "alias_types": true, "checksum": null}, "column_name": null, "file_key_name": "models.stg_qualtrics__directory_contact", "attached_node": "model.qualtrics_source.stg_qualtrics__directory_contact"}, "test.qualtrics_source.not_null_stg_qualtrics__distribution_distribution_id.6158e414ed": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "distribution_id", "model": "{{ get_where_subquery(ref('stg_qualtrics__distribution')) }}"}, "namespace": null}, "database": "postgres", "schema": "qualtrics_source_integration_tests_dbt_test__audit", "name": "not_null_stg_qualtrics__distribution_distribution_id", "resource_type": "test", "package_name": "qualtrics_source", "path": "not_null_stg_qualtrics__distribution_distribution_id.sql", "original_file_path": "models/stg_qualtrics.yml", "unique_id": "test.qualtrics_source.not_null_stg_qualtrics__distribution_distribution_id.6158e414ed", "fqn": ["qualtrics_source", "not_null_stg_qualtrics__distribution_distribution_id"], "alias": "not_null_stg_qualtrics__distribution_distribution_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "store_failures_as": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1711137324.078165, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "stg_qualtrics__distribution", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.qualtrics_source.stg_qualtrics__distribution"]}, "compiled_path": "target/compiled/qualtrics_source/models/stg_qualtrics.yml/not_null_stg_qualtrics__distribution_distribution_id.sql", "compiled": true, "compiled_code": "\n \n \n\n\n\nselect distribution_id\nfrom \"postgres\".\"qualtrics_source_integration_tests_qualtrics_source\".\"stg_qualtrics__distribution\"\nwhere distribution_id is null\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "alias_types": true, "checksum": null}, "column_name": "distribution_id", "file_key_name": "models.stg_qualtrics__distribution", "attached_node": "model.qualtrics_source.stg_qualtrics__distribution"}, "test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__distribution_distribution_id__source_relation.312f709e9c": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["distribution_id", "source_relation"], "model": "{{ get_where_subquery(ref('stg_qualtrics__distribution')) }}"}, "namespace": "dbt_utils"}, "database": "postgres", "schema": "qualtrics_source_integration_tests_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_stg_qualtrics__distribution_distribution_id__source_relation", "resource_type": "test", "package_name": "qualtrics_source", "path": "dbt_utils_unique_combination_o_247e975283f2ebcabafde5f25bd3b2f3.sql", "original_file_path": "models/stg_qualtrics.yml", "unique_id": "test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__distribution_distribution_id__source_relation.312f709e9c", "fqn": ["qualtrics_source", "dbt_utils_unique_combination_of_columns_stg_qualtrics__distribution_distribution_id__source_relation"], "alias": "dbt_utils_unique_combination_o_247e975283f2ebcabafde5f25bd3b2f3", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_247e975283f2ebcabafde5f25bd3b2f3", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "store_failures_as": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_247e975283f2ebcabafde5f25bd3b2f3"}, "created_at": 1711137324.0793338, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_247e975283f2ebcabafde5f25bd3b2f3\") }}", "language": "sql", "refs": [{"name": "stg_qualtrics__distribution", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.qualtrics_source.stg_qualtrics__distribution"]}, "compiled_path": "target/compiled/qualtrics_source/models/stg_qualtrics.yml/dbt_utils_unique_combination_o_247e975283f2ebcabafde5f25bd3b2f3.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n distribution_id, source_relation\n from \"postgres\".\"qualtrics_source_integration_tests_qualtrics_source\".\"stg_qualtrics__distribution\"\n group by distribution_id, source_relation\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "alias_types": true, "checksum": null}, "column_name": null, "file_key_name": "models.stg_qualtrics__distribution", "attached_node": "model.qualtrics_source.stg_qualtrics__distribution"}, "test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__distribution_contact_contact_id__distribution_id__source_relation.b40826e6b2": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["contact_id", "distribution_id", "source_relation"], "model": "{{ get_where_subquery(ref('stg_qualtrics__distribution_contact')) }}"}, "namespace": "dbt_utils"}, "database": "postgres", "schema": "qualtrics_source_integration_tests_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_stg_qualtrics__distribution_contact_contact_id__distribution_id__source_relation", "resource_type": "test", "package_name": "qualtrics_source", "path": "dbt_utils_unique_combination_o_c192fcc0522c3acc88dfab811ca69771.sql", "original_file_path": "models/stg_qualtrics.yml", "unique_id": "test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__distribution_contact_contact_id__distribution_id__source_relation.b40826e6b2", "fqn": ["qualtrics_source", "dbt_utils_unique_combination_of_columns_stg_qualtrics__distribution_contact_contact_id__distribution_id__source_relation"], "alias": "dbt_utils_unique_combination_o_c192fcc0522c3acc88dfab811ca69771", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_c192fcc0522c3acc88dfab811ca69771", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "store_failures_as": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_c192fcc0522c3acc88dfab811ca69771"}, "created_at": 1711137324.081654, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_c192fcc0522c3acc88dfab811ca69771\") }}", "language": "sql", "refs": [{"name": "stg_qualtrics__distribution_contact", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.qualtrics_source.stg_qualtrics__distribution_contact"]}, "compiled_path": "target/compiled/qualtrics_source/models/stg_qualtrics.yml/dbt_utils_unique_combination_o_c192fcc0522c3acc88dfab811ca69771.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n contact_id, distribution_id, source_relation\n from \"postgres\".\"qualtrics_source_integration_tests_qualtrics_source\".\"stg_qualtrics__distribution_contact\"\n group by contact_id, distribution_id, source_relation\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "alias_types": true, "checksum": null}, "column_name": null, "file_key_name": "models.stg_qualtrics__distribution_contact", "attached_node": "model.qualtrics_source.stg_qualtrics__distribution_contact"}, "test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__directory_mailing_list_mailing_list_id__directory_id__source_relation.24870adb73": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["mailing_list_id", "directory_id", "source_relation"], "model": "{{ get_where_subquery(ref('stg_qualtrics__directory_mailing_list')) }}"}, "namespace": "dbt_utils"}, "database": "postgres", "schema": "qualtrics_source_integration_tests_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_stg_qualtrics__directory_mailing_list_mailing_list_id__directory_id__source_relation", "resource_type": "test", "package_name": "qualtrics_source", "path": "dbt_utils_unique_combination_o_7dbdbf3266311e47107b5e24034a004a.sql", "original_file_path": "models/stg_qualtrics.yml", "unique_id": "test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__directory_mailing_list_mailing_list_id__directory_id__source_relation.24870adb73", "fqn": ["qualtrics_source", "dbt_utils_unique_combination_of_columns_stg_qualtrics__directory_mailing_list_mailing_list_id__directory_id__source_relation"], "alias": "dbt_utils_unique_combination_o_7dbdbf3266311e47107b5e24034a004a", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_7dbdbf3266311e47107b5e24034a004a", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "store_failures_as": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_7dbdbf3266311e47107b5e24034a004a"}, "created_at": 1711137324.0844731, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_7dbdbf3266311e47107b5e24034a004a\") }}", "language": "sql", "refs": [{"name": "stg_qualtrics__directory_mailing_list", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.qualtrics_source.stg_qualtrics__directory_mailing_list"]}, "compiled_path": "target/compiled/qualtrics_source/models/stg_qualtrics.yml/dbt_utils_unique_combination_o_7dbdbf3266311e47107b5e24034a004a.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n mailing_list_id, directory_id, source_relation\n from \"postgres\".\"qualtrics_source_integration_tests_qualtrics_source\".\"stg_qualtrics__directory_mailing_list\"\n group by mailing_list_id, directory_id, source_relation\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "alias_types": true, "checksum": null}, "column_name": null, "file_key_name": "models.stg_qualtrics__directory_mailing_list", "attached_node": "model.qualtrics_source.stg_qualtrics__directory_mailing_list"}, "test.qualtrics_source.not_null_stg_qualtrics__contact_mailing_list_membership_contact_lookup_id.32d4d7bbf5": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "contact_lookup_id", "model": "{{ get_where_subquery(ref('stg_qualtrics__contact_mailing_list_membership')) }}"}, "namespace": null}, "database": "postgres", "schema": "qualtrics_source_integration_tests_dbt_test__audit", "name": "not_null_stg_qualtrics__contact_mailing_list_membership_contact_lookup_id", "resource_type": "test", "package_name": "qualtrics_source", "path": "not_null_stg_qualtrics__contac_a9458d3b5d31ec47b1abf1449a7dba6d.sql", "original_file_path": "models/stg_qualtrics.yml", "unique_id": "test.qualtrics_source.not_null_stg_qualtrics__contact_mailing_list_membership_contact_lookup_id.32d4d7bbf5", "fqn": ["qualtrics_source", "not_null_stg_qualtrics__contact_mailing_list_membership_contact_lookup_id"], "alias": "not_null_stg_qualtrics__contac_a9458d3b5d31ec47b1abf1449a7dba6d", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_stg_qualtrics__contac_a9458d3b5d31ec47b1abf1449a7dba6d", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "store_failures_as": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_stg_qualtrics__contac_a9458d3b5d31ec47b1abf1449a7dba6d"}, "created_at": 1711137324.087476, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_stg_qualtrics__contac_a9458d3b5d31ec47b1abf1449a7dba6d\") }}", "language": "sql", "refs": [{"name": "stg_qualtrics__contact_mailing_list_membership", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.qualtrics_source.stg_qualtrics__contact_mailing_list_membership"]}, "compiled_path": "target/compiled/qualtrics_source/models/stg_qualtrics.yml/not_null_stg_qualtrics__contac_a9458d3b5d31ec47b1abf1449a7dba6d.sql", "compiled": true, "compiled_code": "\n \n \n\n\n\nselect contact_lookup_id\nfrom \"postgres\".\"qualtrics_source_integration_tests_qualtrics_source\".\"stg_qualtrics__contact_mailing_list_membership\"\nwhere contact_lookup_id is null\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "alias_types": true, "checksum": null}, "column_name": "contact_lookup_id", "file_key_name": "models.stg_qualtrics__contact_mailing_list_membership", "attached_node": "model.qualtrics_source.stg_qualtrics__contact_mailing_list_membership"}, "test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__contact_mailing_list_membership_contact_lookup_id__source_relation.943f4b419c": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["contact_lookup_id", "source_relation"], "model": "{{ get_where_subquery(ref('stg_qualtrics__contact_mailing_list_membership')) }}"}, "namespace": "dbt_utils"}, "database": "postgres", "schema": "qualtrics_source_integration_tests_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_stg_qualtrics__contact_mailing_list_membership_contact_lookup_id__source_relation", "resource_type": "test", "package_name": "qualtrics_source", "path": "dbt_utils_unique_combination_o_9779d48b4d15e44188b16350e2066a46.sql", "original_file_path": "models/stg_qualtrics.yml", "unique_id": "test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__contact_mailing_list_membership_contact_lookup_id__source_relation.943f4b419c", "fqn": ["qualtrics_source", "dbt_utils_unique_combination_of_columns_stg_qualtrics__contact_mailing_list_membership_contact_lookup_id__source_relation"], "alias": "dbt_utils_unique_combination_o_9779d48b4d15e44188b16350e2066a46", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_9779d48b4d15e44188b16350e2066a46", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "store_failures_as": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_9779d48b4d15e44188b16350e2066a46"}, "created_at": 1711137324.0885, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_9779d48b4d15e44188b16350e2066a46\") }}", "language": "sql", "refs": [{"name": "stg_qualtrics__contact_mailing_list_membership", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.qualtrics_source.stg_qualtrics__contact_mailing_list_membership"]}, "compiled_path": "target/compiled/qualtrics_source/models/stg_qualtrics.yml/dbt_utils_unique_combination_o_9779d48b4d15e44188b16350e2066a46.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n contact_lookup_id, source_relation\n from \"postgres\".\"qualtrics_source_integration_tests_qualtrics_source\".\"stg_qualtrics__contact_mailing_list_membership\"\n group by contact_lookup_id, source_relation\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "alias_types": true, "checksum": null}, "column_name": null, "file_key_name": "models.stg_qualtrics__contact_mailing_list_membership", "attached_node": "model.qualtrics_source.stg_qualtrics__contact_mailing_list_membership"}, "test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__core_contact_contact_id__mailing_list_id__source_relation.fbdaf339c9": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["contact_id", "mailing_list_id", "source_relation"], "model": "{{ get_where_subquery(ref('stg_qualtrics__core_contact')) }}"}, "namespace": "dbt_utils"}, "database": "postgres", "schema": "qualtrics_source_integration_tests_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_stg_qualtrics__core_contact_contact_id__mailing_list_id__source_relation", "resource_type": "test", "package_name": "qualtrics_source", "path": "dbt_utils_unique_combination_o_3af604bc040871fef099045a6640cb19.sql", "original_file_path": "models/stg_qualtrics.yml", "unique_id": "test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__core_contact_contact_id__mailing_list_id__source_relation.fbdaf339c9", "fqn": ["qualtrics_source", "dbt_utils_unique_combination_of_columns_stg_qualtrics__core_contact_contact_id__mailing_list_id__source_relation"], "alias": "dbt_utils_unique_combination_o_3af604bc040871fef099045a6640cb19", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": false, "alias": "dbt_utils_unique_combination_o_3af604bc040871fef099045a6640cb19", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "store_failures_as": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_3af604bc040871fef099045a6640cb19"}, "created_at": 1711137324.091097, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_3af604bc040871fef099045a6640cb19\") }}", "language": "sql", "refs": [{"name": "stg_qualtrics__core_contact", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": []}, "compiled_path": null, "contract": {"enforced": false, "alias_types": true, "checksum": null}, "column_name": null, "file_key_name": "models.stg_qualtrics__core_contact", "attached_node": "model.qualtrics_source.stg_qualtrics__core_contact"}, "test.qualtrics_source.not_null_stg_qualtrics__core_mailing_list_mailing_list_id.344fbdd6dc": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "mailing_list_id", "model": "{{ get_where_subquery(ref('stg_qualtrics__core_mailing_list')) }}"}, "namespace": null}, "database": "postgres", "schema": "qualtrics_source_integration_tests_dbt_test__audit", "name": "not_null_stg_qualtrics__core_mailing_list_mailing_list_id", "resource_type": "test", "package_name": "qualtrics_source", "path": "not_null_stg_qualtrics__core_mailing_list_mailing_list_id.sql", "original_file_path": "models/stg_qualtrics.yml", "unique_id": "test.qualtrics_source.not_null_stg_qualtrics__core_mailing_list_mailing_list_id.344fbdd6dc", "fqn": ["qualtrics_source", "not_null_stg_qualtrics__core_mailing_list_mailing_list_id"], "alias": "not_null_stg_qualtrics__core_mailing_list_mailing_list_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": false, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "store_failures_as": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1711137324.093314, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "stg_qualtrics__core_mailing_list", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt.test_not_null"], "nodes": []}, "compiled_path": null, "contract": {"enforced": false, "alias_types": true, "checksum": null}, "column_name": "mailing_list_id", "file_key_name": "models.stg_qualtrics__core_mailing_list", "attached_node": "model.qualtrics_source.stg_qualtrics__core_mailing_list"}, "test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__core_mailing_list_mailing_list_id__source_relation.fcd78a8fd6": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["mailing_list_id", "source_relation"], "model": "{{ get_where_subquery(ref('stg_qualtrics__core_mailing_list')) }}"}, "namespace": "dbt_utils"}, "database": "postgres", "schema": "qualtrics_source_integration_tests_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_stg_qualtrics__core_mailing_list_mailing_list_id__source_relation", "resource_type": "test", "package_name": "qualtrics_source", "path": "dbt_utils_unique_combination_o_537fa0b90391c84a079c51c383b210b0.sql", "original_file_path": "models/stg_qualtrics.yml", "unique_id": "test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__core_mailing_list_mailing_list_id__source_relation.fcd78a8fd6", "fqn": ["qualtrics_source", "dbt_utils_unique_combination_of_columns_stg_qualtrics__core_mailing_list_mailing_list_id__source_relation"], "alias": "dbt_utils_unique_combination_o_537fa0b90391c84a079c51c383b210b0", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": false, "alias": "dbt_utils_unique_combination_o_537fa0b90391c84a079c51c383b210b0", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "store_failures_as": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_537fa0b90391c84a079c51c383b210b0"}, "created_at": 1711137324.0944252, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_537fa0b90391c84a079c51c383b210b0\") }}", "language": "sql", "refs": [{"name": "stg_qualtrics__core_mailing_list", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": []}, "compiled_path": null, "contract": {"enforced": false, "alias_types": true, "checksum": null}, "column_name": null, "file_key_name": "models.stg_qualtrics__core_mailing_list", "attached_node": "model.qualtrics_source.stg_qualtrics__core_mailing_list"}}, "sources": {"source.qualtrics_source.qualtrics.user": {"database": "postgres", "schema": "qualtrics_source_integration_tests", "name": "user", "resource_type": "source", "package_name": "qualtrics_source", "path": "models/src_qualtrics.yml", "original_file_path": "models/src_qualtrics.yml", "unique_id": "source.qualtrics_source.qualtrics.user", "fqn": ["qualtrics_source", "qualtrics", "user"], "source_name": "qualtrics", "source_description": "", "loader": "", "identifier": "user", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "These are the users in your organizations, not the contacts for whom you are building content like surveys and messages.", "columns": {"_fivetran_deleted": {"name": "_fivetran_deleted", "description": "Boolean representing whether the record was soft-deleted in Qualtrics.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "_fivetran_synced": {"name": "_fivetran_synced", "description": "The time when a record was last updated by Fivetran.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "account_creation_date": {"name": "account_creation_date", "description": "The date and time that the account was created. Dates and times are expressed in ISO 8601 format.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "account_expiration_date": {"name": "account_expiration_date", "description": "The date the account expires. Dates and times are expressed in ISO 8601 format.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "account_status": {"name": "account_status", "description": "Either `active`, `disabled`, or `notVerified`.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "division_id": {"name": "division_id", "description": "The unique identifier for the Division ID. Match pattern = ^DV_[0-9a-zA-Z]{11,15}$", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "email": {"name": "email", "description": "The user's email address.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "first_name": {"name": "first_name", "description": "The user's first name or given name.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "id": {"name": "id", "description": "Unique ID of the user. Match pattern = ^((UR)|(URH))_[0-9a-zA-Z]{11,15}$", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "language": {"name": "language", "description": "The user's default language.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "last_login_date": {"name": "last_login_date", "description": "The date and time the user last logged into the user interface. Dates and times are expressed in ISO 8601 format.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "last_name": {"name": "last_name", "description": "User's surname.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "organization_id": {"name": "organization_id", "description": "ID of the organization/brand this record belongs to.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "password_expiration_date": {"name": "password_expiration_date", "description": "The date the account password expires. Dates and times are expressed in ISO 8601 format.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "password_last_changed_date": {"name": "password_last_changed_date", "description": "The date the account password was last changed. Dates and times are expressed in ISO 8601 format.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "response_count_auditable": {"name": "response_count_auditable", "description": "The count of auditable responses.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "response_count_deleted": {"name": "response_count_deleted", "description": "The count of deleted responses.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "response_count_generated": {"name": "response_count_generated", "description": "The count of generated responses.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "time_zone": {"name": "time_zone", "description": "The IANA time zone setting for the user.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "unsubscribed": {"name": "unsubscribed", "description": "Boolean indicating if the user unsubscribed.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "user_type": {"name": "user_type", "description": "ID of the user type. See mappings of user types to their type IDs [here](https://api.qualtrics.com/dc2be1c61af61-user-type).", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "username": {"name": "username", "description": "UI-facing username for the account.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true}, "patch_path": null, "unrendered_config": {}, "relation_name": "\"postgres\".\"qualtrics_source_integration_tests\".\"user\"", "created_at": 1711137324.1545641}, "source.qualtrics_source.qualtrics.survey": {"database": "postgres", "schema": "qualtrics_source_integration_tests", "name": "survey", "resource_type": "source", "package_name": "qualtrics_source", "path": "models/src_qualtrics.yml", "original_file_path": "models/src_qualtrics.yml", "unique_id": "source.qualtrics_source.qualtrics.survey", "fqn": ["qualtrics_source", "qualtrics", "survey"], "source_name": "qualtrics", "source_description": "", "loader": "", "identifier": "survey", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "Qualtrics survey.", "columns": {"_fivetran_deleted": {"name": "_fivetran_deleted", "description": "Boolean representing whether the record was soft-deleted in Qualtrics.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "_fivetran_synced": {"name": "_fivetran_synced", "description": "The time when a record was last updated by Fivetran.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "auto_scoring_category": {"name": "auto_scoring_category", "description": "The automated scoring category.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "brand_base_url": {"name": "brand_base_url", "description": "Base url for the organization/brand.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "brand_id": {"name": "brand_id", "description": "Unique ID of the organization/brand.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "bundle_short_name": {"name": "bundle_short_name", "description": "Short name for the content bundle that the survey is from.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "composition_type": {"name": "composition_type", "description": "Survey composition type.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "creator_id": {"name": "creator_id", "description": "The unique identifier for a specific `USER` who created the survey.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "default_scoring_category": {"name": "default_scoring_category", "description": "The default scoring category.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "division_id": {"name": "division_id", "description": "The unique identifier for the Division ID. Match pattern = ^DV_[0-9a-zA-Z]{11,15}$", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "id": {"name": "id", "description": "The unique identifier for this survey. Match pattern = ^SV_[a-zA-Z0-9]{11,15}$", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "is_active": {"name": "is_active", "description": "DEPRECATED. Use `survey_status = 'active'` instead.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "last_accessed": {"name": "last_accessed", "description": "The date the survey was last accessed.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "last_activated": {"name": "last_activated", "description": "The date the survey was last activated.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "last_modified": {"name": "last_modified", "description": "The point in time when the record was last modified.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "owner_id": {"name": "owner_id", "description": "The unique identifier for a specific user who owns this.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "project_category": {"name": "project_category", "description": "Project category of the survey.\n\nAllowed values - `CORE`, `CX`, `EX`, `BX`, `PX`", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "project_type": {"name": "project_type", "description": "Type of [Qualtrics project](https://www.qualtrics.com/support/survey-platform/my-projects/my-projects-overview/#SelectingProjectType). Match pattern = ^[a-zA-Z]+$", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "registry_sha": {"name": "registry_sha", "description": "The survey registry SHA.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "registry_version": {"name": "registry_version", "description": "The survey registry version.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "schema_version": {"name": "schema_version", "description": "Qualtrics schema version.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "scoring_summary_after_questions": {"name": "scoring_summary_after_questions", "description": "Boolean representing whether the scoring summary is after questions.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "scoring_summary_after_survey": {"name": "scoring_summary_after_survey", "description": "Boolean representing whether the scoring summary is after the survey.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "scoring_summary_category": {"name": "scoring_summary_category", "description": "The unique identifier for the scoring.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "survey_name": {"name": "survey_name", "description": "Name of the survey.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "survey_status": {"name": "survey_status", "description": "The distribution status of the survey, or a flag indicating that it's a library block\n\nAllowed values - `Inactive`, `Active`, `Pending`, `LibBlock`, `Deactive`, `Temporary`", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true}, "patch_path": null, "unrendered_config": {}, "relation_name": "\"postgres\".\"qualtrics_source_integration_tests\".\"survey\"", "created_at": 1711137324.154767}, "source.qualtrics_source.qualtrics.question": {"database": "postgres", "schema": "qualtrics_source_integration_tests", "name": "question", "resource_type": "source", "package_name": "qualtrics_source", "path": "models/src_qualtrics.yml", "original_file_path": "models/src_qualtrics.yml", "unique_id": "source.qualtrics_source.qualtrics.question", "fqn": ["qualtrics_source", "qualtrics", "question"], "source_name": "qualtrics", "source_description": "", "loader": "", "identifier": "question", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "Questions within a survey.", "columns": {"_fivetran_deleted": {"name": "_fivetran_deleted", "description": "Boolean representing whether the record was soft-deleted in Qualtrics.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "_fivetran_synced": {"name": "_fivetran_synced", "description": "The time when a record was last updated by Fivetran.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "data_export_tag": {"name": "data_export_tag", "description": "The tag to identify the question in exported data.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "data_visibility_hidden": {"name": "data_visibility_hidden", "description": "Boolean that represents whether the embedded data is hidden.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "data_visibility_private": {"name": "data_visibility_private", "description": "Boolean that represents whether the embedded data is private.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "id": {"name": "id", "description": "The unique identifier for the question. Match pattern = ^QID[a-zA-Z0-9]+$", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "next_answer_id": {"name": "next_answer_id", "description": "For Matrix questions, the vertical options are denoted as \"Answers\" in the question's structure. \nID of the next answer for this question. ?", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "next_choice_id": {"name": "next_choice_id", "description": "For Matrix questions, the horizontal options are denoted as \"Choices\" in the question's structure. \n\nID of the next choice for this question. ?", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "question_description": {"name": "question_description", "description": "Label to identify the question.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "question_description_option": {"name": "question_description_option", "description": "An optional user-provided field for question descriptions. Accepted values = `UseText`, `SpecifyLabel`", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "question_text": {"name": "question_text", "description": "Text for the question.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "question_text_unsafe": {"name": "question_text_unsafe", "description": "Un-paresed version of the question text.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "question_type": {"name": "question_type", "description": "The type of question. Can be -\n`MC`,`Matrix`,`Captcha`,`CS`,`DB`,`DD`,`Draw`,`DynamicMatrix`,`FileUpload`,`GAP`,`HeatMap`,`HL`,`HotSpot`,`Meta`,`PGR`,`RO`,`SBS`,`Slider`,`SS`,`TE`,`Timing`,`TreeSelect`", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "selector": {"name": "selector", "description": "How answers are selected such as single answer, multiple answer, etc. Accepted values - \n- `Bipolar`\n- `Browser`\n- `Captcha`\n- `CompactView`\n- `CS`\n- `D`\n- `DL`\n- `DND`\n- `DragAndDrop`\n- `ESTB`\n- `FORM`\n- `FileUpload`\n- `GRB`\n- `HBAR`\n- `HR`\n- `HSLIDER`\n- `I`\n- `Image`\n- `LikeDislike`\n- `Likert`\n- `MACOL`\n- `MAHR`\n- `MAVR`\n- `ML`\n- `MSB`\n- `MaxDiff`\n- `NPS`\n- `OH`\n- `OnOff`\n- `POS`\n- `PTB`\n- `PW`\n- `PageTimer`\n- `Profile`\n- `RB`\n- `RO`\n- `SACOL`\n- `SAHR`\n- `SAVR`\n- `SB`\n- `SBSMatrix`\n- `SL`\n- `STAR`\n- `ScreenCapture`\n- `SearchOnly`\n- `Signature`\n- `TA`\n- `TB`\n- `TBelow`\n- `TE`\n- `TL`\n- `TRight`\n- `Text`\n- `V1`\n- `V2`\n- `VR`\n- `VRTL`\n- `WTXB`", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "sub_selector": {"name": "sub_selector", "description": "How subquestion answers are selected. Allowed values - SingleAnswer, DL, GR, DND, Long, Medium, MultipleAnswer, Columns, NoColumns, Short, TX, TXOT, WOTXB, WOTB, WTB, WTXB, WVTB.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "survey_id": {"name": "survey_id", "description": "The unique identifier for this survey. Match pattern = ^SV_[a-zA-Z0-9]{11,15}$", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "validation_setting_force_response": {"name": "validation_setting_force_response", "description": "The response from forcing respondents to answer a question or request that they consider answering the question before leaving the page", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "validation_setting_force_response_type": {"name": "validation_setting_force_response_type", "description": "The type of response from forcing respondents to answer a question or request that they consider answering the question before leaving the page", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "validation_setting_type": {"name": "validation_setting_type", "description": "The type of forced response validation that is set.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true}, "patch_path": null, "unrendered_config": {}, "relation_name": "\"postgres\".\"qualtrics_source_integration_tests\".\"question\"", "created_at": 1711137324.1548831}, "source.qualtrics_source.qualtrics.question_response": {"database": "postgres", "schema": "qualtrics_source_integration_tests", "name": "question_response", "resource_type": "source", "package_name": "qualtrics_source", "path": "models/src_qualtrics.yml", "original_file_path": "models/src_qualtrics.yml", "unique_id": "source.qualtrics_source.qualtrics.question_response", "fqn": ["qualtrics_source", "qualtrics", "question_response"], "source_name": "qualtrics", "source_description": "", "loader": "", "identifier": "question_response", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "Responses to individual questions (and their sub-questions).", "columns": {"_fivetran_id": {"name": "_fivetran_id", "description": "Fivetran-generated unique key hashed on `response_id`, `question_id`, `sub_question_key`, `sub_question_text` , `question_option_key` , `loop_id` and `importId`.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "_fivetran_synced": {"name": "_fivetran_synced", "description": "The time when a record was last updated by Fivetran.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "loop_id": {"name": "loop_id", "description": "ID of the [Loop and Merge](https://www.qualtrics.com/support/survey-platform/survey-module/block-options/loop-and-merge/) object this response is associated with.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "question": {"name": "question", "description": "Question text.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "question_id": {"name": "question_id", "description": "The unique identifier for the question. Match pattern = ^QID[a-zA-Z0-9]+$", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "question_option_key": {"name": "question_option_key", "description": "The key of the `QUESTION_OPTION` that was chosen.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "response_id": {"name": "response_id", "description": "The unique ID for the `SURVEY_RESPONSE`.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "sub_question_key": {"name": "sub_question_key", "description": "Key of the sub question.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "sub_question_text": {"name": "sub_question_text", "description": "Sub question text.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "value": {"name": "value", "description": "Value of the question response.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true}, "patch_path": null, "unrendered_config": {}, "relation_name": "\"postgres\".\"qualtrics_source_integration_tests\".\"question_response\"", "created_at": 1711137324.154978}, "source.qualtrics_source.qualtrics.question_option": {"database": "postgres", "schema": "qualtrics_source_integration_tests", "name": "question_option", "resource_type": "source", "package_name": "qualtrics_source", "path": "models/src_qualtrics.yml", "original_file_path": "models/src_qualtrics.yml", "unique_id": "source.qualtrics_source.qualtrics.question_option", "fqn": ["qualtrics_source", "qualtrics", "question_option"], "source_name": "qualtrics", "source_description": "", "loader": "", "identifier": "question_option", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "Choice options for survey questions.", "columns": {"_fivetran_deleted": {"name": "_fivetran_deleted", "description": "Boolean representing whether the record was soft-deleted in Qualtrics.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "_fivetran_synced": {"name": "_fivetran_synced", "description": "The time when a record was last updated by Fivetran.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "key": {"name": "key", "description": "The key of the `QUESTION_OPTION` that was chosen.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "question_id": {"name": "question_id", "description": "The unique identifier for the question. Match pattern = ^QID[a-zA-Z0-9]+$", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "recode_value": {"name": "recode_value", "description": "Recode/mapping value for the option.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "survey_id": {"name": "survey_id", "description": "The unique identifier for this survey. Match pattern = ^SV_[a-zA-Z0-9]{11,15}$", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "text": {"name": "text", "description": "Question option text.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true}, "patch_path": null, "unrendered_config": {}, "relation_name": "\"postgres\".\"qualtrics_source_integration_tests\".\"question_option\"", "created_at": 1711137324.155064}, "source.qualtrics_source.qualtrics.survey_response": {"database": "postgres", "schema": "qualtrics_source_integration_tests", "name": "survey_response", "resource_type": "source", "package_name": "qualtrics_source", "path": "models/src_qualtrics.yml", "original_file_path": "models/src_qualtrics.yml", "unique_id": "source.qualtrics_source.qualtrics.survey_response", "fqn": ["qualtrics_source", "qualtrics", "survey_response"], "source_name": "qualtrics", "source_description": "", "loader": "", "identifier": "survey_response", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "Individual responses to surveys. A response becomes \"recorded\" when a respondent submits a survey, a survey is manually closed from the Responses in Progress page, or a survey session expires.\n", "columns": {"_fivetran_synced": {"name": "_fivetran_synced", "description": "The time when a record was last updated by Fivetran.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "distribution_channel": {"name": "distribution_channel", "description": "The method by which the survey was distributed to respondents.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "duration_in_seconds": {"name": "duration_in_seconds", "description": "How long it took for the respondent to finish the survey in seconds.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "end_date": {"name": "end_date", "description": "The point in time when the survey response was finished.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "finished": {"name": "finished", "description": "Boolean (stored as int) indicating if the respondent finished and submitted the survey, the value will be 1, otherwise it will be 0.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "id": {"name": "id", "description": "The unique ID for the `SURVEY_RESPONSE`.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "ip_address": {"name": "ip_address", "description": "IP address of the recipient.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "last_modified_date": {"name": "last_modified_date", "description": "The point in time when the record was last modified.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "location_latitude": {"name": "location_latitude", "description": "The approximate location of the respondent at the time the survey was taken.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "location_longitude": {"name": "location_longitude", "description": "The approximate location of the respondent at the time the survey was taken.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "progress": {"name": "progress", "description": "How far the respondent has progressed through the survey as a percentage out of 100.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "recipient_email": {"name": "recipient_email", "description": "Email of the [recipient](https://api.qualtrics.com/ZG9jOjg3NzY2OQ-getting-information-about-distributions#the-recipients-object) if they are a single recipient (not a mailing list or sample).", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "recipient_first_name": {"name": "recipient_first_name", "description": "First name of the [recipient](https://api.qualtrics.com/ZG9jOjg3NzY2OQ-getting-information-about-distributions#the-recipients-object) if they are a single recipient (not a mailing list or sample).", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "recipient_last_name": {"name": "recipient_last_name", "description": "Last name of the [recipient](https://api.qualtrics.com/ZG9jOjg3NzY2OQ-getting-information-about-distributions#the-recipients-object) if they are a single recipient (not a mailing list or sample).", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "recorded_date": {"name": "recorded_date", "description": "The point in time when the survey response was recorded.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "start_date": {"name": "start_date", "description": "The point in time when the survey response was recorded.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "status": {"name": "status", "description": "The type of response.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "survey_id": {"name": "survey_id", "description": "The unique identifier for this survey. Match pattern = ^SV_[a-zA-Z0-9]{11,15}$", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "user_language": {"name": "user_language", "description": "The language of the respondent.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true}, "patch_path": null, "unrendered_config": {}, "relation_name": "\"postgres\".\"qualtrics_source_integration_tests\".\"survey_response\"", "created_at": 1711137324.155184}, "source.qualtrics_source.qualtrics.sub_question": {"database": "postgres", "schema": "qualtrics_source_integration_tests", "name": "sub_question", "resource_type": "source", "package_name": "qualtrics_source", "path": "models/src_qualtrics.yml", "original_file_path": "models/src_qualtrics.yml", "unique_id": "source.qualtrics_source.qualtrics.sub_question", "fqn": ["qualtrics_source", "qualtrics", "sub_question"], "source_name": "qualtrics", "source_description": "", "loader": "", "identifier": "sub_question", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "Sub-questions of questions.", "columns": {"_fivetran_deleted": {"name": "_fivetran_deleted", "description": "Boolean representing whether the record was soft-deleted in Qualtrics.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "_fivetran_synced": {"name": "_fivetran_synced", "description": "The time when a record was last updated by Fivetran.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "choice_data_export_tag": {"name": "choice_data_export_tag", "description": "The tag to identify the question choice in exported data.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "key": {"name": "key", "description": "Key of the sub question.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "question_id": {"name": "question_id", "description": "The unique identifier for the question. Match pattern = ^QID[a-zA-Z0-9]+$", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "survey_id": {"name": "survey_id", "description": "The unique identifier for this survey. Match pattern = ^SV_[a-zA-Z0-9]{11,15}$", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "text": {"name": "text", "description": "Sub question text.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true}, "patch_path": null, "unrendered_config": {}, "relation_name": "\"postgres\".\"qualtrics_source_integration_tests\".\"sub_question\"", "created_at": 1711137324.1552691}, "source.qualtrics_source.qualtrics.survey_version": {"database": "postgres", "schema": "qualtrics_source_integration_tests", "name": "survey_version", "resource_type": "source", "package_name": "qualtrics_source", "path": "models/src_qualtrics.yml", "original_file_path": "models/src_qualtrics.yml", "unique_id": "source.qualtrics_source.qualtrics.survey_version", "fqn": ["qualtrics_source", "qualtrics", "survey_version"], "source_name": "qualtrics", "source_description": "", "loader": "", "identifier": "survey_version", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "Published and un-published versions of surveys.", "columns": {"_fivetran_deleted": {"name": "_fivetran_deleted", "description": "Boolean representing whether the record was soft-deleted in Qualtrics.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "_fivetran_synced": {"name": "_fivetran_synced", "description": "The time when a record was last updated by Fivetran.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "creation_date": {"name": "creation_date", "description": "The creation date and time of the record, expressed as an ISO 8601 value.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "description": {"name": "description", "description": "A user-provided description of the survey version.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "id": {"name": "id", "description": "The unique identifier for this survey version.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "published": {"name": "published", "description": "Boolean that, when true, publishes the version.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "survey_id": {"name": "survey_id", "description": "The unique identifier for this survey. Match pattern = ^SV_[a-zA-Z0-9]{11,15}$", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "user_id": {"name": "user_id", "description": "ID of `USER` who published this survey version in your org.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "version_number": {"name": "version_number", "description": "The version number of this survey.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "was_published": {"name": "was_published", "description": "Boolean that is true if the survey version was published.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true}, "patch_path": null, "unrendered_config": {}, "relation_name": "\"postgres\".\"qualtrics_source_integration_tests\".\"survey_version\"", "created_at": 1711137324.15536}, "source.qualtrics_source.qualtrics.survey_embedded_data": {"database": "postgres", "schema": "qualtrics_source_integration_tests", "name": "survey_embedded_data", "resource_type": "source", "package_name": "qualtrics_source", "path": "models/src_qualtrics.yml", "original_file_path": "models/src_qualtrics.yml", "unique_id": "source.qualtrics_source.qualtrics.survey_embedded_data", "fqn": ["qualtrics_source", "qualtrics", "survey_embedded_data"], "source_name": "qualtrics", "source_description": "", "loader": "", "identifier": "survey_embedded_data", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "Any extra information you would like recorded in addition to the question responses.", "columns": {"_fivetran_synced": {"name": "_fivetran_synced", "description": "The time when a record was last updated by Fivetran.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "import_id": {"name": "import_id", "description": "A unique identifier to recognize this import job of embedded survey data.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "key": {"name": "key", "description": "Key of the embedded survey data element.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "response_id": {"name": "response_id", "description": "The unique ID for the `SURVEY_RESPONSE`.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "value": {"name": "value", "description": "Key of the embedded survey data element.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true}, "patch_path": null, "unrendered_config": {}, "relation_name": "\"postgres\".\"qualtrics_source_integration_tests\".\"survey_embedded_data\"", "created_at": 1711137324.155442}, "source.qualtrics_source.qualtrics.block": {"database": "postgres", "schema": "qualtrics_source_integration_tests", "name": "block", "resource_type": "source", "package_name": "qualtrics_source", "path": "models/src_qualtrics.yml", "original_file_path": "models/src_qualtrics.yml", "unique_id": "source.qualtrics_source.qualtrics.block", "fqn": ["qualtrics_source", "qualtrics", "block"], "source_name": "qualtrics", "source_description": "", "loader": "", "identifier": "block", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "Groups of questions, used to organize longer surveys and conditionally display sets of questions.", "columns": {"_fivetran_deleted": {"name": "_fivetran_deleted", "description": "Boolean representing whether the record was soft-deleted in Qualtrics.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "_fivetran_synced": {"name": "_fivetran_synced", "description": "The time when a record was last updated by Fivetran.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "block_locking": {"name": "block_locking", "description": "Boolean representing whether modification of the block and its contents is prevented.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "block_visibility": {"name": "block_visibility", "description": "Whether the questions in the block are 'collapsed' or 'expanded' by default.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "description": {"name": "description", "description": "Description given to the block.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "id": {"name": "id", "description": "The ID of the survey block. Match pattern = ^BL_[a-zA-Z0-9]{11,15}$", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "randomize_questions": {"name": "randomize_questions", "description": "If/how the block questions are randomized. Can be - `false` (no randomization), `RandomWithXPerPage` (randomize all and place X questions in each block), `RandomWithOnlyX` (randomly present only X out of the total questions), or `Advanced` (custom configuration)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "survey_id": {"name": "survey_id", "description": "The unique identifier for this survey. Match pattern = ^SV_[a-zA-Z0-9]{11,15}$", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "type": {"name": "type", "description": "Type of block. Can be `Trash`, `Default`, or `Standard`", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true}, "patch_path": null, "unrendered_config": {}, "relation_name": "\"postgres\".\"qualtrics_source_integration_tests\".\"block\"", "created_at": 1711137324.155617}, "source.qualtrics_source.qualtrics.block_question": {"database": "postgres", "schema": "qualtrics_source_integration_tests", "name": "block_question", "resource_type": "source", "package_name": "qualtrics_source", "path": "models/src_qualtrics.yml", "original_file_path": "models/src_qualtrics.yml", "unique_id": "source.qualtrics_source.qualtrics.block_question", "fqn": ["qualtrics_source", "qualtrics", "block_question"], "source_name": "qualtrics", "source_description": "", "loader": "", "identifier": "block_question", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "Table relating questions and blocks together.", "columns": {"_fivetran_deleted": {"name": "_fivetran_deleted", "description": "Boolean representing whether the record was soft-deleted in Qualtrics.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "_fivetran_synced": {"name": "_fivetran_synced", "description": "The time when a record was last updated by Fivetran.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "block_id": {"name": "block_id", "description": "The ID of the survey block. Match pattern = ^BL_[a-zA-Z0-9]{11,15}$", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "question_id": {"name": "question_id", "description": "The unique identifier for the question. Match pattern = ^QID[a-zA-Z0-9]+$", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "survey_id": {"name": "survey_id", "description": "The unique identifier for this survey. Match pattern = ^SV_[a-zA-Z0-9]{11,15}$", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true}, "patch_path": null, "unrendered_config": {}, "relation_name": "\"postgres\".\"qualtrics_source_integration_tests\".\"block_question\"", "created_at": 1711137324.1556978}, "source.qualtrics_source.qualtrics.directory": {"database": "postgres", "schema": "qualtrics_source_integration_tests", "name": "directory", "resource_type": "source", "package_name": "qualtrics_source", "path": "models/src_qualtrics.yml", "original_file_path": "models/src_qualtrics.yml", "unique_id": "source.qualtrics_source.qualtrics.directory", "fqn": ["qualtrics_source", "qualtrics", "directory"], "source_name": "qualtrics", "source_description": "", "loader": "", "identifier": "directory", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "A directory is an address book for the entire brand and contains all of the contacts that have been added by your users.", "columns": {"_fivetran_deleted": {"name": "_fivetran_deleted", "description": "Boolean representing whether the record was soft-deleted in Qualtrics.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "_fivetran_synced": {"name": "_fivetran_synced", "description": "The time when a record was last updated by Fivetran.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "deduplication_criteria_email": {"name": "deduplication_criteria_email", "description": "Boolean representing if directory contacts are deduped based on email.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "deduplication_criteria_external_data_reference": {"name": "deduplication_criteria_external_data_reference", "description": "Boolean representing if directory contacts are deduped based on an external data reference.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "deduplication_criteria_first_name": {"name": "deduplication_criteria_first_name", "description": "Boolean representing if directory contacts are deduped based on first name.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "deduplication_criteria_last_name": {"name": "deduplication_criteria_last_name", "description": "Boolean representing if directory contacts are deduped based on last name.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "deduplication_criteria_phone": {"name": "deduplication_criteria_phone", "description": "Boolean representing if directory contacts are deduped based on phone number.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "id": {"name": "id", "description": "The directory ID, also known as a pool ID. Example - POOL_012345678901234", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "is_default": {"name": "is_default", "description": "Boolean representing if this directory is the default one for your brand. \n\nThe default directory will be the first directory listed in the dropdown menu in Qualtrics.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "name": {"name": "name", "description": "Name of the directory.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true}, "patch_path": null, "unrendered_config": {}, "relation_name": "\"postgres\".\"qualtrics_source_integration_tests\".\"directory\"", "created_at": 1711137324.155784}, "source.qualtrics_source.qualtrics.directory_contact": {"database": "postgres", "schema": "qualtrics_source_integration_tests", "name": "directory_contact", "resource_type": "source", "package_name": "qualtrics_source", "path": "models/src_qualtrics.yml", "original_file_path": "models/src_qualtrics.yml", "unique_id": "source.qualtrics_source.qualtrics.directory_contact", "fqn": ["qualtrics_source", "qualtrics", "directory_contact"], "source_name": "qualtrics", "source_description": "", "loader": "", "identifier": "directory_contact", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "Tablle relating contacts to the XM directories they are a part of.", "columns": {"_fivetran_synced": {"name": "_fivetran_synced", "description": "The time when a record was last updated by Fivetran.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "creation_date": {"name": "creation_date", "description": "The creation date and time of the record, expressed as an ISO 8601 value.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "directory_id": {"name": "directory_id", "description": "The directory ID, also known as a pool ID. Example - POOL_012345678901234", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "directory_unsubscribe_date": {"name": "directory_unsubscribe_date", "description": "Date and time the user opted out of the directory.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "directory_unsubscribed": {"name": "directory_unsubscribed", "description": "Boolean indicating whether the contact unsubscribed from all contact from the Directory.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "email": {"name": "email", "description": "Contact's email address. Must be in proper email format.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "email_domain": {"name": "email_domain", "description": "Domain of the contact's email address.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "ext_ref": {"name": "ext_ref", "description": "The external reference for the contact.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "first_name": {"name": "first_name", "description": "Contact's first name.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "id": {"name": "id", "description": "The ID for the contact. Example - CID_012345678901234", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "language": {"name": "language", "description": "The user's default language.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "last_modified": {"name": "last_modified", "description": "The point in time when the record was last modified.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "last_name": {"name": "last_name", "description": "Contact's surname.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "phone": {"name": "phone", "description": "Contact's phone number.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "write_blanks": {"name": "write_blanks", "description": "Boolean of whether to write blanks(?) or not.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true}, "patch_path": null, "unrendered_config": {}, "relation_name": "\"postgres\".\"qualtrics_source_integration_tests\".\"directory_contact\"", "created_at": 1711137324.155877}, "source.qualtrics_source.qualtrics.distribution": {"database": "postgres", "schema": "qualtrics_source_integration_tests", "name": "distribution", "resource_type": "source", "package_name": "qualtrics_source", "path": "models/src_qualtrics.yml", "original_file_path": "models/src_qualtrics.yml", "unique_id": "source.qualtrics_source.qualtrics.distribution", "fqn": ["qualtrics_source", "qualtrics", "distribution"], "source_name": "qualtrics", "source_description": "", "loader": "", "identifier": "distribution", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "Use distributions to reach out to contacts in the XM Directory platform, with or without a survey attached.", "columns": {"_fivetran_deleted": {"name": "_fivetran_deleted", "description": "Boolean representing whether the record was soft-deleted in Qualtrics.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "_fivetran_synced": {"name": "_fivetran_synced", "description": "The time when a record was last updated by Fivetran.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "created_date": {"name": "created_date", "description": "The creation date and time of the record, expressed as an ISO 8601 value.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "header_from_email": {"name": "header_from_email", "description": "Email from address.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "header_from_name": {"name": "header_from_name", "description": "Email from name.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "header_reply_to_email": {"name": "header_reply_to_email", "description": "Email reply-to address.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "header_subject": {"name": "header_subject", "description": "Email subject; text or message id (MS_).", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "id": {"name": "id", "description": "The unique Distribution ID.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "message_library_id": {"name": "message_library_id", "description": "Library ID of the message.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "message_message_id": {"name": "message_message_id", "description": "The ID for the desired library message.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "message_message_text": {"name": "message_message_text", "description": "Text of the message to send.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "modified_date": {"name": "modified_date", "description": "The point in time when the record was last modified.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "organization_id": {"name": "organization_id", "description": "ID of the organization/brand this record belongs to.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "owner_id": {"name": "owner_id", "description": "The unique identifier for a specific user who owns this.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "parent_distribution_id": {"name": "parent_distribution_id", "description": "The unique ID of the parent distribution.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "recipient_contact_id": {"name": "recipient_contact_id", "description": "The contact ID of the recipient. Can point to `directory_contact` or `core_contact`.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "recipient_library_id": {"name": "recipient_library_id", "description": "Library ID of the message.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "recipient_mailing_list_id": {"name": "recipient_mailing_list_id", "description": "The mailing list or contact group associated with the distribution(s). Can point to `directory_mailing_list` or `core_mailing_list`.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "recipient_sample_id": {"name": "recipient_sample_id", "description": "The ID for the desired sample. Can point to `directory_sample` or `core_sample` (not included in package).", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "request_status": {"name": "request_status", "description": "The distribution's status. States include `Pending` and `Done`. The Pending state is for email that is scheduled to be sent at a later time.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "request_type": {"name": "request_type", "description": "The distribution's type. Types include `Invite`, `Reminder`, and `ThankYou`.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "send_date": {"name": "send_date", "description": "The date and time the request will be or was sent (in ISO 8601 format). Note that this date and time could be in the future if the email distribution is scheduled to send after a delay.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "survey_link_expiration_date": {"name": "survey_link_expiration_date", "description": "The expiration date for the link associated with the survey distribution. Null if `request_type` != `Invite`.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "survey_link_link_type": {"name": "survey_link_link_type", "description": "The link type (`Individual`, `Anonymous`, or `Multiple`) for the link associated with the survey distribution. Null if `request_type` != `Invite`.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "survey_link_survey_id": {"name": "survey_link_survey_id", "description": "The unique survey ID. Will be non-null even if `request_type` != `Invite`.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true}, "patch_path": null, "unrendered_config": {}, "relation_name": "\"postgres\".\"qualtrics_source_integration_tests\".\"distribution\"", "created_at": 1711137324.155981}, "source.qualtrics_source.qualtrics.distribution_contact": {"database": "postgres", "schema": "qualtrics_source_integration_tests", "name": "distribution_contact", "resource_type": "source", "package_name": "qualtrics_source", "path": "models/src_qualtrics.yml", "original_file_path": "models/src_qualtrics.yml", "unique_id": "source.qualtrics_source.qualtrics.distribution_contact", "fqn": ["qualtrics_source", "qualtrics", "distribution_contact"], "source_name": "qualtrics", "source_description": "", "loader": "", "identifier": "distribution_contact", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "Table relating contacts to distributiins they've been a part of.", "columns": {"_fivetran_synced": {"name": "_fivetran_synced", "description": "The time when a record was last updated by Fivetran.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "contact_frequency_rule_id": {"name": "contact_frequency_rule_id", "description": "The contact frequency Rule ID. Ex - FQ_AAB234234", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "contact_id": {"name": "contact_id", "description": "The ID for the contact. Example - CID_012345678901234", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "contact_lookup_id": {"name": "contact_lookup_id", "description": "Optional contact lookup ID for individual distribution.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "distribution_id": {"name": "distribution_id", "description": "The unique Distribution ID.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "opened_at": {"name": "opened_at", "description": "The time a survey was opened by the respondent, will be null if the survey has not been opened.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "response_completed_at": {"name": "response_completed_at", "description": "The time a response was completed, will be null for uncompleted surveys.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "response_id": {"name": "response_id", "description": "The ID of the survey response submitted by this contact. If no survey response has been submitted, this value will be null. If the survey was setup to anonymize responses, then this value will be `Anonymous`.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "response_started_at": {"name": "response_started_at", "description": "The time a response was started by the respondent, will be null if survey has not been started.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "sent_at": {"name": "sent_at", "description": "The time a survey was sent to the respondent.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "status": {"name": "status", "description": "One of:\n- `Pending` - The distribution is scheduled but has yet to be sent.\n- `Success` - The distribution was successfully delivered to the contact.\n- `Error` - An error occurred while attempting to send the distribution.\n- `Opened` - The distribution was opened by the contact.\n- `Complaint` - The contact complained that the distribution was spam.\n- `Skipped` - The contact was skipped due to contact frequency rules or blacklisted contact information.\n- `Blocked` - The distribution failed to send, because the contact blocked it or the email was caught by the spam circuit breaker.\n- `Failure` - The distribution failed to be delivered.\n- `Unknown` - The distribution failed for an unknown reason.\n- `SoftBounce` - The distribution bounced but can be retried.\n- `HardBounce` - The distribution bounced and should not be retried.\n- `SurveyStarted` - The contact started the survey distributed.\n- `SurveyPartiallyFinished` - The contact submitted a partially completed survey response.\n- `SurveyFinished` - The contact submitted a completed survey response.\n- `SurveyScreenedOut` - The contact screened out while taking the survey.\n- `SessionExpired` - The contact's survey session has expired.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "survey_link": {"name": "survey_link", "description": "The survey link sent with the distribution. This is null when no link was sent.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "survey_session_id": {"name": "survey_session_id", "description": "An identifier that represents the session in which the respondent interacted with the survey", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true}, "patch_path": null, "unrendered_config": {}, "relation_name": "\"postgres\".\"qualtrics_source_integration_tests\".\"distribution_contact\"", "created_at": 1711137324.156071}, "source.qualtrics_source.qualtrics.directory_mailing_list": {"database": "postgres", "schema": "qualtrics_source_integration_tests", "name": "directory_mailing_list", "resource_type": "source", "package_name": "qualtrics_source", "path": "models/src_qualtrics.yml", "original_file_path": "models/src_qualtrics.yml", "unique_id": "source.qualtrics_source.qualtrics.directory_mailing_list", "fqn": ["qualtrics_source", "qualtrics", "directory_mailing_list"], "source_name": "qualtrics", "source_description": "", "loader": "", "identifier": "directory_mailing_list", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "Mailing lists are lists of contacts that can receive emails and survey invitations. You can create mailing lists either through file upload or manually.", "columns": {"_fivetran_deleted": {"name": "_fivetran_deleted", "description": "Boolean representing whether the record was soft-deleted in Qualtrics.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "_fivetran_synced": {"name": "_fivetran_synced", "description": "The time when a record was last updated by Fivetran.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "creation_date": {"name": "creation_date", "description": "The creation date and time of the record, expressed as an ISO 8601 value.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "directory_id": {"name": "directory_id", "description": "The directory ID, also known as a pool ID. Example - POOL_012345678901234", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "id": {"name": "id", "description": "The ID for the mailing list.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "last_modified_date": {"name": "last_modified_date", "description": "The point in time when the record was last modified.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "name": {"name": "name", "description": "Name of the mailing list.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "owner_id": {"name": "owner_id", "description": "The unique identifier for a specific user who owns this.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true}, "patch_path": null, "unrendered_config": {}, "relation_name": "\"postgres\".\"qualtrics_source_integration_tests\".\"directory_mailing_list\"", "created_at": 1711137324.1561542}, "source.qualtrics_source.qualtrics.contact_mailing_list_membership": {"database": "postgres", "schema": "qualtrics_source_integration_tests", "name": "contact_mailing_list_membership", "resource_type": "source", "package_name": "qualtrics_source", "path": "models/src_qualtrics.yml", "original_file_path": "models/src_qualtrics.yml", "unique_id": "source.qualtrics_source.qualtrics.contact_mailing_list_membership", "fqn": ["qualtrics_source", "qualtrics", "contact_mailing_list_membership"], "source_name": "qualtrics", "source_description": "", "loader": "", "identifier": "contact_mailing_list_membership", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "Table relating contacts to mailing lists they are a part of.", "columns": {"_fivetran_synced": {"name": "_fivetran_synced", "description": "The time when a record was last updated by Fivetran.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "contact_id": {"name": "contact_id", "description": "The ID for the contact. Example - CID_012345678901234", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "contact_lookup_id": {"name": "contact_lookup_id", "description": "Optional contact lookup ID for individual distribution.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "directory_id": {"name": "directory_id", "description": "The directory ID, also known as a pool ID. Example - POOL_012345678901234", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "mailing_list_id": {"name": "mailing_list_id", "description": "The ID for the mailing list.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "name": {"name": "name", "description": "Name of the mailing list.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "owner_id": {"name": "owner_id", "description": "The unique identifier for a specific user who owns this.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "unsubscribe_date": {"name": "unsubscribe_date", "description": "Date and time the user opted out of this mailing list.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "unsubscribed": {"name": "unsubscribed", "description": "Boolean indicating whether the contact has opted out of receiving email through this mailing list.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true}, "patch_path": null, "unrendered_config": {}, "relation_name": "\"postgres\".\"qualtrics_source_integration_tests\".\"contact_mailing_list_membership\"", "created_at": 1711137324.156245}}, "macros": {"macro.dbt_postgres.postgres__current_timestamp": {"name": "postgres__current_timestamp", "resource_type": "macro", "package_name": "dbt_postgres", "path": "macros/timestamps.sql", "original_file_path": "macros/timestamps.sql", "unique_id": "macro.dbt_postgres.postgres__current_timestamp", "macro_sql": "{% macro postgres__current_timestamp() -%}\n now()\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.722441, "supported_languages": null}, "macro.dbt_postgres.postgres__snapshot_string_as_time": {"name": "postgres__snapshot_string_as_time", "resource_type": "macro", "package_name": "dbt_postgres", "path": "macros/timestamps.sql", "original_file_path": "macros/timestamps.sql", "unique_id": "macro.dbt_postgres.postgres__snapshot_string_as_time", "macro_sql": "{% macro postgres__snapshot_string_as_time(timestamp) -%}\n {%- set result = \"'\" ~ timestamp ~ \"'::timestamp without time zone\" -%}\n {{ return(result) }}\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.722709, "supported_languages": null}, "macro.dbt_postgres.postgres__snapshot_get_time": {"name": "postgres__snapshot_get_time", "resource_type": "macro", "package_name": "dbt_postgres", "path": "macros/timestamps.sql", "original_file_path": "macros/timestamps.sql", "unique_id": "macro.dbt_postgres.postgres__snapshot_get_time", "macro_sql": "{% macro postgres__snapshot_get_time() -%}\n {{ current_timestamp() }}::timestamp without time zone\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt.current_timestamp"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.7228281, "supported_languages": null}, "macro.dbt_postgres.postgres__current_timestamp_backcompat": {"name": "postgres__current_timestamp_backcompat", "resource_type": "macro", "package_name": "dbt_postgres", "path": "macros/timestamps.sql", "original_file_path": "macros/timestamps.sql", "unique_id": "macro.dbt_postgres.postgres__current_timestamp_backcompat", "macro_sql": "{% macro postgres__current_timestamp_backcompat() %}\n current_timestamp::{{ type_timestamp() }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.type_timestamp"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.722938, "supported_languages": null}, "macro.dbt_postgres.postgres__current_timestamp_in_utc_backcompat": {"name": "postgres__current_timestamp_in_utc_backcompat", "resource_type": "macro", "package_name": "dbt_postgres", "path": "macros/timestamps.sql", "original_file_path": "macros/timestamps.sql", "unique_id": "macro.dbt_postgres.postgres__current_timestamp_in_utc_backcompat", "macro_sql": "{% macro postgres__current_timestamp_in_utc_backcompat() %}\n (current_timestamp at time zone 'utc')::{{ type_timestamp() }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.type_timestamp"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.723048, "supported_languages": null}, "macro.dbt_postgres.postgres__get_catalog_relations": {"name": "postgres__get_catalog_relations", "resource_type": "macro", "package_name": "dbt_postgres", "path": "macros/catalog.sql", "original_file_path": "macros/catalog.sql", "unique_id": "macro.dbt_postgres.postgres__get_catalog_relations", "macro_sql": "{% macro postgres__get_catalog_relations(information_schema, relations) -%}\n {%- call statement('catalog', fetch_result=True) -%}\n\n {#\n If the user has multiple databases set and the first one is wrong, this will fail.\n But we won't fail in the case where there are multiple quoting-difference-only dbs, which is better.\n #}\n {% set database = information_schema.database %}\n {{ adapter.verify_database(database) }}\n\n select\n '{{ database }}' as table_database,\n sch.nspname as table_schema,\n tbl.relname as table_name,\n case tbl.relkind\n when 'v' then 'VIEW'\n when 'm' then 'MATERIALIZED VIEW'\n else 'BASE TABLE'\n end as table_type,\n tbl_desc.description as table_comment,\n col.attname as column_name,\n col.attnum as column_index,\n pg_catalog.format_type(col.atttypid, col.atttypmod) as column_type,\n col_desc.description as column_comment,\n pg_get_userbyid(tbl.relowner) as table_owner\n\n from pg_catalog.pg_namespace sch\n join pg_catalog.pg_class tbl on tbl.relnamespace = sch.oid\n join pg_catalog.pg_attribute col on col.attrelid = tbl.oid\n left outer join pg_catalog.pg_description tbl_desc on (tbl_desc.objoid = tbl.oid and tbl_desc.objsubid = 0)\n left outer join pg_catalog.pg_description col_desc on (col_desc.objoid = tbl.oid and col_desc.objsubid = col.attnum)\n where (\n {%- for relation in relations -%}\n {%- if relation.identifier -%}\n (upper(sch.nspname) = upper('{{ relation.schema }}') and\n upper(tbl.relname) = upper('{{ relation.identifier }}'))\n {%- else-%}\n upper(sch.nspname) = upper('{{ relation.schema }}')\n {%- endif -%}\n {%- if not loop.last %} or {% endif -%}\n {%- endfor -%}\n )\n and not pg_is_other_temp_schema(sch.oid) -- not a temporary schema belonging to another session\n and tbl.relpersistence in ('p', 'u') -- [p]ermanent table or [u]nlogged table. Exclude [t]emporary tables\n and tbl.relkind in ('r', 'v', 'f', 'p', 'm') -- o[r]dinary table, [v]iew, [f]oreign table, [p]artitioned table, [m]aterialized view. Other values are [i]ndex, [S]equence, [c]omposite type, [t]OAST table\n and col.attnum > 0 -- negative numbers are used for system columns such as oid\n and not col.attisdropped -- column as not been dropped\n\n order by\n sch.nspname,\n tbl.relname,\n col.attnum\n\n {%- endcall -%}\n\n {{ return(load_result('catalog').table) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt.statement"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.7245219, "supported_languages": null}, "macro.dbt_postgres.postgres__get_catalog": {"name": "postgres__get_catalog", "resource_type": "macro", "package_name": "dbt_postgres", "path": "macros/catalog.sql", "original_file_path": "macros/catalog.sql", "unique_id": "macro.dbt_postgres.postgres__get_catalog", "macro_sql": "{% macro postgres__get_catalog(information_schema, schemas) -%}\n {%- set relations = [] -%}\n {%- for schema in schemas -%}\n {%- set dummy = relations.append({'schema': schema}) -%}\n {%- endfor -%}\n {{ return(postgres__get_catalog_relations(information_schema, relations)) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt_postgres.postgres__get_catalog_relations"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.724876, "supported_languages": null}, "macro.dbt_postgres.postgres__get_relations": {"name": "postgres__get_relations", "resource_type": "macro", "package_name": "dbt_postgres", "path": "macros/relations.sql", "original_file_path": "macros/relations.sql", "unique_id": "macro.dbt_postgres.postgres__get_relations", "macro_sql": "{% macro postgres__get_relations() -%}\n\n {#\n -- in pg_depend, objid is the dependent, refobjid is the referenced object\n -- > a pg_depend entry indicates that the referenced object cannot be\n -- > dropped without also dropping the dependent object.\n #}\n\n {%- call statement('relations', fetch_result=True) -%}\n with relation as (\n select\n pg_rewrite.ev_class as class,\n pg_rewrite.oid as id\n from pg_rewrite\n ),\n class as (\n select\n oid as id,\n relname as name,\n relnamespace as schema,\n relkind as kind\n from pg_class\n ),\n dependency as (\n select distinct\n pg_depend.objid as id,\n pg_depend.refobjid as ref\n from pg_depend\n ),\n schema as (\n select\n pg_namespace.oid as id,\n pg_namespace.nspname as name\n from pg_namespace\n where nspname != 'information_schema' and nspname not like 'pg\\_%'\n ),\n referenced as (\n select\n relation.id AS id,\n referenced_class.name ,\n referenced_class.schema ,\n referenced_class.kind\n from relation\n join class as referenced_class on relation.class=referenced_class.id\n where referenced_class.kind in ('r', 'v', 'm')\n ),\n relationships as (\n select\n referenced.name as referenced_name,\n referenced.schema as referenced_schema_id,\n dependent_class.name as dependent_name,\n dependent_class.schema as dependent_schema_id,\n referenced.kind as kind\n from referenced\n join dependency on referenced.id=dependency.id\n join class as dependent_class on dependency.ref=dependent_class.id\n where\n (referenced.name != dependent_class.name or\n referenced.schema != dependent_class.schema)\n )\n\n select\n referenced_schema.name as referenced_schema,\n relationships.referenced_name as referenced_name,\n dependent_schema.name as dependent_schema,\n relationships.dependent_name as dependent_name\n from relationships\n join schema as dependent_schema on relationships.dependent_schema_id=dependent_schema.id\n join schema as referenced_schema on relationships.referenced_schema_id=referenced_schema.id\n group by referenced_schema, referenced_name, dependent_schema, dependent_name\n order by referenced_schema, referenced_name, dependent_schema, dependent_name;\n\n {%- endcall -%}\n\n {{ return(load_result('relations').table) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.statement"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.72551, "supported_languages": null}, "macro.dbt_postgres.postgres_get_relations": {"name": "postgres_get_relations", "resource_type": "macro", "package_name": "dbt_postgres", "path": "macros/relations.sql", "original_file_path": "macros/relations.sql", "unique_id": "macro.dbt_postgres.postgres_get_relations", "macro_sql": "{% macro postgres_get_relations() %}\n {{ return(postgres__get_relations()) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_postgres.postgres__get_relations"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.725641, "supported_languages": null}, "macro.dbt_postgres.postgres__create_table_as": {"name": "postgres__create_table_as", "resource_type": "macro", "package_name": "dbt_postgres", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "unique_id": "macro.dbt_postgres.postgres__create_table_as", "macro_sql": "{% macro postgres__create_table_as(temporary, relation, sql) -%}\n {%- set unlogged = config.get('unlogged', default=false) -%}\n {%- set sql_header = config.get('sql_header', none) -%}\n\n {{ sql_header if sql_header is not none }}\n\n create {% if temporary -%}\n temporary\n {%- elif unlogged -%}\n unlogged\n {%- endif %} table {{ relation }}\n {% set contract_config = config.get('contract') %}\n {% if contract_config.enforced %}\n {{ get_assert_columns_equivalent(sql) }}\n {% endif -%}\n {% if contract_config.enforced and (not temporary) -%}\n {{ get_table_columns_and_constraints() }} ;\n insert into {{ relation }} (\n {{ adapter.dispatch('get_column_names', 'dbt')() }}\n )\n {%- set sql = get_select_subquery(sql) %}\n {% else %}\n as\n {% endif %}\n (\n {{ sql }}\n );\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt.get_assert_columns_equivalent", "macro.dbt.get_table_columns_and_constraints", "macro.dbt.default__get_column_names", "macro.dbt.get_select_subquery"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.733481, "supported_languages": null}, "macro.dbt_postgres.postgres__get_create_index_sql": {"name": "postgres__get_create_index_sql", "resource_type": "macro", "package_name": "dbt_postgres", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "unique_id": "macro.dbt_postgres.postgres__get_create_index_sql", "macro_sql": "{% macro postgres__get_create_index_sql(relation, index_dict) -%}\n {%- set index_config = adapter.parse_index(index_dict) -%}\n {%- set comma_separated_columns = \", \".join(index_config.columns) -%}\n {%- set index_name = index_config.render(relation) -%}\n\n create {% if index_config.unique -%}\n unique\n {%- endif %} index if not exists\n \"{{ index_name }}\"\n on {{ relation }} {% if index_config.type -%}\n using {{ index_config.type }}\n {%- endif %}\n ({{ comma_separated_columns }});\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.73397, "supported_languages": null}, "macro.dbt_postgres.postgres__create_schema": {"name": "postgres__create_schema", "resource_type": "macro", "package_name": "dbt_postgres", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "unique_id": "macro.dbt_postgres.postgres__create_schema", "macro_sql": "{% macro postgres__create_schema(relation) -%}\n {% if relation.database -%}\n {{ adapter.verify_database(relation.database) }}\n {%- endif -%}\n {%- call statement('create_schema') -%}\n create schema if not exists {{ relation.without_identifier().include(database=False) }}\n {%- endcall -%}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.statement"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.734288, "supported_languages": null}, "macro.dbt_postgres.postgres__drop_schema": {"name": "postgres__drop_schema", "resource_type": "macro", "package_name": "dbt_postgres", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "unique_id": "macro.dbt_postgres.postgres__drop_schema", "macro_sql": "{% macro postgres__drop_schema(relation) -%}\n {% if relation.database -%}\n {{ adapter.verify_database(relation.database) }}\n {%- endif -%}\n {%- call statement('drop_schema') -%}\n drop schema if exists {{ relation.without_identifier().include(database=False) }} cascade\n {%- endcall -%}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.statement"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.7345972, "supported_languages": null}, "macro.dbt_postgres.postgres__get_columns_in_relation": {"name": "postgres__get_columns_in_relation", "resource_type": "macro", "package_name": "dbt_postgres", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "unique_id": "macro.dbt_postgres.postgres__get_columns_in_relation", "macro_sql": "{% macro postgres__get_columns_in_relation(relation) -%}\n {% call statement('get_columns_in_relation', fetch_result=True) %}\n select\n column_name,\n data_type,\n character_maximum_length,\n numeric_precision,\n numeric_scale\n\n from {{ relation.information_schema('columns') }}\n where table_name = '{{ relation.identifier }}'\n {% if relation.schema %}\n and table_schema = '{{ relation.schema }}'\n {% endif %}\n order by ordinal_position\n\n {% endcall %}\n {% set table = load_result('get_columns_in_relation').table %}\n {{ return(sql_convert_columns_in_relation(table)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.statement", "macro.dbt.sql_convert_columns_in_relation"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.735054, "supported_languages": null}, "macro.dbt_postgres.postgres__list_relations_without_caching": {"name": "postgres__list_relations_without_caching", "resource_type": "macro", "package_name": "dbt_postgres", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "unique_id": "macro.dbt_postgres.postgres__list_relations_without_caching", "macro_sql": "{% macro postgres__list_relations_without_caching(schema_relation) %}\n {% call statement('list_relations_without_caching', fetch_result=True) -%}\n select\n '{{ schema_relation.database }}' as database,\n tablename as name,\n schemaname as schema,\n 'table' as type\n from pg_tables\n where schemaname ilike '{{ schema_relation.schema }}'\n union all\n select\n '{{ schema_relation.database }}' as database,\n viewname as name,\n schemaname as schema,\n 'view' as type\n from pg_views\n where schemaname ilike '{{ schema_relation.schema }}'\n union all\n select\n '{{ schema_relation.database }}' as database,\n matviewname as name,\n schemaname as schema,\n 'materialized_view' as type\n from pg_matviews\n where schemaname ilike '{{ schema_relation.schema }}'\n {% endcall %}\n {{ return(load_result('list_relations_without_caching').table) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.statement"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.7356641, "supported_languages": null}, "macro.dbt_postgres.postgres__information_schema_name": {"name": "postgres__information_schema_name", "resource_type": "macro", "package_name": "dbt_postgres", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "unique_id": "macro.dbt_postgres.postgres__information_schema_name", "macro_sql": "{% macro postgres__information_schema_name(database) -%}\n {% if database_name -%}\n {{ adapter.verify_database(database_name) }}\n {%- endif -%}\n information_schema\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.7358642, "supported_languages": null}, "macro.dbt_postgres.postgres__list_schemas": {"name": "postgres__list_schemas", "resource_type": "macro", "package_name": "dbt_postgres", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "unique_id": "macro.dbt_postgres.postgres__list_schemas", "macro_sql": "{% macro postgres__list_schemas(database) %}\n {% if database -%}\n {{ adapter.verify_database(database) }}\n {%- endif -%}\n {% call statement('list_schemas', fetch_result=True, auto_begin=False) %}\n select distinct nspname from pg_namespace\n {% endcall %}\n {{ return(load_result('list_schemas').table) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.statement"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.736192, "supported_languages": null}, "macro.dbt_postgres.postgres__check_schema_exists": {"name": "postgres__check_schema_exists", "resource_type": "macro", "package_name": "dbt_postgres", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "unique_id": "macro.dbt_postgres.postgres__check_schema_exists", "macro_sql": "{% macro postgres__check_schema_exists(information_schema, schema) -%}\n {% if information_schema.database -%}\n {{ adapter.verify_database(information_schema.database) }}\n {%- endif -%}\n {% call statement('check_schema_exists', fetch_result=True, auto_begin=False) %}\n select count(*) from pg_namespace where nspname = '{{ schema }}'\n {% endcall %}\n {{ return(load_result('check_schema_exists').table) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.statement"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.736545, "supported_languages": null}, "macro.dbt_postgres.postgres__make_relation_with_suffix": {"name": "postgres__make_relation_with_suffix", "resource_type": "macro", "package_name": "dbt_postgres", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "unique_id": "macro.dbt_postgres.postgres__make_relation_with_suffix", "macro_sql": "{% macro postgres__make_relation_with_suffix(base_relation, suffix, dstring) %}\n {% if dstring %}\n {% set dt = modules.datetime.datetime.now() %}\n {% set dtstring = dt.strftime(\"%H%M%S%f\") %}\n {% set suffix = suffix ~ dtstring %}\n {% endif %}\n {% set suffix_length = suffix|length %}\n {% set relation_max_name_length = base_relation.relation_max_name_length() %}\n {% if suffix_length > relation_max_name_length %}\n {% do exceptions.raise_compiler_error('Relation suffix is too long (' ~ suffix_length ~ ' characters). Maximum length is ' ~ relation_max_name_length ~ ' characters.') %}\n {% endif %}\n {% set identifier = base_relation.identifier[:relation_max_name_length - suffix_length] ~ suffix %}\n\n {{ return(base_relation.incorporate(path={\"identifier\": identifier })) }}\n\n {% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.7372952, "supported_languages": null}, "macro.dbt_postgres.postgres__make_intermediate_relation": {"name": "postgres__make_intermediate_relation", "resource_type": "macro", "package_name": "dbt_postgres", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "unique_id": "macro.dbt_postgres.postgres__make_intermediate_relation", "macro_sql": "{% macro postgres__make_intermediate_relation(base_relation, suffix) %}\n {{ return(postgres__make_relation_with_suffix(base_relation, suffix, dstring=False)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_postgres.postgres__make_relation_with_suffix"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.737476, "supported_languages": null}, "macro.dbt_postgres.postgres__make_temp_relation": {"name": "postgres__make_temp_relation", "resource_type": "macro", "package_name": "dbt_postgres", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "unique_id": "macro.dbt_postgres.postgres__make_temp_relation", "macro_sql": "{% macro postgres__make_temp_relation(base_relation, suffix) %}\n {% set temp_relation = postgres__make_relation_with_suffix(base_relation, suffix, dstring=True) %}\n {{ return(temp_relation.incorporate(path={\"schema\": none,\n \"database\": none})) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_postgres.postgres__make_relation_with_suffix"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.73776, "supported_languages": null}, "macro.dbt_postgres.postgres__make_backup_relation": {"name": "postgres__make_backup_relation", "resource_type": "macro", "package_name": "dbt_postgres", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "unique_id": "macro.dbt_postgres.postgres__make_backup_relation", "macro_sql": "{% macro postgres__make_backup_relation(base_relation, backup_relation_type, suffix) %}\n {% set backup_relation = postgres__make_relation_with_suffix(base_relation, suffix, dstring=False) %}\n {{ return(backup_relation.incorporate(type=backup_relation_type)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_postgres.postgres__make_relation_with_suffix"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.738007, "supported_languages": null}, "macro.dbt_postgres.postgres_escape_comment": {"name": "postgres_escape_comment", "resource_type": "macro", "package_name": "dbt_postgres", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "unique_id": "macro.dbt_postgres.postgres_escape_comment", "macro_sql": "{% macro postgres_escape_comment(comment) -%}\n {% if comment is not string %}\n {% do exceptions.raise_compiler_error('cannot escape a non-string: ' ~ comment) %}\n {% endif %}\n {%- set magic = '$dbt_comment_literal_block$' -%}\n {%- if magic in comment -%}\n {%- do exceptions.raise_compiler_error('The string ' ~ magic ~ ' is not allowed in comments.') -%}\n {%- endif -%}\n {{ magic }}{{ comment }}{{ magic }}\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.738386, "supported_languages": null}, "macro.dbt_postgres.postgres__alter_relation_comment": {"name": "postgres__alter_relation_comment", "resource_type": "macro", "package_name": "dbt_postgres", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "unique_id": "macro.dbt_postgres.postgres__alter_relation_comment", "macro_sql": "{% macro postgres__alter_relation_comment(relation, comment) %}\n {% set escaped_comment = postgres_escape_comment(comment) %}\n comment on {{ relation.type }} {{ relation }} is {{ escaped_comment }};\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_postgres.postgres_escape_comment"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.73859, "supported_languages": null}, "macro.dbt_postgres.postgres__alter_column_comment": {"name": "postgres__alter_column_comment", "resource_type": "macro", "package_name": "dbt_postgres", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "unique_id": "macro.dbt_postgres.postgres__alter_column_comment", "macro_sql": "{% macro postgres__alter_column_comment(relation, column_dict) %}\n {% set existing_columns = adapter.get_columns_in_relation(relation) | map(attribute=\"name\") | list %}\n {% for column_name in column_dict if (column_name in existing_columns) %}\n {% set comment = column_dict[column_name]['description'] %}\n {% set escaped_comment = postgres_escape_comment(comment) %}\n comment on column {{ relation }}.{{ adapter.quote(column_name) if column_dict[column_name]['quote'] else column_name }} is {{ escaped_comment }};\n {% endfor %}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_postgres.postgres_escape_comment"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.7391171, "supported_languages": null}, "macro.dbt_postgres.postgres__get_show_grant_sql": {"name": "postgres__get_show_grant_sql", "resource_type": "macro", "package_name": "dbt_postgres", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "unique_id": "macro.dbt_postgres.postgres__get_show_grant_sql", "macro_sql": "\n\n{%- macro postgres__get_show_grant_sql(relation) -%}\n select grantee, privilege_type\n from {{ relation.information_schema('role_table_grants') }}\n where grantor = current_role\n and grantee != current_role\n and table_schema = '{{ relation.schema }}'\n and table_name = '{{ relation.identifier }}'\n{%- endmacro -%}\n\n", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.7393, "supported_languages": null}, "macro.dbt_postgres.postgres__copy_grants": {"name": "postgres__copy_grants", "resource_type": "macro", "package_name": "dbt_postgres", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "unique_id": "macro.dbt_postgres.postgres__copy_grants", "macro_sql": "{% macro postgres__copy_grants() %}\n {{ return(False) }}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.739409, "supported_languages": null}, "macro.dbt_postgres.postgres__get_show_indexes_sql": {"name": "postgres__get_show_indexes_sql", "resource_type": "macro", "package_name": "dbt_postgres", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "unique_id": "macro.dbt_postgres.postgres__get_show_indexes_sql", "macro_sql": "{% macro postgres__get_show_indexes_sql(relation) %}\n select\n i.relname as name,\n m.amname as method,\n ix.indisunique as \"unique\",\n array_to_string(array_agg(a.attname), ',') as column_names\n from pg_index ix\n join pg_class i\n on i.oid = ix.indexrelid\n join pg_am m\n on m.oid=i.relam\n join pg_class t\n on t.oid = ix.indrelid\n join pg_namespace n\n on n.oid = t.relnamespace\n join pg_attribute a\n on a.attrelid = t.oid\n and a.attnum = ANY(ix.indkey)\n where t.relname = '{{ relation.identifier }}'\n and n.nspname = '{{ relation.schema }}'\n and t.relkind in ('r', 'm')\n group by 1, 2, 3\n order by 1, 2, 3\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.739566, "supported_languages": null}, "macro.dbt_postgres.postgres__get_drop_index_sql": {"name": "postgres__get_drop_index_sql", "resource_type": "macro", "package_name": "dbt_postgres", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "unique_id": "macro.dbt_postgres.postgres__get_drop_index_sql", "macro_sql": "\n\n\n{%- macro postgres__get_drop_index_sql(relation, index_name) -%}\n drop index if exists \"{{ relation.schema }}\".\"{{ index_name }}\"\n{%- endmacro -%}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.73969, "supported_languages": null}, "macro.dbt_postgres.postgres__get_incremental_default_sql": {"name": "postgres__get_incremental_default_sql", "resource_type": "macro", "package_name": "dbt_postgres", "path": "macros/materializations/incremental_strategies.sql", "original_file_path": "macros/materializations/incremental_strategies.sql", "unique_id": "macro.dbt_postgres.postgres__get_incremental_default_sql", "macro_sql": "{% macro postgres__get_incremental_default_sql(arg_dict) %}\n\n {% if arg_dict[\"unique_key\"] %}\n {% do return(get_incremental_delete_insert_sql(arg_dict)) %}\n {% else %}\n {% do return(get_incremental_append_sql(arg_dict)) %}\n {% endif %}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.get_incremental_delete_insert_sql", "macro.dbt.get_incremental_append_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.7400472, "supported_languages": null}, "macro.dbt_postgres.postgres__snapshot_merge_sql": {"name": "postgres__snapshot_merge_sql", "resource_type": "macro", "package_name": "dbt_postgres", "path": "macros/materializations/snapshot_merge.sql", "original_file_path": "macros/materializations/snapshot_merge.sql", "unique_id": "macro.dbt_postgres.postgres__snapshot_merge_sql", "macro_sql": "{% macro postgres__snapshot_merge_sql(target, source, insert_cols) -%}\n {%- set insert_cols_csv = insert_cols | join(', ') -%}\n\n update {{ target }}\n set dbt_valid_to = DBT_INTERNAL_SOURCE.dbt_valid_to\n from {{ source }} as DBT_INTERNAL_SOURCE\n where DBT_INTERNAL_SOURCE.dbt_scd_id::text = {{ target }}.dbt_scd_id::text\n and DBT_INTERNAL_SOURCE.dbt_change_type::text in ('update'::text, 'delete'::text)\n and {{ target }}.dbt_valid_to is null;\n\n insert into {{ target }} ({{ insert_cols_csv }})\n select {% for column in insert_cols -%}\n DBT_INTERNAL_SOURCE.{{ column }} {%- if not loop.last %}, {%- endif %}\n {%- endfor %}\n from {{ source }} as DBT_INTERNAL_SOURCE\n where DBT_INTERNAL_SOURCE.dbt_change_type::text = 'insert'::text;\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.7406971, "supported_languages": null}, "macro.dbt_postgres.postgres__drop_materialized_view": {"name": "postgres__drop_materialized_view", "resource_type": "macro", "package_name": "dbt_postgres", "path": "macros/relations/materialized_view/drop.sql", "original_file_path": "macros/relations/materialized_view/drop.sql", "unique_id": "macro.dbt_postgres.postgres__drop_materialized_view", "macro_sql": "{% macro postgres__drop_materialized_view(relation) -%}\n drop materialized view if exists {{ relation }} cascade\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.7408268, "supported_languages": null}, "macro.dbt_postgres.postgres__describe_materialized_view": {"name": "postgres__describe_materialized_view", "resource_type": "macro", "package_name": "dbt_postgres", "path": "macros/relations/materialized_view/describe.sql", "original_file_path": "macros/relations/materialized_view/describe.sql", "unique_id": "macro.dbt_postgres.postgres__describe_materialized_view", "macro_sql": "{% macro postgres__describe_materialized_view(relation) %}\n -- for now just get the indexes, we don't need the name or the query yet\n {% set _indexes = run_query(get_show_indexes_sql(relation)) %}\n {% do return({'indexes': _indexes}) %}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.run_query", "macro.dbt.get_show_indexes_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.741089, "supported_languages": null}, "macro.dbt_postgres.postgres__refresh_materialized_view": {"name": "postgres__refresh_materialized_view", "resource_type": "macro", "package_name": "dbt_postgres", "path": "macros/relations/materialized_view/refresh.sql", "original_file_path": "macros/relations/materialized_view/refresh.sql", "unique_id": "macro.dbt_postgres.postgres__refresh_materialized_view", "macro_sql": "{% macro postgres__refresh_materialized_view(relation) %}\n refresh materialized view {{ relation }}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.741212, "supported_languages": null}, "macro.dbt_postgres.postgres__get_rename_materialized_view_sql": {"name": "postgres__get_rename_materialized_view_sql", "resource_type": "macro", "package_name": "dbt_postgres", "path": "macros/relations/materialized_view/rename.sql", "original_file_path": "macros/relations/materialized_view/rename.sql", "unique_id": "macro.dbt_postgres.postgres__get_rename_materialized_view_sql", "macro_sql": "{% macro postgres__get_rename_materialized_view_sql(relation, new_name) %}\n alter materialized view {{ relation }} rename to {{ new_name }}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.741368, "supported_languages": null}, "macro.dbt_postgres.postgres__get_alter_materialized_view_as_sql": {"name": "postgres__get_alter_materialized_view_as_sql", "resource_type": "macro", "package_name": "dbt_postgres", "path": "macros/relations/materialized_view/alter.sql", "original_file_path": "macros/relations/materialized_view/alter.sql", "unique_id": "macro.dbt_postgres.postgres__get_alter_materialized_view_as_sql", "macro_sql": "{% macro postgres__get_alter_materialized_view_as_sql(\n relation,\n configuration_changes,\n sql,\n existing_relation,\n backup_relation,\n intermediate_relation\n) %}\n\n -- apply a full refresh immediately if needed\n {% if configuration_changes.requires_full_refresh %}\n\n {{ get_replace_sql(existing_relation, relation, sql) }}\n\n -- otherwise apply individual changes as needed\n {% else %}\n\n {{ postgres__update_indexes_on_materialized_view(relation, configuration_changes.indexes) }}\n\n {%- endif -%}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.get_replace_sql", "macro.dbt_postgres.postgres__update_indexes_on_materialized_view"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.742197, "supported_languages": null}, "macro.dbt_postgres.postgres__update_indexes_on_materialized_view": {"name": "postgres__update_indexes_on_materialized_view", "resource_type": "macro", "package_name": "dbt_postgres", "path": "macros/relations/materialized_view/alter.sql", "original_file_path": "macros/relations/materialized_view/alter.sql", "unique_id": "macro.dbt_postgres.postgres__update_indexes_on_materialized_view", "macro_sql": "\n\n\n{%- macro postgres__update_indexes_on_materialized_view(relation, index_changes) -%}\n {{- log(\"Applying UPDATE INDEXES to: \" ~ relation) -}}\n\n {%- for _index_change in index_changes -%}\n {%- set _index = _index_change.context -%}\n\n {%- if _index_change.action == \"drop\" -%}\n\n {{ postgres__get_drop_index_sql(relation, _index.name) }};\n\n {%- elif _index_change.action == \"create\" -%}\n\n {{ postgres__get_create_index_sql(relation, _index.as_node_config) }}\n\n {%- endif -%}\n\n {%- endfor -%}\n\n{%- endmacro -%}\n\n\n", "depends_on": {"macros": ["macro.dbt_postgres.postgres__get_drop_index_sql", "macro.dbt_postgres.postgres__get_create_index_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.742836, "supported_languages": null}, "macro.dbt_postgres.postgres__get_materialized_view_configuration_changes": {"name": "postgres__get_materialized_view_configuration_changes", "resource_type": "macro", "package_name": "dbt_postgres", "path": "macros/relations/materialized_view/alter.sql", "original_file_path": "macros/relations/materialized_view/alter.sql", "unique_id": "macro.dbt_postgres.postgres__get_materialized_view_configuration_changes", "macro_sql": "{% macro postgres__get_materialized_view_configuration_changes(existing_relation, new_config) %}\n {% set _existing_materialized_view = postgres__describe_materialized_view(existing_relation) %}\n {% set _configuration_changes = existing_relation.get_materialized_view_config_change_collection(_existing_materialized_view, new_config) %}\n {% do return(_configuration_changes) %}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_postgres.postgres__describe_materialized_view"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.7432058, "supported_languages": null}, "macro.dbt_postgres.postgres__get_create_materialized_view_as_sql": {"name": "postgres__get_create_materialized_view_as_sql", "resource_type": "macro", "package_name": "dbt_postgres", "path": "macros/relations/materialized_view/create.sql", "original_file_path": "macros/relations/materialized_view/create.sql", "unique_id": "macro.dbt_postgres.postgres__get_create_materialized_view_as_sql", "macro_sql": "{% macro postgres__get_create_materialized_view_as_sql(relation, sql) %}\n create materialized view if not exists {{ relation }} as {{ sql }};\n\n {% for _index_dict in config.get('indexes', []) -%}\n {{- get_create_index_sql(relation, _index_dict) -}}\n {%- endfor -%}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.get_create_index_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.743608, "supported_languages": null}, "macro.dbt_postgres.postgres__drop_table": {"name": "postgres__drop_table", "resource_type": "macro", "package_name": "dbt_postgres", "path": "macros/relations/table/drop.sql", "original_file_path": "macros/relations/table/drop.sql", "unique_id": "macro.dbt_postgres.postgres__drop_table", "macro_sql": "{% macro postgres__drop_table(relation) -%}\n drop table if exists {{ relation }} cascade\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.74381, "supported_languages": null}, "macro.dbt_postgres.postgres__get_replace_table_sql": {"name": "postgres__get_replace_table_sql", "resource_type": "macro", "package_name": "dbt_postgres", "path": "macros/relations/table/replace.sql", "original_file_path": "macros/relations/table/replace.sql", "unique_id": "macro.dbt_postgres.postgres__get_replace_table_sql", "macro_sql": "{% macro postgres__get_replace_table_sql(relation, sql) -%}\n\n {%- set sql_header = config.get('sql_header', none) -%}\n {{ sql_header if sql_header is not none }}\n\n create or replace table {{ relation }}\n {% set contract_config = config.get('contract') %}\n {% if contract_config.enforced %}\n {{ get_assert_columns_equivalent(sql) }}\n {{ get_table_columns_and_constraints() }}\n {%- set sql = get_select_subquery(sql) %}\n {% endif %}\n as (\n {{ sql }}\n );\n\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt.get_assert_columns_equivalent", "macro.dbt.get_table_columns_and_constraints", "macro.dbt.get_select_subquery"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.7444952, "supported_languages": null}, "macro.dbt_postgres.postgres__get_rename_table_sql": {"name": "postgres__get_rename_table_sql", "resource_type": "macro", "package_name": "dbt_postgres", "path": "macros/relations/table/rename.sql", "original_file_path": "macros/relations/table/rename.sql", "unique_id": "macro.dbt_postgres.postgres__get_rename_table_sql", "macro_sql": "{% macro postgres__get_rename_table_sql(relation, new_name) %}\n alter table {{ relation }} rename to {{ new_name }}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.744682, "supported_languages": null}, "macro.dbt_postgres.postgres__drop_view": {"name": "postgres__drop_view", "resource_type": "macro", "package_name": "dbt_postgres", "path": "macros/relations/view/drop.sql", "original_file_path": "macros/relations/view/drop.sql", "unique_id": "macro.dbt_postgres.postgres__drop_view", "macro_sql": "{% macro postgres__drop_view(relation) -%}\n drop view if exists {{ relation }} cascade\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.744813, "supported_languages": null}, "macro.dbt_postgres.postgres__get_replace_view_sql": {"name": "postgres__get_replace_view_sql", "resource_type": "macro", "package_name": "dbt_postgres", "path": "macros/relations/view/replace.sql", "original_file_path": "macros/relations/view/replace.sql", "unique_id": "macro.dbt_postgres.postgres__get_replace_view_sql", "macro_sql": "{% macro postgres__get_replace_view_sql(relation, sql) -%}\n\n {%- set sql_header = config.get('sql_header', none) -%}\n {{ sql_header if sql_header is not none }}\n\n create or replace view {{ relation }}\n {% set contract_config = config.get('contract') %}\n {% if contract_config.enforced %}\n {{ get_assert_columns_equivalent(sql) }}\n {%- endif %}\n as (\n {{ sql }}\n );\n\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt.get_assert_columns_equivalent"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.745332, "supported_languages": null}, "macro.dbt_postgres.postgres__get_rename_view_sql": {"name": "postgres__get_rename_view_sql", "resource_type": "macro", "package_name": "dbt_postgres", "path": "macros/relations/view/rename.sql", "original_file_path": "macros/relations/view/rename.sql", "unique_id": "macro.dbt_postgres.postgres__get_rename_view_sql", "macro_sql": "{% macro postgres__get_rename_view_sql(relation, new_name) %}\n alter view {{ relation }} rename to {{ new_name }}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.745501, "supported_languages": null}, "macro.dbt_postgres.postgres__dateadd": {"name": "postgres__dateadd", "resource_type": "macro", "package_name": "dbt_postgres", "path": "macros/utils/dateadd.sql", "original_file_path": "macros/utils/dateadd.sql", "unique_id": "macro.dbt_postgres.postgres__dateadd", "macro_sql": "{% macro postgres__dateadd(datepart, interval, from_date_or_timestamp) %}\n\n {{ from_date_or_timestamp }} + ((interval '1 {{ datepart }}') * ({{ interval }}))\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.745697, "supported_languages": null}, "macro.dbt_postgres.postgres__listagg": {"name": "postgres__listagg", "resource_type": "macro", "package_name": "dbt_postgres", "path": "macros/utils/listagg.sql", "original_file_path": "macros/utils/listagg.sql", "unique_id": "macro.dbt_postgres.postgres__listagg", "macro_sql": "{% macro postgres__listagg(measure, delimiter_text, order_by_clause, limit_num) -%}\n\n {% if limit_num -%}\n array_to_string(\n (array_agg(\n {{ measure }}\n {% if order_by_clause -%}\n {{ order_by_clause }}\n {%- endif %}\n ))[1:{{ limit_num }}],\n {{ delimiter_text }}\n )\n {%- else %}\n string_agg(\n {{ measure }},\n {{ delimiter_text }}\n {% if order_by_clause -%}\n {{ order_by_clause }}\n {%- endif %}\n )\n {%- endif %}\n\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.746239, "supported_languages": null}, "macro.dbt_postgres.postgres__datediff": {"name": "postgres__datediff", "resource_type": "macro", "package_name": "dbt_postgres", "path": "macros/utils/datediff.sql", "original_file_path": "macros/utils/datediff.sql", "unique_id": "macro.dbt_postgres.postgres__datediff", "macro_sql": "{% macro postgres__datediff(first_date, second_date, datepart) -%}\n\n {% if datepart == 'year' %}\n (date_part('year', ({{second_date}})::date) - date_part('year', ({{first_date}})::date))\n {% elif datepart == 'quarter' %}\n ({{ datediff(first_date, second_date, 'year') }} * 4 + date_part('quarter', ({{second_date}})::date) - date_part('quarter', ({{first_date}})::date))\n {% elif datepart == 'month' %}\n ({{ datediff(first_date, second_date, 'year') }} * 12 + date_part('month', ({{second_date}})::date) - date_part('month', ({{first_date}})::date))\n {% elif datepart == 'day' %}\n (({{second_date}})::date - ({{first_date}})::date)\n {% elif datepart == 'week' %}\n ({{ datediff(first_date, second_date, 'day') }} / 7 + case\n when date_part('dow', ({{first_date}})::timestamp) <= date_part('dow', ({{second_date}})::timestamp) then\n case when {{first_date}} <= {{second_date}} then 0 else -1 end\n else\n case when {{first_date}} <= {{second_date}} then 1 else 0 end\n end)\n {% elif datepart == 'hour' %}\n ({{ datediff(first_date, second_date, 'day') }} * 24 + date_part('hour', ({{second_date}})::timestamp) - date_part('hour', ({{first_date}})::timestamp))\n {% elif datepart == 'minute' %}\n ({{ datediff(first_date, second_date, 'hour') }} * 60 + date_part('minute', ({{second_date}})::timestamp) - date_part('minute', ({{first_date}})::timestamp))\n {% elif datepart == 'second' %}\n ({{ datediff(first_date, second_date, 'minute') }} * 60 + floor(date_part('second', ({{second_date}})::timestamp)) - floor(date_part('second', ({{first_date}})::timestamp)))\n {% elif datepart == 'millisecond' %}\n ({{ datediff(first_date, second_date, 'minute') }} * 60000 + floor(date_part('millisecond', ({{second_date}})::timestamp)) - floor(date_part('millisecond', ({{first_date}})::timestamp)))\n {% elif datepart == 'microsecond' %}\n ({{ datediff(first_date, second_date, 'minute') }} * 60000000 + floor(date_part('microsecond', ({{second_date}})::timestamp)) - floor(date_part('microsecond', ({{first_date}})::timestamp)))\n {% else %}\n {{ exceptions.raise_compiler_error(\"Unsupported datepart for macro datediff in postgres: {!r}\".format(datepart)) }}\n {% endif %}\n\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt.datediff"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.7493582, "supported_languages": null}, "macro.dbt_postgres.postgres__any_value": {"name": "postgres__any_value", "resource_type": "macro", "package_name": "dbt_postgres", "path": "macros/utils/any_value.sql", "original_file_path": "macros/utils/any_value.sql", "unique_id": "macro.dbt_postgres.postgres__any_value", "macro_sql": "{% macro postgres__any_value(expression) -%}\n\n min({{ expression }})\n\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.749515, "supported_languages": null}, "macro.dbt_postgres.postgres__last_day": {"name": "postgres__last_day", "resource_type": "macro", "package_name": "dbt_postgres", "path": "macros/utils/last_day.sql", "original_file_path": "macros/utils/last_day.sql", "unique_id": "macro.dbt_postgres.postgres__last_day", "macro_sql": "{% macro postgres__last_day(date, datepart) -%}\n\n {%- if datepart == 'quarter' -%}\n -- postgres dateadd does not support quarter interval.\n cast(\n {{dbt.dateadd('day', '-1',\n dbt.dateadd('month', '3', dbt.date_trunc(datepart, date))\n )}}\n as date)\n {%- else -%}\n {{dbt.default_last_day(date, datepart)}}\n {%- endif -%}\n\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt.dateadd", "macro.dbt.date_trunc", "macro.dbt.default_last_day"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.7499661, "supported_languages": null}, "macro.dbt_postgres.postgres__split_part": {"name": "postgres__split_part", "resource_type": "macro", "package_name": "dbt_postgres", "path": "macros/utils/split_part.sql", "original_file_path": "macros/utils/split_part.sql", "unique_id": "macro.dbt_postgres.postgres__split_part", "macro_sql": "{% macro postgres__split_part(string_text, delimiter_text, part_number) %}\n\n {% if part_number >= 0 %}\n {{ dbt.default__split_part(string_text, delimiter_text, part_number) }}\n {% else %}\n {{ dbt._split_part_negative(string_text, delimiter_text, part_number) }}\n {% endif %}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__split_part", "macro.dbt._split_part_negative"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.750349, "supported_languages": null}, "macro.dbt.run_hooks": {"name": "run_hooks", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/hooks.sql", "original_file_path": "macros/materializations/hooks.sql", "unique_id": "macro.dbt.run_hooks", "macro_sql": "{% macro run_hooks(hooks, inside_transaction=True) %}\n {% for hook in hooks | selectattr('transaction', 'equalto', inside_transaction) %}\n {% if not inside_transaction and loop.first %}\n {% call statement(auto_begin=inside_transaction) %}\n commit;\n {% endcall %}\n {% endif %}\n {% set rendered = render(hook.get('sql')) | trim %}\n {% if (rendered | length) > 0 %}\n {% call statement(auto_begin=inside_transaction) %}\n {{ rendered }}\n {% endcall %}\n {% endif %}\n {% endfor %}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.statement"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.751372, "supported_languages": null}, "macro.dbt.make_hook_config": {"name": "make_hook_config", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/hooks.sql", "original_file_path": "macros/materializations/hooks.sql", "unique_id": "macro.dbt.make_hook_config", "macro_sql": "{% macro make_hook_config(sql, inside_transaction) %}\n {{ tojson({\"sql\": sql, \"transaction\": inside_transaction}) }}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.751565, "supported_languages": null}, "macro.dbt.before_begin": {"name": "before_begin", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/hooks.sql", "original_file_path": "macros/materializations/hooks.sql", "unique_id": "macro.dbt.before_begin", "macro_sql": "{% macro before_begin(sql) %}\n {{ make_hook_config(sql, inside_transaction=False) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.make_hook_config"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.751699, "supported_languages": null}, "macro.dbt.in_transaction": {"name": "in_transaction", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/hooks.sql", "original_file_path": "macros/materializations/hooks.sql", "unique_id": "macro.dbt.in_transaction", "macro_sql": "{% macro in_transaction(sql) %}\n {{ make_hook_config(sql, inside_transaction=True) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.make_hook_config"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.7518332, "supported_languages": null}, "macro.dbt.after_commit": {"name": "after_commit", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/hooks.sql", "original_file_path": "macros/materializations/hooks.sql", "unique_id": "macro.dbt.after_commit", "macro_sql": "{% macro after_commit(sql) %}\n {{ make_hook_config(sql, inside_transaction=False) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.make_hook_config"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.751968, "supported_languages": null}, "macro.dbt.set_sql_header": {"name": "set_sql_header", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/configs.sql", "original_file_path": "macros/materializations/configs.sql", "unique_id": "macro.dbt.set_sql_header", "macro_sql": "{% macro set_sql_header(config) -%}\n {{ config.set('sql_header', caller()) }}\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.752342, "supported_languages": null}, "macro.dbt.should_full_refresh": {"name": "should_full_refresh", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/configs.sql", "original_file_path": "macros/materializations/configs.sql", "unique_id": "macro.dbt.should_full_refresh", "macro_sql": "{% macro should_full_refresh() %}\n {% set config_full_refresh = config.get('full_refresh') %}\n {% if config_full_refresh is none %}\n {% set config_full_refresh = flags.FULL_REFRESH %}\n {% endif %}\n {% do return(config_full_refresh) %}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.7526278, "supported_languages": null}, "macro.dbt.should_store_failures": {"name": "should_store_failures", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/configs.sql", "original_file_path": "macros/materializations/configs.sql", "unique_id": "macro.dbt.should_store_failures", "macro_sql": "{% macro should_store_failures() %}\n {% set config_store_failures = config.get('store_failures') %}\n {% if config_store_failures is none %}\n {% set config_store_failures = flags.STORE_FAILURES %}\n {% endif %}\n {% do return(config_store_failures) %}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.752919, "supported_languages": null}, "macro.dbt.snapshot_merge_sql": {"name": "snapshot_merge_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/snapshots/snapshot_merge.sql", "original_file_path": "macros/materializations/snapshots/snapshot_merge.sql", "unique_id": "macro.dbt.snapshot_merge_sql", "macro_sql": "{% macro snapshot_merge_sql(target, source, insert_cols) -%}\n {{ adapter.dispatch('snapshot_merge_sql', 'dbt')(target, source, insert_cols) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt_postgres.postgres__snapshot_merge_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.753354, "supported_languages": null}, "macro.dbt.default__snapshot_merge_sql": {"name": "default__snapshot_merge_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/snapshots/snapshot_merge.sql", "original_file_path": "macros/materializations/snapshots/snapshot_merge.sql", "unique_id": "macro.dbt.default__snapshot_merge_sql", "macro_sql": "{% macro default__snapshot_merge_sql(target, source, insert_cols) -%}\n {%- set insert_cols_csv = insert_cols | join(', ') -%}\n\n merge into {{ target }} as DBT_INTERNAL_DEST\n using {{ source }} as DBT_INTERNAL_SOURCE\n on DBT_INTERNAL_SOURCE.dbt_scd_id = DBT_INTERNAL_DEST.dbt_scd_id\n\n when matched\n and DBT_INTERNAL_DEST.dbt_valid_to is null\n and DBT_INTERNAL_SOURCE.dbt_change_type in ('update', 'delete')\n then update\n set dbt_valid_to = DBT_INTERNAL_SOURCE.dbt_valid_to\n\n when not matched\n and DBT_INTERNAL_SOURCE.dbt_change_type = 'insert'\n then insert ({{ insert_cols_csv }})\n values ({{ insert_cols_csv }})\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.7536151, "supported_languages": null}, "macro.dbt.strategy_dispatch": {"name": "strategy_dispatch", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/snapshots/strategies.sql", "original_file_path": "macros/materializations/snapshots/strategies.sql", "unique_id": "macro.dbt.strategy_dispatch", "macro_sql": "{% macro strategy_dispatch(name) -%}\n{% set original_name = name %}\n {% if '.' in name %}\n {% set package_name, name = name.split(\".\", 1) %}\n {% else %}\n {% set package_name = none %}\n {% endif %}\n\n {% if package_name is none %}\n {% set package_context = context %}\n {% elif package_name in context %}\n {% set package_context = context[package_name] %}\n {% else %}\n {% set error_msg %}\n Could not find package '{{package_name}}', called with '{{original_name}}'\n {% endset %}\n {{ exceptions.raise_compiler_error(error_msg | trim) }}\n {% endif %}\n\n {%- set search_name = 'snapshot_' ~ name ~ '_strategy' -%}\n\n {% if search_name not in package_context %}\n {% set error_msg %}\n The specified strategy macro '{{name}}' was not found in package '{{ package_name }}'\n {% endset %}\n {{ exceptions.raise_compiler_error(error_msg | trim) }}\n {% endif %}\n {{ return(package_context[search_name]) }}\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.7570581, "supported_languages": null}, "macro.dbt.snapshot_hash_arguments": {"name": "snapshot_hash_arguments", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/snapshots/strategies.sql", "original_file_path": "macros/materializations/snapshots/strategies.sql", "unique_id": "macro.dbt.snapshot_hash_arguments", "macro_sql": "{% macro snapshot_hash_arguments(args) -%}\n {{ adapter.dispatch('snapshot_hash_arguments', 'dbt')(args) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt.default__snapshot_hash_arguments"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.757241, "supported_languages": null}, "macro.dbt.default__snapshot_hash_arguments": {"name": "default__snapshot_hash_arguments", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/snapshots/strategies.sql", "original_file_path": "macros/materializations/snapshots/strategies.sql", "unique_id": "macro.dbt.default__snapshot_hash_arguments", "macro_sql": "{% macro default__snapshot_hash_arguments(args) -%}\n md5({%- for arg in args -%}\n coalesce(cast({{ arg }} as varchar ), '')\n {% if not loop.last %} || '|' || {% endif %}\n {%- endfor -%})\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.757447, "supported_languages": null}, "macro.dbt.snapshot_timestamp_strategy": {"name": "snapshot_timestamp_strategy", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/snapshots/strategies.sql", "original_file_path": "macros/materializations/snapshots/strategies.sql", "unique_id": "macro.dbt.snapshot_timestamp_strategy", "macro_sql": "{% macro snapshot_timestamp_strategy(node, snapshotted_rel, current_rel, config, target_exists) %}\n {% set primary_key = config['unique_key'] %}\n {% set updated_at = config['updated_at'] %}\n {% set invalidate_hard_deletes = config.get('invalidate_hard_deletes', false) %}\n\n {#/*\n The snapshot relation might not have an {{ updated_at }} value if the\n snapshot strategy is changed from `check` to `timestamp`. We\n should use a dbt-created column for the comparison in the snapshot\n table instead of assuming that the user-supplied {{ updated_at }}\n will be present in the historical data.\n\n See https://github.com/dbt-labs/dbt-core/issues/2350\n */ #}\n {% set row_changed_expr -%}\n ({{ snapshotted_rel }}.dbt_valid_from < {{ current_rel }}.{{ updated_at }})\n {%- endset %}\n\n {% set scd_id_expr = snapshot_hash_arguments([primary_key, updated_at]) %}\n\n {% do return({\n \"unique_key\": primary_key,\n \"updated_at\": updated_at,\n \"row_changed\": row_changed_expr,\n \"scd_id\": scd_id_expr,\n \"invalidate_hard_deletes\": invalidate_hard_deletes\n }) %}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.snapshot_hash_arguments"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.7581172, "supported_languages": null}, "macro.dbt.snapshot_string_as_time": {"name": "snapshot_string_as_time", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/snapshots/strategies.sql", "original_file_path": "macros/materializations/snapshots/strategies.sql", "unique_id": "macro.dbt.snapshot_string_as_time", "macro_sql": "{% macro snapshot_string_as_time(timestamp) -%}\n {{ adapter.dispatch('snapshot_string_as_time', 'dbt')(timestamp) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt_postgres.postgres__snapshot_string_as_time"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.758263, "supported_languages": null}, "macro.dbt.default__snapshot_string_as_time": {"name": "default__snapshot_string_as_time", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/snapshots/strategies.sql", "original_file_path": "macros/materializations/snapshots/strategies.sql", "unique_id": "macro.dbt.default__snapshot_string_as_time", "macro_sql": "{% macro default__snapshot_string_as_time(timestamp) %}\n {% do exceptions.raise_not_implemented(\n 'snapshot_string_as_time macro not implemented for adapter '+adapter.type()\n ) %}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.758424, "supported_languages": null}, "macro.dbt.snapshot_check_all_get_existing_columns": {"name": "snapshot_check_all_get_existing_columns", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/snapshots/strategies.sql", "original_file_path": "macros/materializations/snapshots/strategies.sql", "unique_id": "macro.dbt.snapshot_check_all_get_existing_columns", "macro_sql": "{% macro snapshot_check_all_get_existing_columns(node, target_exists, check_cols_config) -%}\n {%- if not target_exists -%}\n {#-- no table yet -> return whatever the query does --#}\n {{ return((false, query_columns)) }}\n {%- endif -%}\n\n {#-- handle any schema changes --#}\n {%- set target_relation = adapter.get_relation(database=node.database, schema=node.schema, identifier=node.alias) -%}\n\n {% if check_cols_config == 'all' %}\n {%- set query_columns = get_columns_in_query(node['compiled_code']) -%}\n\n {% elif check_cols_config is iterable and (check_cols_config | length) > 0 %}\n {#-- query for proper casing/quoting, to support comparison below --#}\n {%- set select_check_cols_from_target -%}\n {#-- N.B. The whitespace below is necessary to avoid edge case issue with comments --#}\n {#-- See: https://github.com/dbt-labs/dbt-core/issues/6781 --#}\n select {{ check_cols_config | join(', ') }} from (\n {{ node['compiled_code'] }}\n ) subq\n {%- endset -%}\n {% set query_columns = get_columns_in_query(select_check_cols_from_target) %}\n\n {% else %}\n {% do exceptions.raise_compiler_error(\"Invalid value for 'check_cols': \" ~ check_cols_config) %}\n {% endif %}\n\n {%- set existing_cols = adapter.get_columns_in_relation(target_relation) | map(attribute = 'name') | list -%}\n {%- set ns = namespace() -%} {#-- handle for-loop scoping with a namespace --#}\n {%- set ns.column_added = false -%}\n\n {%- set intersection = [] -%}\n {%- for col in query_columns -%}\n {%- if col in existing_cols -%}\n {%- do intersection.append(adapter.quote(col)) -%}\n {%- else -%}\n {% set ns.column_added = true %}\n {%- endif -%}\n {%- endfor -%}\n {{ return((ns.column_added, intersection)) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt.get_columns_in_query"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.7596622, "supported_languages": null}, "macro.dbt.snapshot_check_strategy": {"name": "snapshot_check_strategy", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/snapshots/strategies.sql", "original_file_path": "macros/materializations/snapshots/strategies.sql", "unique_id": "macro.dbt.snapshot_check_strategy", "macro_sql": "{% macro snapshot_check_strategy(node, snapshotted_rel, current_rel, config, target_exists) %}\n {% set check_cols_config = config['check_cols'] %}\n {% set primary_key = config['unique_key'] %}\n {% set invalidate_hard_deletes = config.get('invalidate_hard_deletes', false) %}\n {% set updated_at = config.get('updated_at', snapshot_get_time()) %}\n\n {% set column_added = false %}\n\n {% set column_added, check_cols = snapshot_check_all_get_existing_columns(node, target_exists, check_cols_config) %}\n\n {%- set row_changed_expr -%}\n (\n {%- if column_added -%}\n {{ get_true_sql() }}\n {%- else -%}\n {%- for col in check_cols -%}\n {{ snapshotted_rel }}.{{ col }} != {{ current_rel }}.{{ col }}\n or\n (\n (({{ snapshotted_rel }}.{{ col }} is null) and not ({{ current_rel }}.{{ col }} is null))\n or\n ((not {{ snapshotted_rel }}.{{ col }} is null) and ({{ current_rel }}.{{ col }} is null))\n )\n {%- if not loop.last %} or {% endif -%}\n {%- endfor -%}\n {%- endif -%}\n )\n {%- endset %}\n\n {% set scd_id_expr = snapshot_hash_arguments([primary_key, updated_at]) %}\n\n {% do return({\n \"unique_key\": primary_key,\n \"updated_at\": updated_at,\n \"row_changed\": row_changed_expr,\n \"scd_id\": scd_id_expr,\n \"invalidate_hard_deletes\": invalidate_hard_deletes\n }) %}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.snapshot_get_time", "macro.dbt.snapshot_check_all_get_existing_columns", "macro.dbt.get_true_sql", "macro.dbt.snapshot_hash_arguments"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.760864, "supported_languages": null}, "macro.dbt.create_columns": {"name": "create_columns", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/snapshots/helpers.sql", "original_file_path": "macros/materializations/snapshots/helpers.sql", "unique_id": "macro.dbt.create_columns", "macro_sql": "{% macro create_columns(relation, columns) %}\n {{ adapter.dispatch('create_columns', 'dbt')(relation, columns) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__create_columns"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.7642188, "supported_languages": null}, "macro.dbt.default__create_columns": {"name": "default__create_columns", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/snapshots/helpers.sql", "original_file_path": "macros/materializations/snapshots/helpers.sql", "unique_id": "macro.dbt.default__create_columns", "macro_sql": "{% macro default__create_columns(relation, columns) %}\n {% for column in columns %}\n {% call statement() %}\n alter table {{ relation }} add column \"{{ column.name }}\" {{ column.data_type }};\n {% endcall %}\n {% endfor %}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.statement"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.764468, "supported_languages": null}, "macro.dbt.post_snapshot": {"name": "post_snapshot", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/snapshots/helpers.sql", "original_file_path": "macros/materializations/snapshots/helpers.sql", "unique_id": "macro.dbt.post_snapshot", "macro_sql": "{% macro post_snapshot(staging_relation) %}\n {{ adapter.dispatch('post_snapshot', 'dbt')(staging_relation) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__post_snapshot"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.764618, "supported_languages": null}, "macro.dbt.default__post_snapshot": {"name": "default__post_snapshot", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/snapshots/helpers.sql", "original_file_path": "macros/materializations/snapshots/helpers.sql", "unique_id": "macro.dbt.default__post_snapshot", "macro_sql": "{% macro default__post_snapshot(staging_relation) %}\n {# no-op #}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.764695, "supported_languages": null}, "macro.dbt.get_true_sql": {"name": "get_true_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/snapshots/helpers.sql", "original_file_path": "macros/materializations/snapshots/helpers.sql", "unique_id": "macro.dbt.get_true_sql", "macro_sql": "{% macro get_true_sql() %}\n {{ adapter.dispatch('get_true_sql', 'dbt')() }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__get_true_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.764822, "supported_languages": null}, "macro.dbt.default__get_true_sql": {"name": "default__get_true_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/snapshots/helpers.sql", "original_file_path": "macros/materializations/snapshots/helpers.sql", "unique_id": "macro.dbt.default__get_true_sql", "macro_sql": "{% macro default__get_true_sql() %}\n {{ return('TRUE') }}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.7649221, "supported_languages": null}, "macro.dbt.snapshot_staging_table": {"name": "snapshot_staging_table", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/snapshots/helpers.sql", "original_file_path": "macros/materializations/snapshots/helpers.sql", "unique_id": "macro.dbt.snapshot_staging_table", "macro_sql": "{% macro snapshot_staging_table(strategy, source_sql, target_relation) -%}\n {{ adapter.dispatch('snapshot_staging_table', 'dbt')(strategy, source_sql, target_relation) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__snapshot_staging_table"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.765104, "supported_languages": null}, "macro.dbt.default__snapshot_staging_table": {"name": "default__snapshot_staging_table", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/snapshots/helpers.sql", "original_file_path": "macros/materializations/snapshots/helpers.sql", "unique_id": "macro.dbt.default__snapshot_staging_table", "macro_sql": "{% macro default__snapshot_staging_table(strategy, source_sql, target_relation) -%}\n\n with snapshot_query as (\n\n {{ source_sql }}\n\n ),\n\n snapshotted_data as (\n\n select *,\n {{ strategy.unique_key }} as dbt_unique_key\n\n from {{ target_relation }}\n where dbt_valid_to is null\n\n ),\n\n insertions_source_data as (\n\n select\n *,\n {{ strategy.unique_key }} as dbt_unique_key,\n {{ strategy.updated_at }} as dbt_updated_at,\n {{ strategy.updated_at }} as dbt_valid_from,\n nullif({{ strategy.updated_at }}, {{ strategy.updated_at }}) as dbt_valid_to,\n {{ strategy.scd_id }} as dbt_scd_id\n\n from snapshot_query\n ),\n\n updates_source_data as (\n\n select\n *,\n {{ strategy.unique_key }} as dbt_unique_key,\n {{ strategy.updated_at }} as dbt_updated_at,\n {{ strategy.updated_at }} as dbt_valid_from,\n {{ strategy.updated_at }} as dbt_valid_to\n\n from snapshot_query\n ),\n\n {%- if strategy.invalidate_hard_deletes %}\n\n deletes_source_data as (\n\n select\n *,\n {{ strategy.unique_key }} as dbt_unique_key\n from snapshot_query\n ),\n {% endif %}\n\n insertions as (\n\n select\n 'insert' as dbt_change_type,\n source_data.*\n\n from insertions_source_data as source_data\n left outer join snapshotted_data on snapshotted_data.dbt_unique_key = source_data.dbt_unique_key\n where snapshotted_data.dbt_unique_key is null\n or (\n snapshotted_data.dbt_unique_key is not null\n and (\n {{ strategy.row_changed }}\n )\n )\n\n ),\n\n updates as (\n\n select\n 'update' as dbt_change_type,\n source_data.*,\n snapshotted_data.dbt_scd_id\n\n from updates_source_data as source_data\n join snapshotted_data on snapshotted_data.dbt_unique_key = source_data.dbt_unique_key\n where (\n {{ strategy.row_changed }}\n )\n )\n\n {%- if strategy.invalidate_hard_deletes -%}\n ,\n\n deletes as (\n\n select\n 'delete' as dbt_change_type,\n source_data.*,\n {{ snapshot_get_time() }} as dbt_valid_from,\n {{ snapshot_get_time() }} as dbt_updated_at,\n {{ snapshot_get_time() }} as dbt_valid_to,\n snapshotted_data.dbt_scd_id\n\n from snapshotted_data\n left join deletes_source_data as source_data on snapshotted_data.dbt_unique_key = source_data.dbt_unique_key\n where source_data.dbt_unique_key is null\n )\n {%- endif %}\n\n select * from insertions\n union all\n select * from updates\n {%- if strategy.invalidate_hard_deletes %}\n union all\n select * from deletes\n {%- endif %}\n\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt.snapshot_get_time"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.76609, "supported_languages": null}, "macro.dbt.build_snapshot_table": {"name": "build_snapshot_table", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/snapshots/helpers.sql", "original_file_path": "macros/materializations/snapshots/helpers.sql", "unique_id": "macro.dbt.build_snapshot_table", "macro_sql": "{% macro build_snapshot_table(strategy, sql) -%}\n {{ adapter.dispatch('build_snapshot_table', 'dbt')(strategy, sql) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__build_snapshot_table"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.766303, "supported_languages": null}, "macro.dbt.default__build_snapshot_table": {"name": "default__build_snapshot_table", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/snapshots/helpers.sql", "original_file_path": "macros/materializations/snapshots/helpers.sql", "unique_id": "macro.dbt.default__build_snapshot_table", "macro_sql": "{% macro default__build_snapshot_table(strategy, sql) %}\n\n select *,\n {{ strategy.scd_id }} as dbt_scd_id,\n {{ strategy.updated_at }} as dbt_updated_at,\n {{ strategy.updated_at }} as dbt_valid_from,\n nullif({{ strategy.updated_at }}, {{ strategy.updated_at }}) as dbt_valid_to\n from (\n {{ sql }}\n ) sbq\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.766538, "supported_languages": null}, "macro.dbt.build_snapshot_staging_table": {"name": "build_snapshot_staging_table", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/snapshots/helpers.sql", "original_file_path": "macros/materializations/snapshots/helpers.sql", "unique_id": "macro.dbt.build_snapshot_staging_table", "macro_sql": "{% macro build_snapshot_staging_table(strategy, sql, target_relation) %}\n {% set temp_relation = make_temp_relation(target_relation) %}\n\n {% set select = snapshot_staging_table(strategy, sql, target_relation) %}\n\n {% call statement('build_snapshot_staging_relation') %}\n {{ create_table_as(True, temp_relation, select) }}\n {% endcall %}\n\n {% do return(temp_relation) %}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.make_temp_relation", "macro.dbt.snapshot_staging_table", "macro.dbt.statement", "macro.dbt.create_table_as"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.766931, "supported_languages": null}, "macro.dbt.materialization_snapshot_default": {"name": "materialization_snapshot_default", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/snapshots/snapshot.sql", "original_file_path": "macros/materializations/snapshots/snapshot.sql", "unique_id": "macro.dbt.materialization_snapshot_default", "macro_sql": "{% materialization snapshot, default %}\n {%- set config = model['config'] -%}\n\n {%- set target_table = model.get('alias', model.get('name')) -%}\n\n {%- set strategy_name = config.get('strategy') -%}\n {%- set unique_key = config.get('unique_key') %}\n -- grab current tables grants config for comparision later on\n {%- set grant_config = config.get('grants') -%}\n\n {% set target_relation_exists, target_relation = get_or_create_relation(\n database=model.database,\n schema=model.schema,\n identifier=target_table,\n type='table') -%}\n\n {%- if not target_relation.is_table -%}\n {% do exceptions.relation_wrong_type(target_relation, 'table') %}\n {%- endif -%}\n\n\n {{ run_hooks(pre_hooks, inside_transaction=False) }}\n\n {{ run_hooks(pre_hooks, inside_transaction=True) }}\n\n {% set strategy_macro = strategy_dispatch(strategy_name) %}\n {% set strategy = strategy_macro(model, \"snapshotted_data\", \"source_data\", config, target_relation_exists) %}\n\n {% if not target_relation_exists %}\n\n {% set build_sql = build_snapshot_table(strategy, model['compiled_code']) %}\n {% set final_sql = create_table_as(False, target_relation, build_sql) %}\n\n {% else %}\n\n {{ adapter.valid_snapshot_target(target_relation) }}\n\n {% set staging_table = build_snapshot_staging_table(strategy, sql, target_relation) %}\n\n -- this may no-op if the database does not require column expansion\n {% do adapter.expand_target_column_types(from_relation=staging_table,\n to_relation=target_relation) %}\n\n {% set missing_columns = adapter.get_missing_columns(staging_table, target_relation)\n | rejectattr('name', 'equalto', 'dbt_change_type')\n | rejectattr('name', 'equalto', 'DBT_CHANGE_TYPE')\n | rejectattr('name', 'equalto', 'dbt_unique_key')\n | rejectattr('name', 'equalto', 'DBT_UNIQUE_KEY')\n | list %}\n\n {% do create_columns(target_relation, missing_columns) %}\n\n {% set source_columns = adapter.get_columns_in_relation(staging_table)\n | rejectattr('name', 'equalto', 'dbt_change_type')\n | rejectattr('name', 'equalto', 'DBT_CHANGE_TYPE')\n | rejectattr('name', 'equalto', 'dbt_unique_key')\n | rejectattr('name', 'equalto', 'DBT_UNIQUE_KEY')\n | list %}\n\n {% set quoted_source_columns = [] %}\n {% for column in source_columns %}\n {% do quoted_source_columns.append(adapter.quote(column.name)) %}\n {% endfor %}\n\n {% set final_sql = snapshot_merge_sql(\n target = target_relation,\n source = staging_table,\n insert_cols = quoted_source_columns\n )\n %}\n\n {% endif %}\n\n {% call statement('main') %}\n {{ final_sql }}\n {% endcall %}\n\n {% set should_revoke = should_revoke(target_relation_exists, full_refresh_mode=False) %}\n {% do apply_grants(target_relation, grant_config, should_revoke=should_revoke) %}\n\n {% do persist_docs(target_relation, model) %}\n\n {% if not target_relation_exists %}\n {% do create_indexes(target_relation) %}\n {% endif %}\n\n {{ run_hooks(post_hooks, inside_transaction=True) }}\n\n {{ adapter.commit() }}\n\n {% if staging_table is defined %}\n {% do post_snapshot(staging_table) %}\n {% endif %}\n\n {{ run_hooks(post_hooks, inside_transaction=False) }}\n\n {{ return({'relations': [target_relation]}) }}\n\n{% endmaterialization %}", "depends_on": {"macros": ["macro.dbt.get_or_create_relation", "macro.dbt.run_hooks", "macro.dbt.strategy_dispatch", "macro.dbt.build_snapshot_table", "macro.dbt.create_table_as", "macro.dbt.build_snapshot_staging_table", "macro.dbt.create_columns", "macro.dbt.snapshot_merge_sql", "macro.dbt.statement", "macro.dbt.should_revoke", "macro.dbt.apply_grants", "macro.dbt.persist_docs", "macro.dbt.create_indexes", "macro.dbt.post_snapshot"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.772405, "supported_languages": ["sql"]}, "macro.dbt.materialization_test_default": {"name": "materialization_test_default", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/tests/test.sql", "original_file_path": "macros/materializations/tests/test.sql", "unique_id": "macro.dbt.materialization_test_default", "macro_sql": "{%- materialization test, default -%}\n\n {% set relations = [] %}\n\n {% if should_store_failures() %}\n\n {% set identifier = model['alias'] %}\n {% set old_relation = adapter.get_relation(database=database, schema=schema, identifier=identifier) %}\n\n {% set store_failures_as = config.get('store_failures_as') %}\n -- if `--store-failures` is invoked via command line and `store_failures_as` is not set,\n -- config.get('store_failures_as', 'table') returns None, not 'table'\n {% if store_failures_as == none %}{% set store_failures_as = 'table' %}{% endif %}\n {% if store_failures_as not in ['table', 'view'] %}\n {{ exceptions.raise_compiler_error(\n \"'\" ~ store_failures_as ~ \"' is not a valid value for `store_failures_as`. \"\n \"Accepted values are: ['ephemeral', 'table', 'view']\"\n ) }}\n {% endif %}\n\n {% set target_relation = api.Relation.create(\n identifier=identifier, schema=schema, database=database, type=store_failures_as) -%} %}\n\n {% if old_relation %}\n {% do adapter.drop_relation(old_relation) %}\n {% endif %}\n\n {% call statement(auto_begin=True) %}\n {{ get_create_sql(target_relation, sql) }}\n {% endcall %}\n\n {% do relations.append(target_relation) %}\n\n {% set main_sql %}\n select *\n from {{ target_relation }}\n {% endset %}\n\n {{ adapter.commit() }}\n\n {% else %}\n\n {% set main_sql = sql %}\n\n {% endif %}\n\n {% set limit = config.get('limit') %}\n {% set fail_calc = config.get('fail_calc') %}\n {% set warn_if = config.get('warn_if') %}\n {% set error_if = config.get('error_if') %}\n\n {% call statement('main', fetch_result=True) -%}\n\n {{ get_test_sql(main_sql, fail_calc, warn_if, error_if, limit)}}\n\n {%- endcall %}\n\n {{ return({'relations': relations}) }}\n\n{%- endmaterialization -%}", "depends_on": {"macros": ["macro.dbt.should_store_failures", "macro.dbt.statement", "macro.dbt.get_create_sql", "macro.dbt.get_test_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.774812, "supported_languages": ["sql"]}, "macro.dbt.get_test_sql": {"name": "get_test_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/tests/helpers.sql", "original_file_path": "macros/materializations/tests/helpers.sql", "unique_id": "macro.dbt.get_test_sql", "macro_sql": "{% macro get_test_sql(main_sql, fail_calc, warn_if, error_if, limit) -%}\n {{ adapter.dispatch('get_test_sql', 'dbt')(main_sql, fail_calc, warn_if, error_if, limit) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt.default__get_test_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.775274, "supported_languages": null}, "macro.dbt.default__get_test_sql": {"name": "default__get_test_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/tests/helpers.sql", "original_file_path": "macros/materializations/tests/helpers.sql", "unique_id": "macro.dbt.default__get_test_sql", "macro_sql": "{% macro default__get_test_sql(main_sql, fail_calc, warn_if, error_if, limit) -%}\n select\n {{ fail_calc }} as failures,\n {{ fail_calc }} {{ warn_if }} as should_warn,\n {{ fail_calc }} {{ error_if }} as should_error\n from (\n {{ main_sql }}\n {{ \"limit \" ~ limit if limit != none }}\n ) dbt_internal_test\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.77569, "supported_languages": null}, "macro.dbt.get_where_subquery": {"name": "get_where_subquery", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/tests/where_subquery.sql", "original_file_path": "macros/materializations/tests/where_subquery.sql", "unique_id": "macro.dbt.get_where_subquery", "macro_sql": "{% macro get_where_subquery(relation) -%}\n {% do return(adapter.dispatch('get_where_subquery', 'dbt')(relation)) %}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt.default__get_where_subquery"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.776095, "supported_languages": null}, "macro.dbt.default__get_where_subquery": {"name": "default__get_where_subquery", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/tests/where_subquery.sql", "original_file_path": "macros/materializations/tests/where_subquery.sql", "unique_id": "macro.dbt.default__get_where_subquery", "macro_sql": "{% macro default__get_where_subquery(relation) -%}\n {% set where = config.get('where', '') %}\n {% if where %}\n {%- set filtered -%}\n (select * from {{ relation }} where {{ where }}) dbt_subquery\n {%- endset -%}\n {% do return(filtered) %}\n {%- else -%}\n {% do return(relation) %}\n {%- endif -%}\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.776468, "supported_languages": null}, "macro.dbt.materialization_materialized_view_default": {"name": "materialization_materialized_view_default", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/materialized_view.sql", "original_file_path": "macros/materializations/models/materialized_view.sql", "unique_id": "macro.dbt.materialization_materialized_view_default", "macro_sql": "{% materialization materialized_view, default %}\n {% set existing_relation = load_cached_relation(this) %}\n {% set target_relation = this.incorporate(type=this.MaterializedView) %}\n {% set intermediate_relation = make_intermediate_relation(target_relation) %}\n {% set backup_relation_type = target_relation.MaterializedView if existing_relation is none else existing_relation.type %}\n {% set backup_relation = make_backup_relation(target_relation, backup_relation_type) %}\n\n {{ materialized_view_setup(backup_relation, intermediate_relation, pre_hooks) }}\n\n {% set build_sql = materialized_view_get_build_sql(existing_relation, target_relation, backup_relation, intermediate_relation) %}\n\n {% if build_sql == '' %}\n {{ materialized_view_execute_no_op(target_relation) }}\n {% else %}\n {{ materialized_view_execute_build_sql(build_sql, existing_relation, target_relation, post_hooks) }}\n {% endif %}\n\n {{ materialized_view_teardown(backup_relation, intermediate_relation, post_hooks) }}\n\n {{ return({'relations': [target_relation]}) }}\n\n{% endmaterialization %}", "depends_on": {"macros": ["macro.dbt.load_cached_relation", "macro.dbt.make_intermediate_relation", "macro.dbt.make_backup_relation", "macro.dbt.materialized_view_setup", "macro.dbt.materialized_view_get_build_sql", "macro.dbt.materialized_view_execute_no_op", "macro.dbt.materialized_view_execute_build_sql", "macro.dbt.materialized_view_teardown"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.780746, "supported_languages": ["sql"]}, "macro.dbt.materialized_view_setup": {"name": "materialized_view_setup", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/materialized_view.sql", "original_file_path": "macros/materializations/models/materialized_view.sql", "unique_id": "macro.dbt.materialized_view_setup", "macro_sql": "{% macro materialized_view_setup(backup_relation, intermediate_relation, pre_hooks) %}\n\n -- backup_relation and intermediate_relation should not already exist in the database\n -- it's possible these exist because of a previous run that exited unexpectedly\n {% set preexisting_backup_relation = load_cached_relation(backup_relation) %}\n {% set preexisting_intermediate_relation = load_cached_relation(intermediate_relation) %}\n\n -- drop the temp relations if they exist already in the database\n {{ drop_relation_if_exists(preexisting_backup_relation) }}\n {{ drop_relation_if_exists(preexisting_intermediate_relation) }}\n\n {{ run_hooks(pre_hooks, inside_transaction=False) }}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.load_cached_relation", "macro.dbt.drop_relation_if_exists", "macro.dbt.run_hooks"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.781099, "supported_languages": null}, "macro.dbt.materialized_view_teardown": {"name": "materialized_view_teardown", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/materialized_view.sql", "original_file_path": "macros/materializations/models/materialized_view.sql", "unique_id": "macro.dbt.materialized_view_teardown", "macro_sql": "{% macro materialized_view_teardown(backup_relation, intermediate_relation, post_hooks) %}\n\n -- drop the temp relations if they exist to leave the database clean for the next run\n {{ drop_relation_if_exists(backup_relation) }}\n {{ drop_relation_if_exists(intermediate_relation) }}\n\n {{ run_hooks(post_hooks, inside_transaction=False) }}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.drop_relation_if_exists", "macro.dbt.run_hooks"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.781327, "supported_languages": null}, "macro.dbt.materialized_view_get_build_sql": {"name": "materialized_view_get_build_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/materialized_view.sql", "original_file_path": "macros/materializations/models/materialized_view.sql", "unique_id": "macro.dbt.materialized_view_get_build_sql", "macro_sql": "{% macro materialized_view_get_build_sql(existing_relation, target_relation, backup_relation, intermediate_relation) %}\n\n {% set full_refresh_mode = should_full_refresh() %}\n\n -- determine the scenario we're in: create, full_refresh, alter, refresh data\n {% if existing_relation is none %}\n {% set build_sql = get_create_materialized_view_as_sql(target_relation, sql) %}\n {% elif full_refresh_mode or not existing_relation.is_materialized_view %}\n {% set build_sql = get_replace_sql(existing_relation, target_relation, sql) %}\n {% else %}\n\n -- get config options\n {% set on_configuration_change = config.get('on_configuration_change') %}\n {% set configuration_changes = get_materialized_view_configuration_changes(existing_relation, config) %}\n\n {% if configuration_changes is none %}\n {% set build_sql = refresh_materialized_view(target_relation) %}\n\n {% elif on_configuration_change == 'apply' %}\n {% set build_sql = get_alter_materialized_view_as_sql(target_relation, configuration_changes, sql, existing_relation, backup_relation, intermediate_relation) %}\n {% elif on_configuration_change == 'continue' %}\n {% set build_sql = '' %}\n {{ exceptions.warn(\"Configuration changes were identified and `on_configuration_change` was set to `continue` for `\" ~ target_relation ~ \"`\") }}\n {% elif on_configuration_change == 'fail' %}\n {{ exceptions.raise_fail_fast_error(\"Configuration changes were identified and `on_configuration_change` was set to `fail` for `\" ~ target_relation ~ \"`\") }}\n\n {% else %}\n -- this only happens if the user provides a value other than `apply`, 'skip', 'fail'\n {{ exceptions.raise_compiler_error(\"Unexpected configuration scenario\") }}\n\n {% endif %}\n\n {% endif %}\n\n {% do return(build_sql) %}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.should_full_refresh", "macro.dbt.get_create_materialized_view_as_sql", "macro.dbt.get_replace_sql", "macro.dbt.get_materialized_view_configuration_changes", "macro.dbt.refresh_materialized_view", "macro.dbt.get_alter_materialized_view_as_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.782496, "supported_languages": null}, "macro.dbt.materialized_view_execute_no_op": {"name": "materialized_view_execute_no_op", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/materialized_view.sql", "original_file_path": "macros/materializations/models/materialized_view.sql", "unique_id": "macro.dbt.materialized_view_execute_no_op", "macro_sql": "{% macro materialized_view_execute_no_op(target_relation) %}\n {% do store_raw_result(\n name=\"main\",\n message=\"skip \" ~ target_relation,\n code=\"skip\",\n rows_affected=\"-1\"\n ) %}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.782717, "supported_languages": null}, "macro.dbt.materialized_view_execute_build_sql": {"name": "materialized_view_execute_build_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/materialized_view.sql", "original_file_path": "macros/materializations/models/materialized_view.sql", "unique_id": "macro.dbt.materialized_view_execute_build_sql", "macro_sql": "{% macro materialized_view_execute_build_sql(build_sql, existing_relation, target_relation, post_hooks) %}\n\n -- `BEGIN` happens here:\n {{ run_hooks(pre_hooks, inside_transaction=True) }}\n\n {% set grant_config = config.get('grants') %}\n\n {% call statement(name=\"main\") %}\n {{ build_sql }}\n {% endcall %}\n\n {% set should_revoke = should_revoke(existing_relation, full_refresh_mode=True) %}\n {% do apply_grants(target_relation, grant_config, should_revoke=should_revoke) %}\n\n {% do persist_docs(target_relation, model) %}\n\n {{ run_hooks(post_hooks, inside_transaction=True) }}\n\n {{ adapter.commit() }}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.run_hooks", "macro.dbt.statement", "macro.dbt.should_revoke", "macro.dbt.apply_grants", "macro.dbt.persist_docs"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.7833228, "supported_languages": null}, "macro.dbt.materialization_view_default": {"name": "materialization_view_default", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/view.sql", "original_file_path": "macros/materializations/models/view.sql", "unique_id": "macro.dbt.materialization_view_default", "macro_sql": "{%- materialization view, default -%}\n\n {%- set existing_relation = load_cached_relation(this) -%}\n {%- set target_relation = this.incorporate(type='view') -%}\n {%- set intermediate_relation = make_intermediate_relation(target_relation) -%}\n\n -- the intermediate_relation should not already exist in the database; get_relation\n -- will return None in that case. Otherwise, we get a relation that we can drop\n -- later, before we try to use this name for the current operation\n {%- set preexisting_intermediate_relation = load_cached_relation(intermediate_relation) -%}\n /*\n This relation (probably) doesn't exist yet. If it does exist, it's a leftover from\n a previous run, and we're going to try to drop it immediately. At the end of this\n materialization, we're going to rename the \"existing_relation\" to this identifier,\n and then we're going to drop it. In order to make sure we run the correct one of:\n - drop view ...\n - drop table ...\n\n We need to set the type of this relation to be the type of the existing_relation, if it exists,\n or else \"view\" as a sane default if it does not. Note that if the existing_relation does not\n exist, then there is nothing to move out of the way and subsequentally drop. In that case,\n this relation will be effectively unused.\n */\n {%- set backup_relation_type = 'view' if existing_relation is none else existing_relation.type -%}\n {%- set backup_relation = make_backup_relation(target_relation, backup_relation_type) -%}\n -- as above, the backup_relation should not already exist\n {%- set preexisting_backup_relation = load_cached_relation(backup_relation) -%}\n -- grab current tables grants config for comparision later on\n {% set grant_config = config.get('grants') %}\n\n {{ run_hooks(pre_hooks, inside_transaction=False) }}\n\n -- drop the temp relations if they exist already in the database\n {{ drop_relation_if_exists(preexisting_intermediate_relation) }}\n {{ drop_relation_if_exists(preexisting_backup_relation) }}\n\n -- `BEGIN` happens here:\n {{ run_hooks(pre_hooks, inside_transaction=True) }}\n\n -- build model\n {% call statement('main') -%}\n {{ get_create_view_as_sql(intermediate_relation, sql) }}\n {%- endcall %}\n\n -- cleanup\n -- move the existing view out of the way\n {% if existing_relation is not none %}\n /* Do the equivalent of rename_if_exists. 'existing_relation' could have been dropped\n since the variable was first set. */\n {% set existing_relation = load_cached_relation(existing_relation) %}\n {% if existing_relation is not none %}\n {{ adapter.rename_relation(existing_relation, backup_relation) }}\n {% endif %}\n {% endif %}\n {{ adapter.rename_relation(intermediate_relation, target_relation) }}\n\n {% set should_revoke = should_revoke(existing_relation, full_refresh_mode=True) %}\n {% do apply_grants(target_relation, grant_config, should_revoke=should_revoke) %}\n\n {% do persist_docs(target_relation, model) %}\n\n {{ run_hooks(post_hooks, inside_transaction=True) }}\n\n {{ adapter.commit() }}\n\n {{ drop_relation_if_exists(backup_relation) }}\n\n {{ run_hooks(post_hooks, inside_transaction=False) }}\n\n {{ return({'relations': [target_relation]}) }}\n\n{%- endmaterialization -%}", "depends_on": {"macros": ["macro.dbt.load_cached_relation", "macro.dbt.make_intermediate_relation", "macro.dbt.make_backup_relation", "macro.dbt.run_hooks", "macro.dbt.drop_relation_if_exists", "macro.dbt.statement", "macro.dbt.get_create_view_as_sql", "macro.dbt.should_revoke", "macro.dbt.apply_grants", "macro.dbt.persist_docs"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.7863412, "supported_languages": ["sql"]}, "macro.dbt.materialization_table_default": {"name": "materialization_table_default", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/table.sql", "original_file_path": "macros/materializations/models/table.sql", "unique_id": "macro.dbt.materialization_table_default", "macro_sql": "{% materialization table, default %}\n\n {%- set existing_relation = load_cached_relation(this) -%}\n {%- set target_relation = this.incorporate(type='table') %}\n {%- set intermediate_relation = make_intermediate_relation(target_relation) -%}\n -- the intermediate_relation should not already exist in the database; get_relation\n -- will return None in that case. Otherwise, we get a relation that we can drop\n -- later, before we try to use this name for the current operation\n {%- set preexisting_intermediate_relation = load_cached_relation(intermediate_relation) -%}\n /*\n See ../view/view.sql for more information about this relation.\n */\n {%- set backup_relation_type = 'table' if existing_relation is none else existing_relation.type -%}\n {%- set backup_relation = make_backup_relation(target_relation, backup_relation_type) -%}\n -- as above, the backup_relation should not already exist\n {%- set preexisting_backup_relation = load_cached_relation(backup_relation) -%}\n -- grab current tables grants config for comparision later on\n {% set grant_config = config.get('grants') %}\n\n -- drop the temp relations if they exist already in the database\n {{ drop_relation_if_exists(preexisting_intermediate_relation) }}\n {{ drop_relation_if_exists(preexisting_backup_relation) }}\n\n {{ run_hooks(pre_hooks, inside_transaction=False) }}\n\n -- `BEGIN` happens here:\n {{ run_hooks(pre_hooks, inside_transaction=True) }}\n\n -- build model\n {% call statement('main') -%}\n {{ get_create_table_as_sql(False, intermediate_relation, sql) }}\n {%- endcall %}\n\n -- cleanup\n {% if existing_relation is not none %}\n /* Do the equivalent of rename_if_exists. 'existing_relation' could have been dropped\n since the variable was first set. */\n {% set existing_relation = load_cached_relation(existing_relation) %}\n {% if existing_relation is not none %}\n {{ adapter.rename_relation(existing_relation, backup_relation) }}\n {% endif %}\n {% endif %}\n\n {{ adapter.rename_relation(intermediate_relation, target_relation) }}\n\n {% do create_indexes(target_relation) %}\n\n {{ run_hooks(post_hooks, inside_transaction=True) }}\n\n {% set should_revoke = should_revoke(existing_relation, full_refresh_mode=True) %}\n {% do apply_grants(target_relation, grant_config, should_revoke=should_revoke) %}\n\n {% do persist_docs(target_relation, model) %}\n\n -- `COMMIT` happens here\n {{ adapter.commit() }}\n\n -- finally, drop the existing/backup relation after the commit\n {{ drop_relation_if_exists(backup_relation) }}\n\n {{ run_hooks(post_hooks, inside_transaction=False) }}\n\n {{ return({'relations': [target_relation]}) }}\n{% endmaterialization %}", "depends_on": {"macros": ["macro.dbt.load_cached_relation", "macro.dbt.make_intermediate_relation", "macro.dbt.make_backup_relation", "macro.dbt.drop_relation_if_exists", "macro.dbt.run_hooks", "macro.dbt.statement", "macro.dbt.get_create_table_as_sql", "macro.dbt.create_indexes", "macro.dbt.should_revoke", "macro.dbt.apply_grants", "macro.dbt.persist_docs"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.78917, "supported_languages": ["sql"]}, "macro.dbt.get_quoted_csv": {"name": "get_quoted_csv", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/incremental/column_helpers.sql", "original_file_path": "macros/materializations/models/incremental/column_helpers.sql", "unique_id": "macro.dbt.get_quoted_csv", "macro_sql": "{% macro get_quoted_csv(column_names) %}\n\n {% set quoted = [] %}\n {% for col in column_names -%}\n {%- do quoted.append(adapter.quote(col)) -%}\n {%- endfor %}\n\n {%- set dest_cols_csv = quoted | join(', ') -%}\n {{ return(dest_cols_csv) }}\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.790661, "supported_languages": null}, "macro.dbt.diff_columns": {"name": "diff_columns", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/incremental/column_helpers.sql", "original_file_path": "macros/materializations/models/incremental/column_helpers.sql", "unique_id": "macro.dbt.diff_columns", "macro_sql": "{% macro diff_columns(source_columns, target_columns) %}\n\n {% set result = [] %}\n {% set source_names = source_columns | map(attribute = 'column') | list %}\n {% set target_names = target_columns | map(attribute = 'column') | list %}\n\n {# --check whether the name attribute exists in the target - this does not perform a data type check #}\n {% for sc in source_columns %}\n {% if sc.name not in target_names %}\n {{ result.append(sc) }}\n {% endif %}\n {% endfor %}\n\n {{ return(result) }}\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.7911649, "supported_languages": null}, "macro.dbt.diff_column_data_types": {"name": "diff_column_data_types", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/incremental/column_helpers.sql", "original_file_path": "macros/materializations/models/incremental/column_helpers.sql", "unique_id": "macro.dbt.diff_column_data_types", "macro_sql": "{% macro diff_column_data_types(source_columns, target_columns) %}\n\n {% set result = [] %}\n {% for sc in source_columns %}\n {% set tc = target_columns | selectattr(\"name\", \"equalto\", sc.name) | list | first %}\n {% if tc %}\n {% if sc.data_type != tc.data_type and not sc.can_expand_to(other_column=tc) %}\n {{ result.append( { 'column_name': tc.name, 'new_type': sc.data_type } ) }}\n {% endif %}\n {% endif %}\n {% endfor %}\n\n {{ return(result) }}\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.791757, "supported_languages": null}, "macro.dbt.get_merge_update_columns": {"name": "get_merge_update_columns", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/incremental/column_helpers.sql", "original_file_path": "macros/materializations/models/incremental/column_helpers.sql", "unique_id": "macro.dbt.get_merge_update_columns", "macro_sql": "{% macro get_merge_update_columns(merge_update_columns, merge_exclude_columns, dest_columns) %}\n {{ return(adapter.dispatch('get_merge_update_columns', 'dbt')(merge_update_columns, merge_exclude_columns, dest_columns)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__get_merge_update_columns"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.7919722, "supported_languages": null}, "macro.dbt.default__get_merge_update_columns": {"name": "default__get_merge_update_columns", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/incremental/column_helpers.sql", "original_file_path": "macros/materializations/models/incremental/column_helpers.sql", "unique_id": "macro.dbt.default__get_merge_update_columns", "macro_sql": "{% macro default__get_merge_update_columns(merge_update_columns, merge_exclude_columns, dest_columns) %}\n {%- set default_cols = dest_columns | map(attribute=\"quoted\") | list -%}\n\n {%- if merge_update_columns and merge_exclude_columns -%}\n {{ exceptions.raise_compiler_error(\n 'Model cannot specify merge_update_columns and merge_exclude_columns. Please update model to use only one config'\n )}}\n {%- elif merge_update_columns -%}\n {%- set update_columns = merge_update_columns -%}\n {%- elif merge_exclude_columns -%}\n {%- set update_columns = [] -%}\n {%- for column in dest_columns -%}\n {% if column.column | lower not in merge_exclude_columns | map(\"lower\") | list %}\n {%- do update_columns.append(column.quoted) -%}\n {% endif %}\n {%- endfor -%}\n {%- else -%}\n {%- set update_columns = default_cols -%}\n {%- endif -%}\n\n {{ return(update_columns) }}\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.792601, "supported_languages": null}, "macro.dbt.get_merge_sql": {"name": "get_merge_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/incremental/merge.sql", "original_file_path": "macros/materializations/models/incremental/merge.sql", "unique_id": "macro.dbt.get_merge_sql", "macro_sql": "{% macro get_merge_sql(target, source, unique_key, dest_columns, incremental_predicates=none) -%}\n -- back compat for old kwarg name\n {% set incremental_predicates = kwargs.get('predicates', incremental_predicates) %}\n {{ adapter.dispatch('get_merge_sql', 'dbt')(target, source, unique_key, dest_columns, incremental_predicates) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt.default__get_merge_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.798056, "supported_languages": null}, "macro.dbt.default__get_merge_sql": {"name": "default__get_merge_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/incremental/merge.sql", "original_file_path": "macros/materializations/models/incremental/merge.sql", "unique_id": "macro.dbt.default__get_merge_sql", "macro_sql": "{% macro default__get_merge_sql(target, source, unique_key, dest_columns, incremental_predicates=none) -%}\n {%- set predicates = [] if incremental_predicates is none else [] + incremental_predicates -%}\n {%- set dest_cols_csv = get_quoted_csv(dest_columns | map(attribute=\"name\")) -%}\n {%- set merge_update_columns = config.get('merge_update_columns') -%}\n {%- set merge_exclude_columns = config.get('merge_exclude_columns') -%}\n {%- set update_columns = get_merge_update_columns(merge_update_columns, merge_exclude_columns, dest_columns) -%}\n {%- set sql_header = config.get('sql_header', none) -%}\n\n {% if unique_key %}\n {% if unique_key is sequence and unique_key is not mapping and unique_key is not string %}\n {% for key in unique_key %}\n {% set this_key_match %}\n DBT_INTERNAL_SOURCE.{{ key }} = DBT_INTERNAL_DEST.{{ key }}\n {% endset %}\n {% do predicates.append(this_key_match) %}\n {% endfor %}\n {% else %}\n {% set unique_key_match %}\n DBT_INTERNAL_SOURCE.{{ unique_key }} = DBT_INTERNAL_DEST.{{ unique_key }}\n {% endset %}\n {% do predicates.append(unique_key_match) %}\n {% endif %}\n {% else %}\n {% do predicates.append('FALSE') %}\n {% endif %}\n\n {{ sql_header if sql_header is not none }}\n\n merge into {{ target }} as DBT_INTERNAL_DEST\n using {{ source }} as DBT_INTERNAL_SOURCE\n on {{\"(\" ~ predicates | join(\") and (\") ~ \")\"}}\n\n {% if unique_key %}\n when matched then update set\n {% for column_name in update_columns -%}\n {{ column_name }} = DBT_INTERNAL_SOURCE.{{ column_name }}\n {%- if not loop.last %}, {%- endif %}\n {%- endfor %}\n {% endif %}\n\n when not matched then insert\n ({{ dest_cols_csv }})\n values\n ({{ dest_cols_csv }})\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.get_quoted_csv", "macro.dbt.get_merge_update_columns"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.799562, "supported_languages": null}, "macro.dbt.get_delete_insert_merge_sql": {"name": "get_delete_insert_merge_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/incremental/merge.sql", "original_file_path": "macros/materializations/models/incremental/merge.sql", "unique_id": "macro.dbt.get_delete_insert_merge_sql", "macro_sql": "{% macro get_delete_insert_merge_sql(target, source, unique_key, dest_columns, incremental_predicates) -%}\n {{ adapter.dispatch('get_delete_insert_merge_sql', 'dbt')(target, source, unique_key, dest_columns, incremental_predicates) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt.default__get_delete_insert_merge_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.7998028, "supported_languages": null}, "macro.dbt.default__get_delete_insert_merge_sql": {"name": "default__get_delete_insert_merge_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/incremental/merge.sql", "original_file_path": "macros/materializations/models/incremental/merge.sql", "unique_id": "macro.dbt.default__get_delete_insert_merge_sql", "macro_sql": "{% macro default__get_delete_insert_merge_sql(target, source, unique_key, dest_columns, incremental_predicates) -%}\n\n {%- set dest_cols_csv = get_quoted_csv(dest_columns | map(attribute=\"name\")) -%}\n\n {% if unique_key %}\n {% if unique_key is sequence and unique_key is not string %}\n delete from {{target }}\n using {{ source }}\n where (\n {% for key in unique_key %}\n {{ source }}.{{ key }} = {{ target }}.{{ key }}\n {{ \"and \" if not loop.last}}\n {% endfor %}\n {% if incremental_predicates %}\n {% for predicate in incremental_predicates %}\n and {{ predicate }}\n {% endfor %}\n {% endif %}\n );\n {% else %}\n delete from {{ target }}\n where (\n {{ unique_key }}) in (\n select ({{ unique_key }})\n from {{ source }}\n )\n {%- if incremental_predicates %}\n {% for predicate in incremental_predicates %}\n and {{ predicate }}\n {% endfor %}\n {%- endif -%};\n\n {% endif %}\n {% endif %}\n\n insert into {{ target }} ({{ dest_cols_csv }})\n (\n select {{ dest_cols_csv }}\n from {{ source }}\n )\n\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt.get_quoted_csv"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.800683, "supported_languages": null}, "macro.dbt.get_insert_overwrite_merge_sql": {"name": "get_insert_overwrite_merge_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/incremental/merge.sql", "original_file_path": "macros/materializations/models/incremental/merge.sql", "unique_id": "macro.dbt.get_insert_overwrite_merge_sql", "macro_sql": "{% macro get_insert_overwrite_merge_sql(target, source, dest_columns, predicates, include_sql_header=false) -%}\n {{ adapter.dispatch('get_insert_overwrite_merge_sql', 'dbt')(target, source, dest_columns, predicates, include_sql_header) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt.default__get_insert_overwrite_merge_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.8009229, "supported_languages": null}, "macro.dbt.default__get_insert_overwrite_merge_sql": {"name": "default__get_insert_overwrite_merge_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/incremental/merge.sql", "original_file_path": "macros/materializations/models/incremental/merge.sql", "unique_id": "macro.dbt.default__get_insert_overwrite_merge_sql", "macro_sql": "{% macro default__get_insert_overwrite_merge_sql(target, source, dest_columns, predicates, include_sql_header) -%}\n {#-- The only time include_sql_header is True: --#}\n {#-- BigQuery + insert_overwrite strategy + \"static\" partitions config --#}\n {#-- We should consider including the sql header at the materialization level instead --#}\n\n {%- set predicates = [] if predicates is none else [] + predicates -%}\n {%- set dest_cols_csv = get_quoted_csv(dest_columns | map(attribute=\"name\")) -%}\n {%- set sql_header = config.get('sql_header', none) -%}\n\n {{ sql_header if sql_header is not none and include_sql_header }}\n\n merge into {{ target }} as DBT_INTERNAL_DEST\n using {{ source }} as DBT_INTERNAL_SOURCE\n on FALSE\n\n when not matched by source\n {% if predicates %} and {{ predicates | join(' and ') }} {% endif %}\n then delete\n\n when not matched then insert\n ({{ dest_cols_csv }})\n values\n ({{ dest_cols_csv }})\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.get_quoted_csv"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.801499, "supported_languages": null}, "macro.dbt.is_incremental": {"name": "is_incremental", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/incremental/is_incremental.sql", "original_file_path": "macros/materializations/models/incremental/is_incremental.sql", "unique_id": "macro.dbt.is_incremental", "macro_sql": "{% macro is_incremental() %}\n {#-- do not run introspective queries in parsing #}\n {% if not execute %}\n {{ return(False) }}\n {% else %}\n {% set relation = adapter.get_relation(this.database, this.schema, this.table) %}\n {{ return(relation is not none\n and relation.type == 'table'\n and model.config.materialized == 'incremental'\n and not should_full_refresh()) }}\n {% endif %}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.should_full_refresh"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.802073, "supported_languages": null}, "macro.dbt.get_incremental_append_sql": {"name": "get_incremental_append_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/incremental/strategies.sql", "original_file_path": "macros/materializations/models/incremental/strategies.sql", "unique_id": "macro.dbt.get_incremental_append_sql", "macro_sql": "{% macro get_incremental_append_sql(arg_dict) %}\n\n {{ return(adapter.dispatch('get_incremental_append_sql', 'dbt')(arg_dict)) }}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__get_incremental_append_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.802869, "supported_languages": null}, "macro.dbt.default__get_incremental_append_sql": {"name": "default__get_incremental_append_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/incremental/strategies.sql", "original_file_path": "macros/materializations/models/incremental/strategies.sql", "unique_id": "macro.dbt.default__get_incremental_append_sql", "macro_sql": "{% macro default__get_incremental_append_sql(arg_dict) %}\n\n {% do return(get_insert_into_sql(arg_dict[\"target_relation\"], arg_dict[\"temp_relation\"], arg_dict[\"dest_columns\"])) %}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.get_insert_into_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.803091, "supported_languages": null}, "macro.dbt.get_incremental_delete_insert_sql": {"name": "get_incremental_delete_insert_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/incremental/strategies.sql", "original_file_path": "macros/materializations/models/incremental/strategies.sql", "unique_id": "macro.dbt.get_incremental_delete_insert_sql", "macro_sql": "{% macro get_incremental_delete_insert_sql(arg_dict) %}\n\n {{ return(adapter.dispatch('get_incremental_delete_insert_sql', 'dbt')(arg_dict)) }}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__get_incremental_delete_insert_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.803264, "supported_languages": null}, "macro.dbt.default__get_incremental_delete_insert_sql": {"name": "default__get_incremental_delete_insert_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/incremental/strategies.sql", "original_file_path": "macros/materializations/models/incremental/strategies.sql", "unique_id": "macro.dbt.default__get_incremental_delete_insert_sql", "macro_sql": "{% macro default__get_incremental_delete_insert_sql(arg_dict) %}\n\n {% do return(get_delete_insert_merge_sql(arg_dict[\"target_relation\"], arg_dict[\"temp_relation\"], arg_dict[\"unique_key\"], arg_dict[\"dest_columns\"], arg_dict[\"incremental_predicates\"])) %}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.get_delete_insert_merge_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.803539, "supported_languages": null}, "macro.dbt.get_incremental_merge_sql": {"name": "get_incremental_merge_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/incremental/strategies.sql", "original_file_path": "macros/materializations/models/incremental/strategies.sql", "unique_id": "macro.dbt.get_incremental_merge_sql", "macro_sql": "{% macro get_incremental_merge_sql(arg_dict) %}\n\n {{ return(adapter.dispatch('get_incremental_merge_sql', 'dbt')(arg_dict)) }}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__get_incremental_merge_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.803801, "supported_languages": null}, "macro.dbt.default__get_incremental_merge_sql": {"name": "default__get_incremental_merge_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/incremental/strategies.sql", "original_file_path": "macros/materializations/models/incremental/strategies.sql", "unique_id": "macro.dbt.default__get_incremental_merge_sql", "macro_sql": "{% macro default__get_incremental_merge_sql(arg_dict) %}\n\n {% do return(get_merge_sql(arg_dict[\"target_relation\"], arg_dict[\"temp_relation\"], arg_dict[\"unique_key\"], arg_dict[\"dest_columns\"], arg_dict[\"incremental_predicates\"])) %}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.get_merge_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.804066, "supported_languages": null}, "macro.dbt.get_incremental_insert_overwrite_sql": {"name": "get_incremental_insert_overwrite_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/incremental/strategies.sql", "original_file_path": "macros/materializations/models/incremental/strategies.sql", "unique_id": "macro.dbt.get_incremental_insert_overwrite_sql", "macro_sql": "{% macro get_incremental_insert_overwrite_sql(arg_dict) %}\n\n {{ return(adapter.dispatch('get_incremental_insert_overwrite_sql', 'dbt')(arg_dict)) }}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__get_incremental_insert_overwrite_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.804232, "supported_languages": null}, "macro.dbt.default__get_incremental_insert_overwrite_sql": {"name": "default__get_incremental_insert_overwrite_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/incremental/strategies.sql", "original_file_path": "macros/materializations/models/incremental/strategies.sql", "unique_id": "macro.dbt.default__get_incremental_insert_overwrite_sql", "macro_sql": "{% macro default__get_incremental_insert_overwrite_sql(arg_dict) %}\n\n {% do return(get_insert_overwrite_merge_sql(arg_dict[\"target_relation\"], arg_dict[\"temp_relation\"], arg_dict[\"dest_columns\"], arg_dict[\"incremental_predicates\"])) %}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.get_insert_overwrite_merge_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.804464, "supported_languages": null}, "macro.dbt.get_incremental_default_sql": {"name": "get_incremental_default_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/incremental/strategies.sql", "original_file_path": "macros/materializations/models/incremental/strategies.sql", "unique_id": "macro.dbt.get_incremental_default_sql", "macro_sql": "{% macro get_incremental_default_sql(arg_dict) %}\n\n {{ return(adapter.dispatch('get_incremental_default_sql', 'dbt')(arg_dict)) }}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_postgres.postgres__get_incremental_default_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.804627, "supported_languages": null}, "macro.dbt.default__get_incremental_default_sql": {"name": "default__get_incremental_default_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/incremental/strategies.sql", "original_file_path": "macros/materializations/models/incremental/strategies.sql", "unique_id": "macro.dbt.default__get_incremental_default_sql", "macro_sql": "{% macro default__get_incremental_default_sql(arg_dict) %}\n\n {% do return(get_incremental_append_sql(arg_dict)) %}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.get_incremental_append_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.8047628, "supported_languages": null}, "macro.dbt.get_insert_into_sql": {"name": "get_insert_into_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/incremental/strategies.sql", "original_file_path": "macros/materializations/models/incremental/strategies.sql", "unique_id": "macro.dbt.get_insert_into_sql", "macro_sql": "{% macro get_insert_into_sql(target_relation, temp_relation, dest_columns) %}\n\n {%- set dest_cols_csv = get_quoted_csv(dest_columns | map(attribute=\"name\")) -%}\n\n insert into {{ target_relation }} ({{ dest_cols_csv }})\n (\n select {{ dest_cols_csv }}\n from {{ temp_relation }}\n )\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.get_quoted_csv"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.805013, "supported_languages": null}, "macro.dbt.materialization_incremental_default": {"name": "materialization_incremental_default", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/incremental/incremental.sql", "original_file_path": "macros/materializations/models/incremental/incremental.sql", "unique_id": "macro.dbt.materialization_incremental_default", "macro_sql": "{% materialization incremental, default -%}\n\n -- relations\n {%- set existing_relation = load_cached_relation(this) -%}\n {%- set target_relation = this.incorporate(type='table') -%}\n {%- set temp_relation = make_temp_relation(target_relation)-%}\n {%- set intermediate_relation = make_intermediate_relation(target_relation)-%}\n {%- set backup_relation_type = 'table' if existing_relation is none else existing_relation.type -%}\n {%- set backup_relation = make_backup_relation(target_relation, backup_relation_type) -%}\n\n -- configs\n {%- set unique_key = config.get('unique_key') -%}\n {%- set full_refresh_mode = (should_full_refresh() or existing_relation.is_view) -%}\n {%- set on_schema_change = incremental_validate_on_schema_change(config.get('on_schema_change'), default='ignore') -%}\n\n -- the temp_ and backup_ relations should not already exist in the database; get_relation\n -- will return None in that case. Otherwise, we get a relation that we can drop\n -- later, before we try to use this name for the current operation. This has to happen before\n -- BEGIN, in a separate transaction\n {%- set preexisting_intermediate_relation = load_cached_relation(intermediate_relation)-%}\n {%- set preexisting_backup_relation = load_cached_relation(backup_relation) -%}\n -- grab current tables grants config for comparision later on\n {% set grant_config = config.get('grants') %}\n {{ drop_relation_if_exists(preexisting_intermediate_relation) }}\n {{ drop_relation_if_exists(preexisting_backup_relation) }}\n\n {{ run_hooks(pre_hooks, inside_transaction=False) }}\n\n -- `BEGIN` happens here:\n {{ run_hooks(pre_hooks, inside_transaction=True) }}\n\n {% set to_drop = [] %}\n\n {% if existing_relation is none %}\n {% set build_sql = get_create_table_as_sql(False, target_relation, sql) %}\n {% elif full_refresh_mode %}\n {% set build_sql = get_create_table_as_sql(False, intermediate_relation, sql) %}\n {% set need_swap = true %}\n {% else %}\n {% do run_query(get_create_table_as_sql(True, temp_relation, sql)) %}\n {% do adapter.expand_target_column_types(\n from_relation=temp_relation,\n to_relation=target_relation) %}\n {#-- Process schema changes. Returns dict of changes if successful. Use source columns for upserting/merging --#}\n {% set dest_columns = process_schema_changes(on_schema_change, temp_relation, existing_relation) %}\n {% if not dest_columns %}\n {% set dest_columns = adapter.get_columns_in_relation(existing_relation) %}\n {% endif %}\n\n {#-- Get the incremental_strategy, the macro to use for the strategy, and build the sql --#}\n {% set incremental_strategy = config.get('incremental_strategy') or 'default' %}\n {% set incremental_predicates = config.get('predicates', none) or config.get('incremental_predicates', none) %}\n {% set strategy_sql_macro_func = adapter.get_incremental_strategy_macro(context, incremental_strategy) %}\n {% set strategy_arg_dict = ({'target_relation': target_relation, 'temp_relation': temp_relation, 'unique_key': unique_key, 'dest_columns': dest_columns, 'incremental_predicates': incremental_predicates }) %}\n {% set build_sql = strategy_sql_macro_func(strategy_arg_dict) %}\n\n {% endif %}\n\n {% call statement(\"main\") %}\n {{ build_sql }}\n {% endcall %}\n\n {% if need_swap %}\n {% do adapter.rename_relation(target_relation, backup_relation) %}\n {% do adapter.rename_relation(intermediate_relation, target_relation) %}\n {% do to_drop.append(backup_relation) %}\n {% endif %}\n\n {% set should_revoke = should_revoke(existing_relation, full_refresh_mode) %}\n {% do apply_grants(target_relation, grant_config, should_revoke=should_revoke) %}\n\n {% do persist_docs(target_relation, model) %}\n\n {% if existing_relation is none or existing_relation.is_view or should_full_refresh() %}\n {% do create_indexes(target_relation) %}\n {% endif %}\n\n {{ run_hooks(post_hooks, inside_transaction=True) }}\n\n -- `COMMIT` happens here\n {% do adapter.commit() %}\n\n {% for rel in to_drop %}\n {% do adapter.drop_relation(rel) %}\n {% endfor %}\n\n {{ run_hooks(post_hooks, inside_transaction=False) }}\n\n {{ return({'relations': [target_relation]}) }}\n\n{%- endmaterialization %}", "depends_on": {"macros": ["macro.dbt.load_cached_relation", "macro.dbt.make_temp_relation", "macro.dbt.make_intermediate_relation", "macro.dbt.make_backup_relation", "macro.dbt.should_full_refresh", "macro.dbt.incremental_validate_on_schema_change", "macro.dbt.drop_relation_if_exists", "macro.dbt.run_hooks", "macro.dbt.get_create_table_as_sql", "macro.dbt.run_query", "macro.dbt.process_schema_changes", "macro.dbt.statement", "macro.dbt.should_revoke", "macro.dbt.apply_grants", "macro.dbt.persist_docs", "macro.dbt.create_indexes"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.8100321, "supported_languages": ["sql"]}, "macro.dbt.incremental_validate_on_schema_change": {"name": "incremental_validate_on_schema_change", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/incremental/on_schema_change.sql", "original_file_path": "macros/materializations/models/incremental/on_schema_change.sql", "unique_id": "macro.dbt.incremental_validate_on_schema_change", "macro_sql": "{% macro incremental_validate_on_schema_change(on_schema_change, default='ignore') %}\n\n {% if on_schema_change not in ['sync_all_columns', 'append_new_columns', 'fail', 'ignore'] %}\n\n {% set log_message = 'Invalid value for on_schema_change (%s) specified. Setting default value of %s.' % (on_schema_change, default) %}\n {% do log(log_message) %}\n\n {{ return(default) }}\n\n {% else %}\n\n {{ return(on_schema_change) }}\n\n {% endif %}\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.814959, "supported_languages": null}, "macro.dbt.check_for_schema_changes": {"name": "check_for_schema_changes", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/incremental/on_schema_change.sql", "original_file_path": "macros/materializations/models/incremental/on_schema_change.sql", "unique_id": "macro.dbt.check_for_schema_changes", "macro_sql": "{% macro check_for_schema_changes(source_relation, target_relation) %}\n\n {% set schema_changed = False %}\n\n {%- set source_columns = adapter.get_columns_in_relation(source_relation) -%}\n {%- set target_columns = adapter.get_columns_in_relation(target_relation) -%}\n {%- set source_not_in_target = diff_columns(source_columns, target_columns) -%}\n {%- set target_not_in_source = diff_columns(target_columns, source_columns) -%}\n\n {% set new_target_types = diff_column_data_types(source_columns, target_columns) %}\n\n {% if source_not_in_target != [] %}\n {% set schema_changed = True %}\n {% elif target_not_in_source != [] or new_target_types != [] %}\n {% set schema_changed = True %}\n {% elif new_target_types != [] %}\n {% set schema_changed = True %}\n {% endif %}\n\n {% set changes_dict = {\n 'schema_changed': schema_changed,\n 'source_not_in_target': source_not_in_target,\n 'target_not_in_source': target_not_in_source,\n 'source_columns': source_columns,\n 'target_columns': target_columns,\n 'new_target_types': new_target_types\n } %}\n\n {% set msg %}\n In {{ target_relation }}:\n Schema changed: {{ schema_changed }}\n Source columns not in target: {{ source_not_in_target }}\n Target columns not in source: {{ target_not_in_source }}\n New column types: {{ new_target_types }}\n {% endset %}\n\n {% do log(msg) %}\n\n {{ return(changes_dict) }}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.diff_columns", "macro.dbt.diff_column_data_types"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.8163042, "supported_languages": null}, "macro.dbt.sync_column_schemas": {"name": "sync_column_schemas", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/incremental/on_schema_change.sql", "original_file_path": "macros/materializations/models/incremental/on_schema_change.sql", "unique_id": "macro.dbt.sync_column_schemas", "macro_sql": "{% macro sync_column_schemas(on_schema_change, target_relation, schema_changes_dict) %}\n\n {%- set add_to_target_arr = schema_changes_dict['source_not_in_target'] -%}\n\n {%- if on_schema_change == 'append_new_columns'-%}\n {%- if add_to_target_arr | length > 0 -%}\n {%- do alter_relation_add_remove_columns(target_relation, add_to_target_arr, none) -%}\n {%- endif -%}\n\n {% elif on_schema_change == 'sync_all_columns' %}\n {%- set remove_from_target_arr = schema_changes_dict['target_not_in_source'] -%}\n {%- set new_target_types = schema_changes_dict['new_target_types'] -%}\n\n {% if add_to_target_arr | length > 0 or remove_from_target_arr | length > 0 %}\n {%- do alter_relation_add_remove_columns(target_relation, add_to_target_arr, remove_from_target_arr) -%}\n {% endif %}\n\n {% if new_target_types != [] %}\n {% for ntt in new_target_types %}\n {% set column_name = ntt['column_name'] %}\n {% set new_type = ntt['new_type'] %}\n {% do alter_column_type(target_relation, column_name, new_type) %}\n {% endfor %}\n {% endif %}\n\n {% endif %}\n\n {% set schema_change_message %}\n In {{ target_relation }}:\n Schema change approach: {{ on_schema_change }}\n Columns added: {{ add_to_target_arr }}\n Columns removed: {{ remove_from_target_arr }}\n Data types changed: {{ new_target_types }}\n {% endset %}\n\n {% do log(schema_change_message) %}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.alter_relation_add_remove_columns", "macro.dbt.alter_column_type"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.817557, "supported_languages": null}, "macro.dbt.process_schema_changes": {"name": "process_schema_changes", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/incremental/on_schema_change.sql", "original_file_path": "macros/materializations/models/incremental/on_schema_change.sql", "unique_id": "macro.dbt.process_schema_changes", "macro_sql": "{% macro process_schema_changes(on_schema_change, source_relation, target_relation) %}\n\n {% if on_schema_change == 'ignore' %}\n\n {{ return({}) }}\n\n {% else %}\n\n {% set schema_changes_dict = check_for_schema_changes(source_relation, target_relation) %}\n\n {% if schema_changes_dict['schema_changed'] %}\n\n {% if on_schema_change == 'fail' %}\n\n {% set fail_msg %}\n The source and target schemas on this incremental model are out of sync!\n They can be reconciled in several ways:\n - set the `on_schema_change` config to either append_new_columns or sync_all_columns, depending on your situation.\n - Re-run the incremental model with `full_refresh: True` to update the target schema.\n - update the schema manually and re-run the process.\n\n Additional troubleshooting context:\n Source columns not in target: {{ schema_changes_dict['source_not_in_target'] }}\n Target columns not in source: {{ schema_changes_dict['target_not_in_source'] }}\n New column types: {{ schema_changes_dict['new_target_types'] }}\n {% endset %}\n\n {% do exceptions.raise_compiler_error(fail_msg) %}\n\n {# -- unless we ignore, run the sync operation per the config #}\n {% else %}\n\n {% do sync_column_schemas(on_schema_change, target_relation, schema_changes_dict) %}\n\n {% endif %}\n\n {% endif %}\n\n {{ return(schema_changes_dict['source_columns']) }}\n\n {% endif %}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.check_for_schema_changes", "macro.dbt.sync_column_schemas"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.8183281, "supported_languages": null}, "macro.dbt.can_clone_table": {"name": "can_clone_table", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/clone/can_clone_table.sql", "original_file_path": "macros/materializations/models/clone/can_clone_table.sql", "unique_id": "macro.dbt.can_clone_table", "macro_sql": "{% macro can_clone_table() %}\n {{ return(adapter.dispatch('can_clone_table', 'dbt')()) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__can_clone_table"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.8185558, "supported_languages": null}, "macro.dbt.default__can_clone_table": {"name": "default__can_clone_table", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/clone/can_clone_table.sql", "original_file_path": "macros/materializations/models/clone/can_clone_table.sql", "unique_id": "macro.dbt.default__can_clone_table", "macro_sql": "{% macro default__can_clone_table() %}\n {{ return(False) }}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.818659, "supported_languages": null}, "macro.dbt.create_or_replace_clone": {"name": "create_or_replace_clone", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/clone/create_or_replace_clone.sql", "original_file_path": "macros/materializations/models/clone/create_or_replace_clone.sql", "unique_id": "macro.dbt.create_or_replace_clone", "macro_sql": "{% macro create_or_replace_clone(this_relation, defer_relation) %}\n {{ return(adapter.dispatch('create_or_replace_clone', 'dbt')(this_relation, defer_relation)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__create_or_replace_clone"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.818922, "supported_languages": null}, "macro.dbt.default__create_or_replace_clone": {"name": "default__create_or_replace_clone", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/clone/create_or_replace_clone.sql", "original_file_path": "macros/materializations/models/clone/create_or_replace_clone.sql", "unique_id": "macro.dbt.default__create_or_replace_clone", "macro_sql": "{% macro default__create_or_replace_clone(this_relation, defer_relation) %}\n create or replace table {{ this_relation }} clone {{ defer_relation }}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.819044, "supported_languages": null}, "macro.dbt.materialization_clone_default": {"name": "materialization_clone_default", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/clone/clone.sql", "original_file_path": "macros/materializations/models/clone/clone.sql", "unique_id": "macro.dbt.materialization_clone_default", "macro_sql": "{%- materialization clone, default -%}\n\n {%- set relations = {'relations': []} -%}\n\n {%- if not defer_relation -%}\n -- nothing to do\n {{ log(\"No relation found in state manifest for \" ~ model.unique_id, info=True) }}\n {{ return(relations) }}\n {%- endif -%}\n\n {%- set existing_relation = load_cached_relation(this) -%}\n\n {%- if existing_relation and not flags.FULL_REFRESH -%}\n -- noop!\n {{ log(\"Relation \" ~ existing_relation ~ \" already exists\", info=True) }}\n {{ return(relations) }}\n {%- endif -%}\n\n {%- set other_existing_relation = load_cached_relation(defer_relation) -%}\n\n -- If this is a database that can do zero-copy cloning of tables, and the other relation is a table, then this will be a table\n -- Otherwise, this will be a view\n\n {% set can_clone_table = can_clone_table() %}\n\n {%- if other_existing_relation and other_existing_relation.type == 'table' and can_clone_table -%}\n\n {%- set target_relation = this.incorporate(type='table') -%}\n {% if existing_relation is not none and not existing_relation.is_table %}\n {{ log(\"Dropping relation \" ~ existing_relation ~ \" because it is of type \" ~ existing_relation.type) }}\n {{ drop_relation_if_exists(existing_relation) }}\n {% endif %}\n\n -- as a general rule, data platforms that can clone tables can also do atomic 'create or replace'\n {% call statement('main') %}\n {% if target_relation and defer_relation and target_relation == defer_relation %}\n {{ log(\"Target relation and defer relation are the same, skipping clone for relation: \" ~ target_relation) }}\n {% else %}\n {{ create_or_replace_clone(target_relation, defer_relation) }}\n {% endif %}\n\n {% endcall %}\n\n {% set should_revoke = should_revoke(existing_relation, full_refresh_mode=True) %}\n {% do apply_grants(target_relation, grant_config, should_revoke=should_revoke) %}\n {% do persist_docs(target_relation, model) %}\n\n {{ return({'relations': [target_relation]}) }}\n\n {%- else -%}\n\n {%- set target_relation = this.incorporate(type='view') -%}\n\n -- reuse the view materialization\n -- TODO: support actual dispatch for materialization macros\n -- Tracking ticket: https://github.com/dbt-labs/dbt-core/issues/7799\n {% set search_name = \"materialization_view_\" ~ adapter.type() %}\n {% if not search_name in context %}\n {% set search_name = \"materialization_view_default\" %}\n {% endif %}\n {% set materialization_macro = context[search_name] %}\n {% set relations = materialization_macro() %}\n {{ return(relations) }}\n\n {%- endif -%}\n\n{%- endmaterialization -%}", "depends_on": {"macros": ["macro.dbt.load_cached_relation", "macro.dbt.can_clone_table", "macro.dbt.drop_relation_if_exists", "macro.dbt.statement", "macro.dbt.create_or_replace_clone", "macro.dbt.should_revoke", "macro.dbt.apply_grants", "macro.dbt.persist_docs"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.822182, "supported_languages": ["sql"]}, "macro.dbt.materialization_seed_default": {"name": "materialization_seed_default", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/seeds/seed.sql", "original_file_path": "macros/materializations/seeds/seed.sql", "unique_id": "macro.dbt.materialization_seed_default", "macro_sql": "{% materialization seed, default %}\n\n {%- set identifier = model['alias'] -%}\n {%- set full_refresh_mode = (should_full_refresh()) -%}\n\n {%- set old_relation = adapter.get_relation(database=database, schema=schema, identifier=identifier) -%}\n\n {%- set exists_as_table = (old_relation is not none and old_relation.is_table) -%}\n {%- set exists_as_view = (old_relation is not none and old_relation.is_view) -%}\n\n {%- set grant_config = config.get('grants') -%}\n {%- set agate_table = load_agate_table() -%}\n -- grab current tables grants config for comparison later on\n\n {%- do store_result('agate_table', response='OK', agate_table=agate_table) -%}\n\n {{ run_hooks(pre_hooks, inside_transaction=False) }}\n\n -- `BEGIN` happens here:\n {{ run_hooks(pre_hooks, inside_transaction=True) }}\n\n -- build model\n {% set create_table_sql = \"\" %}\n {% if exists_as_view %}\n {{ exceptions.raise_compiler_error(\"Cannot seed to '{}', it is a view\".format(old_relation)) }}\n {% elif exists_as_table %}\n {% set create_table_sql = reset_csv_table(model, full_refresh_mode, old_relation, agate_table) %}\n {% else %}\n {% set create_table_sql = create_csv_table(model, agate_table) %}\n {% endif %}\n\n {% set code = 'CREATE' if full_refresh_mode else 'INSERT' %}\n {% set rows_affected = (agate_table.rows | length) %}\n {% set sql = load_csv_rows(model, agate_table) %}\n\n {% call noop_statement('main', code ~ ' ' ~ rows_affected, code, rows_affected) %}\n {{ get_csv_sql(create_table_sql, sql) }};\n {% endcall %}\n\n {% set target_relation = this.incorporate(type='table') %}\n\n {% set should_revoke = should_revoke(old_relation, full_refresh_mode) %}\n {% do apply_grants(target_relation, grant_config, should_revoke=should_revoke) %}\n\n {% do persist_docs(target_relation, model) %}\n\n {% if full_refresh_mode or not exists_as_table %}\n {% do create_indexes(target_relation) %}\n {% endif %}\n\n {{ run_hooks(post_hooks, inside_transaction=True) }}\n\n -- `COMMIT` happens here\n {{ adapter.commit() }}\n\n {{ run_hooks(post_hooks, inside_transaction=False) }}\n\n {{ return({'relations': [target_relation]}) }}\n\n{% endmaterialization %}", "depends_on": {"macros": ["macro.dbt.should_full_refresh", "macro.dbt.run_hooks", "macro.dbt.reset_csv_table", "macro.dbt.create_csv_table", "macro.dbt.load_csv_rows", "macro.dbt.noop_statement", "macro.dbt.get_csv_sql", "macro.dbt.should_revoke", "macro.dbt.apply_grants", "macro.dbt.persist_docs", "macro.dbt.create_indexes"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.8249931, "supported_languages": ["sql"]}, "macro.dbt.create_csv_table": {"name": "create_csv_table", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/seeds/helpers.sql", "original_file_path": "macros/materializations/seeds/helpers.sql", "unique_id": "macro.dbt.create_csv_table", "macro_sql": "{% macro create_csv_table(model, agate_table) -%}\n {{ adapter.dispatch('create_csv_table', 'dbt')(model, agate_table) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt.default__create_csv_table"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.829291, "supported_languages": null}, "macro.dbt.default__create_csv_table": {"name": "default__create_csv_table", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/seeds/helpers.sql", "original_file_path": "macros/materializations/seeds/helpers.sql", "unique_id": "macro.dbt.default__create_csv_table", "macro_sql": "{% macro default__create_csv_table(model, agate_table) %}\n {%- set column_override = model['config'].get('column_types', {}) -%}\n {%- set quote_seed_column = model['config'].get('quote_columns', None) -%}\n\n {% set sql %}\n create table {{ this.render() }} (\n {%- for col_name in agate_table.column_names -%}\n {%- set inferred_type = adapter.convert_type(agate_table, loop.index0) -%}\n {%- set type = column_override.get(col_name, inferred_type) -%}\n {%- set column_name = (col_name | string) -%}\n {{ adapter.quote_seed_column(column_name, quote_seed_column) }} {{ type }} {%- if not loop.last -%}, {%- endif -%}\n {%- endfor -%}\n )\n {% endset %}\n\n {% call statement('_') -%}\n {{ sql }}\n {%- endcall %}\n\n {{ return(sql) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.statement"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.8300831, "supported_languages": null}, "macro.dbt.reset_csv_table": {"name": "reset_csv_table", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/seeds/helpers.sql", "original_file_path": "macros/materializations/seeds/helpers.sql", "unique_id": "macro.dbt.reset_csv_table", "macro_sql": "{% macro reset_csv_table(model, full_refresh, old_relation, agate_table) -%}\n {{ adapter.dispatch('reset_csv_table', 'dbt')(model, full_refresh, old_relation, agate_table) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt.default__reset_csv_table"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.830293, "supported_languages": null}, "macro.dbt.default__reset_csv_table": {"name": "default__reset_csv_table", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/seeds/helpers.sql", "original_file_path": "macros/materializations/seeds/helpers.sql", "unique_id": "macro.dbt.default__reset_csv_table", "macro_sql": "{% macro default__reset_csv_table(model, full_refresh, old_relation, agate_table) %}\n {% set sql = \"\" %}\n {% if full_refresh %}\n {{ adapter.drop_relation(old_relation) }}\n {% set sql = create_csv_table(model, agate_table) %}\n {% else %}\n {{ adapter.truncate_relation(old_relation) }}\n {% set sql = \"truncate table \" ~ old_relation %}\n {% endif %}\n\n {{ return(sql) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.create_csv_table"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.83072, "supported_languages": null}, "macro.dbt.get_csv_sql": {"name": "get_csv_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/seeds/helpers.sql", "original_file_path": "macros/materializations/seeds/helpers.sql", "unique_id": "macro.dbt.get_csv_sql", "macro_sql": "{% macro get_csv_sql(create_or_truncate_sql, insert_sql) %}\n {{ adapter.dispatch('get_csv_sql', 'dbt')(create_or_truncate_sql, insert_sql) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__get_csv_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.830891, "supported_languages": null}, "macro.dbt.default__get_csv_sql": {"name": "default__get_csv_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/seeds/helpers.sql", "original_file_path": "macros/materializations/seeds/helpers.sql", "unique_id": "macro.dbt.default__get_csv_sql", "macro_sql": "{% macro default__get_csv_sql(create_or_truncate_sql, insert_sql) %}\n {{ create_or_truncate_sql }};\n -- dbt seed --\n {{ insert_sql }}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.831007, "supported_languages": null}, "macro.dbt.get_binding_char": {"name": "get_binding_char", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/seeds/helpers.sql", "original_file_path": "macros/materializations/seeds/helpers.sql", "unique_id": "macro.dbt.get_binding_char", "macro_sql": "{% macro get_binding_char() -%}\n {{ adapter.dispatch('get_binding_char', 'dbt')() }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt.default__get_binding_char"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.831131, "supported_languages": null}, "macro.dbt.default__get_binding_char": {"name": "default__get_binding_char", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/seeds/helpers.sql", "original_file_path": "macros/materializations/seeds/helpers.sql", "unique_id": "macro.dbt.default__get_binding_char", "macro_sql": "{% macro default__get_binding_char() %}\n {{ return('%s') }}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.8312352, "supported_languages": null}, "macro.dbt.get_batch_size": {"name": "get_batch_size", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/seeds/helpers.sql", "original_file_path": "macros/materializations/seeds/helpers.sql", "unique_id": "macro.dbt.get_batch_size", "macro_sql": "{% macro get_batch_size() -%}\n {{ return(adapter.dispatch('get_batch_size', 'dbt')()) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt.default__get_batch_size"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.831378, "supported_languages": null}, "macro.dbt.default__get_batch_size": {"name": "default__get_batch_size", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/seeds/helpers.sql", "original_file_path": "macros/materializations/seeds/helpers.sql", "unique_id": "macro.dbt.default__get_batch_size", "macro_sql": "{% macro default__get_batch_size() %}\n {{ return(10000) }}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.8314939, "supported_languages": null}, "macro.dbt.get_seed_column_quoted_csv": {"name": "get_seed_column_quoted_csv", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/seeds/helpers.sql", "original_file_path": "macros/materializations/seeds/helpers.sql", "unique_id": "macro.dbt.get_seed_column_quoted_csv", "macro_sql": "{% macro get_seed_column_quoted_csv(model, column_names) %}\n {%- set quote_seed_column = model['config'].get('quote_columns', None) -%}\n {% set quoted = [] %}\n {% for col in column_names -%}\n {%- do quoted.append(adapter.quote_seed_column(col, quote_seed_column)) -%}\n {%- endfor %}\n\n {%- set dest_cols_csv = quoted | join(', ') -%}\n {{ return(dest_cols_csv) }}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.831926, "supported_languages": null}, "macro.dbt.load_csv_rows": {"name": "load_csv_rows", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/seeds/helpers.sql", "original_file_path": "macros/materializations/seeds/helpers.sql", "unique_id": "macro.dbt.load_csv_rows", "macro_sql": "{% macro load_csv_rows(model, agate_table) -%}\n {{ adapter.dispatch('load_csv_rows', 'dbt')(model, agate_table) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt.default__load_csv_rows"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.832099, "supported_languages": null}, "macro.dbt.default__load_csv_rows": {"name": "default__load_csv_rows", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/seeds/helpers.sql", "original_file_path": "macros/materializations/seeds/helpers.sql", "unique_id": "macro.dbt.default__load_csv_rows", "macro_sql": "{% macro default__load_csv_rows(model, agate_table) %}\n\n {% set batch_size = get_batch_size() %}\n\n {% set cols_sql = get_seed_column_quoted_csv(model, agate_table.column_names) %}\n {% set bindings = [] %}\n\n {% set statements = [] %}\n\n {% for chunk in agate_table.rows | batch(batch_size) %}\n {% set bindings = [] %}\n\n {% for row in chunk %}\n {% do bindings.extend(row) %}\n {% endfor %}\n\n {% set sql %}\n insert into {{ this.render() }} ({{ cols_sql }}) values\n {% for row in chunk -%}\n ({%- for column in agate_table.column_names -%}\n {{ get_binding_char() }}\n {%- if not loop.last%},{%- endif %}\n {%- endfor -%})\n {%- if not loop.last%},{%- endif %}\n {%- endfor %}\n {% endset %}\n\n {% do adapter.add_query(sql, bindings=bindings, abridge_sql_log=True) %}\n\n {% if loop.index0 == 0 %}\n {% do statements.append(sql) %}\n {% endif %}\n {% endfor %}\n\n {# Return SQL so we can render it out into the compiled files #}\n {{ return(statements[0]) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.get_batch_size", "macro.dbt.get_seed_column_quoted_csv", "macro.dbt.get_binding_char"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.833272, "supported_languages": null}, "macro.dbt.generate_alias_name": {"name": "generate_alias_name", "resource_type": "macro", "package_name": "dbt", "path": "macros/get_custom_name/get_custom_alias.sql", "original_file_path": "macros/get_custom_name/get_custom_alias.sql", "unique_id": "macro.dbt.generate_alias_name", "macro_sql": "{% macro generate_alias_name(custom_alias_name=none, node=none) -%}\n {% do return(adapter.dispatch('generate_alias_name', 'dbt')(custom_alias_name, node)) %}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt.default__generate_alias_name"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.8336582, "supported_languages": null}, "macro.dbt.default__generate_alias_name": {"name": "default__generate_alias_name", "resource_type": "macro", "package_name": "dbt", "path": "macros/get_custom_name/get_custom_alias.sql", "original_file_path": "macros/get_custom_name/get_custom_alias.sql", "unique_id": "macro.dbt.default__generate_alias_name", "macro_sql": "{% macro default__generate_alias_name(custom_alias_name=none, node=none) -%}\n\n {%- if custom_alias_name -%}\n\n {{ custom_alias_name | trim }}\n\n {%- elif node.version -%}\n\n {{ return(node.name ~ \"_v\" ~ (node.version | replace(\".\", \"_\"))) }}\n\n {%- else -%}\n\n {{ node.name }}\n\n {%- endif -%}\n\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.833997, "supported_languages": null}, "macro.dbt.generate_schema_name": {"name": "generate_schema_name", "resource_type": "macro", "package_name": "dbt", "path": "macros/get_custom_name/get_custom_schema.sql", "original_file_path": "macros/get_custom_name/get_custom_schema.sql", "unique_id": "macro.dbt.generate_schema_name", "macro_sql": "{% macro generate_schema_name(custom_schema_name=none, node=none) -%}\n {{ return(adapter.dispatch('generate_schema_name', 'dbt')(custom_schema_name, node)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__generate_schema_name"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.834476, "supported_languages": null}, "macro.dbt.default__generate_schema_name": {"name": "default__generate_schema_name", "resource_type": "macro", "package_name": "dbt", "path": "macros/get_custom_name/get_custom_schema.sql", "original_file_path": "macros/get_custom_name/get_custom_schema.sql", "unique_id": "macro.dbt.default__generate_schema_name", "macro_sql": "{% macro default__generate_schema_name(custom_schema_name, node) -%}\n\n {%- set default_schema = target.schema -%}\n {%- if custom_schema_name is none -%}\n\n {{ default_schema }}\n\n {%- else -%}\n\n {{ default_schema }}_{{ custom_schema_name | trim }}\n\n {%- endif -%}\n\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.8347058, "supported_languages": null}, "macro.dbt.generate_schema_name_for_env": {"name": "generate_schema_name_for_env", "resource_type": "macro", "package_name": "dbt", "path": "macros/get_custom_name/get_custom_schema.sql", "original_file_path": "macros/get_custom_name/get_custom_schema.sql", "unique_id": "macro.dbt.generate_schema_name_for_env", "macro_sql": "{% macro generate_schema_name_for_env(custom_schema_name, node) -%}\n\n {%- set default_schema = target.schema -%}\n {%- if target.name == 'prod' and custom_schema_name is not none -%}\n\n {{ custom_schema_name | trim }}\n\n {%- else -%}\n\n {{ default_schema }}\n\n {%- endif -%}\n\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.834956, "supported_languages": null}, "macro.dbt.generate_database_name": {"name": "generate_database_name", "resource_type": "macro", "package_name": "dbt", "path": "macros/get_custom_name/get_custom_database.sql", "original_file_path": "macros/get_custom_name/get_custom_database.sql", "unique_id": "macro.dbt.generate_database_name", "macro_sql": "{% macro generate_database_name(custom_database_name=none, node=none) -%}\n {% do return(adapter.dispatch('generate_database_name', 'dbt')(custom_database_name, node)) %}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt.default__generate_database_name"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.835314, "supported_languages": null}, "macro.dbt.default__generate_database_name": {"name": "default__generate_database_name", "resource_type": "macro", "package_name": "dbt", "path": "macros/get_custom_name/get_custom_database.sql", "original_file_path": "macros/get_custom_name/get_custom_database.sql", "unique_id": "macro.dbt.default__generate_database_name", "macro_sql": "{% macro default__generate_database_name(custom_database_name=none, node=none) -%}\n {%- set default_database = target.database -%}\n {%- if custom_database_name is none -%}\n\n {{ default_database }}\n\n {%- else -%}\n\n {{ custom_database_name }}\n\n {%- endif -%}\n\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.835652, "supported_languages": null}, "macro.dbt.get_drop_sql": {"name": "get_drop_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/relations/drop.sql", "original_file_path": "macros/relations/drop.sql", "unique_id": "macro.dbt.get_drop_sql", "macro_sql": "{%- macro get_drop_sql(relation) -%}\n {{- log('Applying DROP to: ' ~ relation) -}}\n {{- adapter.dispatch('get_drop_sql', 'dbt')(relation) -}}\n{%- endmacro -%}\n\n\n", "depends_on": {"macros": ["macro.dbt.default__get_drop_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.836471, "supported_languages": null}, "macro.dbt.default__get_drop_sql": {"name": "default__get_drop_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/relations/drop.sql", "original_file_path": "macros/relations/drop.sql", "unique_id": "macro.dbt.default__get_drop_sql", "macro_sql": "{%- macro default__get_drop_sql(relation) -%}\n\n {%- if relation.is_view -%}\n {{ drop_view(relation) }}\n\n {%- elif relation.is_table -%}\n {{ drop_table(relation) }}\n\n {%- elif relation.is_materialized_view -%}\n {{ drop_materialized_view(relation) }}\n\n {%- else -%}\n drop {{ relation.type }} if exists {{ relation }} cascade\n\n {%- endif -%}\n\n{%- endmacro -%}\n\n\n", "depends_on": {"macros": ["macro.dbt.drop_view", "macro.dbt.drop_table", "macro.dbt.drop_materialized_view"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.836864, "supported_languages": null}, "macro.dbt.drop_relation": {"name": "drop_relation", "resource_type": "macro", "package_name": "dbt", "path": "macros/relations/drop.sql", "original_file_path": "macros/relations/drop.sql", "unique_id": "macro.dbt.drop_relation", "macro_sql": "{% macro drop_relation(relation) -%}\n {{ return(adapter.dispatch('drop_relation', 'dbt')(relation)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__drop_relation"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.8370528, "supported_languages": null}, "macro.dbt.default__drop_relation": {"name": "default__drop_relation", "resource_type": "macro", "package_name": "dbt", "path": "macros/relations/drop.sql", "original_file_path": "macros/relations/drop.sql", "unique_id": "macro.dbt.default__drop_relation", "macro_sql": "{% macro default__drop_relation(relation) -%}\n {% call statement('drop_relation', auto_begin=False) -%}\n {{ get_drop_sql(relation) }}\n {%- endcall %}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.statement", "macro.dbt.get_drop_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.837255, "supported_languages": null}, "macro.dbt.drop_relation_if_exists": {"name": "drop_relation_if_exists", "resource_type": "macro", "package_name": "dbt", "path": "macros/relations/drop.sql", "original_file_path": "macros/relations/drop.sql", "unique_id": "macro.dbt.drop_relation_if_exists", "macro_sql": "{% macro drop_relation_if_exists(relation) %}\n {% if relation is not none %}\n {{ adapter.drop_relation(relation) }}\n {% endif %}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.8375099, "supported_languages": null}, "macro.dbt.get_replace_sql": {"name": "get_replace_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/relations/replace.sql", "original_file_path": "macros/relations/replace.sql", "unique_id": "macro.dbt.get_replace_sql", "macro_sql": "{% macro get_replace_sql(existing_relation, target_relation, sql) %}\n {{- log('Applying REPLACE to: ' ~ existing_relation) -}}\n {{- adapter.dispatch('get_replace_sql', 'dbt')(existing_relation, target_relation, sql) -}}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__get_replace_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.838318, "supported_languages": null}, "macro.dbt.default__get_replace_sql": {"name": "default__get_replace_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/relations/replace.sql", "original_file_path": "macros/relations/replace.sql", "unique_id": "macro.dbt.default__get_replace_sql", "macro_sql": "{% macro default__get_replace_sql(existing_relation, target_relation, sql) %}\n\n {# /* use a create or replace statement if possible */ #}\n\n {% set is_replaceable = existing_relation.type == target_relation_type and existing_relation.can_be_replaced %}\n\n {% if is_replaceable and existing_relation.is_view %}\n {{ get_replace_view_sql(target_relation, sql) }}\n\n {% elif is_replaceable and existing_relation.is_table %}\n {{ get_replace_table_sql(target_relation, sql) }}\n\n {% elif is_replaceable and existing_relation.is_materialized_view %}\n {{ get_replace_materialized_view_sql(target_relation, sql) }}\n\n {# /* a create or replace statement is not possible, so try to stage and/or backup to be safe */ #}\n\n {# /* create target_relation as an intermediate relation, then swap it out with the existing one using a backup */ #}\n {%- elif target_relation.can_be_renamed and existing_relation.can_be_renamed -%}\n {{ get_create_intermediate_sql(target_relation, sql) }};\n {{ get_create_backup_sql(existing_relation) }};\n {{ get_rename_intermediate_sql(target_relation) }};\n {{ get_drop_backup_sql(existing_relation) }}\n\n {# /* create target_relation as an intermediate relation, then swap it out with the existing one without using a backup */ #}\n {%- elif target_relation.can_be_renamed -%}\n {{ get_create_intermediate_sql(target_relation, sql) }};\n {{ get_drop_sql(existing_relation) }};\n {{ get_rename_intermediate_sql(target_relation) }}\n\n {# /* create target_relation in place by first backing up the existing relation */ #}\n {%- elif existing_relation.can_be_renamed -%}\n {{ get_create_backup_sql(existing_relation) }};\n {{ get_create_sql(target_relation, sql) }};\n {{ get_drop_backup_sql(existing_relation) }}\n\n {# /* no renaming is allowed, so just drop and create */ #}\n {%- else -%}\n {{ get_drop_sql(existing_relation) }};\n {{ get_create_sql(target_relation, sql) }}\n\n {%- endif -%}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.get_replace_view_sql", "macro.dbt.get_replace_table_sql", "macro.dbt.get_replace_materialized_view_sql", "macro.dbt.get_create_intermediate_sql", "macro.dbt.get_create_backup_sql", "macro.dbt.get_rename_intermediate_sql", "macro.dbt.get_drop_backup_sql", "macro.dbt.get_drop_sql", "macro.dbt.get_create_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.8394501, "supported_languages": null}, "macro.dbt.get_create_intermediate_sql": {"name": "get_create_intermediate_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/relations/create_intermediate.sql", "original_file_path": "macros/relations/create_intermediate.sql", "unique_id": "macro.dbt.get_create_intermediate_sql", "macro_sql": "{%- macro get_create_intermediate_sql(relation, sql) -%}\n {{- log('Applying CREATE INTERMEDIATE to: ' ~ relation) -}}\n {{- adapter.dispatch('get_create_intermediate_sql', 'dbt')(relation, sql) -}}\n{%- endmacro -%}\n\n\n", "depends_on": {"macros": ["macro.dbt.default__get_create_intermediate_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.83979, "supported_languages": null}, "macro.dbt.default__get_create_intermediate_sql": {"name": "default__get_create_intermediate_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/relations/create_intermediate.sql", "original_file_path": "macros/relations/create_intermediate.sql", "unique_id": "macro.dbt.default__get_create_intermediate_sql", "macro_sql": "{%- macro default__get_create_intermediate_sql(relation, sql) -%}\n\n -- get the standard intermediate name\n {% set intermediate_relation = make_intermediate_relation(relation) %}\n\n -- drop any pre-existing intermediate\n {{ get_drop_sql(intermediate_relation) }};\n\n {{ get_create_sql(intermediate_relation, sql) }}\n\n{%- endmacro -%}", "depends_on": {"macros": ["macro.dbt.make_intermediate_relation", "macro.dbt.get_drop_sql", "macro.dbt.get_create_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.840016, "supported_languages": null}, "macro.dbt.get_drop_backup_sql": {"name": "get_drop_backup_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/relations/drop_backup.sql", "original_file_path": "macros/relations/drop_backup.sql", "unique_id": "macro.dbt.get_drop_backup_sql", "macro_sql": "{%- macro get_drop_backup_sql(relation) -%}\n {{- log('Applying DROP BACKUP to: ' ~ relation) -}}\n {{- adapter.dispatch('get_drop_backup_sql', 'dbt')(relation) -}}\n{%- endmacro -%}\n\n\n", "depends_on": {"macros": ["macro.dbt.default__get_drop_backup_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.8402948, "supported_languages": null}, "macro.dbt.default__get_drop_backup_sql": {"name": "default__get_drop_backup_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/relations/drop_backup.sql", "original_file_path": "macros/relations/drop_backup.sql", "unique_id": "macro.dbt.default__get_drop_backup_sql", "macro_sql": "{%- macro default__get_drop_backup_sql(relation) -%}\n\n -- get the standard backup name\n {% set backup_relation = make_backup_relation(relation, relation.type) %}\n\n {{ get_drop_sql(backup_relation) }}\n\n{%- endmacro -%}", "depends_on": {"macros": ["macro.dbt.make_backup_relation", "macro.dbt.get_drop_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.8404832, "supported_languages": null}, "macro.dbt.get_rename_sql": {"name": "get_rename_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/relations/rename.sql", "original_file_path": "macros/relations/rename.sql", "unique_id": "macro.dbt.get_rename_sql", "macro_sql": "{%- macro get_rename_sql(relation, new_name) -%}\n {{- log('Applying RENAME to: ' ~ relation) -}}\n {{- adapter.dispatch('get_rename_sql', 'dbt')(relation, new_name) -}}\n{%- endmacro -%}\n\n\n", "depends_on": {"macros": ["macro.dbt.default__get_rename_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.841092, "supported_languages": null}, "macro.dbt.default__get_rename_sql": {"name": "default__get_rename_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/relations/rename.sql", "original_file_path": "macros/relations/rename.sql", "unique_id": "macro.dbt.default__get_rename_sql", "macro_sql": "{%- macro default__get_rename_sql(relation, new_name) -%}\n\n {%- if relation.is_view -%}\n {{ get_rename_view_sql(relation, new_name) }}\n\n {%- elif relation.is_table -%}\n {{ get_rename_table_sql(relation, new_name) }}\n\n {%- elif relation.is_materialized_view -%}\n {{ get_rename_materialized_view_sql(relation, new_name) }}\n\n {%- else -%}\n {{- exceptions.raise_compiler_error(\"`get_rename_sql` has not been implemented for: \" ~ relation.type ) -}}\n\n {%- endif -%}\n\n{%- endmacro -%}\n\n\n", "depends_on": {"macros": ["macro.dbt.get_rename_view_sql", "macro.dbt.get_rename_table_sql", "macro.dbt.get_rename_materialized_view_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.841482, "supported_languages": null}, "macro.dbt.rename_relation": {"name": "rename_relation", "resource_type": "macro", "package_name": "dbt", "path": "macros/relations/rename.sql", "original_file_path": "macros/relations/rename.sql", "unique_id": "macro.dbt.rename_relation", "macro_sql": "{% macro rename_relation(from_relation, to_relation) -%}\n {{ return(adapter.dispatch('rename_relation', 'dbt')(from_relation, to_relation)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__rename_relation"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.841664, "supported_languages": null}, "macro.dbt.default__rename_relation": {"name": "default__rename_relation", "resource_type": "macro", "package_name": "dbt", "path": "macros/relations/rename.sql", "original_file_path": "macros/relations/rename.sql", "unique_id": "macro.dbt.default__rename_relation", "macro_sql": "{% macro default__rename_relation(from_relation, to_relation) -%}\n {% set target_name = adapter.quote_as_configured(to_relation.identifier, 'identifier') %}\n {% call statement('rename_relation') -%}\n alter table {{ from_relation }} rename to {{ target_name }}\n {%- endcall %}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.statement"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.8419158, "supported_languages": null}, "macro.dbt.get_create_backup_sql": {"name": "get_create_backup_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/relations/create_backup.sql", "original_file_path": "macros/relations/create_backup.sql", "unique_id": "macro.dbt.get_create_backup_sql", "macro_sql": "{%- macro get_create_backup_sql(relation) -%}\n {{- log('Applying CREATE BACKUP to: ' ~ relation) -}}\n {{- adapter.dispatch('get_create_backup_sql', 'dbt')(relation) -}}\n{%- endmacro -%}\n\n\n", "depends_on": {"macros": ["macro.dbt.default__get_create_backup_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.842221, "supported_languages": null}, "macro.dbt.default__get_create_backup_sql": {"name": "default__get_create_backup_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/relations/create_backup.sql", "original_file_path": "macros/relations/create_backup.sql", "unique_id": "macro.dbt.default__get_create_backup_sql", "macro_sql": "{%- macro default__get_create_backup_sql(relation) -%}\n\n -- get the standard backup name\n {% set backup_relation = make_backup_relation(relation, relation.type) %}\n\n -- drop any pre-existing backup\n {{ get_drop_sql(backup_relation) }};\n\n {{ get_rename_sql(relation, backup_relation.identifier) }}\n\n{%- endmacro -%}", "depends_on": {"macros": ["macro.dbt.make_backup_relation", "macro.dbt.get_drop_sql", "macro.dbt.get_rename_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.842464, "supported_languages": null}, "macro.dbt.get_create_sql": {"name": "get_create_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/relations/create.sql", "original_file_path": "macros/relations/create.sql", "unique_id": "macro.dbt.get_create_sql", "macro_sql": "{%- macro get_create_sql(relation, sql) -%}\n {{- log('Applying CREATE to: ' ~ relation) -}}\n {{- adapter.dispatch('get_create_sql', 'dbt')(relation, sql) -}}\n{%- endmacro -%}\n\n\n", "depends_on": {"macros": ["macro.dbt.default__get_create_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.8428779, "supported_languages": null}, "macro.dbt.default__get_create_sql": {"name": "default__get_create_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/relations/create.sql", "original_file_path": "macros/relations/create.sql", "unique_id": "macro.dbt.default__get_create_sql", "macro_sql": "{%- macro default__get_create_sql(relation, sql) -%}\n\n {%- if relation.is_view -%}\n {{ get_create_view_as_sql(relation, sql) }}\n\n {%- elif relation.is_table -%}\n {{ get_create_table_as_sql(False, relation, sql) }}\n\n {%- elif relation.is_materialized_view -%}\n {{ get_create_materialized_view_as_sql(relation, sql) }}\n\n {%- else -%}\n {{- exceptions.raise_compiler_error(\"`get_create_sql` has not been implemented for: \" ~ relation.type ) -}}\n\n {%- endif -%}\n\n{%- endmacro -%}", "depends_on": {"macros": ["macro.dbt.get_create_view_as_sql", "macro.dbt.get_create_table_as_sql", "macro.dbt.get_create_materialized_view_as_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.8432698, "supported_languages": null}, "macro.dbt.get_rename_intermediate_sql": {"name": "get_rename_intermediate_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/relations/rename_intermediate.sql", "original_file_path": "macros/relations/rename_intermediate.sql", "unique_id": "macro.dbt.get_rename_intermediate_sql", "macro_sql": "{%- macro get_rename_intermediate_sql(relation) -%}\n {{- log('Applying RENAME INTERMEDIATE to: ' ~ relation) -}}\n {{- adapter.dispatch('get_rename_intermediate_sql', 'dbt')(relation) -}}\n{%- endmacro -%}\n\n\n", "depends_on": {"macros": ["macro.dbt.default__get_rename_intermediate_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.843561, "supported_languages": null}, "macro.dbt.default__get_rename_intermediate_sql": {"name": "default__get_rename_intermediate_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/relations/rename_intermediate.sql", "original_file_path": "macros/relations/rename_intermediate.sql", "unique_id": "macro.dbt.default__get_rename_intermediate_sql", "macro_sql": "{%- macro default__get_rename_intermediate_sql(relation) -%}\n\n -- get the standard intermediate name\n {% set intermediate_relation = make_intermediate_relation(relation) %}\n\n {{ get_rename_sql(intermediate_relation, relation.identifier) }}\n\n{%- endmacro -%}", "depends_on": {"macros": ["macro.dbt.make_intermediate_relation", "macro.dbt.get_rename_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.84375, "supported_languages": null}, "macro.dbt.drop_materialized_view": {"name": "drop_materialized_view", "resource_type": "macro", "package_name": "dbt", "path": "macros/relations/materialized_view/drop.sql", "original_file_path": "macros/relations/materialized_view/drop.sql", "unique_id": "macro.dbt.drop_materialized_view", "macro_sql": "{% macro drop_materialized_view(relation) -%}\n {{ return(adapter.dispatch('drop_materialized_view', 'dbt')(relation)) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt_postgres.postgres__drop_materialized_view"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.84399, "supported_languages": null}, "macro.dbt.default__drop_materialized_view": {"name": "default__drop_materialized_view", "resource_type": "macro", "package_name": "dbt", "path": "macros/relations/materialized_view/drop.sql", "original_file_path": "macros/relations/materialized_view/drop.sql", "unique_id": "macro.dbt.default__drop_materialized_view", "macro_sql": "{% macro default__drop_materialized_view(relation) -%}\n drop materialized view if exists {{ relation }} cascade\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.8440871, "supported_languages": null}, "macro.dbt.get_replace_materialized_view_sql": {"name": "get_replace_materialized_view_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/relations/materialized_view/replace.sql", "original_file_path": "macros/relations/materialized_view/replace.sql", "unique_id": "macro.dbt.get_replace_materialized_view_sql", "macro_sql": "{% macro get_replace_materialized_view_sql(relation, sql) %}\n {{- adapter.dispatch('get_replace_materialized_view_sql', 'dbt')(relation, sql) -}}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__get_replace_materialized_view_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.844337, "supported_languages": null}, "macro.dbt.default__get_replace_materialized_view_sql": {"name": "default__get_replace_materialized_view_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/relations/materialized_view/replace.sql", "original_file_path": "macros/relations/materialized_view/replace.sql", "unique_id": "macro.dbt.default__get_replace_materialized_view_sql", "macro_sql": "{% macro default__get_replace_materialized_view_sql(relation, sql) %}\n {{ exceptions.raise_compiler_error(\n \"`get_replace_materialized_view_sql` has not been implemented for this adapter.\"\n ) }}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.8444722, "supported_languages": null}, "macro.dbt.refresh_materialized_view": {"name": "refresh_materialized_view", "resource_type": "macro", "package_name": "dbt", "path": "macros/relations/materialized_view/refresh.sql", "original_file_path": "macros/relations/materialized_view/refresh.sql", "unique_id": "macro.dbt.refresh_materialized_view", "macro_sql": "{% macro refresh_materialized_view(relation) %}\n {{- log('Applying REFRESH to: ' ~ relation) -}}\n {{- adapter.dispatch('refresh_materialized_view', 'dbt')(relation) -}}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_postgres.postgres__refresh_materialized_view"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.8447528, "supported_languages": null}, "macro.dbt.default__refresh_materialized_view": {"name": "default__refresh_materialized_view", "resource_type": "macro", "package_name": "dbt", "path": "macros/relations/materialized_view/refresh.sql", "original_file_path": "macros/relations/materialized_view/refresh.sql", "unique_id": "macro.dbt.default__refresh_materialized_view", "macro_sql": "{% macro default__refresh_materialized_view(relation) %}\n {{ exceptions.raise_compiler_error(\"`refresh_materialized_view` has not been implemented for this adapter.\") }}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.84494, "supported_languages": null}, "macro.dbt.get_rename_materialized_view_sql": {"name": "get_rename_materialized_view_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/relations/materialized_view/rename.sql", "original_file_path": "macros/relations/materialized_view/rename.sql", "unique_id": "macro.dbt.get_rename_materialized_view_sql", "macro_sql": "{% macro get_rename_materialized_view_sql(relation, new_name) %}\n {{- adapter.dispatch('get_rename_materialized_view_sql', 'dbt')(relation, new_name) -}}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_postgres.postgres__get_rename_materialized_view_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.845183, "supported_languages": null}, "macro.dbt.default__get_rename_materialized_view_sql": {"name": "default__get_rename_materialized_view_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/relations/materialized_view/rename.sql", "original_file_path": "macros/relations/materialized_view/rename.sql", "unique_id": "macro.dbt.default__get_rename_materialized_view_sql", "macro_sql": "{% macro default__get_rename_materialized_view_sql(relation, new_name) %}\n {{ exceptions.raise_compiler_error(\n \"`get_rename_materialized_view_sql` has not been implemented for this adapter.\"\n ) }}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.845314, "supported_languages": null}, "macro.dbt.get_alter_materialized_view_as_sql": {"name": "get_alter_materialized_view_as_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/relations/materialized_view/alter.sql", "original_file_path": "macros/relations/materialized_view/alter.sql", "unique_id": "macro.dbt.get_alter_materialized_view_as_sql", "macro_sql": "{% macro get_alter_materialized_view_as_sql(\n relation,\n configuration_changes,\n sql,\n existing_relation,\n backup_relation,\n intermediate_relation\n) %}\n {{- log('Applying ALTER to: ' ~ relation) -}}\n {{- adapter.dispatch('get_alter_materialized_view_as_sql', 'dbt')(\n relation,\n configuration_changes,\n sql,\n existing_relation,\n backup_relation,\n intermediate_relation\n ) -}}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_postgres.postgres__get_alter_materialized_view_as_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.846085, "supported_languages": null}, "macro.dbt.default__get_alter_materialized_view_as_sql": {"name": "default__get_alter_materialized_view_as_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/relations/materialized_view/alter.sql", "original_file_path": "macros/relations/materialized_view/alter.sql", "unique_id": "macro.dbt.default__get_alter_materialized_view_as_sql", "macro_sql": "{% macro default__get_alter_materialized_view_as_sql(\n relation,\n configuration_changes,\n sql,\n existing_relation,\n backup_relation,\n intermediate_relation\n) %}\n {{ exceptions.raise_compiler_error(\"Materialized views have not been implemented for this adapter.\") }}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.8462641, "supported_languages": null}, "macro.dbt.get_materialized_view_configuration_changes": {"name": "get_materialized_view_configuration_changes", "resource_type": "macro", "package_name": "dbt", "path": "macros/relations/materialized_view/alter.sql", "original_file_path": "macros/relations/materialized_view/alter.sql", "unique_id": "macro.dbt.get_materialized_view_configuration_changes", "macro_sql": "{% macro get_materialized_view_configuration_changes(existing_relation, new_config) %}\n /* {#\n It's recommended that configuration changes be formatted as follows:\n {\"\": [{\"action\": \"\", \"context\": ...}]}\n\n For example:\n {\n \"indexes\": [\n {\"action\": \"drop\", \"context\": \"index_abc\"},\n {\"action\": \"create\", \"context\": {\"columns\": [\"column_1\", \"column_2\"], \"type\": \"hash\", \"unique\": True}},\n ],\n }\n\n Either way, `get_materialized_view_configuration_changes` needs to align with `get_alter_materialized_view_as_sql`.\n #} */\n {{- log('Determining configuration changes on: ' ~ existing_relation) -}}\n {%- do return(adapter.dispatch('get_materialized_view_configuration_changes', 'dbt')(existing_relation, new_config)) -%}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_postgres.postgres__get_materialized_view_configuration_changes"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.8465211, "supported_languages": null}, "macro.dbt.default__get_materialized_view_configuration_changes": {"name": "default__get_materialized_view_configuration_changes", "resource_type": "macro", "package_name": "dbt", "path": "macros/relations/materialized_view/alter.sql", "original_file_path": "macros/relations/materialized_view/alter.sql", "unique_id": "macro.dbt.default__get_materialized_view_configuration_changes", "macro_sql": "{% macro default__get_materialized_view_configuration_changes(existing_relation, new_config) %}\n {{ exceptions.raise_compiler_error(\"Materialized views have not been implemented for this adapter.\") }}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.8466501, "supported_languages": null}, "macro.dbt.get_create_materialized_view_as_sql": {"name": "get_create_materialized_view_as_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/relations/materialized_view/create.sql", "original_file_path": "macros/relations/materialized_view/create.sql", "unique_id": "macro.dbt.get_create_materialized_view_as_sql", "macro_sql": "{% macro get_create_materialized_view_as_sql(relation, sql) -%}\n {{- adapter.dispatch('get_create_materialized_view_as_sql', 'dbt')(relation, sql) -}}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt_postgres.postgres__get_create_materialized_view_as_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.8468978, "supported_languages": null}, "macro.dbt.default__get_create_materialized_view_as_sql": {"name": "default__get_create_materialized_view_as_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/relations/materialized_view/create.sql", "original_file_path": "macros/relations/materialized_view/create.sql", "unique_id": "macro.dbt.default__get_create_materialized_view_as_sql", "macro_sql": "{% macro default__get_create_materialized_view_as_sql(relation, sql) -%}\n {{ exceptions.raise_compiler_error(\n \"`get_create_materialized_view_as_sql` has not been implemented for this adapter.\"\n ) }}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.8470242, "supported_languages": null}, "macro.dbt.get_table_columns_and_constraints": {"name": "get_table_columns_and_constraints", "resource_type": "macro", "package_name": "dbt", "path": "macros/relations/column/columns_spec_ddl.sql", "original_file_path": "macros/relations/column/columns_spec_ddl.sql", "unique_id": "macro.dbt.get_table_columns_and_constraints", "macro_sql": "{%- macro get_table_columns_and_constraints() -%}\n {{ adapter.dispatch('get_table_columns_and_constraints', 'dbt')() }}\n{%- endmacro -%}\n\n", "depends_on": {"macros": ["macro.dbt.default__get_table_columns_and_constraints"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.847906, "supported_languages": null}, "macro.dbt.default__get_table_columns_and_constraints": {"name": "default__get_table_columns_and_constraints", "resource_type": "macro", "package_name": "dbt", "path": "macros/relations/column/columns_spec_ddl.sql", "original_file_path": "macros/relations/column/columns_spec_ddl.sql", "unique_id": "macro.dbt.default__get_table_columns_and_constraints", "macro_sql": "{% macro default__get_table_columns_and_constraints() -%}\n {{ return(table_columns_and_constraints()) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt.table_columns_and_constraints"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.848012, "supported_languages": null}, "macro.dbt.table_columns_and_constraints": {"name": "table_columns_and_constraints", "resource_type": "macro", "package_name": "dbt", "path": "macros/relations/column/columns_spec_ddl.sql", "original_file_path": "macros/relations/column/columns_spec_ddl.sql", "unique_id": "macro.dbt.table_columns_and_constraints", "macro_sql": "{% macro table_columns_and_constraints() %}\n {# loop through user_provided_columns to create DDL with data types and constraints #}\n {%- set raw_column_constraints = adapter.render_raw_columns_constraints(raw_columns=model['columns']) -%}\n {%- set raw_model_constraints = adapter.render_raw_model_constraints(raw_constraints=model['constraints']) -%}\n (\n {% for c in raw_column_constraints -%}\n {{ c }}{{ \",\" if not loop.last or raw_model_constraints }}\n {% endfor %}\n {% for c in raw_model_constraints -%}\n {{ c }}{{ \",\" if not loop.last }}\n {% endfor -%}\n )\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.848484, "supported_languages": null}, "macro.dbt.get_assert_columns_equivalent": {"name": "get_assert_columns_equivalent", "resource_type": "macro", "package_name": "dbt", "path": "macros/relations/column/columns_spec_ddl.sql", "original_file_path": "macros/relations/column/columns_spec_ddl.sql", "unique_id": "macro.dbt.get_assert_columns_equivalent", "macro_sql": "\n\n{%- macro get_assert_columns_equivalent(sql) -%}\n {{ adapter.dispatch('get_assert_columns_equivalent', 'dbt')(sql) }}\n{%- endmacro -%}\n\n", "depends_on": {"macros": ["macro.dbt.default__get_assert_columns_equivalent"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.848633, "supported_languages": null}, "macro.dbt.default__get_assert_columns_equivalent": {"name": "default__get_assert_columns_equivalent", "resource_type": "macro", "package_name": "dbt", "path": "macros/relations/column/columns_spec_ddl.sql", "original_file_path": "macros/relations/column/columns_spec_ddl.sql", "unique_id": "macro.dbt.default__get_assert_columns_equivalent", "macro_sql": "{% macro default__get_assert_columns_equivalent(sql) -%}\n {{ return(assert_columns_equivalent(sql)) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt.assert_columns_equivalent"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.848754, "supported_languages": null}, "macro.dbt.assert_columns_equivalent": {"name": "assert_columns_equivalent", "resource_type": "macro", "package_name": "dbt", "path": "macros/relations/column/columns_spec_ddl.sql", "original_file_path": "macros/relations/column/columns_spec_ddl.sql", "unique_id": "macro.dbt.assert_columns_equivalent", "macro_sql": "{% macro assert_columns_equivalent(sql) %}\n\n {#-- First ensure the user has defined 'columns' in yaml specification --#}\n {%- set user_defined_columns = model['columns'] -%}\n {%- if not user_defined_columns -%}\n {{ exceptions.raise_contract_error([], []) }}\n {%- endif -%}\n\n {#-- Obtain the column schema provided by sql file. #}\n {%- set sql_file_provided_columns = get_column_schema_from_query(sql, config.get('sql_header', none)) -%}\n {#--Obtain the column schema provided by the schema file by generating an 'empty schema' query from the model's columns. #}\n {%- set schema_file_provided_columns = get_column_schema_from_query(get_empty_schema_sql(user_defined_columns)) -%}\n\n {#-- create dictionaries with name and formatted data type and strings for exception #}\n {%- set sql_columns = format_columns(sql_file_provided_columns) -%}\n {%- set yaml_columns = format_columns(schema_file_provided_columns) -%}\n\n {%- if sql_columns|length != yaml_columns|length -%}\n {%- do exceptions.raise_contract_error(yaml_columns, sql_columns) -%}\n {%- endif -%}\n\n {%- for sql_col in sql_columns -%}\n {%- set yaml_col = [] -%}\n {%- for this_col in yaml_columns -%}\n {%- if this_col['name'] == sql_col['name'] -%}\n {%- do yaml_col.append(this_col) -%}\n {%- break -%}\n {%- endif -%}\n {%- endfor -%}\n {%- if not yaml_col -%}\n {#-- Column with name not found in yaml #}\n {%- do exceptions.raise_contract_error(yaml_columns, sql_columns) -%}\n {%- endif -%}\n {%- if sql_col['formatted'] != yaml_col[0]['formatted'] -%}\n {#-- Column data types don't match #}\n {%- do exceptions.raise_contract_error(yaml_columns, sql_columns) -%}\n {%- endif -%}\n {%- endfor -%}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.get_column_schema_from_query", "macro.dbt.get_empty_schema_sql", "macro.dbt.format_columns"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.849956, "supported_languages": null}, "macro.dbt.format_columns": {"name": "format_columns", "resource_type": "macro", "package_name": "dbt", "path": "macros/relations/column/columns_spec_ddl.sql", "original_file_path": "macros/relations/column/columns_spec_ddl.sql", "unique_id": "macro.dbt.format_columns", "macro_sql": "{% macro format_columns(columns) %}\n {% set formatted_columns = [] %}\n {% for column in columns %}\n {%- set formatted_column = adapter.dispatch('format_column', 'dbt')(column) -%}\n {%- do formatted_columns.append(formatted_column) -%}\n {% endfor %}\n {{ return(formatted_columns) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__format_column"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.850326, "supported_languages": null}, "macro.dbt.default__format_column": {"name": "default__format_column", "resource_type": "macro", "package_name": "dbt", "path": "macros/relations/column/columns_spec_ddl.sql", "original_file_path": "macros/relations/column/columns_spec_ddl.sql", "unique_id": "macro.dbt.default__format_column", "macro_sql": "{% macro default__format_column(column) -%}\n {% set data_type = column.dtype %}\n {% set formatted = column.column.lower() ~ \" \" ~ data_type %}\n {{ return({'name': column.name, 'data_type': data_type, 'formatted': formatted}) }}\n{%- endmacro -%}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.850661, "supported_languages": null}, "macro.dbt.drop_table": {"name": "drop_table", "resource_type": "macro", "package_name": "dbt", "path": "macros/relations/table/drop.sql", "original_file_path": "macros/relations/table/drop.sql", "unique_id": "macro.dbt.drop_table", "macro_sql": "{% macro drop_table(relation) -%}\n {{ return(adapter.dispatch('drop_table', 'dbt')(relation)) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt_postgres.postgres__drop_table"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.8509219, "supported_languages": null}, "macro.dbt.default__drop_table": {"name": "default__drop_table", "resource_type": "macro", "package_name": "dbt", "path": "macros/relations/table/drop.sql", "original_file_path": "macros/relations/table/drop.sql", "unique_id": "macro.dbt.default__drop_table", "macro_sql": "{% macro default__drop_table(relation) -%}\n drop table if exists {{ relation }} cascade\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.85102, "supported_languages": null}, "macro.dbt.get_replace_table_sql": {"name": "get_replace_table_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/relations/table/replace.sql", "original_file_path": "macros/relations/table/replace.sql", "unique_id": "macro.dbt.get_replace_table_sql", "macro_sql": "{% macro get_replace_table_sql(relation, sql) %}\n {{- adapter.dispatch('get_replace_table_sql', 'dbt')(relation, sql) -}}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_postgres.postgres__get_replace_table_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.8512719, "supported_languages": null}, "macro.dbt.default__get_replace_table_sql": {"name": "default__get_replace_table_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/relations/table/replace.sql", "original_file_path": "macros/relations/table/replace.sql", "unique_id": "macro.dbt.default__get_replace_table_sql", "macro_sql": "{% macro default__get_replace_table_sql(relation, sql) %}\n {{ exceptions.raise_compiler_error(\n \"`get_replace_table_sql` has not been implemented for this adapter.\"\n ) }}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.8514078, "supported_languages": null}, "macro.dbt.get_rename_table_sql": {"name": "get_rename_table_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/relations/table/rename.sql", "original_file_path": "macros/relations/table/rename.sql", "unique_id": "macro.dbt.get_rename_table_sql", "macro_sql": "{% macro get_rename_table_sql(relation, new_name) %}\n {{- adapter.dispatch('get_rename_table_sql', 'dbt')(relation, new_name) -}}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_postgres.postgres__get_rename_table_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.8516538, "supported_languages": null}, "macro.dbt.default__get_rename_table_sql": {"name": "default__get_rename_table_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/relations/table/rename.sql", "original_file_path": "macros/relations/table/rename.sql", "unique_id": "macro.dbt.default__get_rename_table_sql", "macro_sql": "{% macro default__get_rename_table_sql(relation, new_name) %}\n {{ exceptions.raise_compiler_error(\n \"`get_rename_table_sql` has not been implemented for this adapter.\"\n ) }}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.851788, "supported_languages": null}, "macro.dbt.get_create_table_as_sql": {"name": "get_create_table_as_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/relations/table/create.sql", "original_file_path": "macros/relations/table/create.sql", "unique_id": "macro.dbt.get_create_table_as_sql", "macro_sql": "{% macro get_create_table_as_sql(temporary, relation, sql) -%}\n {{ adapter.dispatch('get_create_table_as_sql', 'dbt')(temporary, relation, sql) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt.default__get_create_table_as_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.852591, "supported_languages": null}, "macro.dbt.default__get_create_table_as_sql": {"name": "default__get_create_table_as_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/relations/table/create.sql", "original_file_path": "macros/relations/table/create.sql", "unique_id": "macro.dbt.default__get_create_table_as_sql", "macro_sql": "{% macro default__get_create_table_as_sql(temporary, relation, sql) -%}\n {{ return(create_table_as(temporary, relation, sql)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.create_table_as"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.85278, "supported_languages": null}, "macro.dbt.create_table_as": {"name": "create_table_as", "resource_type": "macro", "package_name": "dbt", "path": "macros/relations/table/create.sql", "original_file_path": "macros/relations/table/create.sql", "unique_id": "macro.dbt.create_table_as", "macro_sql": "{% macro create_table_as(temporary, relation, compiled_code, language='sql') -%}\n {# backward compatibility for create_table_as that does not support language #}\n {% if language == \"sql\" %}\n {{ adapter.dispatch('create_table_as', 'dbt')(temporary, relation, compiled_code)}}\n {% else %}\n {{ adapter.dispatch('create_table_as', 'dbt')(temporary, relation, compiled_code, language) }}\n {% endif %}\n\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt_postgres.postgres__create_table_as"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.8531861, "supported_languages": null}, "macro.dbt.default__create_table_as": {"name": "default__create_table_as", "resource_type": "macro", "package_name": "dbt", "path": "macros/relations/table/create.sql", "original_file_path": "macros/relations/table/create.sql", "unique_id": "macro.dbt.default__create_table_as", "macro_sql": "{% macro default__create_table_as(temporary, relation, sql) -%}\n {%- set sql_header = config.get('sql_header', none) -%}\n\n {{ sql_header if sql_header is not none }}\n\n create {% if temporary: -%}temporary{%- endif %} table\n {{ relation.include(database=(not temporary), schema=(not temporary)) }}\n {% set contract_config = config.get('contract') %}\n {% if contract_config.enforced and (not temporary) %}\n {{ get_assert_columns_equivalent(sql) }}\n {{ get_table_columns_and_constraints() }}\n {%- set sql = get_select_subquery(sql) %}\n {% endif %}\n as (\n {{ sql }}\n );\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt.get_assert_columns_equivalent", "macro.dbt.get_table_columns_and_constraints", "macro.dbt.get_select_subquery"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.853836, "supported_languages": null}, "macro.dbt.default__get_column_names": {"name": "default__get_column_names", "resource_type": "macro", "package_name": "dbt", "path": "macros/relations/table/create.sql", "original_file_path": "macros/relations/table/create.sql", "unique_id": "macro.dbt.default__get_column_names", "macro_sql": "{% macro default__get_column_names() %}\n {#- loop through user_provided_columns to get column names -#}\n {%- set user_provided_columns = model['columns'] -%}\n {%- for i in user_provided_columns %}\n {%- set col = user_provided_columns[i] -%}\n {%- set col_name = adapter.quote(col['name']) if col.get('quote') else col['name'] -%}\n {{ col_name }}{{ \", \" if not loop.last }}\n {%- endfor -%}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.854358, "supported_languages": null}, "macro.dbt.get_select_subquery": {"name": "get_select_subquery", "resource_type": "macro", "package_name": "dbt", "path": "macros/relations/table/create.sql", "original_file_path": "macros/relations/table/create.sql", "unique_id": "macro.dbt.get_select_subquery", "macro_sql": "{% macro get_select_subquery(sql) %}\n {{ return(adapter.dispatch('get_select_subquery', 'dbt')(sql)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__get_select_subquery"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.854547, "supported_languages": null}, "macro.dbt.default__get_select_subquery": {"name": "default__get_select_subquery", "resource_type": "macro", "package_name": "dbt", "path": "macros/relations/table/create.sql", "original_file_path": "macros/relations/table/create.sql", "unique_id": "macro.dbt.default__get_select_subquery", "macro_sql": "{% macro default__get_select_subquery(sql) %}\n select {{ adapter.dispatch('get_column_names', 'dbt')() }}\n from (\n {{ sql }}\n ) as model_subq\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt.default__get_column_names"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.854769, "supported_languages": null}, "macro.dbt.drop_view": {"name": "drop_view", "resource_type": "macro", "package_name": "dbt", "path": "macros/relations/view/drop.sql", "original_file_path": "macros/relations/view/drop.sql", "unique_id": "macro.dbt.drop_view", "macro_sql": "{% macro drop_view(relation) -%}\n {{ return(adapter.dispatch('drop_view', 'dbt')(relation)) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt_postgres.postgres__drop_view"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.855111, "supported_languages": null}, "macro.dbt.default__drop_view": {"name": "default__drop_view", "resource_type": "macro", "package_name": "dbt", "path": "macros/relations/view/drop.sql", "original_file_path": "macros/relations/view/drop.sql", "unique_id": "macro.dbt.default__drop_view", "macro_sql": "{% macro default__drop_view(relation) -%}\n drop view if exists {{ relation }} cascade\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.855242, "supported_languages": null}, "macro.dbt.get_replace_view_sql": {"name": "get_replace_view_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/relations/view/replace.sql", "original_file_path": "macros/relations/view/replace.sql", "unique_id": "macro.dbt.get_replace_view_sql", "macro_sql": "{% macro get_replace_view_sql(relation, sql) %}\n {{- adapter.dispatch('get_replace_view_sql', 'dbt')(relation, sql) -}}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_postgres.postgres__get_replace_view_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.856252, "supported_languages": null}, "macro.dbt.default__get_replace_view_sql": {"name": "default__get_replace_view_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/relations/view/replace.sql", "original_file_path": "macros/relations/view/replace.sql", "unique_id": "macro.dbt.default__get_replace_view_sql", "macro_sql": "{% macro default__get_replace_view_sql(relation, sql) %}\n {{ exceptions.raise_compiler_error(\n \"`get_replace_view_sql` has not been implemented for this adapter.\"\n ) }}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.856406, "supported_languages": null}, "macro.dbt.create_or_replace_view": {"name": "create_or_replace_view", "resource_type": "macro", "package_name": "dbt", "path": "macros/relations/view/replace.sql", "original_file_path": "macros/relations/view/replace.sql", "unique_id": "macro.dbt.create_or_replace_view", "macro_sql": "{% macro create_or_replace_view() %}\n {%- set identifier = model['alias'] -%}\n\n {%- set old_relation = adapter.get_relation(database=database, schema=schema, identifier=identifier) -%}\n {%- set exists_as_view = (old_relation is not none and old_relation.is_view) -%}\n\n {%- set target_relation = api.Relation.create(\n identifier=identifier, schema=schema, database=database,\n type='view') -%}\n {% set grant_config = config.get('grants') %}\n\n {{ run_hooks(pre_hooks) }}\n\n -- If there's a table with the same name and we weren't told to full refresh,\n -- that's an error. If we were told to full refresh, drop it. This behavior differs\n -- for Snowflake and BigQuery, so multiple dispatch is used.\n {%- if old_relation is not none and old_relation.is_table -%}\n {{ handle_existing_table(should_full_refresh(), old_relation) }}\n {%- endif -%}\n\n -- build model\n {% call statement('main') -%}\n {{ get_create_view_as_sql(target_relation, sql) }}\n {%- endcall %}\n\n {% set should_revoke = should_revoke(exists_as_view, full_refresh_mode=True) %}\n {% do apply_grants(target_relation, grant_config, should_revoke=should_revoke) %}\n\n {{ run_hooks(post_hooks) }}\n\n {{ return({'relations': [target_relation]}) }}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.run_hooks", "macro.dbt.handle_existing_table", "macro.dbt.should_full_refresh", "macro.dbt.statement", "macro.dbt.get_create_view_as_sql", "macro.dbt.should_revoke", "macro.dbt.apply_grants"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.857866, "supported_languages": null}, "macro.dbt.handle_existing_table": {"name": "handle_existing_table", "resource_type": "macro", "package_name": "dbt", "path": "macros/relations/view/replace.sql", "original_file_path": "macros/relations/view/replace.sql", "unique_id": "macro.dbt.handle_existing_table", "macro_sql": "{% macro handle_existing_table(full_refresh, old_relation) %}\n {{ adapter.dispatch('handle_existing_table', 'dbt')(full_refresh, old_relation) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__handle_existing_table"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.85808, "supported_languages": null}, "macro.dbt.default__handle_existing_table": {"name": "default__handle_existing_table", "resource_type": "macro", "package_name": "dbt", "path": "macros/relations/view/replace.sql", "original_file_path": "macros/relations/view/replace.sql", "unique_id": "macro.dbt.default__handle_existing_table", "macro_sql": "{% macro default__handle_existing_table(full_refresh, old_relation) %}\n {{ log(\"Dropping relation \" ~ old_relation ~ \" because it is of type \" ~ old_relation.type) }}\n {{ adapter.drop_relation(old_relation) }}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.858301, "supported_languages": null}, "macro.dbt.get_rename_view_sql": {"name": "get_rename_view_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/relations/view/rename.sql", "original_file_path": "macros/relations/view/rename.sql", "unique_id": "macro.dbt.get_rename_view_sql", "macro_sql": "{% macro get_rename_view_sql(relation, new_name) %}\n {{- adapter.dispatch('get_rename_view_sql', 'dbt')(relation, new_name) -}}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_postgres.postgres__get_rename_view_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.858579, "supported_languages": null}, "macro.dbt.default__get_rename_view_sql": {"name": "default__get_rename_view_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/relations/view/rename.sql", "original_file_path": "macros/relations/view/rename.sql", "unique_id": "macro.dbt.default__get_rename_view_sql", "macro_sql": "{% macro default__get_rename_view_sql(relation, new_name) %}\n {{ exceptions.raise_compiler_error(\n \"`get_rename_view_sql` has not been implemented for this adapter.\"\n ) }}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.858742, "supported_languages": null}, "macro.dbt.get_create_view_as_sql": {"name": "get_create_view_as_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/relations/view/create.sql", "original_file_path": "macros/relations/view/create.sql", "unique_id": "macro.dbt.get_create_view_as_sql", "macro_sql": "{% macro get_create_view_as_sql(relation, sql) -%}\n {{ adapter.dispatch('get_create_view_as_sql', 'dbt')(relation, sql) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt.default__get_create_view_as_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.859143, "supported_languages": null}, "macro.dbt.default__get_create_view_as_sql": {"name": "default__get_create_view_as_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/relations/view/create.sql", "original_file_path": "macros/relations/view/create.sql", "unique_id": "macro.dbt.default__get_create_view_as_sql", "macro_sql": "{% macro default__get_create_view_as_sql(relation, sql) -%}\n {{ return(create_view_as(relation, sql)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.create_view_as"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.859306, "supported_languages": null}, "macro.dbt.create_view_as": {"name": "create_view_as", "resource_type": "macro", "package_name": "dbt", "path": "macros/relations/view/create.sql", "original_file_path": "macros/relations/view/create.sql", "unique_id": "macro.dbt.create_view_as", "macro_sql": "{% macro create_view_as(relation, sql) -%}\n {{ adapter.dispatch('create_view_as', 'dbt')(relation, sql) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt.default__create_view_as"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.859481, "supported_languages": null}, "macro.dbt.default__create_view_as": {"name": "default__create_view_as", "resource_type": "macro", "package_name": "dbt", "path": "macros/relations/view/create.sql", "original_file_path": "macros/relations/view/create.sql", "unique_id": "macro.dbt.default__create_view_as", "macro_sql": "{% macro default__create_view_as(relation, sql) -%}\n {%- set sql_header = config.get('sql_header', none) -%}\n\n {{ sql_header if sql_header is not none }}\n create view {{ relation }}\n {% set contract_config = config.get('contract') %}\n {% if contract_config.enforced %}\n {{ get_assert_columns_equivalent(sql) }}\n {%- endif %}\n as (\n {{ sql }}\n );\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt.get_assert_columns_equivalent"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.859904, "supported_languages": null}, "macro.dbt.default__test_relationships": {"name": "default__test_relationships", "resource_type": "macro", "package_name": "dbt", "path": "macros/generic_test_sql/relationships.sql", "original_file_path": "macros/generic_test_sql/relationships.sql", "unique_id": "macro.dbt.default__test_relationships", "macro_sql": "{% macro default__test_relationships(model, column_name, to, field) %}\n\nwith child as (\n select {{ column_name }} as from_field\n from {{ model }}\n where {{ column_name }} is not null\n),\n\nparent as (\n select {{ field }} as to_field\n from {{ to }}\n)\n\nselect\n from_field\n\nfrom child\nleft join parent\n on child.from_field = parent.to_field\n\nwhere parent.to_field is null\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.860265, "supported_languages": null}, "macro.dbt.default__test_not_null": {"name": "default__test_not_null", "resource_type": "macro", "package_name": "dbt", "path": "macros/generic_test_sql/not_null.sql", "original_file_path": "macros/generic_test_sql/not_null.sql", "unique_id": "macro.dbt.default__test_not_null", "macro_sql": "{% macro default__test_not_null(model, column_name) %}\n\n{% set column_list = '*' if should_store_failures() else column_name %}\n\nselect {{ column_list }}\nfrom {{ model }}\nwhere {{ column_name }} is null\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.should_store_failures"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.860554, "supported_languages": null}, "macro.dbt.default__test_unique": {"name": "default__test_unique", "resource_type": "macro", "package_name": "dbt", "path": "macros/generic_test_sql/unique.sql", "original_file_path": "macros/generic_test_sql/unique.sql", "unique_id": "macro.dbt.default__test_unique", "macro_sql": "{% macro default__test_unique(model, column_name) %}\n\nselect\n {{ column_name }} as unique_field,\n count(*) as n_records\n\nfrom {{ model }}\nwhere {{ column_name }} is not null\ngroup by {{ column_name }}\nhaving count(*) > 1\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.86092, "supported_languages": null}, "macro.dbt.default__test_accepted_values": {"name": "default__test_accepted_values", "resource_type": "macro", "package_name": "dbt", "path": "macros/generic_test_sql/accepted_values.sql", "original_file_path": "macros/generic_test_sql/accepted_values.sql", "unique_id": "macro.dbt.default__test_accepted_values", "macro_sql": "{% macro default__test_accepted_values(model, column_name, values, quote=True) %}\n\nwith all_values as (\n\n select\n {{ column_name }} as value_field,\n count(*) as n_records\n\n from {{ model }}\n group by {{ column_name }}\n\n)\n\nselect *\nfrom all_values\nwhere value_field not in (\n {% for value in values -%}\n {% if quote -%}\n '{{ value }}'\n {%- else -%}\n {{ value }}\n {%- endif -%}\n {%- if not loop.last -%},{%- endif %}\n {%- endfor %}\n)\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.861482, "supported_languages": null}, "macro.dbt.statement": {"name": "statement", "resource_type": "macro", "package_name": "dbt", "path": "macros/etc/statement.sql", "original_file_path": "macros/etc/statement.sql", "unique_id": "macro.dbt.statement", "macro_sql": "\n{%- macro statement(name=None, fetch_result=False, auto_begin=True, language='sql') -%}\n {%- if execute: -%}\n {%- set compiled_code = caller() -%}\n\n {%- if name == 'main' -%}\n {{ log('Writing runtime {} for node \"{}\"'.format(language, model['unique_id'])) }}\n {{ write(compiled_code) }}\n {%- endif -%}\n {%- if language == 'sql'-%}\n {%- set res, table = adapter.execute(compiled_code, auto_begin=auto_begin, fetch=fetch_result) -%}\n {%- elif language == 'python' -%}\n {%- set res = submit_python_job(model, compiled_code) -%}\n {#-- TODO: What should table be for python models? --#}\n {%- set table = None -%}\n {%- else -%}\n {% do exceptions.raise_compiler_error(\"statement macro didn't get supported language\") %}\n {%- endif -%}\n\n {%- if name is not none -%}\n {{ store_result(name, response=res, agate_table=table) }}\n {%- endif -%}\n\n {%- endif -%}\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.863094, "supported_languages": null}, "macro.dbt.noop_statement": {"name": "noop_statement", "resource_type": "macro", "package_name": "dbt", "path": "macros/etc/statement.sql", "original_file_path": "macros/etc/statement.sql", "unique_id": "macro.dbt.noop_statement", "macro_sql": "{% macro noop_statement(name=None, message=None, code=None, rows_affected=None, res=None) -%}\n {%- set sql = caller() -%}\n\n {%- if name == 'main' -%}\n {{ log('Writing runtime SQL for node \"{}\"'.format(model['unique_id'])) }}\n {{ write(sql) }}\n {%- endif -%}\n\n {%- if name is not none -%}\n {{ store_raw_result(name, message=message, code=code, rows_affected=rows_affected, agate_table=res) }}\n {%- endif -%}\n\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.8638349, "supported_languages": null}, "macro.dbt.run_query": {"name": "run_query", "resource_type": "macro", "package_name": "dbt", "path": "macros/etc/statement.sql", "original_file_path": "macros/etc/statement.sql", "unique_id": "macro.dbt.run_query", "macro_sql": "{% macro run_query(sql) %}\n {% call statement(\"run_query_statement\", fetch_result=true, auto_begin=false) %}\n {{ sql }}\n {% endcall %}\n\n {% do return(load_result(\"run_query_statement\").table) %}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.statement"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.864149, "supported_languages": null}, "macro.dbt.convert_datetime": {"name": "convert_datetime", "resource_type": "macro", "package_name": "dbt", "path": "macros/etc/datetime.sql", "original_file_path": "macros/etc/datetime.sql", "unique_id": "macro.dbt.convert_datetime", "macro_sql": "{% macro convert_datetime(date_str, date_fmt) %}\n\n {% set error_msg -%}\n The provided partition date '{{ date_str }}' does not match the expected format '{{ date_fmt }}'\n {%- endset %}\n\n {% set res = try_or_compiler_error(error_msg, modules.datetime.datetime.strptime, date_str.strip(), date_fmt) %}\n {{ return(res) }}\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.865972, "supported_languages": null}, "macro.dbt.dates_in_range": {"name": "dates_in_range", "resource_type": "macro", "package_name": "dbt", "path": "macros/etc/datetime.sql", "original_file_path": "macros/etc/datetime.sql", "unique_id": "macro.dbt.dates_in_range", "macro_sql": "{% macro dates_in_range(start_date_str, end_date_str=none, in_fmt=\"%Y%m%d\", out_fmt=\"%Y%m%d\") %}\n {% set end_date_str = start_date_str if end_date_str is none else end_date_str %}\n\n {% set start_date = convert_datetime(start_date_str, in_fmt) %}\n {% set end_date = convert_datetime(end_date_str, in_fmt) %}\n\n {% set day_count = (end_date - start_date).days %}\n {% if day_count < 0 %}\n {% set msg -%}\n Partition start date is after the end date ({{ start_date }}, {{ end_date }})\n {%- endset %}\n\n {{ exceptions.raise_compiler_error(msg, model) }}\n {% endif %}\n\n {% set date_list = [] %}\n {% for i in range(0, day_count + 1) %}\n {% set the_date = (modules.datetime.timedelta(days=i) + start_date) %}\n {% if not out_fmt %}\n {% set _ = date_list.append(the_date) %}\n {% else %}\n {% set _ = date_list.append(the_date.strftime(out_fmt)) %}\n {% endif %}\n {% endfor %}\n\n {{ return(date_list) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.convert_datetime"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.8673449, "supported_languages": null}, "macro.dbt.partition_range": {"name": "partition_range", "resource_type": "macro", "package_name": "dbt", "path": "macros/etc/datetime.sql", "original_file_path": "macros/etc/datetime.sql", "unique_id": "macro.dbt.partition_range", "macro_sql": "{% macro partition_range(raw_partition_date, date_fmt='%Y%m%d') %}\n {% set partition_range = (raw_partition_date | string).split(\",\") %}\n\n {% if (partition_range | length) == 1 %}\n {% set start_date = partition_range[0] %}\n {% set end_date = none %}\n {% elif (partition_range | length) == 2 %}\n {% set start_date = partition_range[0] %}\n {% set end_date = partition_range[1] %}\n {% else %}\n {{ exceptions.raise_compiler_error(\"Invalid partition time. Expected format: {Start Date}[,{End Date}]. Got: \" ~ raw_partition_date) }}\n {% endif %}\n\n {{ return(dates_in_range(start_date, end_date, in_fmt=date_fmt)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.dates_in_range"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.868109, "supported_languages": null}, "macro.dbt.py_current_timestring": {"name": "py_current_timestring", "resource_type": "macro", "package_name": "dbt", "path": "macros/etc/datetime.sql", "original_file_path": "macros/etc/datetime.sql", "unique_id": "macro.dbt.py_current_timestring", "macro_sql": "{% macro py_current_timestring() %}\n {% set dt = modules.datetime.datetime.now() %}\n {% do return(dt.strftime(\"%Y%m%d%H%M%S%f\")) %}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.868352, "supported_languages": null}, "macro.dbt.except": {"name": "except", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/except.sql", "original_file_path": "macros/utils/except.sql", "unique_id": "macro.dbt.except", "macro_sql": "{% macro except() %}\n {{ return(adapter.dispatch('except', 'dbt')()) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__except"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.868598, "supported_languages": null}, "macro.dbt.default__except": {"name": "default__except", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/except.sql", "original_file_path": "macros/utils/except.sql", "unique_id": "macro.dbt.default__except", "macro_sql": "{% macro default__except() %}\n\n except\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.8686771, "supported_languages": null}, "macro.dbt.get_intervals_between": {"name": "get_intervals_between", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/date_spine.sql", "original_file_path": "macros/utils/date_spine.sql", "unique_id": "macro.dbt.get_intervals_between", "macro_sql": "{% macro get_intervals_between(start_date, end_date, datepart) -%}\n {{ return(adapter.dispatch('get_intervals_between', 'dbt')(start_date, end_date, datepart)) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt.default__get_intervals_between"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.8695092, "supported_languages": null}, "macro.dbt.default__get_intervals_between": {"name": "default__get_intervals_between", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/date_spine.sql", "original_file_path": "macros/utils/date_spine.sql", "unique_id": "macro.dbt.default__get_intervals_between", "macro_sql": "{% macro default__get_intervals_between(start_date, end_date, datepart) -%}\n {%- call statement('get_intervals_between', fetch_result=True) %}\n\n select {{ dbt.datediff(start_date, end_date, datepart) }}\n\n {%- endcall -%}\n\n {%- set value_list = load_result('get_intervals_between') -%}\n\n {%- if value_list and value_list['data'] -%}\n {%- set values = value_list['data'] | map(attribute=0) | list %}\n {{ return(values[0]) }}\n {%- else -%}\n {{ return(1) }}\n {%- endif -%}\n\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt.statement", "macro.dbt.datediff"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.8702981, "supported_languages": null}, "macro.dbt.date_spine": {"name": "date_spine", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/date_spine.sql", "original_file_path": "macros/utils/date_spine.sql", "unique_id": "macro.dbt.date_spine", "macro_sql": "{% macro date_spine(datepart, start_date, end_date) %}\n {{ return(adapter.dispatch('date_spine', 'dbt')(datepart, start_date, end_date)) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt.default__date_spine"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.870548, "supported_languages": null}, "macro.dbt.default__date_spine": {"name": "default__date_spine", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/date_spine.sql", "original_file_path": "macros/utils/date_spine.sql", "unique_id": "macro.dbt.default__date_spine", "macro_sql": "{% macro default__date_spine(datepart, start_date, end_date) %}\n\n\n {# call as follows:\n\n date_spine(\n \"day\",\n \"to_date('01/01/2016', 'mm/dd/yyyy')\",\n \"dbt.dateadd(week, 1, current_date)\"\n ) #}\n\n\n with rawdata as (\n\n {{dbt.generate_series(\n dbt.get_intervals_between(start_date, end_date, datepart)\n )}}\n\n ),\n\n all_periods as (\n\n select (\n {{\n dbt.dateadd(\n datepart,\n \"row_number() over (order by 1) - 1\",\n start_date\n )\n }}\n ) as date_{{datepart}}\n from rawdata\n\n ),\n\n filtered as (\n\n select *\n from all_periods\n where date_{{datepart}} <= {{ end_date }}\n\n )\n\n select * from filtered\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.generate_series", "macro.dbt.get_intervals_between", "macro.dbt.dateadd"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.8709571, "supported_languages": null}, "macro.dbt.replace": {"name": "replace", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/replace.sql", "original_file_path": "macros/utils/replace.sql", "unique_id": "macro.dbt.replace", "macro_sql": "{% macro replace(field, old_chars, new_chars) -%}\n {{ return(adapter.dispatch('replace', 'dbt') (field, old_chars, new_chars)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__replace"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.8716018, "supported_languages": null}, "macro.dbt.default__replace": {"name": "default__replace", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/replace.sql", "original_file_path": "macros/utils/replace.sql", "unique_id": "macro.dbt.default__replace", "macro_sql": "{% macro default__replace(field, old_chars, new_chars) %}\n\n replace(\n {{ field }},\n {{ old_chars }},\n {{ new_chars }}\n )\n\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.871845, "supported_languages": null}, "macro.dbt.concat": {"name": "concat", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/concat.sql", "original_file_path": "macros/utils/concat.sql", "unique_id": "macro.dbt.concat", "macro_sql": "{% macro concat(fields) -%}\n {{ return(adapter.dispatch('concat', 'dbt')(fields)) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt.default__concat"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.8721302, "supported_languages": null}, "macro.dbt.default__concat": {"name": "default__concat", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/concat.sql", "original_file_path": "macros/utils/concat.sql", "unique_id": "macro.dbt.default__concat", "macro_sql": "{% macro default__concat(fields) -%}\n {{ fields|join(' || ') }}\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.872313, "supported_languages": null}, "macro.dbt.get_powers_of_two": {"name": "get_powers_of_two", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/generate_series.sql", "original_file_path": "macros/utils/generate_series.sql", "unique_id": "macro.dbt.get_powers_of_two", "macro_sql": "{% macro get_powers_of_two(upper_bound) %}\n {{ return(adapter.dispatch('get_powers_of_two', 'dbt')(upper_bound)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__get_powers_of_two"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.8731031, "supported_languages": null}, "macro.dbt.default__get_powers_of_two": {"name": "default__get_powers_of_two", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/generate_series.sql", "original_file_path": "macros/utils/generate_series.sql", "unique_id": "macro.dbt.default__get_powers_of_two", "macro_sql": "{% macro default__get_powers_of_two(upper_bound) %}\n\n {% if upper_bound <= 0 %}\n {{ exceptions.raise_compiler_error(\"upper bound must be positive\") }}\n {% endif %}\n\n {% for _ in range(1, 100) %}\n {% if upper_bound <= 2 ** loop.index %}{{ return(loop.index) }}{% endif %}\n {% endfor %}\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.873496, "supported_languages": null}, "macro.dbt.generate_series": {"name": "generate_series", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/generate_series.sql", "original_file_path": "macros/utils/generate_series.sql", "unique_id": "macro.dbt.generate_series", "macro_sql": "{% macro generate_series(upper_bound) %}\n {{ return(adapter.dispatch('generate_series', 'dbt')(upper_bound)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__generate_series"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.873675, "supported_languages": null}, "macro.dbt.default__generate_series": {"name": "default__generate_series", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/generate_series.sql", "original_file_path": "macros/utils/generate_series.sql", "unique_id": "macro.dbt.default__generate_series", "macro_sql": "{% macro default__generate_series(upper_bound) %}\n\n {% set n = dbt.get_powers_of_two(upper_bound) %}\n\n with p as (\n select 0 as generated_number union all select 1\n ), unioned as (\n\n select\n\n {% for i in range(n) %}\n p{{i}}.generated_number * power(2, {{i}})\n {% if not loop.last %} + {% endif %}\n {% endfor %}\n + 1\n as generated_number\n\n from\n\n {% for i in range(n) %}\n p as p{{i}}\n {% if not loop.last %} cross join {% endif %}\n {% endfor %}\n\n )\n\n select *\n from unioned\n where generated_number <= {{upper_bound}}\n order by generated_number\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.get_powers_of_two"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.874145, "supported_languages": null}, "macro.dbt.length": {"name": "length", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/length.sql", "original_file_path": "macros/utils/length.sql", "unique_id": "macro.dbt.length", "macro_sql": "{% macro length(expression) -%}\n {{ return(adapter.dispatch('length', 'dbt') (expression)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__length"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.874381, "supported_languages": null}, "macro.dbt.default__length": {"name": "default__length", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/length.sql", "original_file_path": "macros/utils/length.sql", "unique_id": "macro.dbt.default__length", "macro_sql": "{% macro default__length(expression) %}\n\n length(\n {{ expression }}\n )\n\n{%- endmacro -%}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.8744829, "supported_languages": null}, "macro.dbt.dateadd": {"name": "dateadd", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/dateadd.sql", "original_file_path": "macros/utils/dateadd.sql", "unique_id": "macro.dbt.dateadd", "macro_sql": "{% macro dateadd(datepart, interval, from_date_or_timestamp) %}\n {{ return(adapter.dispatch('dateadd', 'dbt')(datepart, interval, from_date_or_timestamp)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_postgres.postgres__dateadd"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.8747861, "supported_languages": null}, "macro.dbt.default__dateadd": {"name": "default__dateadd", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/dateadd.sql", "original_file_path": "macros/utils/dateadd.sql", "unique_id": "macro.dbt.default__dateadd", "macro_sql": "{% macro default__dateadd(datepart, interval, from_date_or_timestamp) %}\n\n dateadd(\n {{ datepart }},\n {{ interval }},\n {{ from_date_or_timestamp }}\n )\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.874939, "supported_languages": null}, "macro.dbt.intersect": {"name": "intersect", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/intersect.sql", "original_file_path": "macros/utils/intersect.sql", "unique_id": "macro.dbt.intersect", "macro_sql": "{% macro intersect() %}\n {{ return(adapter.dispatch('intersect', 'dbt')()) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__intersect"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.8751411, "supported_languages": null}, "macro.dbt.default__intersect": {"name": "default__intersect", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/intersect.sql", "original_file_path": "macros/utils/intersect.sql", "unique_id": "macro.dbt.default__intersect", "macro_sql": "{% macro default__intersect() %}\n\n intersect\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.87536, "supported_languages": null}, "macro.dbt.escape_single_quotes": {"name": "escape_single_quotes", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/escape_single_quotes.sql", "original_file_path": "macros/utils/escape_single_quotes.sql", "unique_id": "macro.dbt.escape_single_quotes", "macro_sql": "{% macro escape_single_quotes(expression) %}\n {{ return(adapter.dispatch('escape_single_quotes', 'dbt') (expression)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__escape_single_quotes"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.875656, "supported_languages": null}, "macro.dbt.default__escape_single_quotes": {"name": "default__escape_single_quotes", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/escape_single_quotes.sql", "original_file_path": "macros/utils/escape_single_quotes.sql", "unique_id": "macro.dbt.default__escape_single_quotes", "macro_sql": "{% macro default__escape_single_quotes(expression) -%}\n{{ expression | replace(\"'\",\"''\") }}\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.8757892, "supported_languages": null}, "macro.dbt.right": {"name": "right", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/right.sql", "original_file_path": "macros/utils/right.sql", "unique_id": "macro.dbt.right", "macro_sql": "{% macro right(string_text, length_expression) -%}\n {{ return(adapter.dispatch('right', 'dbt') (string_text, length_expression)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__right"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.876076, "supported_languages": null}, "macro.dbt.default__right": {"name": "default__right", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/right.sql", "original_file_path": "macros/utils/right.sql", "unique_id": "macro.dbt.default__right", "macro_sql": "{% macro default__right(string_text, length_expression) %}\n\n right(\n {{ string_text }},\n {{ length_expression }}\n )\n\n{%- endmacro -%}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.8762171, "supported_languages": null}, "macro.dbt.listagg": {"name": "listagg", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/listagg.sql", "original_file_path": "macros/utils/listagg.sql", "unique_id": "macro.dbt.listagg", "macro_sql": "{% macro listagg(measure, delimiter_text=\"','\", order_by_clause=none, limit_num=none) -%}\n {{ return(adapter.dispatch('listagg', 'dbt') (measure, delimiter_text, order_by_clause, limit_num)) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt_postgres.postgres__listagg"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.876809, "supported_languages": null}, "macro.dbt.default__listagg": {"name": "default__listagg", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/listagg.sql", "original_file_path": "macros/utils/listagg.sql", "unique_id": "macro.dbt.default__listagg", "macro_sql": "{% macro default__listagg(measure, delimiter_text, order_by_clause, limit_num) -%}\n\n {% if limit_num -%}\n array_to_string(\n array_slice(\n array_agg(\n {{ measure }}\n ){% if order_by_clause -%}\n within group ({{ order_by_clause }})\n {%- endif %}\n ,0\n ,{{ limit_num }}\n ),\n {{ delimiter_text }}\n )\n {%- else %}\n listagg(\n {{ measure }},\n {{ delimiter_text }}\n )\n {% if order_by_clause -%}\n within group ({{ order_by_clause }})\n {%- endif %}\n {%- endif %}\n\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.877311, "supported_languages": null}, "macro.dbt.datediff": {"name": "datediff", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/datediff.sql", "original_file_path": "macros/utils/datediff.sql", "unique_id": "macro.dbt.datediff", "macro_sql": "{% macro datediff(first_date, second_date, datepart) %}\n {{ return(adapter.dispatch('datediff', 'dbt')(first_date, second_date, datepart)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_postgres.postgres__datediff"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.877704, "supported_languages": null}, "macro.dbt.default__datediff": {"name": "default__datediff", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/datediff.sql", "original_file_path": "macros/utils/datediff.sql", "unique_id": "macro.dbt.default__datediff", "macro_sql": "{% macro default__datediff(first_date, second_date, datepart) -%}\n\n datediff(\n {{ datepart }},\n {{ first_date }},\n {{ second_date }}\n )\n\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.877865, "supported_languages": null}, "macro.dbt.safe_cast": {"name": "safe_cast", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/safe_cast.sql", "original_file_path": "macros/utils/safe_cast.sql", "unique_id": "macro.dbt.safe_cast", "macro_sql": "{% macro safe_cast(field, type) %}\n {{ return(adapter.dispatch('safe_cast', 'dbt') (field, type)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__safe_cast"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.878145, "supported_languages": null}, "macro.dbt.default__safe_cast": {"name": "default__safe_cast", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/safe_cast.sql", "original_file_path": "macros/utils/safe_cast.sql", "unique_id": "macro.dbt.default__safe_cast", "macro_sql": "{% macro default__safe_cast(field, type) %}\n {# most databases don't support this function yet\n so we just need to use cast #}\n cast({{field}} as {{type}})\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.8782861, "supported_languages": null}, "macro.dbt.hash": {"name": "hash", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/hash.sql", "original_file_path": "macros/utils/hash.sql", "unique_id": "macro.dbt.hash", "macro_sql": "{% macro hash(field) -%}\n {{ return(adapter.dispatch('hash', 'dbt') (field)) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt.default__hash"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.8785238, "supported_languages": null}, "macro.dbt.default__hash": {"name": "default__hash", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/hash.sql", "original_file_path": "macros/utils/hash.sql", "unique_id": "macro.dbt.default__hash", "macro_sql": "{% macro default__hash(field) -%}\n md5(cast({{ field }} as {{ api.Column.translate_type('string') }}))\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.8786728, "supported_languages": null}, "macro.dbt.cast_bool_to_text": {"name": "cast_bool_to_text", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/cast_bool_to_text.sql", "original_file_path": "macros/utils/cast_bool_to_text.sql", "unique_id": "macro.dbt.cast_bool_to_text", "macro_sql": "{% macro cast_bool_to_text(field) %}\n {{ adapter.dispatch('cast_bool_to_text', 'dbt') (field) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__cast_bool_to_text"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.879019, "supported_languages": null}, "macro.dbt.default__cast_bool_to_text": {"name": "default__cast_bool_to_text", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/cast_bool_to_text.sql", "original_file_path": "macros/utils/cast_bool_to_text.sql", "unique_id": "macro.dbt.default__cast_bool_to_text", "macro_sql": "{% macro default__cast_bool_to_text(field) %}\n cast({{ field }} as {{ api.Column.translate_type('string') }})\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.8793359, "supported_languages": null}, "macro.dbt.any_value": {"name": "any_value", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/any_value.sql", "original_file_path": "macros/utils/any_value.sql", "unique_id": "macro.dbt.any_value", "macro_sql": "{% macro any_value(expression) -%}\n {{ return(adapter.dispatch('any_value', 'dbt') (expression)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_postgres.postgres__any_value"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.879717, "supported_languages": null}, "macro.dbt.default__any_value": {"name": "default__any_value", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/any_value.sql", "original_file_path": "macros/utils/any_value.sql", "unique_id": "macro.dbt.default__any_value", "macro_sql": "{% macro default__any_value(expression) -%}\n\n any_value({{ expression }})\n\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.8798451, "supported_languages": null}, "macro.dbt.position": {"name": "position", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/position.sql", "original_file_path": "macros/utils/position.sql", "unique_id": "macro.dbt.position", "macro_sql": "{% macro position(substring_text, string_text) -%}\n {{ return(adapter.dispatch('position', 'dbt') (substring_text, string_text)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__position"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.880141, "supported_languages": null}, "macro.dbt.default__position": {"name": "default__position", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/position.sql", "original_file_path": "macros/utils/position.sql", "unique_id": "macro.dbt.default__position", "macro_sql": "{% macro default__position(substring_text, string_text) %}\n\n position(\n {{ substring_text }} in {{ string_text }}\n )\n\n{%- endmacro -%}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.8802729, "supported_languages": null}, "macro.dbt.string_literal": {"name": "string_literal", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/literal.sql", "original_file_path": "macros/utils/literal.sql", "unique_id": "macro.dbt.string_literal", "macro_sql": "{%- macro string_literal(value) -%}\n {{ return(adapter.dispatch('string_literal', 'dbt') (value)) }}\n{%- endmacro -%}\n\n", "depends_on": {"macros": ["macro.dbt.default__string_literal"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.880503, "supported_languages": null}, "macro.dbt.default__string_literal": {"name": "default__string_literal", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/literal.sql", "original_file_path": "macros/utils/literal.sql", "unique_id": "macro.dbt.default__string_literal", "macro_sql": "{% macro default__string_literal(value) -%}\n '{{ value }}'\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.880707, "supported_languages": null}, "macro.dbt.type_string": {"name": "type_string", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/data_types.sql", "original_file_path": "macros/utils/data_types.sql", "unique_id": "macro.dbt.type_string", "macro_sql": "\n\n{%- macro type_string() -%}\n {{ return(adapter.dispatch('type_string', 'dbt')()) }}\n{%- endmacro -%}\n\n", "depends_on": {"macros": ["macro.dbt.default__type_string"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.8815382, "supported_languages": null}, "macro.dbt.default__type_string": {"name": "default__type_string", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/data_types.sql", "original_file_path": "macros/utils/data_types.sql", "unique_id": "macro.dbt.default__type_string", "macro_sql": "{% macro default__type_string() %}\n {{ return(api.Column.translate_type(\"string\")) }}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.881678, "supported_languages": null}, "macro.dbt.type_timestamp": {"name": "type_timestamp", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/data_types.sql", "original_file_path": "macros/utils/data_types.sql", "unique_id": "macro.dbt.type_timestamp", "macro_sql": "\n\n{%- macro type_timestamp() -%}\n {{ return(adapter.dispatch('type_timestamp', 'dbt')()) }}\n{%- endmacro -%}\n\n", "depends_on": {"macros": ["macro.dbt.default__type_timestamp"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.881824, "supported_languages": null}, "macro.dbt.default__type_timestamp": {"name": "default__type_timestamp", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/data_types.sql", "original_file_path": "macros/utils/data_types.sql", "unique_id": "macro.dbt.default__type_timestamp", "macro_sql": "{% macro default__type_timestamp() %}\n {{ return(api.Column.translate_type(\"timestamp\")) }}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.881966, "supported_languages": null}, "macro.dbt.type_float": {"name": "type_float", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/data_types.sql", "original_file_path": "macros/utils/data_types.sql", "unique_id": "macro.dbt.type_float", "macro_sql": "\n\n{%- macro type_float() -%}\n {{ return(adapter.dispatch('type_float', 'dbt')()) }}\n{%- endmacro -%}\n\n", "depends_on": {"macros": ["macro.dbt.default__type_float"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.8821151, "supported_languages": null}, "macro.dbt.default__type_float": {"name": "default__type_float", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/data_types.sql", "original_file_path": "macros/utils/data_types.sql", "unique_id": "macro.dbt.default__type_float", "macro_sql": "{% macro default__type_float() %}\n {{ return(api.Column.translate_type(\"float\")) }}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.882251, "supported_languages": null}, "macro.dbt.type_numeric": {"name": "type_numeric", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/data_types.sql", "original_file_path": "macros/utils/data_types.sql", "unique_id": "macro.dbt.type_numeric", "macro_sql": "\n\n{%- macro type_numeric() -%}\n {{ return(adapter.dispatch('type_numeric', 'dbt')()) }}\n{%- endmacro -%}\n\n", "depends_on": {"macros": ["macro.dbt.default__type_numeric"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.8823948, "supported_languages": null}, "macro.dbt.default__type_numeric": {"name": "default__type_numeric", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/data_types.sql", "original_file_path": "macros/utils/data_types.sql", "unique_id": "macro.dbt.default__type_numeric", "macro_sql": "{% macro default__type_numeric() %}\n {{ return(api.Column.numeric_type(\"numeric\", 28, 6)) }}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.88256, "supported_languages": null}, "macro.dbt.type_bigint": {"name": "type_bigint", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/data_types.sql", "original_file_path": "macros/utils/data_types.sql", "unique_id": "macro.dbt.type_bigint", "macro_sql": "\n\n{%- macro type_bigint() -%}\n {{ return(adapter.dispatch('type_bigint', 'dbt')()) }}\n{%- endmacro -%}\n\n", "depends_on": {"macros": ["macro.dbt.default__type_bigint"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.8827038, "supported_languages": null}, "macro.dbt.default__type_bigint": {"name": "default__type_bigint", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/data_types.sql", "original_file_path": "macros/utils/data_types.sql", "unique_id": "macro.dbt.default__type_bigint", "macro_sql": "{% macro default__type_bigint() %}\n {{ return(api.Column.translate_type(\"bigint\")) }}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.882841, "supported_languages": null}, "macro.dbt.type_int": {"name": "type_int", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/data_types.sql", "original_file_path": "macros/utils/data_types.sql", "unique_id": "macro.dbt.type_int", "macro_sql": "\n\n{%- macro type_int() -%}\n {{ return(adapter.dispatch('type_int', 'dbt')()) }}\n{%- endmacro -%}\n\n", "depends_on": {"macros": ["macro.dbt.default__type_int"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.882986, "supported_languages": null}, "macro.dbt.default__type_int": {"name": "default__type_int", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/data_types.sql", "original_file_path": "macros/utils/data_types.sql", "unique_id": "macro.dbt.default__type_int", "macro_sql": "{%- macro default__type_int() -%}\n {{ return(api.Column.translate_type(\"integer\")) }}\n{%- endmacro -%}\n\n", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.883117, "supported_languages": null}, "macro.dbt.type_boolean": {"name": "type_boolean", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/data_types.sql", "original_file_path": "macros/utils/data_types.sql", "unique_id": "macro.dbt.type_boolean", "macro_sql": "\n\n{%- macro type_boolean() -%}\n {{ return(adapter.dispatch('type_boolean', 'dbt')()) }}\n{%- endmacro -%}\n\n", "depends_on": {"macros": ["macro.dbt.default__type_boolean"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.883262, "supported_languages": null}, "macro.dbt.default__type_boolean": {"name": "default__type_boolean", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/data_types.sql", "original_file_path": "macros/utils/data_types.sql", "unique_id": "macro.dbt.default__type_boolean", "macro_sql": "{%- macro default__type_boolean() -%}\n {{ return(api.Column.translate_type(\"boolean\")) }}\n{%- endmacro -%}\n\n", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.8833878, "supported_languages": null}, "macro.dbt.array_concat": {"name": "array_concat", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/array_concat.sql", "original_file_path": "macros/utils/array_concat.sql", "unique_id": "macro.dbt.array_concat", "macro_sql": "{% macro array_concat(array_1, array_2) -%}\n {{ return(adapter.dispatch('array_concat', 'dbt')(array_1, array_2)) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt.default__array_concat"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.88364, "supported_languages": null}, "macro.dbt.default__array_concat": {"name": "default__array_concat", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/array_concat.sql", "original_file_path": "macros/utils/array_concat.sql", "unique_id": "macro.dbt.default__array_concat", "macro_sql": "{% macro default__array_concat(array_1, array_2) -%}\n array_cat({{ array_1 }}, {{ array_2 }})\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.883758, "supported_languages": null}, "macro.dbt.bool_or": {"name": "bool_or", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/bool_or.sql", "original_file_path": "macros/utils/bool_or.sql", "unique_id": "macro.dbt.bool_or", "macro_sql": "{% macro bool_or(expression) -%}\n {{ return(adapter.dispatch('bool_or', 'dbt') (expression)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__bool_or"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.883981, "supported_languages": null}, "macro.dbt.default__bool_or": {"name": "default__bool_or", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/bool_or.sql", "original_file_path": "macros/utils/bool_or.sql", "unique_id": "macro.dbt.default__bool_or", "macro_sql": "{% macro default__bool_or(expression) -%}\n\n bool_or({{ expression }})\n\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.884075, "supported_languages": null}, "macro.dbt.last_day": {"name": "last_day", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/last_day.sql", "original_file_path": "macros/utils/last_day.sql", "unique_id": "macro.dbt.last_day", "macro_sql": "{% macro last_day(date, datepart) %}\n {{ return(adapter.dispatch('last_day', 'dbt') (date, datepart)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_postgres.postgres__last_day"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.884435, "supported_languages": null}, "macro.dbt.default_last_day": {"name": "default_last_day", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/last_day.sql", "original_file_path": "macros/utils/last_day.sql", "unique_id": "macro.dbt.default_last_day", "macro_sql": "\n\n{%- macro default_last_day(date, datepart) -%}\n cast(\n {{dbt.dateadd('day', '-1',\n dbt.dateadd(datepart, '1', dbt.date_trunc(datepart, date))\n )}}\n as date)\n{%- endmacro -%}\n\n", "depends_on": {"macros": ["macro.dbt.dateadd", "macro.dbt.date_trunc"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.88468, "supported_languages": null}, "macro.dbt.default__last_day": {"name": "default__last_day", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/last_day.sql", "original_file_path": "macros/utils/last_day.sql", "unique_id": "macro.dbt.default__last_day", "macro_sql": "{% macro default__last_day(date, datepart) -%}\n {{dbt.default_last_day(date, datepart)}}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt.default_last_day"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.884816, "supported_languages": null}, "macro.dbt.split_part": {"name": "split_part", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/split_part.sql", "original_file_path": "macros/utils/split_part.sql", "unique_id": "macro.dbt.split_part", "macro_sql": "{% macro split_part(string_text, delimiter_text, part_number) %}\n {{ return(adapter.dispatch('split_part', 'dbt') (string_text, delimiter_text, part_number)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_postgres.postgres__split_part"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.885288, "supported_languages": null}, "macro.dbt.default__split_part": {"name": "default__split_part", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/split_part.sql", "original_file_path": "macros/utils/split_part.sql", "unique_id": "macro.dbt.default__split_part", "macro_sql": "{% macro default__split_part(string_text, delimiter_text, part_number) %}\n\n split_part(\n {{ string_text }},\n {{ delimiter_text }},\n {{ part_number }}\n )\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.8854358, "supported_languages": null}, "macro.dbt._split_part_negative": {"name": "_split_part_negative", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/split_part.sql", "original_file_path": "macros/utils/split_part.sql", "unique_id": "macro.dbt._split_part_negative", "macro_sql": "{% macro _split_part_negative(string_text, delimiter_text, part_number) %}\n\n split_part(\n {{ string_text }},\n {{ delimiter_text }},\n length({{ string_text }})\n - length(\n replace({{ string_text }}, {{ delimiter_text }}, '')\n ) + 2 + {{ part_number }}\n )\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.885638, "supported_languages": null}, "macro.dbt.date_trunc": {"name": "date_trunc", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/date_trunc.sql", "original_file_path": "macros/utils/date_trunc.sql", "unique_id": "macro.dbt.date_trunc", "macro_sql": "{% macro date_trunc(datepart, date) -%}\n {{ return(adapter.dispatch('date_trunc', 'dbt') (datepart, date)) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt.default__date_trunc"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.885886, "supported_languages": null}, "macro.dbt.default__date_trunc": {"name": "default__date_trunc", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/date_trunc.sql", "original_file_path": "macros/utils/date_trunc.sql", "unique_id": "macro.dbt.default__date_trunc", "macro_sql": "{% macro default__date_trunc(datepart, date) -%}\n date_trunc('{{datepart}}', {{date}})\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.886006, "supported_languages": null}, "macro.dbt.array_construct": {"name": "array_construct", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/array_construct.sql", "original_file_path": "macros/utils/array_construct.sql", "unique_id": "macro.dbt.array_construct", "macro_sql": "{% macro array_construct(inputs=[], data_type=api.Column.translate_type('integer')) -%}\n {{ return(adapter.dispatch('array_construct', 'dbt')(inputs, data_type)) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt.default__array_construct"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.8863502, "supported_languages": null}, "macro.dbt.default__array_construct": {"name": "default__array_construct", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/array_construct.sql", "original_file_path": "macros/utils/array_construct.sql", "unique_id": "macro.dbt.default__array_construct", "macro_sql": "{% macro default__array_construct(inputs, data_type) -%}\n {% if inputs|length > 0 %}\n array[ {{ inputs|join(' , ') }} ]\n {% else %}\n array[]::{{data_type}}[]\n {% endif %}\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.886583, "supported_languages": null}, "macro.dbt.array_append": {"name": "array_append", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/array_append.sql", "original_file_path": "macros/utils/array_append.sql", "unique_id": "macro.dbt.array_append", "macro_sql": "{% macro array_append(array, new_element) -%}\n {{ return(adapter.dispatch('array_append', 'dbt')(array, new_element)) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt.default__array_append"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.88684, "supported_languages": null}, "macro.dbt.default__array_append": {"name": "default__array_append", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/array_append.sql", "original_file_path": "macros/utils/array_append.sql", "unique_id": "macro.dbt.default__array_append", "macro_sql": "{% macro default__array_append(array, new_element) -%}\n array_append({{ array }}, {{ new_element }})\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.8870459, "supported_languages": null}, "macro.dbt.create_schema": {"name": "create_schema", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/schema.sql", "original_file_path": "macros/adapters/schema.sql", "unique_id": "macro.dbt.create_schema", "macro_sql": "{% macro create_schema(relation) -%}\n {{ adapter.dispatch('create_schema', 'dbt')(relation) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_postgres.postgres__create_schema"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.887421, "supported_languages": null}, "macro.dbt.default__create_schema": {"name": "default__create_schema", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/schema.sql", "original_file_path": "macros/adapters/schema.sql", "unique_id": "macro.dbt.default__create_schema", "macro_sql": "{% macro default__create_schema(relation) -%}\n {%- call statement('create_schema') -%}\n create schema if not exists {{ relation.without_identifier() }}\n {% endcall %}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.statement"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.8875961, "supported_languages": null}, "macro.dbt.drop_schema": {"name": "drop_schema", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/schema.sql", "original_file_path": "macros/adapters/schema.sql", "unique_id": "macro.dbt.drop_schema", "macro_sql": "{% macro drop_schema(relation) -%}\n {{ adapter.dispatch('drop_schema', 'dbt')(relation) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_postgres.postgres__drop_schema"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.88775, "supported_languages": null}, "macro.dbt.default__drop_schema": {"name": "default__drop_schema", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/schema.sql", "original_file_path": "macros/adapters/schema.sql", "unique_id": "macro.dbt.default__drop_schema", "macro_sql": "{% macro default__drop_schema(relation) -%}\n {%- call statement('drop_schema') -%}\n drop schema if exists {{ relation.without_identifier() }} cascade\n {% endcall %}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.statement"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.887914, "supported_languages": null}, "macro.dbt.current_timestamp": {"name": "current_timestamp", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/timestamps.sql", "original_file_path": "macros/adapters/timestamps.sql", "unique_id": "macro.dbt.current_timestamp", "macro_sql": "{%- macro current_timestamp() -%}\n {{ adapter.dispatch('current_timestamp', 'dbt')() }}\n{%- endmacro -%}\n\n", "depends_on": {"macros": ["macro.dbt_postgres.postgres__current_timestamp"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.888504, "supported_languages": null}, "macro.dbt.default__current_timestamp": {"name": "default__current_timestamp", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/timestamps.sql", "original_file_path": "macros/adapters/timestamps.sql", "unique_id": "macro.dbt.default__current_timestamp", "macro_sql": "{% macro default__current_timestamp() -%}\n {{ exceptions.raise_not_implemented(\n 'current_timestamp macro not implemented for adapter ' + adapter.type()) }}\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.888663, "supported_languages": null}, "macro.dbt.snapshot_get_time": {"name": "snapshot_get_time", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/timestamps.sql", "original_file_path": "macros/adapters/timestamps.sql", "unique_id": "macro.dbt.snapshot_get_time", "macro_sql": "\n\n{%- macro snapshot_get_time() -%}\n {{ adapter.dispatch('snapshot_get_time', 'dbt')() }}\n{%- endmacro -%}\n\n", "depends_on": {"macros": ["macro.dbt_postgres.postgres__snapshot_get_time"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.888802, "supported_languages": null}, "macro.dbt.default__snapshot_get_time": {"name": "default__snapshot_get_time", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/timestamps.sql", "original_file_path": "macros/adapters/timestamps.sql", "unique_id": "macro.dbt.default__snapshot_get_time", "macro_sql": "{% macro default__snapshot_get_time() %}\n {{ current_timestamp() }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.current_timestamp"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.8889, "supported_languages": null}, "macro.dbt.current_timestamp_backcompat": {"name": "current_timestamp_backcompat", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/timestamps.sql", "original_file_path": "macros/adapters/timestamps.sql", "unique_id": "macro.dbt.current_timestamp_backcompat", "macro_sql": "{% macro current_timestamp_backcompat() %}\n {{ return(adapter.dispatch('current_timestamp_backcompat', 'dbt')()) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_postgres.postgres__current_timestamp_backcompat"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.8891468, "supported_languages": null}, "macro.dbt.default__current_timestamp_backcompat": {"name": "default__current_timestamp_backcompat", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/timestamps.sql", "original_file_path": "macros/adapters/timestamps.sql", "unique_id": "macro.dbt.default__current_timestamp_backcompat", "macro_sql": "{% macro default__current_timestamp_backcompat() %}\n current_timestamp::timestamp\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.8892229, "supported_languages": null}, "macro.dbt.current_timestamp_in_utc_backcompat": {"name": "current_timestamp_in_utc_backcompat", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/timestamps.sql", "original_file_path": "macros/adapters/timestamps.sql", "unique_id": "macro.dbt.current_timestamp_in_utc_backcompat", "macro_sql": "{% macro current_timestamp_in_utc_backcompat() %}\n {{ return(adapter.dispatch('current_timestamp_in_utc_backcompat', 'dbt')()) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_postgres.postgres__current_timestamp_in_utc_backcompat"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.889375, "supported_languages": null}, "macro.dbt.default__current_timestamp_in_utc_backcompat": {"name": "default__current_timestamp_in_utc_backcompat", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/timestamps.sql", "original_file_path": "macros/adapters/timestamps.sql", "unique_id": "macro.dbt.default__current_timestamp_in_utc_backcompat", "macro_sql": "{% macro default__current_timestamp_in_utc_backcompat() %}\n {{ return(adapter.dispatch('current_timestamp_backcompat', 'dbt')()) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.current_timestamp_backcompat", "macro.dbt_postgres.postgres__current_timestamp_backcompat"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.8895302, "supported_languages": null}, "macro.dbt.get_create_index_sql": {"name": "get_create_index_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/indexes.sql", "original_file_path": "macros/adapters/indexes.sql", "unique_id": "macro.dbt.get_create_index_sql", "macro_sql": "{% macro get_create_index_sql(relation, index_dict) -%}\n {{ return(adapter.dispatch('get_create_index_sql', 'dbt')(relation, index_dict)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_postgres.postgres__get_create_index_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.890288, "supported_languages": null}, "macro.dbt.default__get_create_index_sql": {"name": "default__get_create_index_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/indexes.sql", "original_file_path": "macros/adapters/indexes.sql", "unique_id": "macro.dbt.default__get_create_index_sql", "macro_sql": "{% macro default__get_create_index_sql(relation, index_dict) -%}\n {% do return(None) %}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.890424, "supported_languages": null}, "macro.dbt.create_indexes": {"name": "create_indexes", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/indexes.sql", "original_file_path": "macros/adapters/indexes.sql", "unique_id": "macro.dbt.create_indexes", "macro_sql": "{% macro create_indexes(relation) -%}\n {{ adapter.dispatch('create_indexes', 'dbt')(relation) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt.default__create_indexes"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.890573, "supported_languages": null}, "macro.dbt.default__create_indexes": {"name": "default__create_indexes", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/indexes.sql", "original_file_path": "macros/adapters/indexes.sql", "unique_id": "macro.dbt.default__create_indexes", "macro_sql": "{% macro default__create_indexes(relation) -%}\n {%- set _indexes = config.get('indexes', default=[]) -%}\n\n {% for _index_dict in _indexes %}\n {% set create_index_sql = get_create_index_sql(relation, _index_dict) %}\n {% if create_index_sql %}\n {% do run_query(create_index_sql) %}\n {% endif %}\n {% endfor %}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.get_create_index_sql", "macro.dbt.run_query"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.8909361, "supported_languages": null}, "macro.dbt.get_drop_index_sql": {"name": "get_drop_index_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/indexes.sql", "original_file_path": "macros/adapters/indexes.sql", "unique_id": "macro.dbt.get_drop_index_sql", "macro_sql": "{% macro get_drop_index_sql(relation, index_name) -%}\n {{ adapter.dispatch('get_drop_index_sql', 'dbt')(relation, index_name) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt_postgres.postgres__get_drop_index_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.891103, "supported_languages": null}, "macro.dbt.default__get_drop_index_sql": {"name": "default__get_drop_index_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/indexes.sql", "original_file_path": "macros/adapters/indexes.sql", "unique_id": "macro.dbt.default__get_drop_index_sql", "macro_sql": "{% macro default__get_drop_index_sql(relation, index_name) -%}\n {{ exceptions.raise_compiler_error(\"`get_drop_index_sql has not been implemented for this adapter.\") }}\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.8912268, "supported_languages": null}, "macro.dbt.get_show_indexes_sql": {"name": "get_show_indexes_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/indexes.sql", "original_file_path": "macros/adapters/indexes.sql", "unique_id": "macro.dbt.get_show_indexes_sql", "macro_sql": "{% macro get_show_indexes_sql(relation) -%}\n {{ adapter.dispatch('get_show_indexes_sql', 'dbt')(relation) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt_postgres.postgres__get_show_indexes_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.891365, "supported_languages": null}, "macro.dbt.default__get_show_indexes_sql": {"name": "default__get_show_indexes_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/indexes.sql", "original_file_path": "macros/adapters/indexes.sql", "unique_id": "macro.dbt.default__get_show_indexes_sql", "macro_sql": "{% macro default__get_show_indexes_sql(relation) -%}\n {{ exceptions.raise_compiler_error(\"`get_show_indexes_sql has not been implemented for this adapter.\") }}\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.891476, "supported_languages": null}, "macro.dbt.make_intermediate_relation": {"name": "make_intermediate_relation", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/relation.sql", "original_file_path": "macros/adapters/relation.sql", "unique_id": "macro.dbt.make_intermediate_relation", "macro_sql": "{% macro make_intermediate_relation(base_relation, suffix='__dbt_tmp') %}\n {{ return(adapter.dispatch('make_intermediate_relation', 'dbt')(base_relation, suffix)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_postgres.postgres__make_intermediate_relation"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.893165, "supported_languages": null}, "macro.dbt.default__make_intermediate_relation": {"name": "default__make_intermediate_relation", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/relation.sql", "original_file_path": "macros/adapters/relation.sql", "unique_id": "macro.dbt.default__make_intermediate_relation", "macro_sql": "{% macro default__make_intermediate_relation(base_relation, suffix) %}\n {{ return(default__make_temp_relation(base_relation, suffix)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__make_temp_relation"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.893316, "supported_languages": null}, "macro.dbt.make_temp_relation": {"name": "make_temp_relation", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/relation.sql", "original_file_path": "macros/adapters/relation.sql", "unique_id": "macro.dbt.make_temp_relation", "macro_sql": "{% macro make_temp_relation(base_relation, suffix='__dbt_tmp') %}\n {{ return(adapter.dispatch('make_temp_relation', 'dbt')(base_relation, suffix)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_postgres.postgres__make_temp_relation"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.893512, "supported_languages": null}, "macro.dbt.default__make_temp_relation": {"name": "default__make_temp_relation", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/relation.sql", "original_file_path": "macros/adapters/relation.sql", "unique_id": "macro.dbt.default__make_temp_relation", "macro_sql": "{% macro default__make_temp_relation(base_relation, suffix) %}\n {%- set temp_identifier = base_relation.identifier ~ suffix -%}\n {%- set temp_relation = base_relation.incorporate(\n path={\"identifier\": temp_identifier}) -%}\n\n {{ return(temp_relation) }}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.894017, "supported_languages": null}, "macro.dbt.make_backup_relation": {"name": "make_backup_relation", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/relation.sql", "original_file_path": "macros/adapters/relation.sql", "unique_id": "macro.dbt.make_backup_relation", "macro_sql": "{% macro make_backup_relation(base_relation, backup_relation_type, suffix='__dbt_backup') %}\n {{ return(adapter.dispatch('make_backup_relation', 'dbt')(base_relation, backup_relation_type, suffix)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_postgres.postgres__make_backup_relation"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.894251, "supported_languages": null}, "macro.dbt.default__make_backup_relation": {"name": "default__make_backup_relation", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/relation.sql", "original_file_path": "macros/adapters/relation.sql", "unique_id": "macro.dbt.default__make_backup_relation", "macro_sql": "{% macro default__make_backup_relation(base_relation, backup_relation_type, suffix) %}\n {%- set backup_identifier = base_relation.identifier ~ suffix -%}\n {%- set backup_relation = base_relation.incorporate(\n path={\"identifier\": backup_identifier},\n type=backup_relation_type\n ) -%}\n {{ return(backup_relation) }}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.894542, "supported_languages": null}, "macro.dbt.truncate_relation": {"name": "truncate_relation", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/relation.sql", "original_file_path": "macros/adapters/relation.sql", "unique_id": "macro.dbt.truncate_relation", "macro_sql": "{% macro truncate_relation(relation) -%}\n {{ return(adapter.dispatch('truncate_relation', 'dbt')(relation)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__truncate_relation"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.894717, "supported_languages": null}, "macro.dbt.default__truncate_relation": {"name": "default__truncate_relation", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/relation.sql", "original_file_path": "macros/adapters/relation.sql", "unique_id": "macro.dbt.default__truncate_relation", "macro_sql": "{% macro default__truncate_relation(relation) -%}\n {% call statement('truncate_relation') -%}\n truncate table {{ relation }}\n {%- endcall %}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.statement"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.8949518, "supported_languages": null}, "macro.dbt.get_or_create_relation": {"name": "get_or_create_relation", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/relation.sql", "original_file_path": "macros/adapters/relation.sql", "unique_id": "macro.dbt.get_or_create_relation", "macro_sql": "{% macro get_or_create_relation(database, schema, identifier, type) -%}\n {{ return(adapter.dispatch('get_or_create_relation', 'dbt')(database, schema, identifier, type)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__get_or_create_relation"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.895191, "supported_languages": null}, "macro.dbt.default__get_or_create_relation": {"name": "default__get_or_create_relation", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/relation.sql", "original_file_path": "macros/adapters/relation.sql", "unique_id": "macro.dbt.default__get_or_create_relation", "macro_sql": "{% macro default__get_or_create_relation(database, schema, identifier, type) %}\n {%- set target_relation = adapter.get_relation(database=database, schema=schema, identifier=identifier) %}\n\n {% if target_relation %}\n {% do return([true, target_relation]) %}\n {% endif %}\n\n {%- set new_relation = api.Relation.create(\n database=database,\n schema=schema,\n identifier=identifier,\n type=type\n ) -%}\n {% do return([false, new_relation]) %}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.895823, "supported_languages": null}, "macro.dbt.load_cached_relation": {"name": "load_cached_relation", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/relation.sql", "original_file_path": "macros/adapters/relation.sql", "unique_id": "macro.dbt.load_cached_relation", "macro_sql": "{% macro load_cached_relation(relation) %}\n {% do return(adapter.get_relation(\n database=relation.database,\n schema=relation.schema,\n identifier=relation.identifier\n )) -%}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.8962078, "supported_languages": null}, "macro.dbt.load_relation": {"name": "load_relation", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/relation.sql", "original_file_path": "macros/adapters/relation.sql", "unique_id": "macro.dbt.load_relation", "macro_sql": "{% macro load_relation(relation) %}\n {{ return(load_cached_relation(relation)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.load_cached_relation"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.896362, "supported_languages": null}, "macro.dbt.collect_freshness": {"name": "collect_freshness", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/freshness.sql", "original_file_path": "macros/adapters/freshness.sql", "unique_id": "macro.dbt.collect_freshness", "macro_sql": "{% macro collect_freshness(source, loaded_at_field, filter) %}\n {{ return(adapter.dispatch('collect_freshness', 'dbt')(source, loaded_at_field, filter))}}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__collect_freshness"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.8967822, "supported_languages": null}, "macro.dbt.default__collect_freshness": {"name": "default__collect_freshness", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/freshness.sql", "original_file_path": "macros/adapters/freshness.sql", "unique_id": "macro.dbt.default__collect_freshness", "macro_sql": "{% macro default__collect_freshness(source, loaded_at_field, filter) %}\n {% call statement('collect_freshness', fetch_result=True, auto_begin=False) -%}\n select\n max({{ loaded_at_field }}) as max_loaded_at,\n {{ current_timestamp() }} as snapshotted_at\n from {{ source }}\n {% if filter %}\n where {{ filter }}\n {% endif %}\n {% endcall %}\n {{ return(load_result('collect_freshness')) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.statement", "macro.dbt.current_timestamp"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.8971672, "supported_languages": null}, "macro.dbt.validate_sql": {"name": "validate_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/validate_sql.sql", "original_file_path": "macros/adapters/validate_sql.sql", "unique_id": "macro.dbt.validate_sql", "macro_sql": "{% macro validate_sql(sql) -%}\n {{ return(adapter.dispatch('validate_sql', 'dbt')(sql)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__validate_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.89753, "supported_languages": null}, "macro.dbt.default__validate_sql": {"name": "default__validate_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/validate_sql.sql", "original_file_path": "macros/adapters/validate_sql.sql", "unique_id": "macro.dbt.default__validate_sql", "macro_sql": "{% macro default__validate_sql(sql) -%}\n {% call statement('validate_sql') -%}\n explain {{ sql }}\n {% endcall %}\n {{ return(load_result('validate_sql')) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.statement"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.897835, "supported_languages": null}, "macro.dbt.copy_grants": {"name": "copy_grants", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/apply_grants.sql", "original_file_path": "macros/adapters/apply_grants.sql", "unique_id": "macro.dbt.copy_grants", "macro_sql": "{% macro copy_grants() %}\n {{ return(adapter.dispatch('copy_grants', 'dbt')()) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_postgres.postgres__copy_grants"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.899446, "supported_languages": null}, "macro.dbt.default__copy_grants": {"name": "default__copy_grants", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/apply_grants.sql", "original_file_path": "macros/adapters/apply_grants.sql", "unique_id": "macro.dbt.default__copy_grants", "macro_sql": "{% macro default__copy_grants() %}\n {{ return(True) }}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.899571, "supported_languages": null}, "macro.dbt.support_multiple_grantees_per_dcl_statement": {"name": "support_multiple_grantees_per_dcl_statement", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/apply_grants.sql", "original_file_path": "macros/adapters/apply_grants.sql", "unique_id": "macro.dbt.support_multiple_grantees_per_dcl_statement", "macro_sql": "{% macro support_multiple_grantees_per_dcl_statement() %}\n {{ return(adapter.dispatch('support_multiple_grantees_per_dcl_statement', 'dbt')()) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__support_multiple_grantees_per_dcl_statement"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.899733, "supported_languages": null}, "macro.dbt.default__support_multiple_grantees_per_dcl_statement": {"name": "default__support_multiple_grantees_per_dcl_statement", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/apply_grants.sql", "original_file_path": "macros/adapters/apply_grants.sql", "unique_id": "macro.dbt.default__support_multiple_grantees_per_dcl_statement", "macro_sql": "\n\n{%- macro default__support_multiple_grantees_per_dcl_statement() -%}\n {{ return(True) }}\n{%- endmacro -%}\n\n\n", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.89984, "supported_languages": null}, "macro.dbt.should_revoke": {"name": "should_revoke", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/apply_grants.sql", "original_file_path": "macros/adapters/apply_grants.sql", "unique_id": "macro.dbt.should_revoke", "macro_sql": "{% macro should_revoke(existing_relation, full_refresh_mode=True) %}\n\n {% if not existing_relation %}\n {#-- The table doesn't already exist, so no grants to copy over --#}\n {{ return(False) }}\n {% elif full_refresh_mode %}\n {#-- The object is being REPLACED -- whether grants are copied over depends on the value of user config --#}\n {{ return(copy_grants()) }}\n {% else %}\n {#-- The table is being merged/upserted/inserted -- grants will be carried over --#}\n {{ return(True) }}\n {% endif %}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.copy_grants"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.9001532, "supported_languages": null}, "macro.dbt.get_show_grant_sql": {"name": "get_show_grant_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/apply_grants.sql", "original_file_path": "macros/adapters/apply_grants.sql", "unique_id": "macro.dbt.get_show_grant_sql", "macro_sql": "{% macro get_show_grant_sql(relation) %}\n {{ return(adapter.dispatch(\"get_show_grant_sql\", \"dbt\")(relation)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_postgres.postgres__get_show_grant_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.9003332, "supported_languages": null}, "macro.dbt.default__get_show_grant_sql": {"name": "default__get_show_grant_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/apply_grants.sql", "original_file_path": "macros/adapters/apply_grants.sql", "unique_id": "macro.dbt.default__get_show_grant_sql", "macro_sql": "{% macro default__get_show_grant_sql(relation) %}\n show grants on {{ relation }}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.900428, "supported_languages": null}, "macro.dbt.get_grant_sql": {"name": "get_grant_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/apply_grants.sql", "original_file_path": "macros/adapters/apply_grants.sql", "unique_id": "macro.dbt.get_grant_sql", "macro_sql": "{% macro get_grant_sql(relation, privilege, grantees) %}\n {{ return(adapter.dispatch('get_grant_sql', 'dbt')(relation, privilege, grantees)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__get_grant_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.9006479, "supported_languages": null}, "macro.dbt.default__get_grant_sql": {"name": "default__get_grant_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/apply_grants.sql", "original_file_path": "macros/adapters/apply_grants.sql", "unique_id": "macro.dbt.default__get_grant_sql", "macro_sql": "\n\n{%- macro default__get_grant_sql(relation, privilege, grantees) -%}\n grant {{ privilege }} on {{ relation }} to {{ grantees | join(', ') }}\n{%- endmacro -%}\n\n\n", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.900838, "supported_languages": null}, "macro.dbt.get_revoke_sql": {"name": "get_revoke_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/apply_grants.sql", "original_file_path": "macros/adapters/apply_grants.sql", "unique_id": "macro.dbt.get_revoke_sql", "macro_sql": "{% macro get_revoke_sql(relation, privilege, grantees) %}\n {{ return(adapter.dispatch('get_revoke_sql', 'dbt')(relation, privilege, grantees)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__get_revoke_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.9010491, "supported_languages": null}, "macro.dbt.default__get_revoke_sql": {"name": "default__get_revoke_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/apply_grants.sql", "original_file_path": "macros/adapters/apply_grants.sql", "unique_id": "macro.dbt.default__get_revoke_sql", "macro_sql": "\n\n{%- macro default__get_revoke_sql(relation, privilege, grantees) -%}\n revoke {{ privilege }} on {{ relation }} from {{ grantees | join(', ') }}\n{%- endmacro -%}\n\n\n", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.9013288, "supported_languages": null}, "macro.dbt.get_dcl_statement_list": {"name": "get_dcl_statement_list", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/apply_grants.sql", "original_file_path": "macros/adapters/apply_grants.sql", "unique_id": "macro.dbt.get_dcl_statement_list", "macro_sql": "{% macro get_dcl_statement_list(relation, grant_config, get_dcl_macro) %}\n {{ return(adapter.dispatch('get_dcl_statement_list', 'dbt')(relation, grant_config, get_dcl_macro)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__get_dcl_statement_list"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.9015522, "supported_languages": null}, "macro.dbt.default__get_dcl_statement_list": {"name": "default__get_dcl_statement_list", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/apply_grants.sql", "original_file_path": "macros/adapters/apply_grants.sql", "unique_id": "macro.dbt.default__get_dcl_statement_list", "macro_sql": "\n\n{%- macro default__get_dcl_statement_list(relation, grant_config, get_dcl_macro) -%}\n {#\n -- Unpack grant_config into specific privileges and the set of users who need them granted/revoked.\n -- Depending on whether this database supports multiple grantees per statement, pass in the list of\n -- all grantees per privilege, or (if not) template one statement per privilege-grantee pair.\n -- `get_dcl_macro` will be either `get_grant_sql` or `get_revoke_sql`\n #}\n {%- set dcl_statements = [] -%}\n {%- for privilege, grantees in grant_config.items() %}\n {%- if support_multiple_grantees_per_dcl_statement() and grantees -%}\n {%- set dcl = get_dcl_macro(relation, privilege, grantees) -%}\n {%- do dcl_statements.append(dcl) -%}\n {%- else -%}\n {%- for grantee in grantees -%}\n {% set dcl = get_dcl_macro(relation, privilege, [grantee]) %}\n {%- do dcl_statements.append(dcl) -%}\n {% endfor -%}\n {%- endif -%}\n {%- endfor -%}\n {{ return(dcl_statements) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt.support_multiple_grantees_per_dcl_statement"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.902255, "supported_languages": null}, "macro.dbt.call_dcl_statements": {"name": "call_dcl_statements", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/apply_grants.sql", "original_file_path": "macros/adapters/apply_grants.sql", "unique_id": "macro.dbt.call_dcl_statements", "macro_sql": "{% macro call_dcl_statements(dcl_statement_list) %}\n {{ return(adapter.dispatch(\"call_dcl_statements\", \"dbt\")(dcl_statement_list)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__call_dcl_statements"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.9024808, "supported_languages": null}, "macro.dbt.default__call_dcl_statements": {"name": "default__call_dcl_statements", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/apply_grants.sql", "original_file_path": "macros/adapters/apply_grants.sql", "unique_id": "macro.dbt.default__call_dcl_statements", "macro_sql": "{% macro default__call_dcl_statements(dcl_statement_list) %}\n {#\n -- By default, supply all grant + revoke statements in a single semicolon-separated block,\n -- so that they're all processed together.\n\n -- Some databases do not support this. Those adapters will need to override this macro\n -- to run each statement individually.\n #}\n {% call statement('grants') %}\n {% for dcl_statement in dcl_statement_list %}\n {{ dcl_statement }};\n {% endfor %}\n {% endcall %}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.statement"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.90272, "supported_languages": null}, "macro.dbt.apply_grants": {"name": "apply_grants", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/apply_grants.sql", "original_file_path": "macros/adapters/apply_grants.sql", "unique_id": "macro.dbt.apply_grants", "macro_sql": "{% macro apply_grants(relation, grant_config, should_revoke) %}\n {{ return(adapter.dispatch(\"apply_grants\", \"dbt\")(relation, grant_config, should_revoke)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__apply_grants"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.902946, "supported_languages": null}, "macro.dbt.default__apply_grants": {"name": "default__apply_grants", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/apply_grants.sql", "original_file_path": "macros/adapters/apply_grants.sql", "unique_id": "macro.dbt.default__apply_grants", "macro_sql": "{% macro default__apply_grants(relation, grant_config, should_revoke=True) %}\n {#-- If grant_config is {} or None, this is a no-op --#}\n {% if grant_config %}\n {% if should_revoke %}\n {#-- We think previous grants may have carried over --#}\n {#-- Show current grants and calculate diffs --#}\n {% set current_grants_table = run_query(get_show_grant_sql(relation)) %}\n {% set current_grants_dict = adapter.standardize_grants_dict(current_grants_table) %}\n {% set needs_granting = diff_of_two_dicts(grant_config, current_grants_dict) %}\n {% set needs_revoking = diff_of_two_dicts(current_grants_dict, grant_config) %}\n {% if not (needs_granting or needs_revoking) %}\n {{ log('On ' ~ relation ~': All grants are in place, no revocation or granting needed.')}}\n {% endif %}\n {% else %}\n {#-- We don't think there's any chance of previous grants having carried over. --#}\n {#-- Jump straight to granting what the user has configured. --#}\n {% set needs_revoking = {} %}\n {% set needs_granting = grant_config %}\n {% endif %}\n {% if needs_granting or needs_revoking %}\n {% set revoke_statement_list = get_dcl_statement_list(relation, needs_revoking, get_revoke_sql) %}\n {% set grant_statement_list = get_dcl_statement_list(relation, needs_granting, get_grant_sql) %}\n {% set dcl_statement_list = revoke_statement_list + grant_statement_list %}\n {% if dcl_statement_list %}\n {{ call_dcl_statements(dcl_statement_list) }}\n {% endif %}\n {% endif %}\n {% endif %}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.run_query", "macro.dbt.get_show_grant_sql", "macro.dbt.get_dcl_statement_list", "macro.dbt.call_dcl_statements"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.904067, "supported_languages": null}, "macro.dbt.get_show_sql": {"name": "get_show_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/show.sql", "original_file_path": "macros/adapters/show.sql", "unique_id": "macro.dbt.get_show_sql", "macro_sql": "{% macro get_show_sql(compiled_code, sql_header, limit) -%}\n {%- if sql_header -%}\n {{ sql_header }}\n {%- endif -%}\n {%- if limit is not none -%}\n {{ get_limit_subquery_sql(compiled_code, limit) }}\n {%- else -%}\n {{ compiled_code }}\n {%- endif -%}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.get_limit_subquery_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.904665, "supported_languages": null}, "macro.dbt.get_limit_subquery_sql": {"name": "get_limit_subquery_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/show.sql", "original_file_path": "macros/adapters/show.sql", "unique_id": "macro.dbt.get_limit_subquery_sql", "macro_sql": "{% macro get_limit_subquery_sql(sql, limit) %}\n {{ adapter.dispatch('get_limit_subquery_sql', 'dbt')(sql, limit) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__get_limit_subquery_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.904861, "supported_languages": null}, "macro.dbt.default__get_limit_subquery_sql": {"name": "default__get_limit_subquery_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/show.sql", "original_file_path": "macros/adapters/show.sql", "unique_id": "macro.dbt.default__get_limit_subquery_sql", "macro_sql": "{% macro default__get_limit_subquery_sql(sql, limit) %}\n select *\n from (\n {{ sql }}\n ) as model_limit_subq\n limit {{ limit }}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.9049978, "supported_languages": null}, "macro.dbt.alter_column_comment": {"name": "alter_column_comment", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/persist_docs.sql", "original_file_path": "macros/adapters/persist_docs.sql", "unique_id": "macro.dbt.alter_column_comment", "macro_sql": "{% macro alter_column_comment(relation, column_dict) -%}\n {{ return(adapter.dispatch('alter_column_comment', 'dbt')(relation, column_dict)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_postgres.postgres__alter_column_comment"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.905748, "supported_languages": null}, "macro.dbt.default__alter_column_comment": {"name": "default__alter_column_comment", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/persist_docs.sql", "original_file_path": "macros/adapters/persist_docs.sql", "unique_id": "macro.dbt.default__alter_column_comment", "macro_sql": "{% macro default__alter_column_comment(relation, column_dict) -%}\n {{ exceptions.raise_not_implemented(\n 'alter_column_comment macro not implemented for adapter '+adapter.type()) }}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.905904, "supported_languages": null}, "macro.dbt.alter_relation_comment": {"name": "alter_relation_comment", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/persist_docs.sql", "original_file_path": "macros/adapters/persist_docs.sql", "unique_id": "macro.dbt.alter_relation_comment", "macro_sql": "{% macro alter_relation_comment(relation, relation_comment) -%}\n {{ return(adapter.dispatch('alter_relation_comment', 'dbt')(relation, relation_comment)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_postgres.postgres__alter_relation_comment"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.906092, "supported_languages": null}, "macro.dbt.default__alter_relation_comment": {"name": "default__alter_relation_comment", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/persist_docs.sql", "original_file_path": "macros/adapters/persist_docs.sql", "unique_id": "macro.dbt.default__alter_relation_comment", "macro_sql": "{% macro default__alter_relation_comment(relation, relation_comment) -%}\n {{ exceptions.raise_not_implemented(\n 'alter_relation_comment macro not implemented for adapter '+adapter.type()) }}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.906243, "supported_languages": null}, "macro.dbt.persist_docs": {"name": "persist_docs", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/persist_docs.sql", "original_file_path": "macros/adapters/persist_docs.sql", "unique_id": "macro.dbt.persist_docs", "macro_sql": "{% macro persist_docs(relation, model, for_relation=true, for_columns=true) -%}\n {{ return(adapter.dispatch('persist_docs', 'dbt')(relation, model, for_relation, for_columns)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__persist_docs"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.906485, "supported_languages": null}, "macro.dbt.default__persist_docs": {"name": "default__persist_docs", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/persist_docs.sql", "original_file_path": "macros/adapters/persist_docs.sql", "unique_id": "macro.dbt.default__persist_docs", "macro_sql": "{% macro default__persist_docs(relation, model, for_relation, for_columns) -%}\n {% if for_relation and config.persist_relation_docs() and model.description %}\n {% do run_query(alter_relation_comment(relation, model.description)) %}\n {% endif %}\n\n {% if for_columns and config.persist_column_docs() and model.columns %}\n {% do run_query(alter_column_comment(relation, model.columns)) %}\n {% endif %}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.run_query", "macro.dbt.alter_relation_comment", "macro.dbt.alter_column_comment"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.906909, "supported_languages": null}, "macro.dbt.get_catalog_relations": {"name": "get_catalog_relations", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/metadata.sql", "original_file_path": "macros/adapters/metadata.sql", "unique_id": "macro.dbt.get_catalog_relations", "macro_sql": "{% macro get_catalog_relations(information_schema, relations) -%}\n {{ return(adapter.dispatch('get_catalog_relations', 'dbt')(information_schema, relations)) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt_postgres.postgres__get_catalog_relations"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.909564, "supported_languages": null}, "macro.dbt.default__get_catalog_relations": {"name": "default__get_catalog_relations", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/metadata.sql", "original_file_path": "macros/adapters/metadata.sql", "unique_id": "macro.dbt.default__get_catalog_relations", "macro_sql": "{% macro default__get_catalog_relations(information_schema, relations) -%}\n {% set typename = adapter.type() %}\n {% set msg -%}\n get_catalog_relations not implemented for {{ typename }}\n {%- endset %}\n\n {{ exceptions.raise_compiler_error(msg) }}\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.9098098, "supported_languages": null}, "macro.dbt.get_catalog": {"name": "get_catalog", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/metadata.sql", "original_file_path": "macros/adapters/metadata.sql", "unique_id": "macro.dbt.get_catalog", "macro_sql": "{% macro get_catalog(information_schema, schemas) -%}\n {{ return(adapter.dispatch('get_catalog', 'dbt')(information_schema, schemas)) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt_postgres.postgres__get_catalog"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.910007, "supported_languages": null}, "macro.dbt.default__get_catalog": {"name": "default__get_catalog", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/metadata.sql", "original_file_path": "macros/adapters/metadata.sql", "unique_id": "macro.dbt.default__get_catalog", "macro_sql": "{% macro default__get_catalog(information_schema, schemas) -%}\n\n {% set typename = adapter.type() %}\n {% set msg -%}\n get_catalog not implemented for {{ typename }}\n {%- endset %}\n\n {{ exceptions.raise_compiler_error(msg) }}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.910339, "supported_languages": null}, "macro.dbt.information_schema_name": {"name": "information_schema_name", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/metadata.sql", "original_file_path": "macros/adapters/metadata.sql", "unique_id": "macro.dbt.information_schema_name", "macro_sql": "{% macro information_schema_name(database) %}\n {{ return(adapter.dispatch('information_schema_name', 'dbt')(database)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_postgres.postgres__information_schema_name"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.9105139, "supported_languages": null}, "macro.dbt.default__information_schema_name": {"name": "default__information_schema_name", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/metadata.sql", "original_file_path": "macros/adapters/metadata.sql", "unique_id": "macro.dbt.default__information_schema_name", "macro_sql": "{% macro default__information_schema_name(database) -%}\n {%- if database -%}\n {{ database }}.INFORMATION_SCHEMA\n {%- else -%}\n INFORMATION_SCHEMA\n {%- endif -%}\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.910656, "supported_languages": null}, "macro.dbt.list_schemas": {"name": "list_schemas", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/metadata.sql", "original_file_path": "macros/adapters/metadata.sql", "unique_id": "macro.dbt.list_schemas", "macro_sql": "{% macro list_schemas(database) -%}\n {{ return(adapter.dispatch('list_schemas', 'dbt')(database)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_postgres.postgres__list_schemas"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.910822, "supported_languages": null}, "macro.dbt.default__list_schemas": {"name": "default__list_schemas", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/metadata.sql", "original_file_path": "macros/adapters/metadata.sql", "unique_id": "macro.dbt.default__list_schemas", "macro_sql": "{% macro default__list_schemas(database) -%}\n {% set sql %}\n select distinct schema_name\n from {{ information_schema_name(database) }}.SCHEMATA\n where catalog_name ilike '{{ database }}'\n {% endset %}\n {{ return(run_query(sql)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.information_schema_name", "macro.dbt.run_query"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.911048, "supported_languages": null}, "macro.dbt.check_schema_exists": {"name": "check_schema_exists", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/metadata.sql", "original_file_path": "macros/adapters/metadata.sql", "unique_id": "macro.dbt.check_schema_exists", "macro_sql": "{% macro check_schema_exists(information_schema, schema) -%}\n {{ return(adapter.dispatch('check_schema_exists', 'dbt')(information_schema, schema)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_postgres.postgres__check_schema_exists"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.911245, "supported_languages": null}, "macro.dbt.default__check_schema_exists": {"name": "default__check_schema_exists", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/metadata.sql", "original_file_path": "macros/adapters/metadata.sql", "unique_id": "macro.dbt.default__check_schema_exists", "macro_sql": "{% macro default__check_schema_exists(information_schema, schema) -%}\n {% set sql -%}\n select count(*)\n from {{ information_schema.replace(information_schema_view='SCHEMATA') }}\n where catalog_name='{{ information_schema.database }}'\n and schema_name='{{ schema }}'\n {%- endset %}\n {{ return(run_query(sql)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.replace", "macro.dbt.run_query"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.911521, "supported_languages": null}, "macro.dbt.list_relations_without_caching": {"name": "list_relations_without_caching", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/metadata.sql", "original_file_path": "macros/adapters/metadata.sql", "unique_id": "macro.dbt.list_relations_without_caching", "macro_sql": "{% macro list_relations_without_caching(schema_relation) %}\n {{ return(adapter.dispatch('list_relations_without_caching', 'dbt')(schema_relation)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_postgres.postgres__list_relations_without_caching"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.91169, "supported_languages": null}, "macro.dbt.default__list_relations_without_caching": {"name": "default__list_relations_without_caching", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/metadata.sql", "original_file_path": "macros/adapters/metadata.sql", "unique_id": "macro.dbt.default__list_relations_without_caching", "macro_sql": "{% macro default__list_relations_without_caching(schema_relation) %}\n {{ exceptions.raise_not_implemented(\n 'list_relations_without_caching macro not implemented for adapter '+adapter.type()) }}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.911835, "supported_languages": null}, "macro.dbt.get_relations": {"name": "get_relations", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/metadata.sql", "original_file_path": "macros/adapters/metadata.sql", "unique_id": "macro.dbt.get_relations", "macro_sql": "{% macro get_relations() %}\n {{ return(adapter.dispatch('get_relations', 'dbt')()) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_postgres.postgres__get_relations"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.911988, "supported_languages": null}, "macro.dbt.default__get_relations": {"name": "default__get_relations", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/metadata.sql", "original_file_path": "macros/adapters/metadata.sql", "unique_id": "macro.dbt.default__get_relations", "macro_sql": "{% macro default__get_relations() %}\n {{ exceptions.raise_not_implemented(\n 'get_relations macro not implemented for adapter '+adapter.type()) }}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.912135, "supported_languages": null}, "macro.dbt.get_relation_last_modified": {"name": "get_relation_last_modified", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/metadata.sql", "original_file_path": "macros/adapters/metadata.sql", "unique_id": "macro.dbt.get_relation_last_modified", "macro_sql": "{% macro get_relation_last_modified(information_schema, relations) %}\n {{ return(adapter.dispatch('get_relation_last_modified', 'dbt')(information_schema, relations)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__get_relation_last_modified"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.9123242, "supported_languages": null}, "macro.dbt.default__get_relation_last_modified": {"name": "default__get_relation_last_modified", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/metadata.sql", "original_file_path": "macros/adapters/metadata.sql", "unique_id": "macro.dbt.default__get_relation_last_modified", "macro_sql": "{% macro default__get_relation_last_modified(information_schema, relations) %}\n {{ exceptions.raise_not_implemented(\n 'get_relation_last_modified macro not implemented for adapter ' + adapter.type()) }}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.912478, "supported_languages": null}, "macro.dbt.get_columns_in_relation": {"name": "get_columns_in_relation", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/columns.sql", "original_file_path": "macros/adapters/columns.sql", "unique_id": "macro.dbt.get_columns_in_relation", "macro_sql": "{% macro get_columns_in_relation(relation) -%}\n {{ return(adapter.dispatch('get_columns_in_relation', 'dbt')(relation)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_postgres.postgres__get_columns_in_relation"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.914453, "supported_languages": null}, "macro.dbt.default__get_columns_in_relation": {"name": "default__get_columns_in_relation", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/columns.sql", "original_file_path": "macros/adapters/columns.sql", "unique_id": "macro.dbt.default__get_columns_in_relation", "macro_sql": "{% macro default__get_columns_in_relation(relation) -%}\n {{ exceptions.raise_not_implemented(\n 'get_columns_in_relation macro not implemented for adapter '+adapter.type()) }}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.914597, "supported_languages": null}, "macro.dbt.sql_convert_columns_in_relation": {"name": "sql_convert_columns_in_relation", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/columns.sql", "original_file_path": "macros/adapters/columns.sql", "unique_id": "macro.dbt.sql_convert_columns_in_relation", "macro_sql": "{% macro sql_convert_columns_in_relation(table) -%}\n {% set columns = [] %}\n {% for row in table %}\n {% do columns.append(api.Column(*row)) %}\n {% endfor %}\n {{ return(columns) }}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.9148722, "supported_languages": null}, "macro.dbt.get_empty_subquery_sql": {"name": "get_empty_subquery_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/columns.sql", "original_file_path": "macros/adapters/columns.sql", "unique_id": "macro.dbt.get_empty_subquery_sql", "macro_sql": "{% macro get_empty_subquery_sql(select_sql, select_sql_header=none) -%}\n {{ return(adapter.dispatch('get_empty_subquery_sql', 'dbt')(select_sql, select_sql_header)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__get_empty_subquery_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.915072, "supported_languages": null}, "macro.dbt.default__get_empty_subquery_sql": {"name": "default__get_empty_subquery_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/columns.sql", "original_file_path": "macros/adapters/columns.sql", "unique_id": "macro.dbt.default__get_empty_subquery_sql", "macro_sql": "{% macro default__get_empty_subquery_sql(select_sql, select_sql_header=none) %}\n {%- if select_sql_header is not none -%}\n {{ select_sql_header }}\n {%- endif -%}\n select * from (\n {{ select_sql }}\n ) as __dbt_sbq\n where false\n limit 0\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.915256, "supported_languages": null}, "macro.dbt.get_empty_schema_sql": {"name": "get_empty_schema_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/columns.sql", "original_file_path": "macros/adapters/columns.sql", "unique_id": "macro.dbt.get_empty_schema_sql", "macro_sql": "{% macro get_empty_schema_sql(columns) -%}\n {{ return(adapter.dispatch('get_empty_schema_sql', 'dbt')(columns)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__get_empty_schema_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.915413, "supported_languages": null}, "macro.dbt.default__get_empty_schema_sql": {"name": "default__get_empty_schema_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/columns.sql", "original_file_path": "macros/adapters/columns.sql", "unique_id": "macro.dbt.default__get_empty_schema_sql", "macro_sql": "{% macro default__get_empty_schema_sql(columns) %}\n {%- set col_err = [] -%}\n {%- set col_naked_numeric = [] -%}\n select\n {% for i in columns %}\n {%- set col = columns[i] -%}\n {%- if col['data_type'] is not defined -%}\n {%- do col_err.append(col['name']) -%}\n {#-- If this column's type is just 'numeric' then it is missing precision/scale, raise a warning --#}\n {%- elif col['data_type'].strip().lower() in ('numeric', 'decimal', 'number') -%}\n {%- do col_naked_numeric.append(col['name']) -%}\n {%- endif -%}\n {% set col_name = adapter.quote(col['name']) if col.get('quote') else col['name'] %}\n cast(null as {{ col['data_type'] }}) as {{ col_name }}{{ \", \" if not loop.last }}\n {%- endfor -%}\n {%- if (col_err | length) > 0 -%}\n {{ exceptions.column_type_missing(column_names=col_err) }}\n {%- elif (col_naked_numeric | length) > 0 -%}\n {{ exceptions.warn(\"Detected columns with numeric type and unspecified precision/scale, this can lead to unintended rounding: \" ~ col_naked_numeric ~ \"`\") }}\n {%- endif -%}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.9165409, "supported_languages": null}, "macro.dbt.get_column_schema_from_query": {"name": "get_column_schema_from_query", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/columns.sql", "original_file_path": "macros/adapters/columns.sql", "unique_id": "macro.dbt.get_column_schema_from_query", "macro_sql": "{% macro get_column_schema_from_query(select_sql, select_sql_header=none) -%}\n {% set columns = [] %}\n {# -- Using an 'empty subquery' here to get the same schema as the given select_sql statement, without necessitating a data scan.#}\n {% set sql = get_empty_subquery_sql(select_sql, select_sql_header) %}\n {% set column_schema = adapter.get_column_schema_from_query(sql) %}\n {{ return(column_schema) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.get_empty_subquery_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.916853, "supported_languages": null}, "macro.dbt.get_columns_in_query": {"name": "get_columns_in_query", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/columns.sql", "original_file_path": "macros/adapters/columns.sql", "unique_id": "macro.dbt.get_columns_in_query", "macro_sql": "{% macro get_columns_in_query(select_sql) -%}\n {{ return(adapter.dispatch('get_columns_in_query', 'dbt')(select_sql)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__get_columns_in_query"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.917017, "supported_languages": null}, "macro.dbt.default__get_columns_in_query": {"name": "default__get_columns_in_query", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/columns.sql", "original_file_path": "macros/adapters/columns.sql", "unique_id": "macro.dbt.default__get_columns_in_query", "macro_sql": "{% macro default__get_columns_in_query(select_sql) %}\n {% call statement('get_columns_in_query', fetch_result=True, auto_begin=False) -%}\n {{ get_empty_subquery_sql(select_sql) }}\n {% endcall %}\n {{ return(load_result('get_columns_in_query').table.columns | map(attribute='name') | list) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.statement", "macro.dbt.get_empty_subquery_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.917324, "supported_languages": null}, "macro.dbt.alter_column_type": {"name": "alter_column_type", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/columns.sql", "original_file_path": "macros/adapters/columns.sql", "unique_id": "macro.dbt.alter_column_type", "macro_sql": "{% macro alter_column_type(relation, column_name, new_column_type) -%}\n {{ return(adapter.dispatch('alter_column_type', 'dbt')(relation, column_name, new_column_type)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__alter_column_type"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.917671, "supported_languages": null}, "macro.dbt.default__alter_column_type": {"name": "default__alter_column_type", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/columns.sql", "original_file_path": "macros/adapters/columns.sql", "unique_id": "macro.dbt.default__alter_column_type", "macro_sql": "{% macro default__alter_column_type(relation, column_name, new_column_type) -%}\n {#\n 1. Create a new column (w/ temp name and correct type)\n 2. Copy data over to it\n 3. Drop the existing column (cascade!)\n 4. Rename the new column to existing column\n #}\n {%- set tmp_column = column_name + \"__dbt_alter\" -%}\n\n {% call statement('alter_column_type') %}\n alter table {{ relation }} add column {{ adapter.quote(tmp_column) }} {{ new_column_type }};\n update {{ relation }} set {{ adapter.quote(tmp_column) }} = {{ adapter.quote(column_name) }};\n alter table {{ relation }} drop column {{ adapter.quote(column_name) }} cascade;\n alter table {{ relation }} rename column {{ adapter.quote(tmp_column) }} to {{ adapter.quote(column_name) }}\n {% endcall %}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.statement"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.918329, "supported_languages": null}, "macro.dbt.alter_relation_add_remove_columns": {"name": "alter_relation_add_remove_columns", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/columns.sql", "original_file_path": "macros/adapters/columns.sql", "unique_id": "macro.dbt.alter_relation_add_remove_columns", "macro_sql": "{% macro alter_relation_add_remove_columns(relation, add_columns = none, remove_columns = none) -%}\n {{ return(adapter.dispatch('alter_relation_add_remove_columns', 'dbt')(relation, add_columns, remove_columns)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__alter_relation_add_remove_columns"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.918646, "supported_languages": null}, "macro.dbt.default__alter_relation_add_remove_columns": {"name": "default__alter_relation_add_remove_columns", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/columns.sql", "original_file_path": "macros/adapters/columns.sql", "unique_id": "macro.dbt.default__alter_relation_add_remove_columns", "macro_sql": "{% macro default__alter_relation_add_remove_columns(relation, add_columns, remove_columns) %}\n\n {% if add_columns is none %}\n {% set add_columns = [] %}\n {% endif %}\n {% if remove_columns is none %}\n {% set remove_columns = [] %}\n {% endif %}\n\n {% set sql -%}\n\n alter {{ relation.type }} {{ relation }}\n\n {% for column in add_columns %}\n add column {{ column.name }} {{ column.data_type }}{{ ',' if not loop.last }}\n {% endfor %}{{ ',' if add_columns and remove_columns }}\n\n {% for column in remove_columns %}\n drop column {{ column.name }}{{ ',' if not loop.last }}\n {% endfor %}\n\n {%- endset -%}\n\n {% do run_query(sql) %}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.run_query"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.919452, "supported_languages": null}, "macro.dbt.resolve_model_name": {"name": "resolve_model_name", "resource_type": "macro", "package_name": "dbt", "path": "macros/python_model/python.sql", "original_file_path": "macros/python_model/python.sql", "unique_id": "macro.dbt.resolve_model_name", "macro_sql": "{% macro resolve_model_name(input_model_name) %}\n {{ return(adapter.dispatch('resolve_model_name', 'dbt')(input_model_name)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__resolve_model_name"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.921103, "supported_languages": null}, "macro.dbt.default__resolve_model_name": {"name": "default__resolve_model_name", "resource_type": "macro", "package_name": "dbt", "path": "macros/python_model/python.sql", "original_file_path": "macros/python_model/python.sql", "unique_id": "macro.dbt.default__resolve_model_name", "macro_sql": "\n\n{%- macro default__resolve_model_name(input_model_name) -%}\n {{ input_model_name | string | replace('\"', '\\\"') }}\n{%- endmacro -%}\n\n", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.921265, "supported_languages": null}, "macro.dbt.build_ref_function": {"name": "build_ref_function", "resource_type": "macro", "package_name": "dbt", "path": "macros/python_model/python.sql", "original_file_path": "macros/python_model/python.sql", "unique_id": "macro.dbt.build_ref_function", "macro_sql": "{% macro build_ref_function(model) %}\n\n {%- set ref_dict = {} -%}\n {%- for _ref in model.refs -%}\n {% set _ref_args = [_ref.get('package'), _ref['name']] if _ref.get('package') else [_ref['name'],] %}\n {%- set resolved = ref(*_ref_args, v=_ref.get('version')) -%}\n {%- if _ref.get('version') -%}\n {% do _ref_args.extend([\"v\" ~ _ref['version']]) %}\n {%- endif -%}\n {%- do ref_dict.update({_ref_args | join('.'): resolve_model_name(resolved)}) -%}\n {%- endfor -%}\n\ndef ref(*args, **kwargs):\n refs = {{ ref_dict | tojson }}\n key = '.'.join(args)\n version = kwargs.get(\"v\") or kwargs.get(\"version\")\n if version:\n key += f\".v{version}\"\n dbt_load_df_function = kwargs.get(\"dbt_load_df_function\")\n return dbt_load_df_function(refs[key])\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.resolve_model_name"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.92207, "supported_languages": null}, "macro.dbt.build_source_function": {"name": "build_source_function", "resource_type": "macro", "package_name": "dbt", "path": "macros/python_model/python.sql", "original_file_path": "macros/python_model/python.sql", "unique_id": "macro.dbt.build_source_function", "macro_sql": "{% macro build_source_function(model) %}\n\n {%- set source_dict = {} -%}\n {%- for _source in model.sources -%}\n {%- set resolved = source(*_source) -%}\n {%- do source_dict.update({_source | join('.'): resolve_model_name(resolved)}) -%}\n {%- endfor -%}\n\ndef source(*args, dbt_load_df_function):\n sources = {{ source_dict | tojson }}\n key = '.'.join(args)\n return dbt_load_df_function(sources[key])\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.resolve_model_name"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.922461, "supported_languages": null}, "macro.dbt.build_config_dict": {"name": "build_config_dict", "resource_type": "macro", "package_name": "dbt", "path": "macros/python_model/python.sql", "original_file_path": "macros/python_model/python.sql", "unique_id": "macro.dbt.build_config_dict", "macro_sql": "{% macro build_config_dict(model) %}\n {%- set config_dict = {} -%}\n {% set config_dbt_used = zip(model.config.config_keys_used, model.config.config_keys_defaults) | list %}\n {%- for key, default in config_dbt_used -%}\n {# weird type testing with enum, would be much easier to write this logic in Python! #}\n {%- if key == \"language\" -%}\n {%- set value = \"python\" -%}\n {%- endif -%}\n {%- set value = model.config.get(key, default) -%}\n {%- do config_dict.update({key: value}) -%}\n {%- endfor -%}\nconfig_dict = {{ config_dict }}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.922991, "supported_languages": null}, "macro.dbt.py_script_postfix": {"name": "py_script_postfix", "resource_type": "macro", "package_name": "dbt", "path": "macros/python_model/python.sql", "original_file_path": "macros/python_model/python.sql", "unique_id": "macro.dbt.py_script_postfix", "macro_sql": "{% macro py_script_postfix(model) %}\n# This part is user provided model code\n# you will need to copy the next section to run the code\n# COMMAND ----------\n# this part is dbt logic for get ref work, do not modify\n\n{{ build_ref_function(model ) }}\n{{ build_source_function(model ) }}\n{{ build_config_dict(model) }}\n\nclass config:\n def __init__(self, *args, **kwargs):\n pass\n\n @staticmethod\n def get(key, default=None):\n return config_dict.get(key, default)\n\nclass this:\n \"\"\"dbt.this() or dbt.this.identifier\"\"\"\n database = \"{{ this.database }}\"\n schema = \"{{ this.schema }}\"\n identifier = \"{{ this.identifier }}\"\n {% set this_relation_name = resolve_model_name(this) %}\n def __repr__(self):\n return '{{ this_relation_name }}'\n\n\nclass dbtObj:\n def __init__(self, load_df_function) -> None:\n self.source = lambda *args: source(*args, dbt_load_df_function=load_df_function)\n self.ref = lambda *args, **kwargs: ref(*args, **kwargs, dbt_load_df_function=load_df_function)\n self.config = config\n self.this = this()\n self.is_incremental = {{ is_incremental() }}\n\n# COMMAND ----------\n{{py_script_comment()}}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.build_ref_function", "macro.dbt.build_source_function", "macro.dbt.build_config_dict", "macro.dbt.resolve_model_name", "macro.dbt.is_incremental", "macro.dbt.py_script_comment"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.923433, "supported_languages": null}, "macro.dbt.py_script_comment": {"name": "py_script_comment", "resource_type": "macro", "package_name": "dbt", "path": "macros/python_model/python.sql", "original_file_path": "macros/python_model/python.sql", "unique_id": "macro.dbt.py_script_comment", "macro_sql": "{%macro py_script_comment()%}\n{%endmacro%}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.923501, "supported_languages": null}, "macro.dbt.test_unique": {"name": "test_unique", "resource_type": "macro", "package_name": "dbt", "path": "tests/generic/builtin.sql", "original_file_path": "tests/generic/builtin.sql", "unique_id": "macro.dbt.test_unique", "macro_sql": "{% test unique(model, column_name) %}\n {% set macro = adapter.dispatch('test_unique', 'dbt') %}\n {{ macro(model, column_name) }}\n{% endtest %}", "depends_on": {"macros": ["macro.dbt.default__test_unique"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.923973, "supported_languages": null}, "macro.dbt.test_not_null": {"name": "test_not_null", "resource_type": "macro", "package_name": "dbt", "path": "tests/generic/builtin.sql", "original_file_path": "tests/generic/builtin.sql", "unique_id": "macro.dbt.test_not_null", "macro_sql": "{% test not_null(model, column_name) %}\n {% set macro = adapter.dispatch('test_not_null', 'dbt') %}\n {{ macro(model, column_name) }}\n{% endtest %}", "depends_on": {"macros": ["macro.dbt.default__test_not_null"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.924194, "supported_languages": null}, "macro.dbt.test_accepted_values": {"name": "test_accepted_values", "resource_type": "macro", "package_name": "dbt", "path": "tests/generic/builtin.sql", "original_file_path": "tests/generic/builtin.sql", "unique_id": "macro.dbt.test_accepted_values", "macro_sql": "{% test accepted_values(model, column_name, values, quote=True) %}\n {% set macro = adapter.dispatch('test_accepted_values', 'dbt') %}\n {{ macro(model, column_name, values, quote) }}\n{% endtest %}", "depends_on": {"macros": ["macro.dbt.default__test_accepted_values"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.924455, "supported_languages": null}, "macro.dbt.test_relationships": {"name": "test_relationships", "resource_type": "macro", "package_name": "dbt", "path": "tests/generic/builtin.sql", "original_file_path": "tests/generic/builtin.sql", "unique_id": "macro.dbt.test_relationships", "macro_sql": "{% test relationships(model, column_name, to, field) %}\n {% set macro = adapter.dispatch('test_relationships', 'dbt') %}\n {{ macro(model, column_name, to, field) }}\n{% endtest %}", "depends_on": {"macros": ["macro.dbt.default__test_relationships"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.9246988, "supported_languages": null}, "macro.dbt_utils.get_url_host": {"name": "get_url_host", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/web/get_url_host.sql", "original_file_path": "macros/web/get_url_host.sql", "unique_id": "macro.dbt_utils.get_url_host", "macro_sql": "{% macro get_url_host(field) -%}\n {{ return(adapter.dispatch('get_url_host', 'dbt_utils')(field)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.default__get_url_host"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.9250062, "supported_languages": null}, "macro.dbt_utils.default__get_url_host": {"name": "default__get_url_host", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/web/get_url_host.sql", "original_file_path": "macros/web/get_url_host.sql", "unique_id": "macro.dbt_utils.default__get_url_host", "macro_sql": "{% macro default__get_url_host(field) -%}\n\n{%- set parsed =\n dbt.split_part(\n dbt.split_part(\n dbt.replace(\n dbt.replace(\n dbt.replace(field, \"'android-app://'\", \"''\"\n ), \"'http://'\", \"''\"\n ), \"'https://'\", \"''\"\n ), \"'/'\", 1\n ), \"'?'\", 1\n )\n\n-%}\n\n\n {{ dbt.safe_cast(\n parsed,\n dbt.type_string()\n )}}\n\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt.split_part", "macro.dbt.replace", "macro.dbt.safe_cast", "macro.dbt.type_string"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.925429, "supported_languages": null}, "macro.dbt_utils.get_url_path": {"name": "get_url_path", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/web/get_url_path.sql", "original_file_path": "macros/web/get_url_path.sql", "unique_id": "macro.dbt_utils.get_url_path", "macro_sql": "{% macro get_url_path(field) -%}\n {{ return(adapter.dispatch('get_url_path', 'dbt_utils')(field)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.default__get_url_path"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.925836, "supported_languages": null}, "macro.dbt_utils.default__get_url_path": {"name": "default__get_url_path", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/web/get_url_path.sql", "original_file_path": "macros/web/get_url_path.sql", "unique_id": "macro.dbt_utils.default__get_url_path", "macro_sql": "{% macro default__get_url_path(field) -%}\n\n {%- set stripped_url =\n dbt.replace(\n dbt.replace(field, \"'http://'\", \"''\"), \"'https://'\", \"''\")\n -%}\n\n {%- set first_slash_pos -%}\n coalesce(\n nullif({{ dbt.position(\"'/'\", stripped_url) }}, 0),\n {{ dbt.position(\"'?'\", stripped_url) }} - 1\n )\n {%- endset -%}\n\n {%- set parsed_path =\n dbt.split_part(\n dbt.right(\n stripped_url,\n dbt.length(stripped_url) ~ \"-\" ~ first_slash_pos\n ),\n \"'?'\", 1\n )\n -%}\n\n {{ dbt.safe_cast(\n parsed_path,\n dbt.type_string()\n )}}\n\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt.replace", "macro.dbt.position", "macro.dbt.split_part", "macro.dbt.right", "macro.dbt.length", "macro.dbt.safe_cast", "macro.dbt.type_string"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.926559, "supported_languages": null}, "macro.dbt_utils.get_url_parameter": {"name": "get_url_parameter", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/web/get_url_parameter.sql", "original_file_path": "macros/web/get_url_parameter.sql", "unique_id": "macro.dbt_utils.get_url_parameter", "macro_sql": "{% macro get_url_parameter(field, url_parameter) -%}\n {{ return(adapter.dispatch('get_url_parameter', 'dbt_utils')(field, url_parameter)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.default__get_url_parameter"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.926852, "supported_languages": null}, "macro.dbt_utils.default__get_url_parameter": {"name": "default__get_url_parameter", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/web/get_url_parameter.sql", "original_file_path": "macros/web/get_url_parameter.sql", "unique_id": "macro.dbt_utils.default__get_url_parameter", "macro_sql": "{% macro default__get_url_parameter(field, url_parameter) -%}\n\n{%- set formatted_url_parameter = \"'\" + url_parameter + \"='\" -%}\n\n{%- set split = dbt.split_part(dbt.split_part(field, formatted_url_parameter, 2), \"'&'\", 1) -%}\n\nnullif({{ split }},'')\n\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt.split_part"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.92715, "supported_languages": null}, "macro.dbt_utils.test_fewer_rows_than": {"name": "test_fewer_rows_than", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/generic_tests/fewer_rows_than.sql", "original_file_path": "macros/generic_tests/fewer_rows_than.sql", "unique_id": "macro.dbt_utils.test_fewer_rows_than", "macro_sql": "{% test fewer_rows_than(model, compare_model, group_by_columns = []) %}\n {{ return(adapter.dispatch('test_fewer_rows_than', 'dbt_utils')(model, compare_model, group_by_columns)) }}\n{% endtest %}", "depends_on": {"macros": ["macro.dbt_utils.default__test_fewer_rows_than"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.9283369, "supported_languages": null}, "macro.dbt_utils.default__test_fewer_rows_than": {"name": "default__test_fewer_rows_than", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/generic_tests/fewer_rows_than.sql", "original_file_path": "macros/generic_tests/fewer_rows_than.sql", "unique_id": "macro.dbt_utils.default__test_fewer_rows_than", "macro_sql": "{% macro default__test_fewer_rows_than(model, compare_model, group_by_columns) %}\n\n{{ config(fail_calc = 'sum(coalesce(row_count_delta, 0))') }}\n\n{% if group_by_columns|length() > 0 %}\n {% set select_gb_cols = group_by_columns|join(' ,') + ', ' %}\n {% set join_gb_cols %}\n {% for c in group_by_columns %}\n and a.{{c}} = b.{{c}}\n {% endfor %}\n {% endset %}\n {% set groupby_gb_cols = 'group by ' + group_by_columns|join(',') %}\n{% endif %}\n\n{#-- We must add a fake join key in case additional grouping variables are not provided --#}\n{#-- Redshift does not allow for dynamically created join conditions (e.g. full join on 1 = 1 --#}\n{#-- The same logic is used in equal_rowcount. In case of changes, maintain consistent logic --#}\n{% set group_by_columns = ['id_dbtutils_test_fewer_rows_than'] + group_by_columns %}\n{% set groupby_gb_cols = 'group by ' + group_by_columns|join(',') %}\n\n\nwith a as (\n\n select \n {{select_gb_cols}}\n 1 as id_dbtutils_test_fewer_rows_than,\n count(*) as count_our_model \n from {{ model }}\n {{ groupby_gb_cols }}\n\n),\nb as (\n\n select \n {{select_gb_cols}}\n 1 as id_dbtutils_test_fewer_rows_than,\n count(*) as count_comparison_model \n from {{ compare_model }}\n {{ groupby_gb_cols }}\n\n),\ncounts as (\n\n select\n\n {% for c in group_by_columns -%}\n a.{{c}} as {{c}}_a,\n b.{{c}} as {{c}}_b,\n {% endfor %}\n\n count_our_model,\n count_comparison_model\n from a\n full join b on \n a.id_dbtutils_test_fewer_rows_than = b.id_dbtutils_test_fewer_rows_than\n {{ join_gb_cols }}\n\n),\nfinal as (\n\n select *,\n case\n -- fail the test if we have more rows than the reference model and return the row count delta\n when count_our_model > count_comparison_model then (count_our_model - count_comparison_model)\n -- fail the test if they are the same number\n when count_our_model = count_comparison_model then 1\n -- pass the test if the delta is positive (i.e. return the number 0)\n else 0\n end as row_count_delta\n from counts\n\n)\n\nselect * from final\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.9293098, "supported_languages": null}, "macro.dbt_utils.test_equal_rowcount": {"name": "test_equal_rowcount", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/generic_tests/equal_rowcount.sql", "original_file_path": "macros/generic_tests/equal_rowcount.sql", "unique_id": "macro.dbt_utils.test_equal_rowcount", "macro_sql": "{% test equal_rowcount(model, compare_model, group_by_columns = []) %}\n {{ return(adapter.dispatch('test_equal_rowcount', 'dbt_utils')(model, compare_model, group_by_columns)) }}\n{% endtest %}", "depends_on": {"macros": ["macro.dbt_utils.default__test_equal_rowcount"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.930131, "supported_languages": null}, "macro.dbt_utils.default__test_equal_rowcount": {"name": "default__test_equal_rowcount", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/generic_tests/equal_rowcount.sql", "original_file_path": "macros/generic_tests/equal_rowcount.sql", "unique_id": "macro.dbt_utils.default__test_equal_rowcount", "macro_sql": "{% macro default__test_equal_rowcount(model, compare_model, group_by_columns) %}\n\n{#-- Needs to be set at parse time, before we return '' below --#}\n{{ config(fail_calc = 'sum(coalesce(diff_count, 0))') }}\n\n{#-- Prevent querying of db in parsing mode. This works because this macro does not create any new refs. #}\n{%- if not execute -%}\n {{ return('') }}\n{% endif %}\n\n{% if group_by_columns|length() > 0 %}\n {% set select_gb_cols = group_by_columns|join(', ') + ', ' %}\n {% set join_gb_cols %}\n {% for c in group_by_columns %}\n and a.{{c}} = b.{{c}}\n {% endfor %}\n {% endset %}\n {% set groupby_gb_cols = 'group by ' + group_by_columns|join(',') %}\n{% endif %}\n\n{#-- We must add a fake join key in case additional grouping variables are not provided --#}\n{#-- Redshift does not allow for dynamically created join conditions (e.g. full join on 1 = 1 --#}\n{#-- The same logic is used in fewer_rows_than. In case of changes, maintain consistent logic --#}\n{% set group_by_columns = ['id_dbtutils_test_equal_rowcount'] + group_by_columns %}\n{% set groupby_gb_cols = 'group by ' + group_by_columns|join(',') %}\n\nwith a as (\n\n select \n {{select_gb_cols}}\n 1 as id_dbtutils_test_equal_rowcount,\n count(*) as count_a \n from {{ model }}\n {{groupby_gb_cols}}\n\n\n),\nb as (\n\n select \n {{select_gb_cols}}\n 1 as id_dbtutils_test_equal_rowcount,\n count(*) as count_b \n from {{ compare_model }}\n {{groupby_gb_cols}}\n\n),\nfinal as (\n\n select\n \n {% for c in group_by_columns -%}\n a.{{c}} as {{c}}_a,\n b.{{c}} as {{c}}_b,\n {% endfor %}\n\n count_a,\n count_b,\n abs(count_a - count_b) as diff_count\n\n from a\n full join b\n on\n a.id_dbtutils_test_equal_rowcount = b.id_dbtutils_test_equal_rowcount\n {{join_gb_cols}}\n\n\n)\n\nselect * from final\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.93116, "supported_languages": null}, "macro.dbt_utils.test_relationships_where": {"name": "test_relationships_where", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/generic_tests/relationships_where.sql", "original_file_path": "macros/generic_tests/relationships_where.sql", "unique_id": "macro.dbt_utils.test_relationships_where", "macro_sql": "{% test relationships_where(model, column_name, to, field, from_condition=\"1=1\", to_condition=\"1=1\") %}\n {{ return(adapter.dispatch('test_relationships_where', 'dbt_utils')(model, column_name, to, field, from_condition, to_condition)) }}\n{% endtest %}", "depends_on": {"macros": ["macro.dbt_utils.default__test_relationships_where"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.931786, "supported_languages": null}, "macro.dbt_utils.default__test_relationships_where": {"name": "default__test_relationships_where", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/generic_tests/relationships_where.sql", "original_file_path": "macros/generic_tests/relationships_where.sql", "unique_id": "macro.dbt_utils.default__test_relationships_where", "macro_sql": "{% macro default__test_relationships_where(model, column_name, to, field, from_condition=\"1=1\", to_condition=\"1=1\") %}\n\n{# T-SQL has no boolean data type so we use 1=1 which returns TRUE #}\n{# ref https://stackoverflow.com/a/7170753/3842610 #}\n\nwith left_table as (\n\n select\n {{column_name}} as id\n\n from {{model}}\n\n where {{column_name}} is not null\n and {{from_condition}}\n\n),\n\nright_table as (\n\n select\n {{field}} as id\n\n from {{to}}\n\n where {{field}} is not null\n and {{to_condition}}\n\n),\n\nexceptions as (\n\n select\n left_table.id,\n right_table.id as right_id\n\n from left_table\n\n left join right_table\n on left_table.id = right_table.id\n\n where right_table.id is null\n\n)\n\nselect * from exceptions\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.932102, "supported_languages": null}, "macro.dbt_utils.test_recency": {"name": "test_recency", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/generic_tests/recency.sql", "original_file_path": "macros/generic_tests/recency.sql", "unique_id": "macro.dbt_utils.test_recency", "macro_sql": "{% test recency(model, field, datepart, interval, ignore_time_component=False, group_by_columns = []) %}\n {{ return(adapter.dispatch('test_recency', 'dbt_utils')(model, field, datepart, interval, ignore_time_component, group_by_columns)) }}\n{% endtest %}", "depends_on": {"macros": ["macro.dbt_utils.default__test_recency"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.932775, "supported_languages": null}, "macro.dbt_utils.default__test_recency": {"name": "default__test_recency", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/generic_tests/recency.sql", "original_file_path": "macros/generic_tests/recency.sql", "unique_id": "macro.dbt_utils.default__test_recency", "macro_sql": "{% macro default__test_recency(model, field, datepart, interval, ignore_time_component, group_by_columns) %}\n\n{% set threshold = 'cast(' ~ dbt.dateadd(datepart, interval * -1, dbt.current_timestamp()) ~ ' as ' ~ ('date' if ignore_time_component else dbt.type_timestamp()) ~ ')' %}\n\n{% if group_by_columns|length() > 0 %}\n {% set select_gb_cols = group_by_columns|join(' ,') + ', ' %}\n {% set groupby_gb_cols = 'group by ' + group_by_columns|join(',') %}\n{% endif %}\n\n\nwith recency as (\n\n select \n\n {{ select_gb_cols }}\n {% if ignore_time_component %}\n cast(max({{ field }}) as date) as most_recent\n {%- else %}\n max({{ field }}) as most_recent\n {%- endif %}\n\n from {{ model }}\n\n {{ groupby_gb_cols }}\n\n)\n\nselect\n\n {{ select_gb_cols }}\n most_recent,\n {{ threshold }} as threshold\n\nfrom recency\nwhere most_recent < {{ threshold }}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.dateadd", "macro.dbt.current_timestamp", "macro.dbt.type_timestamp"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.9336908, "supported_languages": null}, "macro.dbt_utils.test_not_constant": {"name": "test_not_constant", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/generic_tests/not_constant.sql", "original_file_path": "macros/generic_tests/not_constant.sql", "unique_id": "macro.dbt_utils.test_not_constant", "macro_sql": "{% test not_constant(model, column_name, group_by_columns = []) %}\n {{ return(adapter.dispatch('test_not_constant', 'dbt_utils')(model, column_name, group_by_columns)) }}\n{% endtest %}", "depends_on": {"macros": ["macro.dbt_utils.default__test_not_constant"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.934134, "supported_languages": null}, "macro.dbt_utils.default__test_not_constant": {"name": "default__test_not_constant", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/generic_tests/not_constant.sql", "original_file_path": "macros/generic_tests/not_constant.sql", "unique_id": "macro.dbt_utils.default__test_not_constant", "macro_sql": "{% macro default__test_not_constant(model, column_name, group_by_columns) %}\n\n{% if group_by_columns|length() > 0 %}\n {% set select_gb_cols = group_by_columns|join(' ,') + ', ' %}\n {% set groupby_gb_cols = 'group by ' + group_by_columns|join(',') %}\n{% endif %}\n\n\nselect\n {# In TSQL, subquery aggregate columns need aliases #}\n {# thus: a filler col name, 'filler_column' #}\n {{select_gb_cols}}\n count(distinct {{ column_name }}) as filler_column\n\nfrom {{ model }}\n\n {{groupby_gb_cols}}\n\nhaving count(distinct {{ column_name }}) = 1\n\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.934558, "supported_languages": null}, "macro.dbt_utils.test_accepted_range": {"name": "test_accepted_range", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/generic_tests/accepted_range.sql", "original_file_path": "macros/generic_tests/accepted_range.sql", "unique_id": "macro.dbt_utils.test_accepted_range", "macro_sql": "{% test accepted_range(model, column_name, min_value=none, max_value=none, inclusive=true) %}\n {{ return(adapter.dispatch('test_accepted_range', 'dbt_utils')(model, column_name, min_value, max_value, inclusive)) }}\n{% endtest %}", "depends_on": {"macros": ["macro.dbt_utils.default__test_accepted_range"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.935117, "supported_languages": null}, "macro.dbt_utils.default__test_accepted_range": {"name": "default__test_accepted_range", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/generic_tests/accepted_range.sql", "original_file_path": "macros/generic_tests/accepted_range.sql", "unique_id": "macro.dbt_utils.default__test_accepted_range", "macro_sql": "{% macro default__test_accepted_range(model, column_name, min_value=none, max_value=none, inclusive=true) %}\n\nwith meet_condition as(\n select *\n from {{ model }}\n),\n\nvalidation_errors as (\n select *\n from meet_condition\n where\n -- never true, defaults to an empty result set. Exists to ensure any combo of the `or` clauses below succeeds\n 1 = 2\n\n {%- if min_value is not none %}\n -- records with a value >= min_value are permitted. The `not` flips this to find records that don't meet the rule.\n or not {{ column_name }} > {{- \"=\" if inclusive }} {{ min_value }}\n {%- endif %}\n\n {%- if max_value is not none %}\n -- records with a value <= max_value are permitted. The `not` flips this to find records that don't meet the rule.\n or not {{ column_name }} < {{- \"=\" if inclusive }} {{ max_value }}\n {%- endif %}\n)\n\nselect *\nfrom validation_errors\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.935662, "supported_languages": null}, "macro.dbt_utils.test_not_accepted_values": {"name": "test_not_accepted_values", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/generic_tests/not_accepted_values.sql", "original_file_path": "macros/generic_tests/not_accepted_values.sql", "unique_id": "macro.dbt_utils.test_not_accepted_values", "macro_sql": "{% test not_accepted_values(model, column_name, values, quote=True) %}\n {{ return(adapter.dispatch('test_not_accepted_values', 'dbt_utils')(model, column_name, values, quote)) }}\n{% endtest %}", "depends_on": {"macros": ["macro.dbt_utils.default__test_not_accepted_values"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.936186, "supported_languages": null}, "macro.dbt_utils.default__test_not_accepted_values": {"name": "default__test_not_accepted_values", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/generic_tests/not_accepted_values.sql", "original_file_path": "macros/generic_tests/not_accepted_values.sql", "unique_id": "macro.dbt_utils.default__test_not_accepted_values", "macro_sql": "{% macro default__test_not_accepted_values(model, column_name, values, quote=True) %}\nwith all_values as (\n\n select distinct\n {{ column_name }} as value_field\n\n from {{ model }}\n\n),\n\nvalidation_errors as (\n\n select\n value_field\n\n from all_values\n where value_field in (\n {% for value in values -%}\n {% if quote -%}\n '{{ value }}'\n {%- else -%}\n {{ value }}\n {%- endif -%}\n {%- if not loop.last -%},{%- endif %}\n {%- endfor %}\n )\n\n)\n\nselect *\nfrom validation_errors\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.9365408, "supported_languages": null}, "macro.dbt_utils.test_at_least_one": {"name": "test_at_least_one", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/generic_tests/at_least_one.sql", "original_file_path": "macros/generic_tests/at_least_one.sql", "unique_id": "macro.dbt_utils.test_at_least_one", "macro_sql": "{% test at_least_one(model, column_name, group_by_columns = []) %}\n {{ return(adapter.dispatch('test_at_least_one', 'dbt_utils')(model, column_name, group_by_columns)) }}\n{% endtest %}", "depends_on": {"macros": ["macro.dbt_utils.default__test_at_least_one"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.9371462, "supported_languages": null}, "macro.dbt_utils.default__test_at_least_one": {"name": "default__test_at_least_one", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/generic_tests/at_least_one.sql", "original_file_path": "macros/generic_tests/at_least_one.sql", "unique_id": "macro.dbt_utils.default__test_at_least_one", "macro_sql": "{% macro default__test_at_least_one(model, column_name, group_by_columns) %}\n\n{% set pruned_cols = [column_name] %}\n\n{% if group_by_columns|length() > 0 %}\n\n {% set select_gb_cols = group_by_columns|join(' ,') + ', ' %}\n {% set groupby_gb_cols = 'group by ' + group_by_columns|join(',') %}\n {% set pruned_cols = group_by_columns %}\n\n {% if column_name not in pruned_cols %}\n {% do pruned_cols.append(column_name) %}\n {% endif %}\n\n{% endif %}\n\n{% set select_pruned_cols = pruned_cols|join(' ,') %}\n\nselect *\nfrom (\n with pruned_rows as (\n select\n {{ select_pruned_cols }}\n from {{ model }}\n where {{ column_name }} is not null\n limit 1\n )\n select\n {# In TSQL, subquery aggregate columns need aliases #}\n {# thus: a filler col name, 'filler_column' #}\n {{select_gb_cols}}\n count({{ column_name }}) as filler_column\n\n from pruned_rows\n\n {{groupby_gb_cols}}\n\n having count({{ column_name }}) = 0\n\n) validation_errors\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.938185, "supported_languages": null}, "macro.dbt_utils.test_unique_combination_of_columns": {"name": "test_unique_combination_of_columns", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/generic_tests/unique_combination_of_columns.sql", "original_file_path": "macros/generic_tests/unique_combination_of_columns.sql", "unique_id": "macro.dbt_utils.test_unique_combination_of_columns", "macro_sql": "{% test unique_combination_of_columns(model, combination_of_columns, quote_columns=false) %}\n {{ return(adapter.dispatch('test_unique_combination_of_columns', 'dbt_utils')(model, combination_of_columns, quote_columns)) }}\n{% endtest %}", "depends_on": {"macros": ["macro.dbt_utils.default__test_unique_combination_of_columns"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.9387908, "supported_languages": null}, "macro.dbt_utils.default__test_unique_combination_of_columns": {"name": "default__test_unique_combination_of_columns", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/generic_tests/unique_combination_of_columns.sql", "original_file_path": "macros/generic_tests/unique_combination_of_columns.sql", "unique_id": "macro.dbt_utils.default__test_unique_combination_of_columns", "macro_sql": "{% macro default__test_unique_combination_of_columns(model, combination_of_columns, quote_columns=false) %}\n\n{% if not quote_columns %}\n {%- set column_list=combination_of_columns %}\n{% elif quote_columns %}\n {%- set column_list=[] %}\n {% for column in combination_of_columns -%}\n {% set column_list = column_list.append( adapter.quote(column) ) %}\n {%- endfor %}\n{% else %}\n {{ exceptions.raise_compiler_error(\n \"`quote_columns` argument for unique_combination_of_columns test must be one of [True, False] Got: '\" ~ quote ~\"'.'\"\n ) }}\n{% endif %}\n\n{%- set columns_csv=column_list | join(', ') %}\n\n\nwith validation_errors as (\n\n select\n {{ columns_csv }}\n from {{ model }}\n group by {{ columns_csv }}\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.9393868, "supported_languages": null}, "macro.dbt_utils.test_cardinality_equality": {"name": "test_cardinality_equality", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/generic_tests/cardinality_equality.sql", "original_file_path": "macros/generic_tests/cardinality_equality.sql", "unique_id": "macro.dbt_utils.test_cardinality_equality", "macro_sql": "{% test cardinality_equality(model, column_name, to, field) %}\n {{ return(adapter.dispatch('test_cardinality_equality', 'dbt_utils')(model, column_name, to, field)) }}\n{% endtest %}", "depends_on": {"macros": ["macro.dbt_utils.default__test_cardinality_equality"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.939896, "supported_languages": null}, "macro.dbt_utils.default__test_cardinality_equality": {"name": "default__test_cardinality_equality", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/generic_tests/cardinality_equality.sql", "original_file_path": "macros/generic_tests/cardinality_equality.sql", "unique_id": "macro.dbt_utils.default__test_cardinality_equality", "macro_sql": "{% macro default__test_cardinality_equality(model, column_name, to, field) %}\n\n{# T-SQL does not let you use numbers as aliases for columns #}\n{# Thus, no \"GROUP BY 1\" #}\n\nwith table_a as (\nselect\n {{ column_name }},\n count(*) as num_rows\nfrom {{ model }}\ngroup by {{ column_name }}\n),\n\ntable_b as (\nselect\n {{ field }},\n count(*) as num_rows\nfrom {{ to }}\ngroup by {{ field }}\n),\n\nexcept_a as (\n select *\n from table_a\n {{ dbt.except() }}\n select *\n from table_b\n),\n\nexcept_b as (\n select *\n from table_b\n {{ dbt.except() }}\n select *\n from table_a\n),\n\nunioned as (\n select *\n from except_a\n union all\n select *\n from except_b\n)\n\nselect *\nfrom unioned\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.except"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.9402041, "supported_languages": null}, "macro.dbt_utils.test_expression_is_true": {"name": "test_expression_is_true", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/generic_tests/expression_is_true.sql", "original_file_path": "macros/generic_tests/expression_is_true.sql", "unique_id": "macro.dbt_utils.test_expression_is_true", "macro_sql": "{% test expression_is_true(model, expression, column_name=None) %}\n {{ return(adapter.dispatch('test_expression_is_true', 'dbt_utils')(model, expression, column_name)) }}\n{% endtest %}", "depends_on": {"macros": ["macro.dbt_utils.default__test_expression_is_true"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.9405599, "supported_languages": null}, "macro.dbt_utils.default__test_expression_is_true": {"name": "default__test_expression_is_true", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/generic_tests/expression_is_true.sql", "original_file_path": "macros/generic_tests/expression_is_true.sql", "unique_id": "macro.dbt_utils.default__test_expression_is_true", "macro_sql": "{% macro default__test_expression_is_true(model, expression, column_name) %}\n\n{% set column_list = '*' if should_store_failures() else \"1\" %}\n\nselect\n {{ column_list }}\nfrom {{ model }}\n{% if column_name is none %}\nwhere not({{ expression }})\n{%- else %}\nwhere not({{ column_name }} {{ expression }})\n{%- endif %}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.should_store_failures"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.9408782, "supported_languages": null}, "macro.dbt_utils.test_not_null_proportion": {"name": "test_not_null_proportion", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/generic_tests/not_null_proportion.sql", "original_file_path": "macros/generic_tests/not_null_proportion.sql", "unique_id": "macro.dbt_utils.test_not_null_proportion", "macro_sql": "{% macro test_not_null_proportion(model, group_by_columns = []) %}\n {{ return(adapter.dispatch('test_not_null_proportion', 'dbt_utils')(model, group_by_columns, **kwargs)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.default__test_not_null_proportion"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.941448, "supported_languages": null}, "macro.dbt_utils.default__test_not_null_proportion": {"name": "default__test_not_null_proportion", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/generic_tests/not_null_proportion.sql", "original_file_path": "macros/generic_tests/not_null_proportion.sql", "unique_id": "macro.dbt_utils.default__test_not_null_proportion", "macro_sql": "{% macro default__test_not_null_proportion(model, group_by_columns) %}\n\n{% set column_name = kwargs.get('column_name', kwargs.get('arg')) %}\n{% set at_least = kwargs.get('at_least', kwargs.get('arg')) %}\n{% set at_most = kwargs.get('at_most', kwargs.get('arg', 1)) %}\n\n{% if group_by_columns|length() > 0 %}\n {% set select_gb_cols = group_by_columns|join(' ,') + ', ' %}\n {% set groupby_gb_cols = 'group by ' + group_by_columns|join(',') %}\n{% endif %}\n\nwith validation as (\n select\n {{select_gb_cols}}\n sum(case when {{ column_name }} is null then 0 else 1 end) / cast(count(*) as numeric) as not_null_proportion\n from {{ model }}\n {{groupby_gb_cols}}\n),\nvalidation_errors as (\n select\n {{select_gb_cols}}\n not_null_proportion\n from validation\n where not_null_proportion < {{ at_least }} or not_null_proportion > {{ at_most }}\n)\nselect\n *\nfrom validation_errors\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.942163, "supported_languages": null}, "macro.dbt_utils.test_sequential_values": {"name": "test_sequential_values", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/generic_tests/sequential_values.sql", "original_file_path": "macros/generic_tests/sequential_values.sql", "unique_id": "macro.dbt_utils.test_sequential_values", "macro_sql": "{% test sequential_values(model, column_name, interval=1, datepart=None, group_by_columns = []) %}\n\n {{ return(adapter.dispatch('test_sequential_values', 'dbt_utils')(model, column_name, interval, datepart, group_by_columns)) }}\n\n{% endtest %}", "depends_on": {"macros": ["macro.dbt_utils.default__test_sequential_values"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.942955, "supported_languages": null}, "macro.dbt_utils.default__test_sequential_values": {"name": "default__test_sequential_values", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/generic_tests/sequential_values.sql", "original_file_path": "macros/generic_tests/sequential_values.sql", "unique_id": "macro.dbt_utils.default__test_sequential_values", "macro_sql": "{% macro default__test_sequential_values(model, column_name, interval=1, datepart=None, group_by_columns = []) %}\n\n{% set previous_column_name = \"previous_\" ~ dbt_utils.slugify(column_name) %}\n\n{% if group_by_columns|length() > 0 %}\n {% set select_gb_cols = group_by_columns|join(',') + ', ' %}\n {% set partition_gb_cols = 'partition by ' + group_by_columns|join(',') %}\n{% endif %}\n\nwith windowed as (\n\n select\n {{ select_gb_cols }}\n {{ column_name }},\n lag({{ column_name }}) over (\n {{partition_gb_cols}}\n order by {{ column_name }}\n ) as {{ previous_column_name }}\n from {{ model }}\n),\n\nvalidation_errors as (\n select\n *\n from windowed\n {% if datepart %}\n where not(cast({{ column_name }} as {{ dbt.type_timestamp() }})= cast({{ dbt.dateadd(datepart, interval, previous_column_name) }} as {{ dbt.type_timestamp() }}))\n {% else %}\n where not({{ column_name }} = {{ previous_column_name }} + {{ interval }})\n {% endif %}\n)\n\nselect *\nfrom validation_errors\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.slugify", "macro.dbt.type_timestamp", "macro.dbt.dateadd"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.94375, "supported_languages": null}, "macro.dbt_utils.test_equality": {"name": "test_equality", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/generic_tests/equality.sql", "original_file_path": "macros/generic_tests/equality.sql", "unique_id": "macro.dbt_utils.test_equality", "macro_sql": "{% test equality(model, compare_model, compare_columns=None) %}\n {{ return(adapter.dispatch('test_equality', 'dbt_utils')(model, compare_model, compare_columns)) }}\n{% endtest %}", "depends_on": {"macros": ["macro.dbt_utils.default__test_equality"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.944415, "supported_languages": null}, "macro.dbt_utils.default__test_equality": {"name": "default__test_equality", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/generic_tests/equality.sql", "original_file_path": "macros/generic_tests/equality.sql", "unique_id": "macro.dbt_utils.default__test_equality", "macro_sql": "{% macro default__test_equality(model, compare_model, compare_columns=None) %}\n\n{% set set_diff %}\n count(*) + coalesce(abs(\n sum(case when which_diff = 'a_minus_b' then 1 else 0 end) -\n sum(case when which_diff = 'b_minus_a' then 1 else 0 end)\n ), 0)\n{% endset %}\n\n{#-- Needs to be set at parse time, before we return '' below --#}\n{{ config(fail_calc = set_diff) }}\n\n{#-- Prevent querying of db in parsing mode. This works because this macro does not create any new refs. #}\n{%- if not execute -%}\n {{ return('') }}\n{% endif %}\n\n-- setup\n{%- do dbt_utils._is_relation(model, 'test_equality') -%}\n\n{#-\nIf the compare_cols arg is provided, we can run this test without querying the\ninformation schema\u00a0\u2014 this allows the model to be an ephemeral model\n-#}\n\n{%- if not compare_columns -%}\n {%- do dbt_utils._is_ephemeral(model, 'test_equality') -%}\n {%- set compare_columns = adapter.get_columns_in_relation(model) | map(attribute='quoted') -%}\n{%- endif -%}\n\n{% set compare_cols_csv = compare_columns | join(', ') %}\n\nwith a as (\n\n select * from {{ model }}\n\n),\n\nb as (\n\n select * from {{ compare_model }}\n\n),\n\na_minus_b as (\n\n select {{compare_cols_csv}} from a\n {{ dbt.except() }}\n select {{compare_cols_csv}} from b\n\n),\n\nb_minus_a as (\n\n select {{compare_cols_csv}} from b\n {{ dbt.except() }}\n select {{compare_cols_csv}} from a\n\n),\n\nunioned as (\n\n select 'a_minus_b' as which_diff, a_minus_b.* from a_minus_b\n union all\n select 'b_minus_a' as which_diff, b_minus_a.* from b_minus_a\n\n)\n\nselect * from unioned\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils._is_relation", "macro.dbt_utils._is_ephemeral", "macro.dbt.except"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.9452019, "supported_languages": null}, "macro.dbt_utils.test_not_empty_string": {"name": "test_not_empty_string", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/generic_tests/not_empty_string.sql", "original_file_path": "macros/generic_tests/not_empty_string.sql", "unique_id": "macro.dbt_utils.test_not_empty_string", "macro_sql": "{% test not_empty_string(model, column_name, trim_whitespace=true) %}\n\n {{ return(adapter.dispatch('test_not_empty_string', 'dbt_utils')(model, column_name, trim_whitespace)) }}\n\n{% endtest %}", "depends_on": {"macros": ["macro.dbt_utils.default__test_not_empty_string"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.945659, "supported_languages": null}, "macro.dbt_utils.default__test_not_empty_string": {"name": "default__test_not_empty_string", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/generic_tests/not_empty_string.sql", "original_file_path": "macros/generic_tests/not_empty_string.sql", "unique_id": "macro.dbt_utils.default__test_not_empty_string", "macro_sql": "{% macro default__test_not_empty_string(model, column_name, trim_whitespace=true) %}\n\n with\n \n all_values as (\n\n select \n\n\n {% if trim_whitespace == true -%}\n\n trim({{ column_name }}) as {{ column_name }}\n\n {%- else -%}\n\n {{ column_name }}\n\n {%- endif %}\n \n from {{ model }}\n\n ),\n\n errors as (\n\n select * from all_values\n where {{ column_name }} = ''\n\n )\n\n select * from errors\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.945934, "supported_languages": null}, "macro.dbt_utils.test_mutually_exclusive_ranges": {"name": "test_mutually_exclusive_ranges", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/generic_tests/mutually_exclusive_ranges.sql", "original_file_path": "macros/generic_tests/mutually_exclusive_ranges.sql", "unique_id": "macro.dbt_utils.test_mutually_exclusive_ranges", "macro_sql": "{% test mutually_exclusive_ranges(model, lower_bound_column, upper_bound_column, partition_by=None, gaps='allowed', zero_length_range_allowed=False) %}\n {{ return(adapter.dispatch('test_mutually_exclusive_ranges', 'dbt_utils')(model, lower_bound_column, upper_bound_column, partition_by, gaps, zero_length_range_allowed)) }}\n{% endtest %}", "depends_on": {"macros": ["macro.dbt_utils.default__test_mutually_exclusive_ranges"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.949142, "supported_languages": null}, "macro.dbt_utils.default__test_mutually_exclusive_ranges": {"name": "default__test_mutually_exclusive_ranges", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/generic_tests/mutually_exclusive_ranges.sql", "original_file_path": "macros/generic_tests/mutually_exclusive_ranges.sql", "unique_id": "macro.dbt_utils.default__test_mutually_exclusive_ranges", "macro_sql": "{% macro default__test_mutually_exclusive_ranges(model, lower_bound_column, upper_bound_column, partition_by=None, gaps='allowed', zero_length_range_allowed=False) %}\n{% if gaps == 'not_allowed' %}\n {% set allow_gaps_operator='=' %}\n {% set allow_gaps_operator_in_words='equal_to' %}\n{% elif gaps == 'allowed' %}\n {% set allow_gaps_operator='<=' %}\n {% set allow_gaps_operator_in_words='less_than_or_equal_to' %}\n{% elif gaps == 'required' %}\n {% set allow_gaps_operator='<' %}\n {% set allow_gaps_operator_in_words='less_than' %}\n{% else %}\n {{ exceptions.raise_compiler_error(\n \"`gaps` argument for mutually_exclusive_ranges test must be one of ['not_allowed', 'allowed', 'required'] Got: '\" ~ gaps ~\"'.'\"\n ) }}\n{% endif %}\n{% if not zero_length_range_allowed %}\n {% set allow_zero_length_operator='<' %}\n {% set allow_zero_length_operator_in_words='less_than' %}\n{% elif zero_length_range_allowed %}\n {% set allow_zero_length_operator='<=' %}\n {% set allow_zero_length_operator_in_words='less_than_or_equal_to' %}\n{% else %}\n {{ exceptions.raise_compiler_error(\n \"`zero_length_range_allowed` argument for mutually_exclusive_ranges test must be one of [true, false] Got: '\" ~ zero_length_range_allowed ~\"'.'\"\n ) }}\n{% endif %}\n\n{% set partition_clause=\"partition by \" ~ partition_by if partition_by else '' %}\n\nwith window_functions as (\n\n select\n {% if partition_by %}\n {{ partition_by }} as partition_by_col,\n {% endif %}\n {{ lower_bound_column }} as lower_bound,\n {{ upper_bound_column }} as upper_bound,\n\n lead({{ lower_bound_column }}) over (\n {{ partition_clause }}\n order by {{ lower_bound_column }}, {{ upper_bound_column }}\n ) as next_lower_bound,\n\n row_number() over (\n {{ partition_clause }}\n order by {{ lower_bound_column }} desc, {{ upper_bound_column }} desc\n ) = 1 as is_last_record\n\n from {{ model }}\n\n),\n\ncalc as (\n -- We want to return records where one of our assumptions fails, so we'll use\n -- the `not` function with `and` statements so we can write our assumptions more cleanly\n select\n *,\n\n -- For each record: lower_bound should be < upper_bound.\n -- Coalesce it to return an error on the null case (implicit assumption\n -- these columns are not_null)\n coalesce(\n lower_bound {{ allow_zero_length_operator }} upper_bound,\n false\n ) as lower_bound_{{ allow_zero_length_operator_in_words }}_upper_bound,\n\n -- For each record: upper_bound {{ allow_gaps_operator }} the next lower_bound.\n -- Coalesce it to handle null cases for the last record.\n coalesce(\n upper_bound {{ allow_gaps_operator }} next_lower_bound,\n is_last_record,\n false\n ) as upper_bound_{{ allow_gaps_operator_in_words }}_next_lower_bound\n\n from window_functions\n\n),\n\nvalidation_errors as (\n\n select\n *\n from calc\n\n where not(\n -- THE FOLLOWING SHOULD BE TRUE --\n lower_bound_{{ allow_zero_length_operator_in_words }}_upper_bound\n and upper_bound_{{ allow_gaps_operator_in_words }}_next_lower_bound\n )\n)\n\nselect * from validation_errors\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.9509492, "supported_languages": null}, "macro.dbt_utils.pretty_log_format": {"name": "pretty_log_format", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/jinja_helpers/pretty_log_format.sql", "original_file_path": "macros/jinja_helpers/pretty_log_format.sql", "unique_id": "macro.dbt_utils.pretty_log_format", "macro_sql": "{% macro pretty_log_format(message) %}\n {{ return(adapter.dispatch('pretty_log_format', 'dbt_utils')(message)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.default__pretty_log_format"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.951261, "supported_languages": null}, "macro.dbt_utils.default__pretty_log_format": {"name": "default__pretty_log_format", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/jinja_helpers/pretty_log_format.sql", "original_file_path": "macros/jinja_helpers/pretty_log_format.sql", "unique_id": "macro.dbt_utils.default__pretty_log_format", "macro_sql": "{% macro default__pretty_log_format(message) %}\n {{ return( dbt_utils.pretty_time() ~ ' + ' ~ message) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.pretty_time"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.951423, "supported_languages": null}, "macro.dbt_utils._is_relation": {"name": "_is_relation", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/jinja_helpers/_is_relation.sql", "original_file_path": "macros/jinja_helpers/_is_relation.sql", "unique_id": "macro.dbt_utils._is_relation", "macro_sql": "{% macro _is_relation(obj, macro) %}\n {%- if not (obj is mapping and obj.get('metadata', {}).get('type', '').endswith('Relation')) -%}\n {%- do exceptions.raise_compiler_error(\"Macro \" ~ macro ~ \" expected a Relation but received the value: \" ~ obj) -%}\n {%- endif -%}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.951851, "supported_languages": null}, "macro.dbt_utils.pretty_time": {"name": "pretty_time", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/jinja_helpers/pretty_time.sql", "original_file_path": "macros/jinja_helpers/pretty_time.sql", "unique_id": "macro.dbt_utils.pretty_time", "macro_sql": "{% macro pretty_time(format='%H:%M:%S') %}\n {{ return(adapter.dispatch('pretty_time', 'dbt_utils')(format)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.default__pretty_time"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.952115, "supported_languages": null}, "macro.dbt_utils.default__pretty_time": {"name": "default__pretty_time", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/jinja_helpers/pretty_time.sql", "original_file_path": "macros/jinja_helpers/pretty_time.sql", "unique_id": "macro.dbt_utils.default__pretty_time", "macro_sql": "{% macro default__pretty_time(format='%H:%M:%S') %}\n {{ return(modules.datetime.datetime.now().strftime(format)) }}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.952342, "supported_languages": null}, "macro.dbt_utils.log_info": {"name": "log_info", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/jinja_helpers/log_info.sql", "original_file_path": "macros/jinja_helpers/log_info.sql", "unique_id": "macro.dbt_utils.log_info", "macro_sql": "{% macro log_info(message) %}\n {{ return(adapter.dispatch('log_info', 'dbt_utils')(message)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.default__log_info"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.952606, "supported_languages": null}, "macro.dbt_utils.default__log_info": {"name": "default__log_info", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/jinja_helpers/log_info.sql", "original_file_path": "macros/jinja_helpers/log_info.sql", "unique_id": "macro.dbt_utils.default__log_info", "macro_sql": "{% macro default__log_info(message) %}\n {{ log(dbt_utils.pretty_log_format(message), info=True) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.pretty_log_format"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.952781, "supported_languages": null}, "macro.dbt_utils.slugify": {"name": "slugify", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/jinja_helpers/slugify.sql", "original_file_path": "macros/jinja_helpers/slugify.sql", "unique_id": "macro.dbt_utils.slugify", "macro_sql": "{% macro slugify(string) %}\n\n{#- Lower case the string -#}\n{% set string = string | lower %}\n{#- Replace spaces and dashes with underscores -#}\n{% set string = modules.re.sub('[ -]+', '_', string) %}\n{#- Only take letters, numbers, and underscores -#}\n{% set string = modules.re.sub('[^a-z0-9_]+', '', string) %}\n{#- Prepends \"_\" if string begins with a number -#}\n{% set string = modules.re.sub('^[0-9]', '_' + string[0], string) %}\n\n{{ return(string) }}\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.953439, "supported_languages": null}, "macro.dbt_utils._is_ephemeral": {"name": "_is_ephemeral", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/jinja_helpers/_is_ephemeral.sql", "original_file_path": "macros/jinja_helpers/_is_ephemeral.sql", "unique_id": "macro.dbt_utils._is_ephemeral", "macro_sql": "{% macro _is_ephemeral(obj, macro) %}\n {%- if obj.is_cte -%}\n {% set ephemeral_prefix = api.Relation.add_ephemeral_prefix('') %}\n {% if obj.name.startswith(ephemeral_prefix) %}\n {% set model_name = obj.name[(ephemeral_prefix|length):] %}\n {% else %}\n {% set model_name = obj.name %}\n {%- endif -%}\n {% set error_message %}\nThe `{{ macro }}` macro cannot be used with ephemeral models, as it relies on the information schema.\n\n`{{ model_name }}` is an ephemeral model. Consider making it a view or table instead.\n {% endset %}\n {%- do exceptions.raise_compiler_error(error_message) -%}\n {%- endif -%}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.954263, "supported_languages": null}, "macro.dbt_utils.get_intervals_between": {"name": "get_intervals_between", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/date_spine.sql", "original_file_path": "macros/sql/date_spine.sql", "unique_id": "macro.dbt_utils.get_intervals_between", "macro_sql": "{% macro get_intervals_between(start_date, end_date, datepart) -%}\n {{ return(adapter.dispatch('get_intervals_between', 'dbt_utils')(start_date, end_date, datepart)) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.default__get_intervals_between"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.954889, "supported_languages": null}, "macro.dbt_utils.default__get_intervals_between": {"name": "default__get_intervals_between", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/date_spine.sql", "original_file_path": "macros/sql/date_spine.sql", "unique_id": "macro.dbt_utils.default__get_intervals_between", "macro_sql": "{% macro default__get_intervals_between(start_date, end_date, datepart) -%}\n {%- call statement('get_intervals_between', fetch_result=True) %}\n\n select {{ dbt.datediff(start_date, end_date, datepart) }}\n\n {%- endcall -%}\n\n {%- set value_list = load_result('get_intervals_between') -%}\n\n {%- if value_list and value_list['data'] -%}\n {%- set values = value_list['data'] | map(attribute=0) | list %}\n {{ return(values[0]) }}\n {%- else -%}\n {{ return(1) }}\n {%- endif -%}\n\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt.statement", "macro.dbt.datediff"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.955455, "supported_languages": null}, "macro.dbt_utils.date_spine": {"name": "date_spine", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/date_spine.sql", "original_file_path": "macros/sql/date_spine.sql", "unique_id": "macro.dbt_utils.date_spine", "macro_sql": "{% macro date_spine(datepart, start_date, end_date) %}\n {{ return(adapter.dispatch('date_spine', 'dbt_utils')(datepart, start_date, end_date)) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.default__date_spine"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.9556758, "supported_languages": null}, "macro.dbt_utils.default__date_spine": {"name": "default__date_spine", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/date_spine.sql", "original_file_path": "macros/sql/date_spine.sql", "unique_id": "macro.dbt_utils.default__date_spine", "macro_sql": "{% macro default__date_spine(datepart, start_date, end_date) %}\n\n\n{# call as follows:\n\ndate_spine(\n \"day\",\n \"to_date('01/01/2016', 'mm/dd/yyyy')\",\n \"dbt.dateadd(week, 1, current_date)\"\n) #}\n\n\nwith rawdata as (\n\n {{dbt_utils.generate_series(\n dbt_utils.get_intervals_between(start_date, end_date, datepart)\n )}}\n\n),\n\nall_periods as (\n\n select (\n {{\n dbt.dateadd(\n datepart,\n \"row_number() over (order by 1) - 1\",\n start_date\n )\n }}\n ) as date_{{datepart}}\n from rawdata\n\n),\n\nfiltered as (\n\n select *\n from all_periods\n where date_{{datepart}} <= {{ end_date }}\n\n)\n\nselect * from filtered\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.generate_series", "macro.dbt_utils.get_intervals_between", "macro.dbt.dateadd"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.956039, "supported_languages": null}, "macro.dbt_utils.safe_subtract": {"name": "safe_subtract", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/safe_subtract.sql", "original_file_path": "macros/sql/safe_subtract.sql", "unique_id": "macro.dbt_utils.safe_subtract", "macro_sql": "{%- macro safe_subtract(field_list) -%}\n {{ return(adapter.dispatch('safe_subtract', 'dbt_utils')(field_list)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.default__safe_subtract"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.956473, "supported_languages": null}, "macro.dbt_utils.default__safe_subtract": {"name": "default__safe_subtract", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/safe_subtract.sql", "original_file_path": "macros/sql/safe_subtract.sql", "unique_id": "macro.dbt_utils.default__safe_subtract", "macro_sql": "\n\n{%- macro default__safe_subtract(field_list) -%}\n\n{%- if field_list is not iterable or field_list is string or field_list is mapping -%}\n\n{%- set error_message = '\nWarning: the `safe_subtract` macro takes a single list argument instead of \\\nstring arguments. The {}.{} model triggered this warning. \\\n'.format(model.package_name, model.name) -%}\n\n{%- do exceptions.raise_compiler_error(error_message) -%}\n\n{%- endif -%}\n\n{% set fields = [] %}\n\n{%- for field in field_list -%}\n\n {% do fields.append(\"coalesce(\" ~ field ~ \", 0)\") %}\n\n{%- endfor -%}\n\n{{ fields|join(' -\\n ') }}\n\n{%- endmacro -%}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.957054, "supported_languages": null}, "macro.dbt_utils.nullcheck_table": {"name": "nullcheck_table", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/nullcheck_table.sql", "original_file_path": "macros/sql/nullcheck_table.sql", "unique_id": "macro.dbt_utils.nullcheck_table", "macro_sql": "{% macro nullcheck_table(relation) %}\n {{ return(adapter.dispatch('nullcheck_table', 'dbt_utils')(relation)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.default__nullcheck_table"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.957364, "supported_languages": null}, "macro.dbt_utils.default__nullcheck_table": {"name": "default__nullcheck_table", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/nullcheck_table.sql", "original_file_path": "macros/sql/nullcheck_table.sql", "unique_id": "macro.dbt_utils.default__nullcheck_table", "macro_sql": "{% macro default__nullcheck_table(relation) %}\n\n {%- do dbt_utils._is_relation(relation, 'nullcheck_table') -%}\n {%- do dbt_utils._is_ephemeral(relation, 'nullcheck_table') -%}\n {% set cols = adapter.get_columns_in_relation(relation) %}\n\n select {{ dbt_utils.nullcheck(cols) }}\n from {{relation}}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils._is_relation", "macro.dbt_utils._is_ephemeral", "macro.dbt_utils.nullcheck"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.957686, "supported_languages": null}, "macro.dbt_utils.get_relations_by_pattern": {"name": "get_relations_by_pattern", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/get_relations_by_pattern.sql", "original_file_path": "macros/sql/get_relations_by_pattern.sql", "unique_id": "macro.dbt_utils.get_relations_by_pattern", "macro_sql": "{% macro get_relations_by_pattern(schema_pattern, table_pattern, exclude='', database=target.database) %}\n {{ return(adapter.dispatch('get_relations_by_pattern', 'dbt_utils')(schema_pattern, table_pattern, exclude, database)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.default__get_relations_by_pattern"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.958296, "supported_languages": null}, "macro.dbt_utils.default__get_relations_by_pattern": {"name": "default__get_relations_by_pattern", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/get_relations_by_pattern.sql", "original_file_path": "macros/sql/get_relations_by_pattern.sql", "unique_id": "macro.dbt_utils.default__get_relations_by_pattern", "macro_sql": "{% macro default__get_relations_by_pattern(schema_pattern, table_pattern, exclude='', database=target.database) %}\n\n {%- call statement('get_tables', fetch_result=True) %}\n\n {{ dbt_utils.get_tables_by_pattern_sql(schema_pattern, table_pattern, exclude, database) }}\n\n {%- endcall -%}\n\n {%- set table_list = load_result('get_tables') -%}\n\n {%- if table_list and table_list['table'] -%}\n {%- set tbl_relations = [] -%}\n {%- for row in table_list['table'] -%}\n {%- set tbl_relation = api.Relation.create(\n database=database,\n schema=row.table_schema,\n identifier=row.table_name,\n type=row.table_type\n ) -%}\n {%- do tbl_relations.append(tbl_relation) -%}\n {%- endfor -%}\n\n {{ return(tbl_relations) }}\n {%- else -%}\n {{ return([]) }}\n {%- endif -%}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.statement", "macro.dbt_utils.get_tables_by_pattern_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.95917, "supported_languages": null}, "macro.dbt_utils.get_powers_of_two": {"name": "get_powers_of_two", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/generate_series.sql", "original_file_path": "macros/sql/generate_series.sql", "unique_id": "macro.dbt_utils.get_powers_of_two", "macro_sql": "{% macro get_powers_of_two(upper_bound) %}\n {{ return(adapter.dispatch('get_powers_of_two', 'dbt_utils')(upper_bound)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.default__get_powers_of_two"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.960055, "supported_languages": null}, "macro.dbt_utils.default__get_powers_of_two": {"name": "default__get_powers_of_two", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/generate_series.sql", "original_file_path": "macros/sql/generate_series.sql", "unique_id": "macro.dbt_utils.default__get_powers_of_two", "macro_sql": "{% macro default__get_powers_of_two(upper_bound) %}\n\n {% if upper_bound <= 0 %}\n {{ exceptions.raise_compiler_error(\"upper bound must be positive\") }}\n {% endif %}\n\n {% for _ in range(1, 100) %}\n {% if upper_bound <= 2 ** loop.index %}{{ return(loop.index) }}{% endif %}\n {% endfor %}\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.960484, "supported_languages": null}, "macro.dbt_utils.generate_series": {"name": "generate_series", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/generate_series.sql", "original_file_path": "macros/sql/generate_series.sql", "unique_id": "macro.dbt_utils.generate_series", "macro_sql": "{% macro generate_series(upper_bound) %}\n {{ return(adapter.dispatch('generate_series', 'dbt_utils')(upper_bound)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.default__generate_series"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.960758, "supported_languages": null}, "macro.dbt_utils.default__generate_series": {"name": "default__generate_series", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/generate_series.sql", "original_file_path": "macros/sql/generate_series.sql", "unique_id": "macro.dbt_utils.default__generate_series", "macro_sql": "{% macro default__generate_series(upper_bound) %}\n\n {% set n = dbt_utils.get_powers_of_two(upper_bound) %}\n\n with p as (\n select 0 as generated_number union all select 1\n ), unioned as (\n\n select\n\n {% for i in range(n) %}\n p{{i}}.generated_number * power(2, {{i}})\n {% if not loop.last %} + {% endif %}\n {% endfor %}\n + 1\n as generated_number\n\n from\n\n {% for i in range(n) %}\n p as p{{i}}\n {% if not loop.last %} cross join {% endif %}\n {% endfor %}\n\n )\n\n select *\n from unioned\n where generated_number <= {{upper_bound}}\n order by generated_number\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.get_powers_of_two"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.9612741, "supported_languages": null}, "macro.dbt_utils.get_relations_by_prefix": {"name": "get_relations_by_prefix", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/get_relations_by_prefix.sql", "original_file_path": "macros/sql/get_relations_by_prefix.sql", "unique_id": "macro.dbt_utils.get_relations_by_prefix", "macro_sql": "{% macro get_relations_by_prefix(schema, prefix, exclude='', database=target.database) %}\n {{ return(adapter.dispatch('get_relations_by_prefix', 'dbt_utils')(schema, prefix, exclude, database)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.default__get_relations_by_prefix"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.961901, "supported_languages": null}, "macro.dbt_utils.default__get_relations_by_prefix": {"name": "default__get_relations_by_prefix", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/get_relations_by_prefix.sql", "original_file_path": "macros/sql/get_relations_by_prefix.sql", "unique_id": "macro.dbt_utils.default__get_relations_by_prefix", "macro_sql": "{% macro default__get_relations_by_prefix(schema, prefix, exclude='', database=target.database) %}\n\n {%- call statement('get_tables', fetch_result=True) %}\n\n {{ dbt_utils.get_tables_by_prefix_sql(schema, prefix, exclude, database) }}\n\n {%- endcall -%}\n\n {%- set table_list = load_result('get_tables') -%}\n\n {%- if table_list and table_list['table'] -%}\n {%- set tbl_relations = [] -%}\n {%- for row in table_list['table'] -%}\n {%- set tbl_relation = api.Relation.create(\n database=database,\n schema=row.table_schema,\n identifier=row.table_name,\n type=row.table_type\n ) -%}\n {%- do tbl_relations.append(tbl_relation) -%}\n {%- endfor -%}\n\n {{ return(tbl_relations) }}\n {%- else -%}\n {{ return([]) }}\n {%- endif -%}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.statement", "macro.dbt_utils.get_tables_by_prefix_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.962681, "supported_languages": null}, "macro.dbt_utils.get_tables_by_prefix_sql": {"name": "get_tables_by_prefix_sql", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/get_tables_by_prefix_sql.sql", "original_file_path": "macros/sql/get_tables_by_prefix_sql.sql", "unique_id": "macro.dbt_utils.get_tables_by_prefix_sql", "macro_sql": "{% macro get_tables_by_prefix_sql(schema, prefix, exclude='', database=target.database) %}\n {{ return(adapter.dispatch('get_tables_by_prefix_sql', 'dbt_utils')(schema, prefix, exclude, database)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.default__get_tables_by_prefix_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.963058, "supported_languages": null}, "macro.dbt_utils.default__get_tables_by_prefix_sql": {"name": "default__get_tables_by_prefix_sql", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/get_tables_by_prefix_sql.sql", "original_file_path": "macros/sql/get_tables_by_prefix_sql.sql", "unique_id": "macro.dbt_utils.default__get_tables_by_prefix_sql", "macro_sql": "{% macro default__get_tables_by_prefix_sql(schema, prefix, exclude='', database=target.database) %}\n\n {{ dbt_utils.get_tables_by_pattern_sql(\n schema_pattern = schema,\n table_pattern = prefix ~ '%',\n exclude = exclude,\n database = database\n ) }}\n \n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.get_tables_by_pattern_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.963331, "supported_languages": null}, "macro.dbt_utils.star": {"name": "star", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/star.sql", "original_file_path": "macros/sql/star.sql", "unique_id": "macro.dbt_utils.star", "macro_sql": "{% macro star(from, relation_alias=False, except=[], prefix='', suffix='', quote_identifiers=True) -%}\r\n {{ return(adapter.dispatch('star', 'dbt_utils')(from, relation_alias, except, prefix, suffix, quote_identifiers)) }}\r\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.default__star"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.964382, "supported_languages": null}, "macro.dbt_utils.default__star": {"name": "default__star", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/star.sql", "original_file_path": "macros/sql/star.sql", "unique_id": "macro.dbt_utils.default__star", "macro_sql": "{% macro default__star(from, relation_alias=False, except=[], prefix='', suffix='', quote_identifiers=True) -%}\r\n {%- do dbt_utils._is_relation(from, 'star') -%}\r\n {%- do dbt_utils._is_ephemeral(from, 'star') -%}\r\n\r\n {#-- Prevent querying of db in parsing mode. This works because this macro does not create any new refs. #}\r\n {%- if not execute -%}\r\n {% do return('*') %}\r\n {%- endif -%}\r\n\r\n {% set cols = dbt_utils.get_filtered_columns_in_relation(from, except) %}\r\n\r\n {%- if cols|length <= 0 -%}\r\n {% if flags.WHICH == 'compile' %}\r\n {% set response %}\r\n*\r\n/* No columns were returned. Maybe the relation doesn't exist yet \r\nor all columns were excluded. This star is only output during \r\ndbt compile, and exists to keep SQLFluff happy. */\r\n {% endset %}\r\n {% do return(response) %}\r\n {% else %}\r\n {% do return(\"/* no columns returned from star() macro */\") %}\r\n {% endif %}\r\n {%- else -%}\r\n {%- for col in cols %}\r\n {%- if relation_alias %}{{ relation_alias }}.{% else %}{%- endif -%}\r\n {%- if quote_identifiers -%}\r\n {{ adapter.quote(col)|trim }} {%- if prefix!='' or suffix!='' %} as {{ adapter.quote(prefix ~ col ~ suffix)|trim }} {%- endif -%}\r\n {%- else -%}\r\n {{ col|trim }} {%- if prefix!='' or suffix!='' %} as {{ (prefix ~ col ~ suffix)|trim }} {%- endif -%}\r\n {% endif %}\r\n {%- if not loop.last %},{{ '\\n ' }}{%- endif -%}\r\n {%- endfor -%}\r\n {% endif %}\r\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt_utils._is_relation", "macro.dbt_utils._is_ephemeral", "macro.dbt_utils.get_filtered_columns_in_relation"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.965685, "supported_languages": null}, "macro.dbt_utils.unpivot": {"name": "unpivot", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/unpivot.sql", "original_file_path": "macros/sql/unpivot.sql", "unique_id": "macro.dbt_utils.unpivot", "macro_sql": "{% macro unpivot(relation=none, cast_to='varchar', exclude=none, remove=none, field_name='field_name', value_name='value') -%}\n {{ return(adapter.dispatch('unpivot', 'dbt_utils')(relation, cast_to, exclude, remove, field_name, value_name)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.default__unpivot"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.966824, "supported_languages": null}, "macro.dbt_utils.default__unpivot": {"name": "default__unpivot", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/unpivot.sql", "original_file_path": "macros/sql/unpivot.sql", "unique_id": "macro.dbt_utils.default__unpivot", "macro_sql": "{% macro default__unpivot(relation=none, cast_to='varchar', exclude=none, remove=none, field_name='field_name', value_name='value') -%}\n\n {% if not relation %}\n {{ exceptions.raise_compiler_error(\"Error: argument `relation` is required for `unpivot` macro.\") }}\n {% endif %}\n\n {%- set exclude = exclude if exclude is not none else [] %}\n {%- set remove = remove if remove is not none else [] %}\n\n {%- set include_cols = [] %}\n\n {%- set table_columns = {} %}\n\n {%- do table_columns.update({relation: []}) %}\n\n {%- do dbt_utils._is_relation(relation, 'unpivot') -%}\n {%- do dbt_utils._is_ephemeral(relation, 'unpivot') -%}\n {%- set cols = adapter.get_columns_in_relation(relation) %}\n\n {%- for col in cols -%}\n {%- if col.column.lower() not in remove|map('lower') and col.column.lower() not in exclude|map('lower') -%}\n {% do include_cols.append(col) %}\n {%- endif %}\n {%- endfor %}\n\n\n {%- for col in include_cols -%}\n select\n {%- for exclude_col in exclude %}\n {{ exclude_col }},\n {%- endfor %}\n\n cast('{{ col.column }}' as {{ dbt.type_string() }}) as {{ field_name }},\n cast( {% if col.data_type == 'boolean' %}\n {{ dbt.cast_bool_to_text(col.column) }}\n {% else %}\n {{ col.column }}\n {% endif %}\n as {{ cast_to }}) as {{ value_name }}\n\n from {{ relation }}\n\n {% if not loop.last -%}\n union all\n {% endif -%}\n {%- endfor -%}\n\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt_utils._is_relation", "macro.dbt_utils._is_ephemeral", "macro.dbt.type_string", "macro.dbt.cast_bool_to_text"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.9682271, "supported_languages": null}, "macro.dbt_utils.safe_divide": {"name": "safe_divide", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/safe_divide.sql", "original_file_path": "macros/sql/safe_divide.sql", "unique_id": "macro.dbt_utils.safe_divide", "macro_sql": "{% macro safe_divide(numerator, denominator) -%}\n {{ return(adapter.dispatch('safe_divide', 'dbt_utils')(numerator, denominator)) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.default__safe_divide"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.9684942, "supported_languages": null}, "macro.dbt_utils.default__safe_divide": {"name": "default__safe_divide", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/safe_divide.sql", "original_file_path": "macros/sql/safe_divide.sql", "unique_id": "macro.dbt_utils.default__safe_divide", "macro_sql": "{% macro default__safe_divide(numerator, denominator) %}\n ( {{ numerator }} ) / nullif( ( {{ denominator }} ), 0)\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.968621, "supported_languages": null}, "macro.dbt_utils.union_relations": {"name": "union_relations", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/union.sql", "original_file_path": "macros/sql/union.sql", "unique_id": "macro.dbt_utils.union_relations", "macro_sql": "{%- macro union_relations(relations, column_override=none, include=[], exclude=[], source_column_name='_dbt_source_relation', where=none) -%}\n {{ return(adapter.dispatch('union_relations', 'dbt_utils')(relations, column_override, include, exclude, source_column_name, where)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.default__union_relations"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.971554, "supported_languages": null}, "macro.dbt_utils.default__union_relations": {"name": "default__union_relations", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/union.sql", "original_file_path": "macros/sql/union.sql", "unique_id": "macro.dbt_utils.default__union_relations", "macro_sql": "\n\n{%- macro default__union_relations(relations, column_override=none, include=[], exclude=[], source_column_name='_dbt_source_relation', where=none) -%}\n\n {%- if exclude and include -%}\n {{ exceptions.raise_compiler_error(\"Both an exclude and include list were provided to the `union` macro. Only one is allowed\") }}\n {%- endif -%}\n\n {#-- Prevent querying of db in parsing mode. This works because this macro does not create any new refs. -#}\n {%- if not execute %}\n {{ return('') }}\n {% endif -%}\n\n {%- set column_override = column_override if column_override is not none else {} -%}\n\n {%- set relation_columns = {} -%}\n {%- set column_superset = {} -%}\n {%- set all_excludes = [] -%}\n {%- set all_includes = [] -%}\n\n {%- if exclude -%}\n {%- for exc in exclude -%}\n {%- do all_excludes.append(exc | lower) -%}\n {%- endfor -%}\n {%- endif -%}\n\n {%- if include -%}\n {%- for inc in include -%}\n {%- do all_includes.append(inc | lower) -%}\n {%- endfor -%}\n {%- endif -%}\n\n {%- for relation in relations -%}\n\n {%- do relation_columns.update({relation: []}) -%}\n\n {%- do dbt_utils._is_relation(relation, 'union_relations') -%}\n {%- do dbt_utils._is_ephemeral(relation, 'union_relations') -%}\n {%- set cols = adapter.get_columns_in_relation(relation) -%}\n {%- for col in cols -%}\n\n {#- If an exclude list was provided and the column is in the list, do nothing -#}\n {%- if exclude and col.column | lower in all_excludes -%}\n\n {#- If an include list was provided and the column is not in the list, do nothing -#}\n {%- elif include and col.column | lower not in all_includes -%}\n\n {#- Otherwise add the column to the column superset -#}\n {%- else -%}\n\n {#- update the list of columns in this relation -#}\n {%- do relation_columns[relation].append(col.column) -%}\n\n {%- if col.column in column_superset -%}\n\n {%- set stored = column_superset[col.column] -%}\n {%- if col.is_string() and stored.is_string() and col.string_size() > stored.string_size() -%}\n\n {%- do column_superset.update({col.column: col}) -%}\n\n {%- endif %}\n\n {%- else -%}\n\n {%- do column_superset.update({col.column: col}) -%}\n\n {%- endif -%}\n\n {%- endif -%}\n\n {%- endfor -%}\n {%- endfor -%}\n\n {%- set ordered_column_names = column_superset.keys() -%}\n {%- set dbt_command = flags.WHICH -%}\n\n\n {% if dbt_command in ['run', 'build'] %}\n {% if (include | length > 0 or exclude | length > 0) and not column_superset.keys() %}\n {%- set relations_string -%}\n {%- for relation in relations -%}\n {{ relation.name }}\n {%- if not loop.last %}, {% endif -%}\n {%- endfor -%}\n {%- endset -%}\n\n {%- set error_message -%}\n There were no columns found to union for relations {{ relations_string }}\n {%- endset -%}\n\n {{ exceptions.raise_compiler_error(error_message) }}\n {%- endif -%}\n {%- endif -%}\n\n {%- for relation in relations %}\n\n (\n select\n\n {%- if source_column_name is not none %}\n cast({{ dbt.string_literal(relation) }} as {{ dbt.type_string() }}) as {{ source_column_name }},\n {%- endif %}\n\n {% for col_name in ordered_column_names -%}\n\n {%- set col = column_superset[col_name] %}\n {%- set col_type = column_override.get(col.column, col.data_type) %}\n {%- set col_name = adapter.quote(col_name) if col_name in relation_columns[relation] else 'null' %}\n cast({{ col_name }} as {{ col_type }}) as {{ col.quoted }} {% if not loop.last %},{% endif -%}\n\n {%- endfor %}\n\n from {{ relation }}\n\n {% if where -%}\n where {{ where }}\n {%- endif %}\n )\n\n {% if not loop.last -%}\n union all\n {% endif -%}\n\n {%- endfor -%}\n\n{%- endmacro -%}", "depends_on": {"macros": ["macro.dbt_utils._is_relation", "macro.dbt_utils._is_ephemeral", "macro.dbt.string_literal", "macro.dbt.type_string"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.974825, "supported_languages": null}, "macro.dbt_utils.group_by": {"name": "group_by", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/groupby.sql", "original_file_path": "macros/sql/groupby.sql", "unique_id": "macro.dbt_utils.group_by", "macro_sql": "{%- macro group_by(n) -%}\n {{ return(adapter.dispatch('group_by', 'dbt_utils')(n)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.default__group_by"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.975136, "supported_languages": null}, "macro.dbt_utils.default__group_by": {"name": "default__group_by", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/groupby.sql", "original_file_path": "macros/sql/groupby.sql", "unique_id": "macro.dbt_utils.default__group_by", "macro_sql": "\n\n{%- macro default__group_by(n) -%}\n\n group by {% for i in range(1, n + 1) -%}\n {{ i }}{{ ',' if not loop.last }} \n {%- endfor -%}\n\n{%- endmacro -%}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.975372, "supported_languages": null}, "macro.dbt_utils.deduplicate": {"name": "deduplicate", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/deduplicate.sql", "original_file_path": "macros/sql/deduplicate.sql", "unique_id": "macro.dbt_utils.deduplicate", "macro_sql": "{%- macro deduplicate(relation, partition_by, order_by) -%}\n {{ return(adapter.dispatch('deduplicate', 'dbt_utils')(relation, partition_by, order_by)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.postgres__deduplicate"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.976259, "supported_languages": null}, "macro.dbt_utils.default__deduplicate": {"name": "default__deduplicate", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/deduplicate.sql", "original_file_path": "macros/sql/deduplicate.sql", "unique_id": "macro.dbt_utils.default__deduplicate", "macro_sql": "\n\n{%- macro default__deduplicate(relation, partition_by, order_by) -%}\n\n with row_numbered as (\n select\n _inner.*,\n row_number() over (\n partition by {{ partition_by }}\n order by {{ order_by }}\n ) as rn\n from {{ relation }} as _inner\n )\n\n select\n distinct data.*\n from {{ relation }} as data\n {#\n -- Not all DBs will support natural joins but the ones that do include:\n -- Oracle, MySQL, SQLite, Redshift, Teradata, Materialize, Databricks\n -- Apache Spark, SingleStore, Vertica\n -- Those that do not appear to support natural joins include:\n -- SQLServer, Trino, Presto, Rockset, Athena\n #}\n natural join row_numbered\n where row_numbered.rn = 1\n\n{%- endmacro -%}\n\n", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.976476, "supported_languages": null}, "macro.dbt_utils.redshift__deduplicate": {"name": "redshift__deduplicate", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/deduplicate.sql", "original_file_path": "macros/sql/deduplicate.sql", "unique_id": "macro.dbt_utils.redshift__deduplicate", "macro_sql": "{% macro redshift__deduplicate(relation, partition_by, order_by) -%}\n\n {{ return(dbt_utils.default__deduplicate(relation, partition_by, order_by=order_by)) }}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.default__deduplicate"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.976667, "supported_languages": null}, "macro.dbt_utils.postgres__deduplicate": {"name": "postgres__deduplicate", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/deduplicate.sql", "original_file_path": "macros/sql/deduplicate.sql", "unique_id": "macro.dbt_utils.postgres__deduplicate", "macro_sql": "\n{%- macro postgres__deduplicate(relation, partition_by, order_by) -%}\n\n select\n distinct on ({{ partition_by }}) *\n from {{ relation }}\n order by {{ partition_by }}{{ ',' ~ order_by }}\n\n{%- endmacro -%}\n\n", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.9768472, "supported_languages": null}, "macro.dbt_utils.snowflake__deduplicate": {"name": "snowflake__deduplicate", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/deduplicate.sql", "original_file_path": "macros/sql/deduplicate.sql", "unique_id": "macro.dbt_utils.snowflake__deduplicate", "macro_sql": "\n{%- macro snowflake__deduplicate(relation, partition_by, order_by) -%}\n\n select *\n from {{ relation }}\n qualify\n row_number() over (\n partition by {{ partition_by }}\n order by {{ order_by }}\n ) = 1\n\n{%- endmacro -%}\n\n", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.977008, "supported_languages": null}, "macro.dbt_utils.bigquery__deduplicate": {"name": "bigquery__deduplicate", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/deduplicate.sql", "original_file_path": "macros/sql/deduplicate.sql", "unique_id": "macro.dbt_utils.bigquery__deduplicate", "macro_sql": "\n{%- macro bigquery__deduplicate(relation, partition_by, order_by) -%}\n\n select unique.*\n from (\n select\n array_agg (\n original\n order by {{ order_by }}\n limit 1\n )[offset(0)] unique\n from {{ relation }} original\n group by {{ partition_by }}\n )\n\n{%- endmacro -%}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.977174, "supported_languages": null}, "macro.dbt_utils.surrogate_key": {"name": "surrogate_key", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/surrogate_key.sql", "original_file_path": "macros/sql/surrogate_key.sql", "unique_id": "macro.dbt_utils.surrogate_key", "macro_sql": "{%- macro surrogate_key(field_list) -%}\n {% set frustrating_jinja_feature = varargs %}\n {{ return(adapter.dispatch('surrogate_key', 'dbt_utils')(field_list, *varargs)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.default__surrogate_key"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.977825, "supported_languages": null}, "macro.dbt_utils.default__surrogate_key": {"name": "default__surrogate_key", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/surrogate_key.sql", "original_file_path": "macros/sql/surrogate_key.sql", "unique_id": "macro.dbt_utils.default__surrogate_key", "macro_sql": "\n\n{%- macro default__surrogate_key(field_list) -%}\n\n{%- set error_message = '\nWarning: `dbt_utils.surrogate_key` has been replaced by \\\n`dbt_utils.generate_surrogate_key`. The new macro treats null values \\\ndifferently to empty strings. To restore the behaviour of the original \\\nmacro, add a global variable in dbt_project.yml called \\\n`surrogate_key_treat_nulls_as_empty_strings` to your \\\ndbt_project.yml file with a value of True. \\\nThe {}.{} model triggered this warning. \\\n'.format(model.package_name, model.name) -%}\n\n{%- do exceptions.raise_compiler_error(error_message) -%}\n\n{%- endmacro -%}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.978088, "supported_languages": null}, "macro.dbt_utils.safe_add": {"name": "safe_add", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/safe_add.sql", "original_file_path": "macros/sql/safe_add.sql", "unique_id": "macro.dbt_utils.safe_add", "macro_sql": "{%- macro safe_add(field_list) -%}\n {{ return(adapter.dispatch('safe_add', 'dbt_utils')(field_list)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.default__safe_add"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.978593, "supported_languages": null}, "macro.dbt_utils.default__safe_add": {"name": "default__safe_add", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/safe_add.sql", "original_file_path": "macros/sql/safe_add.sql", "unique_id": "macro.dbt_utils.default__safe_add", "macro_sql": "\n\n{%- macro default__safe_add(field_list) -%}\n\n{%- if field_list is not iterable or field_list is string or field_list is mapping -%}\n\n{%- set error_message = '\nWarning: the `safe_add` macro now takes a single list argument instead of \\\nstring arguments. The {}.{} model triggered this warning. \\\n'.format(model.package_name, model.name) -%}\n\n{%- do exceptions.warn(error_message) -%}\n\n{%- endif -%}\n\n{% set fields = [] %}\n\n{%- for field in field_list -%}\n\n {% do fields.append(\"coalesce(\" ~ field ~ \", 0)\") %}\n\n{%- endfor -%}\n\n{{ fields|join(' +\\n ') }}\n\n{%- endmacro -%}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.97925, "supported_languages": null}, "macro.dbt_utils.nullcheck": {"name": "nullcheck", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/nullcheck.sql", "original_file_path": "macros/sql/nullcheck.sql", "unique_id": "macro.dbt_utils.nullcheck", "macro_sql": "{% macro nullcheck(cols) %}\n {{ return(adapter.dispatch('nullcheck', 'dbt_utils')(cols)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.default__nullcheck"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.979608, "supported_languages": null}, "macro.dbt_utils.default__nullcheck": {"name": "default__nullcheck", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/nullcheck.sql", "original_file_path": "macros/sql/nullcheck.sql", "unique_id": "macro.dbt_utils.default__nullcheck", "macro_sql": "{% macro default__nullcheck(cols) %}\n{%- for col in cols %}\n\n {% if col.is_string() -%}\n\n nullif({{col.name}},'') as {{col.name}}\n\n {%- else -%}\n\n {{col.name}}\n\n {%- endif -%}\n\n{%- if not loop.last -%} , {%- endif -%}\n\n{%- endfor -%}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.979924, "supported_languages": null}, "macro.dbt_utils.get_tables_by_pattern_sql": {"name": "get_tables_by_pattern_sql", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/get_tables_by_pattern_sql.sql", "original_file_path": "macros/sql/get_tables_by_pattern_sql.sql", "unique_id": "macro.dbt_utils.get_tables_by_pattern_sql", "macro_sql": "{% macro get_tables_by_pattern_sql(schema_pattern, table_pattern, exclude='', database=target.database) %}\n {{ return(adapter.dispatch('get_tables_by_pattern_sql', 'dbt_utils')\n (schema_pattern, table_pattern, exclude, database)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.default__get_tables_by_pattern_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.981447, "supported_languages": null}, "macro.dbt_utils.default__get_tables_by_pattern_sql": {"name": "default__get_tables_by_pattern_sql", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/get_tables_by_pattern_sql.sql", "original_file_path": "macros/sql/get_tables_by_pattern_sql.sql", "unique_id": "macro.dbt_utils.default__get_tables_by_pattern_sql", "macro_sql": "{% macro default__get_tables_by_pattern_sql(schema_pattern, table_pattern, exclude='', database=target.database) %}\n\n select distinct\n table_schema as {{ adapter.quote('table_schema') }},\n table_name as {{ adapter.quote('table_name') }},\n {{ dbt_utils.get_table_types_sql() }}\n from {{ database }}.information_schema.tables\n where table_schema ilike '{{ schema_pattern }}'\n and table_name ilike '{{ table_pattern }}'\n and table_name not ilike '{{ exclude }}'\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.get_table_types_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.981795, "supported_languages": null}, "macro.dbt_utils.bigquery__get_tables_by_pattern_sql": {"name": "bigquery__get_tables_by_pattern_sql", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/get_tables_by_pattern_sql.sql", "original_file_path": "macros/sql/get_tables_by_pattern_sql.sql", "unique_id": "macro.dbt_utils.bigquery__get_tables_by_pattern_sql", "macro_sql": "{% macro bigquery__get_tables_by_pattern_sql(schema_pattern, table_pattern, exclude='', database=target.database) %}\n\n {% if '%' in schema_pattern %}\n {% set schemata=dbt_utils._bigquery__get_matching_schemata(schema_pattern, database) %}\n {% else %}\n {% set schemata=[schema_pattern] %}\n {% endif %}\n\n {% set sql %}\n {% for schema in schemata %}\n select distinct\n table_schema,\n table_name,\n {{ dbt_utils.get_table_types_sql() }}\n\n from {{ adapter.quote(database) }}.{{ schema }}.INFORMATION_SCHEMA.TABLES\n where lower(table_name) like lower ('{{ table_pattern }}')\n and lower(table_name) not like lower ('{{ exclude }}')\n\n {% if not loop.last %} union all {% endif %}\n\n {% endfor %}\n {% endset %}\n\n {{ return(sql) }}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils._bigquery__get_matching_schemata", "macro.dbt_utils.get_table_types_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.982578, "supported_languages": null}, "macro.dbt_utils._bigquery__get_matching_schemata": {"name": "_bigquery__get_matching_schemata", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/get_tables_by_pattern_sql.sql", "original_file_path": "macros/sql/get_tables_by_pattern_sql.sql", "unique_id": "macro.dbt_utils._bigquery__get_matching_schemata", "macro_sql": "{% macro _bigquery__get_matching_schemata(schema_pattern, database) %}\n {% if execute %}\n\n {% set sql %}\n select schema_name from {{ adapter.quote(database) }}.INFORMATION_SCHEMA.SCHEMATA\n where lower(schema_name) like lower('{{ schema_pattern }}')\n {% endset %}\n\n {% set results=run_query(sql) %}\n\n {% set schemata=results.columns['schema_name'].values() %}\n\n {{ return(schemata) }}\n\n {% else %}\n\n {{ return([]) }}\n\n {% endif %}\n\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.run_query"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.9830651, "supported_languages": null}, "macro.dbt_utils.get_column_values": {"name": "get_column_values", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/get_column_values.sql", "original_file_path": "macros/sql/get_column_values.sql", "unique_id": "macro.dbt_utils.get_column_values", "macro_sql": "{% macro get_column_values(table, column, order_by='count(*) desc', max_records=none, default=none, where=none) -%}\n {{ return(adapter.dispatch('get_column_values', 'dbt_utils')(table, column, order_by, max_records, default, where)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.default__get_column_values"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.984094, "supported_languages": null}, "macro.dbt_utils.default__get_column_values": {"name": "default__get_column_values", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/get_column_values.sql", "original_file_path": "macros/sql/get_column_values.sql", "unique_id": "macro.dbt_utils.default__get_column_values", "macro_sql": "{% macro default__get_column_values(table, column, order_by='count(*) desc', max_records=none, default=none, where=none) -%}\n {#-- Prevent querying of db in parsing mode. This works because this macro does not create any new refs. #}\n {%- if not execute -%}\n {% set default = [] if not default %}\n {{ return(default) }}\n {% endif %}\n\n {%- do dbt_utils._is_ephemeral(table, 'get_column_values') -%}\n\n {# Not all relations are tables. Renaming for internal clarity without breaking functionality for anyone using named arguments #}\n {# TODO: Change the method signature in a future 0.x.0 release #}\n {%- set target_relation = table -%}\n\n {# adapter.load_relation is a convenience wrapper to avoid building a Relation when we already have one #}\n {% set relation_exists = (load_relation(target_relation)) is not none %}\n\n {%- call statement('get_column_values', fetch_result=true) %}\n\n {%- if not relation_exists and default is none -%}\n\n {{ exceptions.raise_compiler_error(\"In get_column_values(): relation \" ~ target_relation ~ \" does not exist and no default value was provided.\") }}\n\n {%- elif not relation_exists and default is not none -%}\n\n {{ log(\"Relation \" ~ target_relation ~ \" does not exist. Returning the default value: \" ~ default) }}\n\n {{ return(default) }}\n\n {%- else -%}\n\n\n select\n {{ column }} as value\n\n from {{ target_relation }}\n\n {% if where is not none %}\n where {{ where }}\n {% endif %}\n\n group by {{ column }}\n order by {{ order_by }}\n\n {% if max_records is not none %}\n limit {{ max_records }}\n {% endif %}\n\n {% endif %}\n\n {%- endcall -%}\n\n {%- set value_list = load_result('get_column_values') -%}\n\n {%- if value_list and value_list['data'] -%}\n {%- set values = value_list['data'] | map(attribute=0) | list %}\n {{ return(values) }}\n {%- else -%}\n {{ return(default) }}\n {%- endif -%}\n\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt_utils._is_ephemeral", "macro.dbt.load_relation", "macro.dbt.statement"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.985518, "supported_languages": null}, "macro.dbt_utils.pivot": {"name": "pivot", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/pivot.sql", "original_file_path": "macros/sql/pivot.sql", "unique_id": "macro.dbt_utils.pivot", "macro_sql": "{% macro pivot(column,\n values,\n alias=True,\n agg='sum',\n cmp='=',\n prefix='',\n suffix='',\n then_value=1,\n else_value=0,\n quote_identifiers=True,\n distinct=False) %}\n {{ return(adapter.dispatch('pivot', 'dbt_utils')(column, values, alias, agg, cmp, prefix, suffix, then_value, else_value, quote_identifiers, distinct)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.default__pivot"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.9865139, "supported_languages": null}, "macro.dbt_utils.default__pivot": {"name": "default__pivot", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/pivot.sql", "original_file_path": "macros/sql/pivot.sql", "unique_id": "macro.dbt_utils.default__pivot", "macro_sql": "{% macro default__pivot(column,\n values,\n alias=True,\n agg='sum',\n cmp='=',\n prefix='',\n suffix='',\n then_value=1,\n else_value=0,\n quote_identifiers=True,\n distinct=False) %}\n {% for value in values %}\n {{ agg }}(\n {% if distinct %} distinct {% endif %}\n case\n when {{ column }} {{ cmp }} '{{ dbt.escape_single_quotes(value) }}'\n then {{ then_value }}\n else {{ else_value }}\n end\n )\n {% if alias %}\n {% if quote_identifiers %}\n as {{ adapter.quote(prefix ~ value ~ suffix) }}\n {% else %}\n as {{ dbt_utils.slugify(prefix ~ value ~ suffix) }}\n {% endif %}\n {% endif %}\n {% if not loop.last %},{% endif %}\n {% endfor %}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.escape_single_quotes", "macro.dbt_utils.slugify"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.987309, "supported_languages": null}, "macro.dbt_utils.get_filtered_columns_in_relation": {"name": "get_filtered_columns_in_relation", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/get_filtered_columns_in_relation.sql", "original_file_path": "macros/sql/get_filtered_columns_in_relation.sql", "unique_id": "macro.dbt_utils.get_filtered_columns_in_relation", "macro_sql": "{% macro get_filtered_columns_in_relation(from, except=[]) -%}\n {{ return(adapter.dispatch('get_filtered_columns_in_relation', 'dbt_utils')(from, except)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.default__get_filtered_columns_in_relation"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.987751, "supported_languages": null}, "macro.dbt_utils.default__get_filtered_columns_in_relation": {"name": "default__get_filtered_columns_in_relation", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/get_filtered_columns_in_relation.sql", "original_file_path": "macros/sql/get_filtered_columns_in_relation.sql", "unique_id": "macro.dbt_utils.default__get_filtered_columns_in_relation", "macro_sql": "{% macro default__get_filtered_columns_in_relation(from, except=[]) -%}\n {%- do dbt_utils._is_relation(from, 'get_filtered_columns_in_relation') -%}\n {%- do dbt_utils._is_ephemeral(from, 'get_filtered_columns_in_relation') -%}\n\n {# -- Prevent querying of db in parsing mode. This works because this macro does not create any new refs. #}\n {%- if not execute -%}\n {{ return('') }}\n {% endif %}\n\n {%- set include_cols = [] %}\n {%- set cols = adapter.get_columns_in_relation(from) -%}\n {%- set except = except | map(\"lower\") | list %}\n {%- for col in cols -%}\n {%- if col.column|lower not in except -%}\n {% do include_cols.append(col.column) %}\n {%- endif %}\n {%- endfor %}\n\n {{ return(include_cols) }}\n\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt_utils._is_relation", "macro.dbt_utils._is_ephemeral"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.9884439, "supported_languages": null}, "macro.dbt_utils.width_bucket": {"name": "width_bucket", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/width_bucket.sql", "original_file_path": "macros/sql/width_bucket.sql", "unique_id": "macro.dbt_utils.width_bucket", "macro_sql": "{% macro width_bucket(expr, min_value, max_value, num_buckets) %}\n {{ return(adapter.dispatch('width_bucket', 'dbt_utils') (expr, min_value, max_value, num_buckets)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.default__width_bucket"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.9891682, "supported_languages": null}, "macro.dbt_utils.default__width_bucket": {"name": "default__width_bucket", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/width_bucket.sql", "original_file_path": "macros/sql/width_bucket.sql", "unique_id": "macro.dbt_utils.default__width_bucket", "macro_sql": "{% macro default__width_bucket(expr, min_value, max_value, num_buckets) -%}\n\n {% set bin_size -%}\n (( {{ max_value }} - {{ min_value }} ) / {{ num_buckets }} )\n {%- endset %}\n (\n -- to break ties when the amount is eaxtly at the bucket egde\n case\n when\n mod(\n {{ dbt.safe_cast(expr, dbt.type_numeric() ) }},\n {{ dbt.safe_cast(bin_size, dbt.type_numeric() ) }}\n ) = 0\n then 1\n else 0\n end\n ) +\n -- Anything over max_value goes the N+1 bucket\n least(\n ceil(\n ({{ expr }} - {{ min_value }})/{{ bin_size }}\n ),\n {{ num_buckets }} + 1\n )\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt.safe_cast", "macro.dbt.type_numeric"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.989753, "supported_languages": null}, "macro.dbt_utils.snowflake__width_bucket": {"name": "snowflake__width_bucket", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/width_bucket.sql", "original_file_path": "macros/sql/width_bucket.sql", "unique_id": "macro.dbt_utils.snowflake__width_bucket", "macro_sql": "{% macro snowflake__width_bucket(expr, min_value, max_value, num_buckets) %}\n width_bucket({{ expr }}, {{ min_value }}, {{ max_value }}, {{ num_buckets }} )\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.989991, "supported_languages": null}, "macro.dbt_utils.get_query_results_as_dict": {"name": "get_query_results_as_dict", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/get_query_results_as_dict.sql", "original_file_path": "macros/sql/get_query_results_as_dict.sql", "unique_id": "macro.dbt_utils.get_query_results_as_dict", "macro_sql": "{% macro get_query_results_as_dict(query) %}\n {{ return(adapter.dispatch('get_query_results_as_dict', 'dbt_utils')(query)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.default__get_query_results_as_dict"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.990421, "supported_languages": null}, "macro.dbt_utils.default__get_query_results_as_dict": {"name": "default__get_query_results_as_dict", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/get_query_results_as_dict.sql", "original_file_path": "macros/sql/get_query_results_as_dict.sql", "unique_id": "macro.dbt_utils.default__get_query_results_as_dict", "macro_sql": "{% macro default__get_query_results_as_dict(query) %}\n\n{# This macro returns a dictionary of the form {column_name: (tuple_of_results)} #}\n\n {%- call statement('get_query_results', fetch_result=True,auto_begin=false) -%}\n\n {{ query }}\n\n {%- endcall -%}\n\n {% set sql_results={} %}\n\n {%- if execute -%}\n {% set sql_results_table = load_result('get_query_results').table.columns %}\n {% for column_name, column in sql_results_table.items() %}\n {% do sql_results.update({column_name: column.values()}) %}\n {% endfor %}\n {%- endif -%}\n\n {{ return(sql_results) }}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.statement"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.9909902, "supported_languages": null}, "macro.dbt_utils.generate_surrogate_key": {"name": "generate_surrogate_key", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/generate_surrogate_key.sql", "original_file_path": "macros/sql/generate_surrogate_key.sql", "unique_id": "macro.dbt_utils.generate_surrogate_key", "macro_sql": "{%- macro generate_surrogate_key(field_list) -%}\n {{ return(adapter.dispatch('generate_surrogate_key', 'dbt_utils')(field_list)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.default__generate_surrogate_key"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.991415, "supported_languages": null}, "macro.dbt_utils.default__generate_surrogate_key": {"name": "default__generate_surrogate_key", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/generate_surrogate_key.sql", "original_file_path": "macros/sql/generate_surrogate_key.sql", "unique_id": "macro.dbt_utils.default__generate_surrogate_key", "macro_sql": "\n\n{%- macro default__generate_surrogate_key(field_list) -%}\n\n{%- if var('surrogate_key_treat_nulls_as_empty_strings', False) -%}\n {%- set default_null_value = \"\" -%}\n{%- else -%}\n {%- set default_null_value = '_dbt_utils_surrogate_key_null_' -%}\n{%- endif -%}\n\n{%- set fields = [] -%}\n\n{%- for field in field_list -%}\n\n {%- do fields.append(\n \"coalesce(cast(\" ~ field ~ \" as \" ~ dbt.type_string() ~ \"), '\" ~ default_null_value ~\"')\"\n ) -%}\n\n {%- if not loop.last %}\n {%- do fields.append(\"'-'\") -%}\n {%- endif -%}\n\n{%- endfor -%}\n\n{{ dbt.hash(dbt.concat(fields)) }}\n\n{%- endmacro -%}", "depends_on": {"macros": ["macro.dbt.type_string", "macro.dbt.hash", "macro.dbt.concat"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.992008, "supported_languages": null}, "macro.dbt_utils.get_table_types_sql": {"name": "get_table_types_sql", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/get_table_types_sql.sql", "original_file_path": "macros/sql/get_table_types_sql.sql", "unique_id": "macro.dbt_utils.get_table_types_sql", "macro_sql": "{%- macro get_table_types_sql() -%}\n {{ return(adapter.dispatch('get_table_types_sql', 'dbt_utils')()) }}\n{%- endmacro -%}\n\n", "depends_on": {"macros": ["macro.dbt_utils.postgres__get_table_types_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.9925601, "supported_languages": null}, "macro.dbt_utils.default__get_table_types_sql": {"name": "default__get_table_types_sql", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/get_table_types_sql.sql", "original_file_path": "macros/sql/get_table_types_sql.sql", "unique_id": "macro.dbt_utils.default__get_table_types_sql", "macro_sql": "{% macro default__get_table_types_sql() %}\n case table_type\n when 'BASE TABLE' then 'table'\n when 'EXTERNAL TABLE' then 'external'\n when 'MATERIALIZED VIEW' then 'materializedview'\n else lower(table_type)\n end as {{ adapter.quote('table_type') }}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.992714, "supported_languages": null}, "macro.dbt_utils.postgres__get_table_types_sql": {"name": "postgres__get_table_types_sql", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/get_table_types_sql.sql", "original_file_path": "macros/sql/get_table_types_sql.sql", "unique_id": "macro.dbt_utils.postgres__get_table_types_sql", "macro_sql": "{% macro postgres__get_table_types_sql() %}\n case table_type\n when 'BASE TABLE' then 'table'\n when 'FOREIGN' then 'external'\n when 'MATERIALIZED VIEW' then 'materializedview'\n else lower(table_type)\n end as {{ adapter.quote('table_type') }}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.992851, "supported_languages": null}, "macro.dbt_utils.databricks__get_table_types_sql": {"name": "databricks__get_table_types_sql", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/get_table_types_sql.sql", "original_file_path": "macros/sql/get_table_types_sql.sql", "unique_id": "macro.dbt_utils.databricks__get_table_types_sql", "macro_sql": "{% macro databricks__get_table_types_sql() %}\n case table_type\n when 'MANAGED' then 'table'\n when 'BASE TABLE' then 'table'\n when 'MATERIALIZED VIEW' then 'materializedview'\n else lower(table_type)\n end as {{ adapter.quote('table_type') }}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.9929888, "supported_languages": null}, "macro.dbt_utils.get_single_value": {"name": "get_single_value", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/get_single_value.sql", "original_file_path": "macros/sql/get_single_value.sql", "unique_id": "macro.dbt_utils.get_single_value", "macro_sql": "{% macro get_single_value(query, default=none) %}\n {{ return(adapter.dispatch('get_single_value', 'dbt_utils')(query, default)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.default__get_single_value"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.993613, "supported_languages": null}, "macro.dbt_utils.default__get_single_value": {"name": "default__get_single_value", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/get_single_value.sql", "original_file_path": "macros/sql/get_single_value.sql", "unique_id": "macro.dbt_utils.default__get_single_value", "macro_sql": "{% macro default__get_single_value(query, default) %}\n\n{# This macro returns the (0, 0) record in a query, i.e. the first row of the first column #}\n\n {%- call statement('get_query_result', fetch_result=True, auto_begin=false) -%}\n\n {{ query }}\n\n {%- endcall -%}\n\n {%- if execute -%}\n\n {% set r = load_result('get_query_result').table.columns[0].values() %}\n {% if r | length == 0 %}\n {% do print('Query `' ~ query ~ '` returned no rows. Using the default value: ' ~ default) %}\n {% set sql_result = default %}\n {% else %}\n {% set sql_result = r[0] %}\n {% endif %}\n \n {%- else -%}\n \n {% set sql_result = default %}\n \n {%- endif -%}\n\n {% do return(sql_result) %}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.statement"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.994424, "supported_languages": null}, "macro.dbt_utils.degrees_to_radians": {"name": "degrees_to_radians", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/haversine_distance.sql", "original_file_path": "macros/sql/haversine_distance.sql", "unique_id": "macro.dbt_utils.degrees_to_radians", "macro_sql": "{% macro degrees_to_radians(degrees) -%}\n acos(-1) * {{degrees}} / 180\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.995399, "supported_languages": null}, "macro.dbt_utils.haversine_distance": {"name": "haversine_distance", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/haversine_distance.sql", "original_file_path": "macros/sql/haversine_distance.sql", "unique_id": "macro.dbt_utils.haversine_distance", "macro_sql": "{% macro haversine_distance(lat1, lon1, lat2, lon2, unit='mi') -%}\n {{ return(adapter.dispatch('haversine_distance', 'dbt_utils')(lat1,lon1,lat2,lon2,unit)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.default__haversine_distance"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.99565, "supported_languages": null}, "macro.dbt_utils.default__haversine_distance": {"name": "default__haversine_distance", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/haversine_distance.sql", "original_file_path": "macros/sql/haversine_distance.sql", "unique_id": "macro.dbt_utils.default__haversine_distance", "macro_sql": "{% macro default__haversine_distance(lat1, lon1, lat2, lon2, unit='mi') -%}\n{%- if unit == 'mi' %}\n {% set conversion_rate = 1 %}\n{% elif unit == 'km' %}\n {% set conversion_rate = 1.60934 %}\n{% else %}\n {{ exceptions.raise_compiler_error(\"unit input must be one of 'mi' or 'km'. Got \" ~ unit) }}\n{% endif %}\n\n 2 * 3961 * asin(sqrt(power((sin(radians(({{ lat2 }} - {{ lat1 }}) / 2))), 2) +\n cos(radians({{lat1}})) * cos(radians({{lat2}})) *\n power((sin(radians(({{ lon2 }} - {{ lon1 }}) / 2))), 2))) * {{ conversion_rate }}\n\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.996162, "supported_languages": null}, "macro.dbt_utils.bigquery__haversine_distance": {"name": "bigquery__haversine_distance", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/haversine_distance.sql", "original_file_path": "macros/sql/haversine_distance.sql", "unique_id": "macro.dbt_utils.bigquery__haversine_distance", "macro_sql": "{% macro bigquery__haversine_distance(lat1, lon1, lat2, lon2, unit='mi') -%}\n{% set radians_lat1 = dbt_utils.degrees_to_radians(lat1) %}\n{% set radians_lat2 = dbt_utils.degrees_to_radians(lat2) %}\n{% set radians_lon1 = dbt_utils.degrees_to_radians(lon1) %}\n{% set radians_lon2 = dbt_utils.degrees_to_radians(lon2) %}\n{%- if unit == 'mi' %}\n {% set conversion_rate = 1 %}\n{% elif unit == 'km' %}\n {% set conversion_rate = 1.60934 %}\n{% else %}\n {{ exceptions.raise_compiler_error(\"unit input must be one of 'mi' or 'km'. Got \" ~ unit) }}\n{% endif %}\n 2 * 3961 * asin(sqrt(power(sin(({{ radians_lat2 }} - {{ radians_lat1 }}) / 2), 2) +\n cos({{ radians_lat1 }}) * cos({{ radians_lat2 }}) *\n power(sin(({{ radians_lon2 }} - {{ radians_lon1 }}) / 2), 2))) * {{ conversion_rate }}\n\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.degrees_to_radians"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137322.996883, "supported_languages": null}, "macro.spark_utils.get_tables": {"name": "get_tables", "resource_type": "macro", "package_name": "spark_utils", "path": "macros/maintenance_operation.sql", "original_file_path": "macros/maintenance_operation.sql", "unique_id": "macro.spark_utils.get_tables", "macro_sql": "{% macro get_tables(table_regex_pattern='.*') %}\n\n {% set tables = [] %}\n {% for database in spark__list_schemas('not_used') %}\n {% for table in spark__list_relations_without_caching(database[0]) %}\n {% set db_tablename = database[0] ~ \".\" ~ table[1] %}\n {% set is_match = modules.re.match(table_regex_pattern, db_tablename) %}\n {% if is_match %}\n {% call statement('table_detail', fetch_result=True) -%}\n describe extended {{ db_tablename }}\n {% endcall %}\n\n {% set table_type = load_result('table_detail').table|reverse|selectattr(0, 'in', ('type', 'TYPE', 'Type'))|first %}\n {% if table_type[1]|lower != 'view' %}\n {{ tables.append(db_tablename) }}\n {% endif %}\n {% endif %}\n {% endfor %}\n {% endfor %}\n {{ return(tables) }}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.statement"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137323.001767, "supported_languages": null}, "macro.spark_utils.get_delta_tables": {"name": "get_delta_tables", "resource_type": "macro", "package_name": "spark_utils", "path": "macros/maintenance_operation.sql", "original_file_path": "macros/maintenance_operation.sql", "unique_id": "macro.spark_utils.get_delta_tables", "macro_sql": "{% macro get_delta_tables(table_regex_pattern='.*') %}\n\n {% set delta_tables = [] %}\n {% for db_tablename in get_tables(table_regex_pattern) %}\n {% call statement('table_detail', fetch_result=True) -%}\n describe extended {{ db_tablename }}\n {% endcall %}\n\n {% set table_type = load_result('table_detail').table|reverse|selectattr(0, 'in', ('provider', 'PROVIDER', 'Provider'))|first %}\n {% if table_type[1]|lower == 'delta' %}\n {{ delta_tables.append(db_tablename) }}\n {% endif %}\n {% endfor %}\n {{ return(delta_tables) }}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.spark_utils.get_tables", "macro.dbt.statement"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137323.00244, "supported_languages": null}, "macro.spark_utils.get_statistic_columns": {"name": "get_statistic_columns", "resource_type": "macro", "package_name": "spark_utils", "path": "macros/maintenance_operation.sql", "original_file_path": "macros/maintenance_operation.sql", "unique_id": "macro.spark_utils.get_statistic_columns", "macro_sql": "{% macro get_statistic_columns(table) %}\n\n {% call statement('input_columns', fetch_result=True) %}\n SHOW COLUMNS IN {{ table }}\n {% endcall %}\n {% set input_columns = load_result('input_columns').table %}\n\n {% set output_columns = [] %}\n {% for column in input_columns %}\n {% call statement('column_information', fetch_result=True) %}\n DESCRIBE TABLE {{ table }} `{{ column[0] }}`\n {% endcall %}\n {% if not load_result('column_information').table[1][1].startswith('struct') and not load_result('column_information').table[1][1].startswith('array') %}\n {{ output_columns.append('`' ~ column[0] ~ '`') }}\n {% endif %}\n {% endfor %}\n {{ return(output_columns) }}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.statement"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137323.003336, "supported_languages": null}, "macro.spark_utils.spark_optimize_delta_tables": {"name": "spark_optimize_delta_tables", "resource_type": "macro", "package_name": "spark_utils", "path": "macros/maintenance_operation.sql", "original_file_path": "macros/maintenance_operation.sql", "unique_id": "macro.spark_utils.spark_optimize_delta_tables", "macro_sql": "{% macro spark_optimize_delta_tables(table_regex_pattern='.*') %}\n\n {% for table in get_delta_tables(table_regex_pattern) %}\n {% set start=modules.datetime.datetime.now() %}\n {% set message_prefix=loop.index ~ \" of \" ~ loop.length %}\n {{ dbt_utils.log_info(message_prefix ~ \" Optimizing \" ~ table) }}\n {% do run_query(\"optimize \" ~ table) %}\n {% set end=modules.datetime.datetime.now() %}\n {% set total_seconds = (end - start).total_seconds() | round(2) %}\n {{ dbt_utils.log_info(message_prefix ~ \" Finished \" ~ table ~ \" in \" ~ total_seconds ~ \"s\") }}\n {% endfor %}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.spark_utils.get_delta_tables", "macro.dbt_utils.log_info", "macro.dbt.run_query"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137323.004164, "supported_languages": null}, "macro.spark_utils.spark_vacuum_delta_tables": {"name": "spark_vacuum_delta_tables", "resource_type": "macro", "package_name": "spark_utils", "path": "macros/maintenance_operation.sql", "original_file_path": "macros/maintenance_operation.sql", "unique_id": "macro.spark_utils.spark_vacuum_delta_tables", "macro_sql": "{% macro spark_vacuum_delta_tables(table_regex_pattern='.*') %}\n\n {% for table in get_delta_tables(table_regex_pattern) %}\n {% set start=modules.datetime.datetime.now() %}\n {% set message_prefix=loop.index ~ \" of \" ~ loop.length %}\n {{ dbt_utils.log_info(message_prefix ~ \" Vacuuming \" ~ table) }}\n {% do run_query(\"vacuum \" ~ table) %}\n {% set end=modules.datetime.datetime.now() %}\n {% set total_seconds = (end - start).total_seconds() | round(2) %}\n {{ dbt_utils.log_info(message_prefix ~ \" Finished \" ~ table ~ \" in \" ~ total_seconds ~ \"s\") }}\n {% endfor %}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.spark_utils.get_delta_tables", "macro.dbt_utils.log_info", "macro.dbt.run_query"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137323.004853, "supported_languages": null}, "macro.spark_utils.spark_analyze_tables": {"name": "spark_analyze_tables", "resource_type": "macro", "package_name": "spark_utils", "path": "macros/maintenance_operation.sql", "original_file_path": "macros/maintenance_operation.sql", "unique_id": "macro.spark_utils.spark_analyze_tables", "macro_sql": "{% macro spark_analyze_tables(table_regex_pattern='.*') %}\n\n {% for table in get_tables(table_regex_pattern) %}\n {% set start=modules.datetime.datetime.now() %}\n {% set columns = get_statistic_columns(table) | join(',') %}\n {% set message_prefix=loop.index ~ \" of \" ~ loop.length %}\n {{ dbt_utils.log_info(message_prefix ~ \" Analyzing \" ~ table) }}\n {% if columns != '' %}\n {% do run_query(\"analyze table \" ~ table ~ \" compute statistics for columns \" ~ columns) %}\n {% endif %}\n {% set end=modules.datetime.datetime.now() %}\n {% set total_seconds = (end - start).total_seconds() | round(2) %}\n {{ dbt_utils.log_info(message_prefix ~ \" Finished \" ~ table ~ \" in \" ~ total_seconds ~ \"s\") }}\n {% endfor %}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.spark_utils.get_tables", "macro.spark_utils.get_statistic_columns", "macro.dbt_utils.log_info", "macro.dbt.run_query"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137323.00579, "supported_languages": null}, "macro.spark_utils.spark__concat": {"name": "spark__concat", "resource_type": "macro", "package_name": "spark_utils", "path": "macros/dbt_utils/cross_db_utils/concat.sql", "original_file_path": "macros/dbt_utils/cross_db_utils/concat.sql", "unique_id": "macro.spark_utils.spark__concat", "macro_sql": "{% macro spark__concat(fields) -%}\n concat({{ fields|join(', ') }})\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137323.005982, "supported_languages": null}, "macro.spark_utils.spark__type_numeric": {"name": "spark__type_numeric", "resource_type": "macro", "package_name": "spark_utils", "path": "macros/dbt_utils/cross_db_utils/datatypes.sql", "original_file_path": "macros/dbt_utils/cross_db_utils/datatypes.sql", "unique_id": "macro.spark_utils.spark__type_numeric", "macro_sql": "{% macro spark__type_numeric() %}\n decimal(28, 6)\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137323.0060852, "supported_languages": null}, "macro.spark_utils.spark__dateadd": {"name": "spark__dateadd", "resource_type": "macro", "package_name": "spark_utils", "path": "macros/dbt_utils/cross_db_utils/dateadd.sql", "original_file_path": "macros/dbt_utils/cross_db_utils/dateadd.sql", "unique_id": "macro.spark_utils.spark__dateadd", "macro_sql": "{% macro spark__dateadd(datepart, interval, from_date_or_timestamp) %}\n\n {%- set clock_component -%}\n {# make sure the dates + timestamps are real, otherwise raise an error asap #}\n to_unix_timestamp({{ spark_utils.assert_not_null('to_timestamp', from_date_or_timestamp) }})\n - to_unix_timestamp({{ spark_utils.assert_not_null('date', from_date_or_timestamp) }})\n {%- endset -%}\n\n {%- if datepart in ['day', 'week'] -%}\n \n {%- set multiplier = 7 if datepart == 'week' else 1 -%}\n\n to_timestamp(\n to_unix_timestamp(\n date_add(\n {{ spark_utils.assert_not_null('date', from_date_or_timestamp) }},\n cast({{interval}} * {{multiplier}} as int)\n )\n ) + {{clock_component}}\n )\n\n {%- elif datepart in ['month', 'quarter', 'year'] -%}\n \n {%- set multiplier -%} \n {%- if datepart == 'month' -%} 1\n {%- elif datepart == 'quarter' -%} 3\n {%- elif datepart == 'year' -%} 12\n {%- endif -%}\n {%- endset -%}\n\n to_timestamp(\n to_unix_timestamp(\n add_months(\n {{ spark_utils.assert_not_null('date', from_date_or_timestamp) }},\n cast({{interval}} * {{multiplier}} as int)\n )\n ) + {{clock_component}}\n )\n\n {%- elif datepart in ('hour', 'minute', 'second', 'millisecond', 'microsecond') -%}\n \n {%- set multiplier -%} \n {%- if datepart == 'hour' -%} 3600\n {%- elif datepart == 'minute' -%} 60\n {%- elif datepart == 'second' -%} 1\n {%- elif datepart == 'millisecond' -%} (1/1000000)\n {%- elif datepart == 'microsecond' -%} (1/1000000)\n {%- endif -%}\n {%- endset -%}\n\n to_timestamp(\n {{ spark_utils.assert_not_null('to_unix_timestamp', from_date_or_timestamp) }}\n + cast({{interval}} * {{multiplier}} as int)\n )\n\n {%- else -%}\n\n {{ exceptions.raise_compiler_error(\"macro dateadd not implemented for datepart ~ '\" ~ datepart ~ \"' ~ on Spark\") }}\n\n {%- endif -%}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.spark_utils.assert_not_null"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137323.0085728, "supported_languages": null}, "macro.spark_utils.spark__datediff": {"name": "spark__datediff", "resource_type": "macro", "package_name": "spark_utils", "path": "macros/dbt_utils/cross_db_utils/datediff.sql", "original_file_path": "macros/dbt_utils/cross_db_utils/datediff.sql", "unique_id": "macro.spark_utils.spark__datediff", "macro_sql": "{% macro spark__datediff(first_date, second_date, datepart) %}\n\n {%- if datepart in ['day', 'week', 'month', 'quarter', 'year'] -%}\n \n {# make sure the dates are real, otherwise raise an error asap #}\n {% set first_date = spark_utils.assert_not_null('date', first_date) %}\n {% set second_date = spark_utils.assert_not_null('date', second_date) %}\n \n {%- endif -%}\n \n {%- if datepart == 'day' -%}\n \n datediff({{second_date}}, {{first_date}})\n \n {%- elif datepart == 'week' -%}\n \n case when {{first_date}} < {{second_date}}\n then floor(datediff({{second_date}}, {{first_date}})/7)\n else ceil(datediff({{second_date}}, {{first_date}})/7)\n end\n \n -- did we cross a week boundary (Sunday)?\n + case\n when {{first_date}} < {{second_date}} and dayofweek({{second_date}}) < dayofweek({{first_date}}) then 1\n when {{first_date}} > {{second_date}} and dayofweek({{second_date}}) > dayofweek({{first_date}}) then -1\n else 0 end\n\n {%- elif datepart == 'month' -%}\n\n case when {{first_date}} < {{second_date}}\n then floor(months_between(date({{second_date}}), date({{first_date}})))\n else ceil(months_between(date({{second_date}}), date({{first_date}})))\n end\n \n -- did we cross a month boundary?\n + case\n when {{first_date}} < {{second_date}} and dayofmonth({{second_date}}) < dayofmonth({{first_date}}) then 1\n when {{first_date}} > {{second_date}} and dayofmonth({{second_date}}) > dayofmonth({{first_date}}) then -1\n else 0 end\n \n {%- elif datepart == 'quarter' -%}\n \n case when {{first_date}} < {{second_date}}\n then floor(months_between(date({{second_date}}), date({{first_date}}))/3)\n else ceil(months_between(date({{second_date}}), date({{first_date}}))/3)\n end\n \n -- did we cross a quarter boundary?\n + case\n when {{first_date}} < {{second_date}} and (\n (dayofyear({{second_date}}) - (quarter({{second_date}}) * 365/4))\n < (dayofyear({{first_date}}) - (quarter({{first_date}}) * 365/4))\n ) then 1\n when {{first_date}} > {{second_date}} and (\n (dayofyear({{second_date}}) - (quarter({{second_date}}) * 365/4))\n > (dayofyear({{first_date}}) - (quarter({{first_date}}) * 365/4))\n ) then -1\n else 0 end\n\n {%- elif datepart == 'year' -%}\n \n year({{second_date}}) - year({{first_date}})\n\n {%- elif datepart in ('hour', 'minute', 'second', 'millisecond', 'microsecond') -%}\n \n {%- set divisor -%} \n {%- if datepart == 'hour' -%} 3600\n {%- elif datepart == 'minute' -%} 60\n {%- elif datepart == 'second' -%} 1\n {%- elif datepart == 'millisecond' -%} (1/1000)\n {%- elif datepart == 'microsecond' -%} (1/1000000)\n {%- endif -%}\n {%- endset -%}\n\n case when {{first_date}} < {{second_date}}\n then ceil((\n {# make sure the timestamps are real, otherwise raise an error asap #}\n {{ spark_utils.assert_not_null('to_unix_timestamp', spark_utils.assert_not_null('to_timestamp', second_date)) }}\n - {{ spark_utils.assert_not_null('to_unix_timestamp', spark_utils.assert_not_null('to_timestamp', first_date)) }}\n ) / {{divisor}})\n else floor((\n {{ spark_utils.assert_not_null('to_unix_timestamp', spark_utils.assert_not_null('to_timestamp', second_date)) }}\n - {{ spark_utils.assert_not_null('to_unix_timestamp', spark_utils.assert_not_null('to_timestamp', first_date)) }}\n ) / {{divisor}})\n end\n \n {% if datepart == 'millisecond' %}\n + cast(date_format({{second_date}}, 'SSS') as int)\n - cast(date_format({{first_date}}, 'SSS') as int)\n {% endif %}\n \n {% if datepart == 'microsecond' %} \n {% set capture_str = '[0-9]{4}-[0-9]{2}-[0-9]{2}.[0-9]{2}:[0-9]{2}:[0-9]{2}.([0-9]{6})' %}\n -- Spark doesn't really support microseconds, so this is a massive hack!\n -- It will only work if the timestamp-string is of the format\n -- 'yyyy-MM-dd-HH mm.ss.SSSSSS'\n + cast(regexp_extract({{second_date}}, '{{capture_str}}', 1) as int)\n - cast(regexp_extract({{first_date}}, '{{capture_str}}', 1) as int) \n {% endif %}\n\n {%- else -%}\n\n {{ exceptions.raise_compiler_error(\"macro datediff not implemented for datepart ~ '\" ~ datepart ~ \"' ~ on Spark\") }}\n\n {%- endif -%}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.spark_utils.assert_not_null"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137323.015651, "supported_languages": null}, "macro.spark_utils.spark__current_timestamp": {"name": "spark__current_timestamp", "resource_type": "macro", "package_name": "spark_utils", "path": "macros/dbt_utils/cross_db_utils/current_timestamp.sql", "original_file_path": "macros/dbt_utils/cross_db_utils/current_timestamp.sql", "unique_id": "macro.spark_utils.spark__current_timestamp", "macro_sql": "{% macro spark__current_timestamp() %}\n current_timestamp()\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137323.01582, "supported_languages": null}, "macro.spark_utils.spark__current_timestamp_in_utc": {"name": "spark__current_timestamp_in_utc", "resource_type": "macro", "package_name": "spark_utils", "path": "macros/dbt_utils/cross_db_utils/current_timestamp.sql", "original_file_path": "macros/dbt_utils/cross_db_utils/current_timestamp.sql", "unique_id": "macro.spark_utils.spark__current_timestamp_in_utc", "macro_sql": "{% macro spark__current_timestamp_in_utc() %}\n unix_timestamp()\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137323.015892, "supported_languages": null}, "macro.spark_utils.spark__split_part": {"name": "spark__split_part", "resource_type": "macro", "package_name": "spark_utils", "path": "macros/dbt_utils/cross_db_utils/split_part.sql", "original_file_path": "macros/dbt_utils/cross_db_utils/split_part.sql", "unique_id": "macro.spark_utils.spark__split_part", "macro_sql": "{% macro spark__split_part(string_text, delimiter_text, part_number) %}\n\n {% set delimiter_expr %}\n \n -- escape if starts with a special character\n case when regexp_extract({{ delimiter_text }}, '([^A-Za-z0-9])(.*)', 1) != '_'\n then concat('\\\\', {{ delimiter_text }})\n else {{ delimiter_text }} end\n \n {% endset %}\n\n {% set split_part_expr %}\n \n split(\n {{ string_text }},\n {{ delimiter_expr }}\n )[({{ part_number - 1 }})]\n \n {% endset %}\n \n {{ return(split_part_expr) }}\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137323.016396, "supported_languages": null}, "macro.spark_utils.spark__get_relations_by_pattern": {"name": "spark__get_relations_by_pattern", "resource_type": "macro", "package_name": "spark_utils", "path": "macros/dbt_utils/sql/get_relations_by_prefix.sql", "original_file_path": "macros/dbt_utils/sql/get_relations_by_prefix.sql", "unique_id": "macro.spark_utils.spark__get_relations_by_pattern", "macro_sql": "{% macro spark__get_relations_by_pattern(schema_pattern, table_pattern, exclude='', database=target.database) %}\n\n {%- call statement('get_tables', fetch_result=True) %}\n\n show table extended in {{ schema_pattern }} like '{{ table_pattern }}'\n\n {%- endcall -%}\n\n {%- set table_list = load_result('get_tables') -%}\n\n {%- if table_list and table_list['table'] -%}\n {%- set tbl_relations = [] -%}\n {%- for row in table_list['table'] -%}\n {%- set tbl_relation = api.Relation.create(\n database=None,\n schema=row[0],\n identifier=row[1],\n type=('view' if 'Type: VIEW' in row[3] else 'table')\n ) -%}\n {%- do tbl_relations.append(tbl_relation) -%}\n {%- endfor -%}\n\n {{ return(tbl_relations) }}\n {%- else -%}\n {{ return([]) }}\n {%- endif -%}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.statement"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137323.017845, "supported_languages": null}, "macro.spark_utils.spark__get_relations_by_prefix": {"name": "spark__get_relations_by_prefix", "resource_type": "macro", "package_name": "spark_utils", "path": "macros/dbt_utils/sql/get_relations_by_prefix.sql", "original_file_path": "macros/dbt_utils/sql/get_relations_by_prefix.sql", "unique_id": "macro.spark_utils.spark__get_relations_by_prefix", "macro_sql": "{% macro spark__get_relations_by_prefix(schema_pattern, table_pattern, exclude='', database=target.database) %}\n {% set table_pattern = table_pattern ~ '*' %}\n {{ return(spark_utils.spark__get_relations_by_pattern(schema_pattern, table_pattern, exclude='', database=target.database)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.spark_utils.spark__get_relations_by_pattern"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137323.0181708, "supported_languages": null}, "macro.spark_utils.spark__get_tables_by_pattern": {"name": "spark__get_tables_by_pattern", "resource_type": "macro", "package_name": "spark_utils", "path": "macros/dbt_utils/sql/get_relations_by_prefix.sql", "original_file_path": "macros/dbt_utils/sql/get_relations_by_prefix.sql", "unique_id": "macro.spark_utils.spark__get_tables_by_pattern", "macro_sql": "{% macro spark__get_tables_by_pattern(schema_pattern, table_pattern, exclude='', database=target.database) %}\n {{ return(spark_utils.spark__get_relations_by_pattern(schema_pattern, table_pattern, exclude='', database=target.database)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.spark_utils.spark__get_relations_by_pattern"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137323.018475, "supported_languages": null}, "macro.spark_utils.spark__get_tables_by_prefix": {"name": "spark__get_tables_by_prefix", "resource_type": "macro", "package_name": "spark_utils", "path": "macros/dbt_utils/sql/get_relations_by_prefix.sql", "original_file_path": "macros/dbt_utils/sql/get_relations_by_prefix.sql", "unique_id": "macro.spark_utils.spark__get_tables_by_prefix", "macro_sql": "{% macro spark__get_tables_by_prefix(schema_pattern, table_pattern, exclude='', database=target.database) %}\n {{ return(spark_utils.spark__get_relations_by_prefix(schema_pattern, table_pattern, exclude='', database=target.database)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.spark_utils.spark__get_relations_by_prefix"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137323.01874, "supported_languages": null}, "macro.spark_utils.assert_not_null": {"name": "assert_not_null", "resource_type": "macro", "package_name": "spark_utils", "path": "macros/etc/assert_not_null.sql", "original_file_path": "macros/etc/assert_not_null.sql", "unique_id": "macro.spark_utils.assert_not_null", "macro_sql": "{% macro assert_not_null(function, arg) -%}\n {{ return(adapter.dispatch('assert_not_null', 'spark_utils')(function, arg)) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.spark_utils.default__assert_not_null"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137323.019049, "supported_languages": null}, "macro.spark_utils.default__assert_not_null": {"name": "default__assert_not_null", "resource_type": "macro", "package_name": "spark_utils", "path": "macros/etc/assert_not_null.sql", "original_file_path": "macros/etc/assert_not_null.sql", "unique_id": "macro.spark_utils.default__assert_not_null", "macro_sql": "{% macro default__assert_not_null(function, arg) %}\n\n coalesce({{function}}({{arg}}), nvl2({{function}}({{arg}}), assert_true({{function}}({{arg}}) is not null), null))\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137323.019237, "supported_languages": null}, "macro.spark_utils.spark__convert_timezone": {"name": "spark__convert_timezone", "resource_type": "macro", "package_name": "spark_utils", "path": "macros/snowplow/convert_timezone.sql", "original_file_path": "macros/snowplow/convert_timezone.sql", "unique_id": "macro.spark_utils.spark__convert_timezone", "macro_sql": "{% macro spark__convert_timezone(in_tz, out_tz, in_timestamp) %}\n from_utc_timestamp(to_utc_timestamp({{in_timestamp}}, {{in_tz}}), {{out_tz}})\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137323.019428, "supported_languages": null}, "macro.fivetran_utils.enabled_vars": {"name": "enabled_vars", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/enabled_vars.sql", "original_file_path": "macros/enabled_vars.sql", "unique_id": "macro.fivetran_utils.enabled_vars", "macro_sql": "{% macro enabled_vars(vars) %}\n\n{% for v in vars %}\n \n {% if var(v, True) == False %}\n {{ return(False) }}\n {% endif %}\n\n{% endfor %}\n\n{{ return(True) }}\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137323.019901, "supported_languages": null}, "macro.fivetran_utils.percentile": {"name": "percentile", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/percentile.sql", "original_file_path": "macros/percentile.sql", "unique_id": "macro.fivetran_utils.percentile", "macro_sql": "{% macro percentile(percentile_field, partition_field, percent) -%}\n\n{{ adapter.dispatch('percentile', 'fivetran_utils') (percentile_field, partition_field, percent) }}\n\n{%- endmacro %}", "depends_on": {"macros": ["macro.fivetran_utils.postgres__percentile"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137323.020967, "supported_languages": null}, "macro.fivetran_utils.default__percentile": {"name": "default__percentile", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/percentile.sql", "original_file_path": "macros/percentile.sql", "unique_id": "macro.fivetran_utils.default__percentile", "macro_sql": "{% macro default__percentile(percentile_field, partition_field, percent) %}\n\n percentile_cont( \n {{ percent }} )\n within group ( order by {{ percentile_field }} )\n over ( partition by {{ partition_field }} )\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137323.021148, "supported_languages": null}, "macro.fivetran_utils.redshift__percentile": {"name": "redshift__percentile", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/percentile.sql", "original_file_path": "macros/percentile.sql", "unique_id": "macro.fivetran_utils.redshift__percentile", "macro_sql": "{% macro redshift__percentile(percentile_field, partition_field, percent) %}\n\n percentile_cont( \n {{ percent }} )\n within group ( order by {{ percentile_field }} )\n over ( partition by {{ partition_field }} )\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137323.021302, "supported_languages": null}, "macro.fivetran_utils.bigquery__percentile": {"name": "bigquery__percentile", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/percentile.sql", "original_file_path": "macros/percentile.sql", "unique_id": "macro.fivetran_utils.bigquery__percentile", "macro_sql": "{% macro bigquery__percentile(percentile_field, partition_field, percent) %}\n\n percentile_cont( \n {{ percentile_field }}, \n {{ percent }}) \n over (partition by {{ partition_field }} \n )\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137323.021455, "supported_languages": null}, "macro.fivetran_utils.postgres__percentile": {"name": "postgres__percentile", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/percentile.sql", "original_file_path": "macros/percentile.sql", "unique_id": "macro.fivetran_utils.postgres__percentile", "macro_sql": "{% macro postgres__percentile(percentile_field, partition_field, percent) %}\n\n percentile_cont( \n {{ percent }} )\n within group ( order by {{ percentile_field }} )\n /* have to group by partition field */\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137323.021591, "supported_languages": null}, "macro.fivetran_utils.spark__percentile": {"name": "spark__percentile", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/percentile.sql", "original_file_path": "macros/percentile.sql", "unique_id": "macro.fivetran_utils.spark__percentile", "macro_sql": "{% macro spark__percentile(percentile_field, partition_field, percent) %}\n\n percentile( \n {{ percentile_field }}, \n {{ percent }}) \n over (partition by {{ partition_field }} \n )\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137323.021744, "supported_languages": null}, "macro.fivetran_utils.pivot_json_extract": {"name": "pivot_json_extract", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/pivot_json_extract.sql", "original_file_path": "macros/pivot_json_extract.sql", "unique_id": "macro.fivetran_utils.pivot_json_extract", "macro_sql": "{% macro pivot_json_extract(string, list_of_properties) %}\n\n{%- for property in list_of_properties -%}\n{%- if property is mapping -%}\nreplace( {{ fivetran_utils.json_extract(string, property.name) }}, '\"', '') as {{ property.alias if property.alias else property.name | replace(' ', '_') | replace('.', '_') | lower }}\n\n{%- else -%}\nreplace( {{ fivetran_utils.json_extract(string, property) }}, '\"', '') as {{ property | replace(' ', '_') | lower }}\n\n{%- endif -%}\n{%- if not loop.last -%},{%- endif %}\n{% endfor -%}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.fivetran_utils.json_extract"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137323.0226371, "supported_languages": null}, "macro.fivetran_utils.persist_pass_through_columns": {"name": "persist_pass_through_columns", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/persist_pass_through_columns.sql", "original_file_path": "macros/persist_pass_through_columns.sql", "unique_id": "macro.fivetran_utils.persist_pass_through_columns", "macro_sql": "{% macro persist_pass_through_columns(pass_through_variable, identifier=none, transform='') %}\n\n{% if var(pass_through_variable, none) %}\n {% for field in var(pass_through_variable) %}\n , {{ transform ~ '(' ~ (identifier ~ '.' if identifier else '') ~ (field.alias if field.alias else field.name) ~ ')' }} as {{ field.alias if field.alias else field.name }}\n {% endfor %}\n{% endif %}\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137323.023243, "supported_languages": null}, "macro.fivetran_utils.json_parse": {"name": "json_parse", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/json_parse.sql", "original_file_path": "macros/json_parse.sql", "unique_id": "macro.fivetran_utils.json_parse", "macro_sql": "{% macro json_parse(string, string_path) -%}\n\n{{ adapter.dispatch('json_parse', 'fivetran_utils') (string, string_path) }}\n\n{%- endmacro %}", "depends_on": {"macros": ["macro.fivetran_utils.postgres__json_parse"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137323.0244591, "supported_languages": null}, "macro.fivetran_utils.default__json_parse": {"name": "default__json_parse", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/json_parse.sql", "original_file_path": "macros/json_parse.sql", "unique_id": "macro.fivetran_utils.default__json_parse", "macro_sql": "{% macro default__json_parse(string, string_path) %}\n\n json_extract_path_text({{string}}, {%- for s in string_path -%}'{{ s }}'{%- if not loop.last -%},{%- endif -%}{%- endfor -%} )\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137323.0246851, "supported_languages": null}, "macro.fivetran_utils.redshift__json_parse": {"name": "redshift__json_parse", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/json_parse.sql", "original_file_path": "macros/json_parse.sql", "unique_id": "macro.fivetran_utils.redshift__json_parse", "macro_sql": "{% macro redshift__json_parse(string, string_path) %}\n\n json_extract_path_text({{string}}, {%- for s in string_path -%}'{{ s }}'{%- if not loop.last -%},{%- endif -%}{%- endfor -%} )\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137323.0249112, "supported_languages": null}, "macro.fivetran_utils.bigquery__json_parse": {"name": "bigquery__json_parse", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/json_parse.sql", "original_file_path": "macros/json_parse.sql", "unique_id": "macro.fivetran_utils.bigquery__json_parse", "macro_sql": "{% macro bigquery__json_parse(string, string_path) %}\n\n \n json_extract_scalar({{string}}, '$.{%- for s in string_path -%}{{ s }}{%- if not loop.last -%}.{%- endif -%}{%- endfor -%} ')\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137323.02513, "supported_languages": null}, "macro.fivetran_utils.postgres__json_parse": {"name": "postgres__json_parse", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/json_parse.sql", "original_file_path": "macros/json_parse.sql", "unique_id": "macro.fivetran_utils.postgres__json_parse", "macro_sql": "{% macro postgres__json_parse(string, string_path) %}\n\n {{string}}::json #>> '{ {%- for s in string_path -%}{{ s }}{%- if not loop.last -%},{%- endif -%}{%- endfor -%} }'\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137323.025354, "supported_languages": null}, "macro.fivetran_utils.snowflake__json_parse": {"name": "snowflake__json_parse", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/json_parse.sql", "original_file_path": "macros/json_parse.sql", "unique_id": "macro.fivetran_utils.snowflake__json_parse", "macro_sql": "{% macro snowflake__json_parse(string, string_path) %}\n\n parse_json( {{string}} ) {%- for s in string_path -%}{% if s is number %}[{{ s }}]{% else %}['{{ s }}']{% endif %}{%- endfor -%}\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137323.0256078, "supported_languages": null}, "macro.fivetran_utils.spark__json_parse": {"name": "spark__json_parse", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/json_parse.sql", "original_file_path": "macros/json_parse.sql", "unique_id": "macro.fivetran_utils.spark__json_parse", "macro_sql": "{% macro spark__json_parse(string, string_path) %}\n\n {{string}} : {%- for s in string_path -%}{% if s is number %}[{{ s }}]{% else %}['{{ s }}']{% endif %}{%- endfor -%}\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137323.02586, "supported_languages": null}, "macro.fivetran_utils.sqlserver__json_parse": {"name": "sqlserver__json_parse", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/json_parse.sql", "original_file_path": "macros/json_parse.sql", "unique_id": "macro.fivetran_utils.sqlserver__json_parse", "macro_sql": "{% macro sqlserver__json_parse(string, string_path) %}\n\n json_value({{string}}, '$.{%- for s in string_path -%}{{ s }}{%- if not loop.last -%}.{%- endif -%}{%- endfor -%} ')\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137323.026089, "supported_languages": null}, "macro.fivetran_utils.max_bool": {"name": "max_bool", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/max_bool.sql", "original_file_path": "macros/max_bool.sql", "unique_id": "macro.fivetran_utils.max_bool", "macro_sql": "{% macro max_bool(boolean_field) -%}\n\n{{ adapter.dispatch('max_bool', 'fivetran_utils') (boolean_field) }}\n\n{%- endmacro %}", "depends_on": {"macros": ["macro.fivetran_utils.default__max_bool"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137323.026413, "supported_languages": null}, "macro.fivetran_utils.default__max_bool": {"name": "default__max_bool", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/max_bool.sql", "original_file_path": "macros/max_bool.sql", "unique_id": "macro.fivetran_utils.default__max_bool", "macro_sql": "{% macro default__max_bool(boolean_field) %}\n\n bool_or( {{ boolean_field }} )\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137323.026512, "supported_languages": null}, "macro.fivetran_utils.snowflake__max_bool": {"name": "snowflake__max_bool", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/max_bool.sql", "original_file_path": "macros/max_bool.sql", "unique_id": "macro.fivetran_utils.snowflake__max_bool", "macro_sql": "{% macro snowflake__max_bool(boolean_field) %}\n\n max( {{ boolean_field }} )\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137323.026607, "supported_languages": null}, "macro.fivetran_utils.bigquery__max_bool": {"name": "bigquery__max_bool", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/max_bool.sql", "original_file_path": "macros/max_bool.sql", "unique_id": "macro.fivetran_utils.bigquery__max_bool", "macro_sql": "{% macro bigquery__max_bool(boolean_field) %}\n\n max( {{ boolean_field }} )\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137323.0267048, "supported_languages": null}, "macro.fivetran_utils.calculated_fields": {"name": "calculated_fields", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/calculated_fields.sql", "original_file_path": "macros/calculated_fields.sql", "unique_id": "macro.fivetran_utils.calculated_fields", "macro_sql": "{% macro calculated_fields(variable) -%}\n\n{% if var(variable, none) %}\n {% for field in var(variable) %}\n , {{ field.transform_sql }} as {{ field.name }} \n {% endfor %}\n{% endif %}\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137323.027044, "supported_languages": null}, "macro.fivetran_utils.drop_schemas_automation": {"name": "drop_schemas_automation", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/drop_schemas_automation.sql", "original_file_path": "macros/drop_schemas_automation.sql", "unique_id": "macro.fivetran_utils.drop_schemas_automation", "macro_sql": "{% macro drop_schemas_automation(drop_target_schema=true) %}\n {{ return(adapter.dispatch('drop_schemas_automation', 'fivetran_utils')(drop_target_schema)) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.fivetran_utils.default__drop_schemas_automation"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137323.0276759, "supported_languages": null}, "macro.fivetran_utils.default__drop_schemas_automation": {"name": "default__drop_schemas_automation", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/drop_schemas_automation.sql", "original_file_path": "macros/drop_schemas_automation.sql", "unique_id": "macro.fivetran_utils.default__drop_schemas_automation", "macro_sql": "{% macro default__drop_schemas_automation(drop_target_schema=true) %}\n\n{% set fetch_list_sql %}\n {% if target.type not in ('databricks', 'spark') %}\n select schema_name\n from \n {{ wrap_in_quotes(target.database) }}.INFORMATION_SCHEMA.SCHEMATA\n where lower(schema_name) like '{{ target.schema | lower }}{%- if not drop_target_schema -%}_{%- endif -%}%'\n {% else %}\n SHOW SCHEMAS LIKE '{{ target.schema }}{%- if not drop_target_schema -%}_{%- endif -%}*'\n {% endif %}\n{% endset %}\n\n{% set results = run_query(fetch_list_sql) %}\n\n{% if execute %}\n {% set results_list = results.columns[0].values() %}\n{% else %}\n {% set results_list = [] %}\n{% endif %}\n\n{% for schema_to_drop in results_list %}\n {% do adapter.drop_schema(api.Relation.create(database=target.database, schema=schema_to_drop)) %}\n {{ print('Schema ' ~ schema_to_drop ~ ' successfully dropped from the ' ~ target.database ~ ' database.\\n')}}\n{% endfor %}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.fivetran_utils.wrap_in_quotes", "macro.dbt.run_query"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137323.028694, "supported_languages": null}, "macro.fivetran_utils.seed_data_helper": {"name": "seed_data_helper", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/seed_data_helper.sql", "original_file_path": "macros/seed_data_helper.sql", "unique_id": "macro.fivetran_utils.seed_data_helper", "macro_sql": "{% macro seed_data_helper(seed_name, warehouses) %}\n\n{% if target.type in warehouses %}\n {% for w in warehouses %}\n {% if target.type == w %}\n {{ return(ref(seed_name ~ \"_\" ~ w ~ \"\")) }}\n {% endif %}\n {% endfor %}\n{% else %}\n{{ return(ref(seed_name)) }}\n{% endif %}\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137323.029214, "supported_languages": null}, "macro.fivetran_utils.fill_pass_through_columns": {"name": "fill_pass_through_columns", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/fill_pass_through_columns.sql", "original_file_path": "macros/fill_pass_through_columns.sql", "unique_id": "macro.fivetran_utils.fill_pass_through_columns", "macro_sql": "{% macro fill_pass_through_columns(pass_through_variable) %}\n\n{% if var(pass_through_variable) %}\n {% for field in var(pass_through_variable) %}\n {% if field is mapping %}\n {% if field.transform_sql %}\n , {{ field.transform_sql }} as {{ field.alias if field.alias else field.name }}\n {% else %}\n , {{ field.alias if field.alias else field.name }}\n {% endif %}\n {% else %}\n , {{ field }}\n {% endif %}\n {% endfor %}\n{% endif %}\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137323.030058, "supported_languages": null}, "macro.fivetran_utils.string_agg": {"name": "string_agg", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/string_agg.sql", "original_file_path": "macros/string_agg.sql", "unique_id": "macro.fivetran_utils.string_agg", "macro_sql": "{% macro string_agg(field_to_agg, delimiter) -%}\n\n{{ adapter.dispatch('string_agg', 'fivetran_utils') (field_to_agg, delimiter) }}\n\n{%- endmacro %}", "depends_on": {"macros": ["macro.fivetran_utils.default__string_agg"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137323.0306282, "supported_languages": null}, "macro.fivetran_utils.default__string_agg": {"name": "default__string_agg", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/string_agg.sql", "original_file_path": "macros/string_agg.sql", "unique_id": "macro.fivetran_utils.default__string_agg", "macro_sql": "{% macro default__string_agg(field_to_agg, delimiter) %}\n string_agg({{ field_to_agg }}, {{ delimiter }})\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137323.030762, "supported_languages": null}, "macro.fivetran_utils.snowflake__string_agg": {"name": "snowflake__string_agg", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/string_agg.sql", "original_file_path": "macros/string_agg.sql", "unique_id": "macro.fivetran_utils.snowflake__string_agg", "macro_sql": "{% macro snowflake__string_agg(field_to_agg, delimiter) %}\n listagg({{ field_to_agg }}, {{ delimiter }})\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137323.030884, "supported_languages": null}, "macro.fivetran_utils.redshift__string_agg": {"name": "redshift__string_agg", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/string_agg.sql", "original_file_path": "macros/string_agg.sql", "unique_id": "macro.fivetran_utils.redshift__string_agg", "macro_sql": "{% macro redshift__string_agg(field_to_agg, delimiter) %}\n listagg({{ field_to_agg }}, {{ delimiter }})\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137323.031002, "supported_languages": null}, "macro.fivetran_utils.spark__string_agg": {"name": "spark__string_agg", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/string_agg.sql", "original_file_path": "macros/string_agg.sql", "unique_id": "macro.fivetran_utils.spark__string_agg", "macro_sql": "{% macro spark__string_agg(field_to_agg, delimiter) %}\n -- collect set will remove duplicates\n replace(replace(replace(cast( collect_set({{ field_to_agg }}) as string), '[', ''), ']', ''), ', ', {{ delimiter }} )\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137323.031123, "supported_languages": null}, "macro.fivetran_utils.timestamp_diff": {"name": "timestamp_diff", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/timestamp_diff.sql", "original_file_path": "macros/timestamp_diff.sql", "unique_id": "macro.fivetran_utils.timestamp_diff", "macro_sql": "{% macro timestamp_diff(first_date, second_date, datepart) %}\n {{ adapter.dispatch('timestamp_diff', 'fivetran_utils')(first_date, second_date, datepart) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.fivetran_utils.postgres__timestamp_diff"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137323.033869, "supported_languages": null}, "macro.fivetran_utils.default__timestamp_diff": {"name": "default__timestamp_diff", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/timestamp_diff.sql", "original_file_path": "macros/timestamp_diff.sql", "unique_id": "macro.fivetran_utils.default__timestamp_diff", "macro_sql": "{% macro default__timestamp_diff(first_date, second_date, datepart) %}\n\n datediff(\n {{ datepart }},\n {{ first_date }},\n {{ second_date }}\n )\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137323.034039, "supported_languages": null}, "macro.fivetran_utils.redshift__timestamp_diff": {"name": "redshift__timestamp_diff", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/timestamp_diff.sql", "original_file_path": "macros/timestamp_diff.sql", "unique_id": "macro.fivetran_utils.redshift__timestamp_diff", "macro_sql": "{% macro redshift__timestamp_diff(first_date, second_date, datepart) %}\n\n datediff(\n {{ datepart }},\n {{ first_date }},\n {{ second_date }}\n )\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137323.0341928, "supported_languages": null}, "macro.fivetran_utils.bigquery__timestamp_diff": {"name": "bigquery__timestamp_diff", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/timestamp_diff.sql", "original_file_path": "macros/timestamp_diff.sql", "unique_id": "macro.fivetran_utils.bigquery__timestamp_diff", "macro_sql": "{% macro bigquery__timestamp_diff(first_date, second_date, datepart) %}\n\n timestamp_diff(\n {{second_date}},\n {{first_date}},\n {{datepart}}\n )\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137323.034352, "supported_languages": null}, "macro.fivetran_utils.postgres__timestamp_diff": {"name": "postgres__timestamp_diff", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/timestamp_diff.sql", "original_file_path": "macros/timestamp_diff.sql", "unique_id": "macro.fivetran_utils.postgres__timestamp_diff", "macro_sql": "{% macro postgres__timestamp_diff(first_date, second_date, datepart) %}\n\n {% if datepart == 'year' %}\n (date_part('year', ({{second_date}})::date) - date_part('year', ({{first_date}})::date))\n {% elif datepart == 'quarter' %}\n ({{ dbt.datediff(first_date, second_date, 'year') }} * 4 + date_part('quarter', ({{second_date}})::date) - date_part('quarter', ({{first_date}})::date))\n {% elif datepart == 'month' %}\n ({{ dbt.datediff(first_date, second_date, 'year') }} * 12 + date_part('month', ({{second_date}})::date) - date_part('month', ({{first_date}})::date))\n {% elif datepart == 'day' %}\n (({{second_date}})::date - ({{first_date}})::date)\n {% elif datepart == 'week' %}\n ({{ dbt.datediff(first_date, second_date, 'day') }} / 7 + case\n when date_part('dow', ({{first_date}})::timestamp) <= date_part('dow', ({{second_date}})::timestamp) then\n case when {{first_date}} <= {{second_date}} then 0 else -1 end\n else\n case when {{first_date}} <= {{second_date}} then 1 else 0 end\n end)\n {% elif datepart == 'hour' %}\n ({{ dbt.datediff(first_date, second_date, 'day') }} * 24 + date_part('hour', ({{second_date}})::timestamp) - date_part('hour', ({{first_date}})::timestamp))\n {% elif datepart == 'minute' %}\n ({{ dbt.datediff(first_date, second_date, 'hour') }} * 60 + date_part('minute', ({{second_date}})::timestamp) - date_part('minute', ({{first_date}})::timestamp))\n {% elif datepart == 'second' %}\n ({{ dbt.datediff(first_date, second_date, 'minute') }} * 60 + floor(date_part('second', ({{second_date}})::timestamp)) - floor(date_part('second', ({{first_date}})::timestamp)))\n {% elif datepart == 'millisecond' %}\n ({{ dbt.datediff(first_date, second_date, 'minute') }} * 60000 + floor(date_part('millisecond', ({{second_date}})::timestamp)) - floor(date_part('millisecond', ({{first_date}})::timestamp)))\n {% elif datepart == 'microsecond' %}\n ({{ dbt.datediff(first_date, second_date, 'minute') }} * 60000000 + floor(date_part('microsecond', ({{second_date}})::timestamp)) - floor(date_part('microsecond', ({{first_date}})::timestamp)))\n {% else %}\n {{ exceptions.raise_compiler_error(\"Unsupported datepart for macro datediff in postgres: {!r}\".format(datepart)) }}\n {% endif %}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.datediff"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137323.036339, "supported_languages": null}, "macro.fivetran_utils.try_cast": {"name": "try_cast", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/try_cast.sql", "original_file_path": "macros/try_cast.sql", "unique_id": "macro.fivetran_utils.try_cast", "macro_sql": "{% macro try_cast(field, type) %}\n {{ adapter.dispatch('try_cast', 'fivetran_utils') (field, type) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.fivetran_utils.postgres__try_cast"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137323.0386188, "supported_languages": null}, "macro.fivetran_utils.default__try_cast": {"name": "default__try_cast", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/try_cast.sql", "original_file_path": "macros/try_cast.sql", "unique_id": "macro.fivetran_utils.default__try_cast", "macro_sql": "{% macro default__try_cast(field, type) %}\n {# most databases don't support this function yet\n so we just need to use cast #}\n cast({{field}} as {{type}})\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137323.038798, "supported_languages": null}, "macro.fivetran_utils.redshift__try_cast": {"name": "redshift__try_cast", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/try_cast.sql", "original_file_path": "macros/try_cast.sql", "unique_id": "macro.fivetran_utils.redshift__try_cast", "macro_sql": "{% macro redshift__try_cast(field, type) %}\n{%- if type == 'numeric' -%}\n\n case\n when trim({{field}}) ~ '^(0|[1-9][0-9]*)$' then trim({{field}})\n else null\n end::{{type}}\n\n{% else %}\n {{ exceptions.raise_compiler_error(\n \"non-numeric datatypes are not currently supported\") }}\n\n{% endif %}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137323.039213, "supported_languages": null}, "macro.fivetran_utils.postgres__try_cast": {"name": "postgres__try_cast", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/try_cast.sql", "original_file_path": "macros/try_cast.sql", "unique_id": "macro.fivetran_utils.postgres__try_cast", "macro_sql": "{% macro postgres__try_cast(field, type) %}\n{%- if type == 'numeric' -%}\n\n case\n when replace(cast({{field}} as varchar),cast(' ' as varchar),cast('' as varchar)) ~ '^(0|[1-9][0-9]*)$' \n then replace(cast({{field}} as varchar),cast(' ' as varchar),cast('' as varchar))\n else null\n end::{{type}}\n\n{% else %}\n {{ exceptions.raise_compiler_error(\n \"non-numeric datatypes are not currently supported\") }}\n\n{% endif %}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137323.03953, "supported_languages": null}, "macro.fivetran_utils.snowflake__try_cast": {"name": "snowflake__try_cast", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/try_cast.sql", "original_file_path": "macros/try_cast.sql", "unique_id": "macro.fivetran_utils.snowflake__try_cast", "macro_sql": "{% macro snowflake__try_cast(field, type) %}\n try_cast(cast({{field}} as varchar) as {{type}})\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137323.03967, "supported_languages": null}, "macro.fivetran_utils.bigquery__try_cast": {"name": "bigquery__try_cast", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/try_cast.sql", "original_file_path": "macros/try_cast.sql", "unique_id": "macro.fivetran_utils.bigquery__try_cast", "macro_sql": "{% macro bigquery__try_cast(field, type) %}\n safe_cast({{field}} as {{type}})\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137323.039794, "supported_languages": null}, "macro.fivetran_utils.spark__try_cast": {"name": "spark__try_cast", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/try_cast.sql", "original_file_path": "macros/try_cast.sql", "unique_id": "macro.fivetran_utils.spark__try_cast", "macro_sql": "{% macro spark__try_cast(field, type) %}\n try_cast({{field}} as {{type}})\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137323.039915, "supported_languages": null}, "macro.fivetran_utils.sqlserver__try_cast": {"name": "sqlserver__try_cast", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/try_cast.sql", "original_file_path": "macros/try_cast.sql", "unique_id": "macro.fivetran_utils.sqlserver__try_cast", "macro_sql": "{% macro sqlserver__try_cast(field, type) %}\n try_cast({{field}} as {{type}})\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137323.040034, "supported_languages": null}, "macro.fivetran_utils.source_relation": {"name": "source_relation", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/source_relation.sql", "original_file_path": "macros/source_relation.sql", "unique_id": "macro.fivetran_utils.source_relation", "macro_sql": "{% macro source_relation(union_schema_variable='union_schemas', union_database_variable='union_databases') -%}\n\n{{ adapter.dispatch('source_relation', 'fivetran_utils') (union_schema_variable, union_database_variable) }}\n\n{%- endmacro %}", "depends_on": {"macros": ["macro.fivetran_utils.default__source_relation"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137323.04055, "supported_languages": null}, "macro.fivetran_utils.default__source_relation": {"name": "default__source_relation", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/source_relation.sql", "original_file_path": "macros/source_relation.sql", "unique_id": "macro.fivetran_utils.default__source_relation", "macro_sql": "{% macro default__source_relation(union_schema_variable, union_database_variable) %}\n\n{% if var(union_schema_variable, none) %}\n, case\n {% for schema in var(union_schema_variable) %}\n when lower(replace(replace(_dbt_source_relation,'\"',''),'`','')) like '%.{{ schema|lower }}.%' then '{{ schema|lower }}'\n {% endfor %}\n end as source_relation\n{% elif var(union_database_variable, none) %}\n, case\n {% for database in var(union_database_variable) %}\n when lower(replace(replace(_dbt_source_relation,'\"',''),'`','')) like '%{{ database|lower }}.%' then '{{ database|lower }}'\n {% endfor %}\n end as source_relation\n{% else %}\n, cast('' as {{ dbt.type_string() }}) as source_relation\n{% endif %}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.type_string"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137323.041142, "supported_languages": null}, "macro.fivetran_utils.first_value": {"name": "first_value", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/first_value.sql", "original_file_path": "macros/first_value.sql", "unique_id": "macro.fivetran_utils.first_value", "macro_sql": "{% macro first_value(first_value_field, partition_field, order_by_field, order=\"asc\") -%}\n\n{{ adapter.dispatch('first_value', 'fivetran_utils') (first_value_field, partition_field, order_by_field, order) }}\n\n{%- endmacro %}", "depends_on": {"macros": ["macro.fivetran_utils.default__first_value"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137323.0418649, "supported_languages": null}, "macro.fivetran_utils.default__first_value": {"name": "default__first_value", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/first_value.sql", "original_file_path": "macros/first_value.sql", "unique_id": "macro.fivetran_utils.default__first_value", "macro_sql": "{% macro default__first_value(first_value_field, partition_field, order_by_field, order=\"asc\") %}\n\n first_value( {{ first_value_field }} ignore nulls ) over (partition by {{ partition_field }} order by {{ order_by_field }} {{ order }} )\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137323.0421991, "supported_languages": null}, "macro.fivetran_utils.redshift__first_value": {"name": "redshift__first_value", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/first_value.sql", "original_file_path": "macros/first_value.sql", "unique_id": "macro.fivetran_utils.redshift__first_value", "macro_sql": "{% macro redshift__first_value(first_value_field, partition_field, order_by_field, order=\"asc\") %}\n\n first_value( {{ first_value_field }} ignore nulls ) over (partition by {{ partition_field }} order by {{ order_by_field }} {{ order }} , {{ partition_field }} rows unbounded preceding )\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137323.042463, "supported_languages": null}, "macro.fivetran_utils.add_dbt_source_relation": {"name": "add_dbt_source_relation", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/add_dbt_source_relation.sql", "original_file_path": "macros/add_dbt_source_relation.sql", "unique_id": "macro.fivetran_utils.add_dbt_source_relation", "macro_sql": "{% macro add_dbt_source_relation() %}\n\n{% if var('union_schemas', none) or var('union_databases', none) %}\n, _dbt_source_relation\n{% endif %}\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137323.042764, "supported_languages": null}, "macro.fivetran_utils.add_pass_through_columns": {"name": "add_pass_through_columns", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/add_pass_through_columns.sql", "original_file_path": "macros/add_pass_through_columns.sql", "unique_id": "macro.fivetran_utils.add_pass_through_columns", "macro_sql": "{% macro add_pass_through_columns(base_columns, pass_through_var) %}\n\n {% if pass_through_var %}\n\n {% for column in pass_through_var %}\n\n {% if column is mapping %}\n\n {% if column.alias %}\n\n {% do base_columns.append({ \"name\": column.name, \"alias\": column.alias, \"datatype\": column.datatype if column.datatype else dbt.type_string()}) %}\n\n {% else %}\n\n {% do base_columns.append({ \"name\": column.name, \"datatype\": column.datatype if column.datatype else dbt.type_string()}) %}\n \n {% endif %}\n\n {% else %}\n\n {% do base_columns.append({ \"name\": column, \"datatype\": dbt.type_string()}) %}\n\n {% endif %}\n\n {% endfor %}\n\n {% endif %}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.type_string"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137323.044009, "supported_languages": null}, "macro.fivetran_utils.union_relations": {"name": "union_relations", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/union_relations.sql", "original_file_path": "macros/union_relations.sql", "unique_id": "macro.fivetran_utils.union_relations", "macro_sql": "{%- macro union_relations(relations, aliases=none, column_override=none, include=[], exclude=[], source_column_name=none) -%}\n\n {%- if exclude and include -%}\n {{ exceptions.raise_compiler_error(\"Both an exclude and include list were provided to the `union` macro. Only one is allowed\") }}\n {%- endif -%}\n\n {#-- Prevent querying of db in parsing mode. This works because this macro does not create any new refs. -#}\n {%- if not execute %}\n {{ return('') }}\n {% endif -%}\n\n {%- set column_override = column_override if column_override is not none else {} -%}\n {%- set source_column_name = source_column_name if source_column_name is not none else '_dbt_source_relation' -%}\n\n {%- set relation_columns = {} -%}\n {%- set column_superset = {} -%}\n\n {%- for relation in relations -%}\n\n {%- do relation_columns.update({relation: []}) -%}\n\n {%- do dbt_utils._is_relation(relation, 'union_relations') -%}\n {%- set cols = adapter.get_columns_in_relation(relation) -%}\n {%- for col in cols -%}\n\n {#- If an exclude list was provided and the column is in the list, do nothing -#}\n {%- if exclude and col.column in exclude -%}\n\n {#- If an include list was provided and the column is not in the list, do nothing -#}\n {%- elif include and col.column not in include -%}\n\n {#- Otherwise add the column to the column superset -#}\n {%- else -%}\n\n {#- update the list of columns in this relation -#}\n {%- do relation_columns[relation].append(col.column) -%}\n\n {%- if col.column in column_superset -%}\n\n {%- set stored = column_superset[col.column] -%}\n {%- if col.is_string() and stored.is_string() and col.string_size() > stored.string_size() -%}\n\n {%- do column_superset.update({col.column: col}) -%}\n\n {%- endif %}\n\n {%- else -%}\n\n {%- do column_superset.update({col.column: col}) -%}\n\n {%- endif -%}\n\n {%- endif -%}\n\n {%- endfor -%}\n {%- endfor -%}\n\n {%- set ordered_column_names = column_superset.keys() -%}\n\n {%- for relation in relations %}\n\n (\n select\n\n cast({{ dbt.string_literal(relation) }} as {{ dbt.type_string() }}) as {{ source_column_name }},\n {% for col_name in ordered_column_names -%}\n\n {%- set col = column_superset[col_name] %}\n {%- set col_type = column_override.get(col.column, col.data_type) %}\n {%- set col_name = adapter.quote(col_name) if col_name in relation_columns[relation] else 'null' %}\n cast({{ col_name }} as {{ col_type }}) as {{ col.quoted }} {% if not loop.last %},{% endif -%}\n\n {%- endfor %}\n\n from {{ aliases[loop.index0] if aliases else relation }}\n )\n\n {% if not loop.last -%}\n union all\n {% endif -%}\n\n {%- endfor -%}\n\n{%- endmacro -%}\n\n", "depends_on": {"macros": ["macro.dbt_utils._is_relation", "macro.dbt.string_literal", "macro.dbt.type_string"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137323.048058, "supported_languages": null}, "macro.fivetran_utils.union_tables": {"name": "union_tables", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/union_relations.sql", "original_file_path": "macros/union_relations.sql", "unique_id": "macro.fivetran_utils.union_tables", "macro_sql": "{%- macro union_tables(tables, column_override=none, include=[], exclude=[], source_column_name='_dbt_source_table') -%}\n\n {%- do exceptions.warn(\"Warning: the `union_tables` macro is no longer supported and will be deprecated in a future release of dbt-utils. Use the `union_relations` macro instead\") -%}\n\n {{ return(dbt_utils.union_relations(tables, column_override, include, exclude, source_column_name)) }}\n\n{%- endmacro -%}", "depends_on": {"macros": ["macro.dbt_utils.union_relations"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137323.048407, "supported_languages": null}, "macro.fivetran_utils.snowflake_seed_data": {"name": "snowflake_seed_data", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/snowflake_seed_data.sql", "original_file_path": "macros/snowflake_seed_data.sql", "unique_id": "macro.fivetran_utils.snowflake_seed_data", "macro_sql": "{% macro snowflake_seed_data(seed_name) %}\n\n{% if target.type == 'snowflake' %}\n{{ return(ref(seed_name ~ '_snowflake')) }}\n{% else %}\n{{ return(ref(seed_name)) }}\n{% endif %}\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137323.048776, "supported_languages": null}, "macro.fivetran_utils.fill_staging_columns": {"name": "fill_staging_columns", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/fill_staging_columns.sql", "original_file_path": "macros/fill_staging_columns.sql", "unique_id": "macro.fivetran_utils.fill_staging_columns", "macro_sql": "{% macro fill_staging_columns(source_columns, staging_columns) -%}\n\n{%- set source_column_names = source_columns|map(attribute='name')|map('lower')|list -%}\n\n{%- for column in staging_columns %}\n {% if column.name|lower in source_column_names -%}\n {{ fivetran_utils.quote_column(column) }} as \n {%- if 'alias' in column %} {{ column.alias }} {% else %} {{ fivetran_utils.quote_column(column) }} {%- endif -%}\n {%- else -%}\n cast(null as {{ column.datatype }})\n {%- if 'alias' in column %} as {{ column.alias }} {% else %} as {{ fivetran_utils.quote_column(column) }} {% endif -%}\n {%- endif -%}\n {%- if not loop.last -%} , {% endif -%}\n{% endfor %}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.fivetran_utils.quote_column"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137323.0501409, "supported_languages": null}, "macro.fivetran_utils.quote_column": {"name": "quote_column", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/fill_staging_columns.sql", "original_file_path": "macros/fill_staging_columns.sql", "unique_id": "macro.fivetran_utils.quote_column", "macro_sql": "{% macro quote_column(column) %}\n {% if 'quote' in column %}\n {% if column.quote %}\n {% if target.type in ('bigquery', 'spark', 'databricks') %}\n `{{ column.name }}`\n {% elif target.type == 'snowflake' %}\n \"{{ column.name | upper }}\"\n {% else %}\n \"{{ column.name }}\"\n {% endif %}\n {% else %}\n {{ column.name }}\n {% endif %}\n {% else %}\n {{ column.name }}\n {% endif %}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137323.0506518, "supported_languages": null}, "macro.fivetran_utils.json_extract": {"name": "json_extract", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/json_extract.sql", "original_file_path": "macros/json_extract.sql", "unique_id": "macro.fivetran_utils.json_extract", "macro_sql": "{% macro json_extract(string, string_path) -%}\n\n{{ adapter.dispatch('json_extract', 'fivetran_utils') (string, string_path) }}\n\n{%- endmacro %}", "depends_on": {"macros": ["macro.fivetran_utils.postgres__json_extract"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137323.051185, "supported_languages": null}, "macro.fivetran_utils.default__json_extract": {"name": "default__json_extract", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/json_extract.sql", "original_file_path": "macros/json_extract.sql", "unique_id": "macro.fivetran_utils.default__json_extract", "macro_sql": "{% macro default__json_extract(string, string_path) %}\n\n json_extract_path_text({{string}}, {{ \"'\" ~ string_path ~ \"'\" }} )\n \n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137323.0513349, "supported_languages": null}, "macro.fivetran_utils.snowflake__json_extract": {"name": "snowflake__json_extract", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/json_extract.sql", "original_file_path": "macros/json_extract.sql", "unique_id": "macro.fivetran_utils.snowflake__json_extract", "macro_sql": "{% macro snowflake__json_extract(string, string_path) %}\n\n json_extract_path_text(try_parse_json( {{string}} ), {{ \"'\" ~ string_path ~ \"'\" }} )\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137323.0516212, "supported_languages": null}, "macro.fivetran_utils.redshift__json_extract": {"name": "redshift__json_extract", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/json_extract.sql", "original_file_path": "macros/json_extract.sql", "unique_id": "macro.fivetran_utils.redshift__json_extract", "macro_sql": "{% macro redshift__json_extract(string, string_path) %}\n\n case when is_valid_json( {{string}} ) then json_extract_path_text({{string}}, {{ \"'\" ~ string_path ~ \"'\" }} ) else null end\n \n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137323.0518348, "supported_languages": null}, "macro.fivetran_utils.bigquery__json_extract": {"name": "bigquery__json_extract", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/json_extract.sql", "original_file_path": "macros/json_extract.sql", "unique_id": "macro.fivetran_utils.bigquery__json_extract", "macro_sql": "{% macro bigquery__json_extract(string, string_path) %}\n\n json_extract_scalar({{string}}, {{ \"'$.\" ~ string_path ~ \"'\" }} )\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137323.0519822, "supported_languages": null}, "macro.fivetran_utils.postgres__json_extract": {"name": "postgres__json_extract", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/json_extract.sql", "original_file_path": "macros/json_extract.sql", "unique_id": "macro.fivetran_utils.postgres__json_extract", "macro_sql": "{% macro postgres__json_extract(string, string_path) %}\n\n {{string}}::json->>{{\"'\" ~ string_path ~ \"'\" }}\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137323.052129, "supported_languages": null}, "macro.fivetran_utils.collect_freshness": {"name": "collect_freshness", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/collect_freshness.sql", "original_file_path": "macros/collect_freshness.sql", "unique_id": "macro.fivetran_utils.collect_freshness", "macro_sql": "{% macro collect_freshness(source, loaded_at_field, filter) %}\n {{ return(adapter.dispatch('collect_freshness')(source, loaded_at_field, filter))}}\n{% endmacro %}", "depends_on": {"macros": ["macro.fivetran_utils.default__collect_freshness"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137323.052918, "supported_languages": null}, "macro.fivetran_utils.default__collect_freshness": {"name": "default__collect_freshness", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/collect_freshness.sql", "original_file_path": "macros/collect_freshness.sql", "unique_id": "macro.fivetran_utils.default__collect_freshness", "macro_sql": "{% macro default__collect_freshness(source, loaded_at_field, filter) %}\n {% call statement('collect_freshness', fetch_result=True, auto_begin=False) -%}\n\n {%- set enabled_array = [] -%}\n {% for node in graph.sources.values() %}\n {% if node.identifier == source.identifier %}\n {% if (node.meta['is_enabled'] | default(true)) %}\n {%- do enabled_array.append(1) -%}\n {% endif %}\n {% endif %}\n {% endfor %}\n {% set is_enabled = (enabled_array != []) %}\n\n select\n {% if is_enabled %}\n max({{ loaded_at_field }})\n {% else %} \n {{ current_timestamp() }} {% endif %} as max_loaded_at,\n {{ current_timestamp() }} as snapshotted_at\n\n {% if is_enabled %}\n from {{ source }}\n {% if filter %}\n where {{ filter }}\n {% endif %}\n {% endif %}\n\n {% endcall %}\n\n {% if dbt_version.split('.') | map('int') | list >= [1, 5, 0] %}\n {{ return(load_result('collect_freshness')) }}\n {% else %}\n {{ return(load_result('collect_freshness').table) }}\n {% endif %}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.statement", "macro.dbt.current_timestamp"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137323.054643, "supported_languages": null}, "macro.fivetran_utils.timestamp_add": {"name": "timestamp_add", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/timestamp_add.sql", "original_file_path": "macros/timestamp_add.sql", "unique_id": "macro.fivetran_utils.timestamp_add", "macro_sql": "{% macro timestamp_add(datepart, interval, from_timestamp) -%}\n\n{{ adapter.dispatch('timestamp_add', 'fivetran_utils') (datepart, interval, from_timestamp) }}\n\n{%- endmacro %}", "depends_on": {"macros": ["macro.fivetran_utils.postgres__timestamp_add"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137323.055478, "supported_languages": null}, "macro.fivetran_utils.default__timestamp_add": {"name": "default__timestamp_add", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/timestamp_add.sql", "original_file_path": "macros/timestamp_add.sql", "unique_id": "macro.fivetran_utils.default__timestamp_add", "macro_sql": "{% macro default__timestamp_add(datepart, interval, from_timestamp) %}\n\n timestampadd(\n {{ datepart }},\n {{ interval }},\n {{ from_timestamp }}\n )\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137323.05565, "supported_languages": null}, "macro.fivetran_utils.bigquery__timestamp_add": {"name": "bigquery__timestamp_add", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/timestamp_add.sql", "original_file_path": "macros/timestamp_add.sql", "unique_id": "macro.fivetran_utils.bigquery__timestamp_add", "macro_sql": "{% macro bigquery__timestamp_add(datepart, interval, from_timestamp) %}\n\n timestamp_add({{ from_timestamp }}, interval {{ interval }} {{ datepart }})\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137323.055802, "supported_languages": null}, "macro.fivetran_utils.redshift__timestamp_add": {"name": "redshift__timestamp_add", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/timestamp_add.sql", "original_file_path": "macros/timestamp_add.sql", "unique_id": "macro.fivetran_utils.redshift__timestamp_add", "macro_sql": "{% macro redshift__timestamp_add(datepart, interval, from_timestamp) %}\n\n dateadd(\n {{ datepart }},\n {{ interval }},\n {{ from_timestamp }}\n )\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137323.055959, "supported_languages": null}, "macro.fivetran_utils.postgres__timestamp_add": {"name": "postgres__timestamp_add", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/timestamp_add.sql", "original_file_path": "macros/timestamp_add.sql", "unique_id": "macro.fivetran_utils.postgres__timestamp_add", "macro_sql": "{% macro postgres__timestamp_add(datepart, interval, from_timestamp) %}\n\n {{ from_timestamp }} + ((interval '1 {{ datepart }}') * ({{ interval }}))\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137323.056115, "supported_languages": null}, "macro.fivetran_utils.spark__timestamp_add": {"name": "spark__timestamp_add", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/timestamp_add.sql", "original_file_path": "macros/timestamp_add.sql", "unique_id": "macro.fivetran_utils.spark__timestamp_add", "macro_sql": "{% macro spark__timestamp_add(datepart, interval, from_timestamp) %}\n\n {{ dbt.dateadd(datepart, interval, from_timestamp) }}\n \n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.dateadd"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137323.056285, "supported_languages": null}, "macro.fivetran_utils.ceiling": {"name": "ceiling", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/ceiling.sql", "original_file_path": "macros/ceiling.sql", "unique_id": "macro.fivetran_utils.ceiling", "macro_sql": "{% macro ceiling(num) -%}\n\n{{ adapter.dispatch('ceiling', 'fivetran_utils') (num) }}\n\n{%- endmacro %}", "depends_on": {"macros": ["macro.fivetran_utils.default__ceiling"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137323.056563, "supported_languages": null}, "macro.fivetran_utils.default__ceiling": {"name": "default__ceiling", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/ceiling.sql", "original_file_path": "macros/ceiling.sql", "unique_id": "macro.fivetran_utils.default__ceiling", "macro_sql": "{% macro default__ceiling(num) %}\n ceiling({{ num }})\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137323.056663, "supported_languages": null}, "macro.fivetran_utils.snowflake__ceiling": {"name": "snowflake__ceiling", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/ceiling.sql", "original_file_path": "macros/ceiling.sql", "unique_id": "macro.fivetran_utils.snowflake__ceiling", "macro_sql": "{% macro snowflake__ceiling(num) %}\n ceil({{ num }})\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137323.056757, "supported_languages": null}, "macro.fivetran_utils.remove_prefix_from_columns": {"name": "remove_prefix_from_columns", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/remove_prefix_from_columns.sql", "original_file_path": "macros/remove_prefix_from_columns.sql", "unique_id": "macro.fivetran_utils.remove_prefix_from_columns", "macro_sql": "{% macro remove_prefix_from_columns(columns, prefix='', exclude=[]) %}\n\n {%- for col in columns if col.name not in exclude -%}\n {%- if col.name[:prefix|length]|lower == prefix -%}\n {{ col.name }} as {{ col.name[prefix|length:] }}\n {%- else -%}\n {{ col.name }}\n {%- endif -%}\n {%- if not loop.last -%},{%- endif %}\n {% endfor -%}\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137323.057406, "supported_languages": null}, "macro.fivetran_utils.fivetran_date_spine": {"name": "fivetran_date_spine", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/fivetran_date_spine.sql", "original_file_path": "macros/fivetran_date_spine.sql", "unique_id": "macro.fivetran_utils.fivetran_date_spine", "macro_sql": "{% macro fivetran_date_spine(datepart, start_date, end_date) -%}\n\n{{ return(adapter.dispatch('fivetran_date_spine', 'fivetran_utils') (datepart, start_date, end_date)) }}\n\n{%- endmacro %}", "depends_on": {"macros": ["macro.fivetran_utils.default__fivetran_date_spine"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137323.0586371, "supported_languages": null}, "macro.fivetran_utils.default__fivetran_date_spine": {"name": "default__fivetran_date_spine", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/fivetran_date_spine.sql", "original_file_path": "macros/fivetran_date_spine.sql", "unique_id": "macro.fivetran_utils.default__fivetran_date_spine", "macro_sql": "{% macro default__fivetran_date_spine(datepart, start_date, end_date) %}\n\n {{ dbt_utils.date_spine(datepart, start_date, end_date) }}\n \n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.date_spine"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137323.058811, "supported_languages": null}, "macro.fivetran_utils.sqlserver__fivetran_date_spine": {"name": "sqlserver__fivetran_date_spine", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/fivetran_date_spine.sql", "original_file_path": "macros/fivetran_date_spine.sql", "unique_id": "macro.fivetran_utils.sqlserver__fivetran_date_spine", "macro_sql": "{% macro sqlserver__fivetran_date_spine(datepart, start_date, end_date) -%}\n\n {% set date_spine_query %}\n with\n\n l0 as (\n\n select c\n from (select 1 union all select 1) as d(c)\n\n ),\n l1 as (\n\n select\n 1 as c\n from l0 as a\n cross join l0 as b\n\n ),\n\n l2 as (\n\n select 1 as c\n from l1 as a\n cross join l1 as b\n ),\n\n l3 as (\n\n select 1 as c\n from l2 as a\n cross join l2 as b\n ),\n\n l4 as (\n\n select 1 as c\n from l3 as a\n cross join l3 as b\n ),\n\n l5 as (\n\n select 1 as c\n from l4 as a\n cross join l4 as b\n ),\n\n nums as (\n\n select row_number() over (order by (select null)) as rownum\n from l5\n ),\n\n rawdata as (\n\n select top ({{dbt.datediff(start_date, end_date, datepart)}}) rownum -1 as n\n from nums\n order by rownum\n ),\n\n all_periods as (\n\n select (\n {{\n dbt.dateadd(\n datepart,\n 'n',\n start_date\n )\n }}\n ) as date_{{datepart}}\n from rawdata\n ),\n\n filtered as (\n\n select *\n from all_periods\n where date_{{datepart}} <= {{ end_date }}\n\n )\n\n select * from filtered\n order by 1\n\n {% endset %}\n\n {% set results = run_query(date_spine_query) %}\n\n {% if execute %}\n\n {% set results_list = results.columns[0].values() %}\n \n {% else %}\n\n {% set results_list = [] %}\n\n {% endif %}\n\n {%- for date_field in results_list %}\n select cast('{{ date_field }}' as date) as date_{{datepart}} {{ 'union all ' if not loop.last else '' }}\n {% endfor -%}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.datediff", "macro.dbt.dateadd", "macro.dbt.run_query"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137323.059631, "supported_languages": null}, "macro.fivetran_utils.union_data": {"name": "union_data", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/union_data.sql", "original_file_path": "macros/union_data.sql", "unique_id": "macro.fivetran_utils.union_data", "macro_sql": "{%- macro union_data(table_identifier, database_variable, schema_variable, default_database, default_schema, default_variable, union_schema_variable='union_schemas', union_database_variable='union_databases') -%}\n\n{{ adapter.dispatch('union_data', 'fivetran_utils') (\n table_identifier, \n database_variable, \n schema_variable, \n default_database, \n default_schema, \n default_variable,\n union_schema_variable,\n union_database_variable\n ) }}\n\n{%- endmacro -%}\n\n", "depends_on": {"macros": ["macro.fivetran_utils.default__union_data"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137323.063058, "supported_languages": null}, "macro.fivetran_utils.default__union_data": {"name": "default__union_data", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/union_data.sql", "original_file_path": "macros/union_data.sql", "unique_id": "macro.fivetran_utils.default__union_data", "macro_sql": "{%- macro default__union_data(\n table_identifier, \n database_variable, \n schema_variable, \n default_database, \n default_schema, \n default_variable,\n union_schema_variable,\n union_database_variable\n ) -%}\n\n{%- if var(union_schema_variable, none) -%}\n\n {%- set relations = [] -%}\n \n {%- if var(union_schema_variable) is string -%}\n {%- set trimmed = var(union_schema_variable)|trim('[')|trim(']') -%}\n {%- set schemas = trimmed.split(',')|map('trim',\" \")|map('trim','\"')|map('trim',\"'\") -%}\n {%- else -%}\n {%- set schemas = var(union_schema_variable) -%}\n {%- endif -%}\n\n {%- for schema in var(union_schema_variable) -%}\n {%- set relation=adapter.get_relation(\n database=source(schema, table_identifier).database if var('has_defined_sources', false) else var(database_variable, default_database),\n schema=source(schema, table_identifier).schema if var('has_defined_sources', false) else schema,\n identifier=source(schema, table_identifier).identifier if var('has_defined_sources', false) else table_identifier\n ) -%}\n \n {%- set relation_exists=relation is not none -%}\n\n {%- if relation_exists -%}\n {%- do relations.append(relation) -%}\n {%- endif -%}\n\n {%- endfor -%}\n \n {%- if relations != [] -%}\n {{ dbt_utils.union_relations(relations) }}\n {%- else -%}\n {% if execute and not var('fivetran__remove_empty_table_warnings', false) -%}\n {{ exceptions.warn(\"\\n\\nPlease be aware: The \" ~ table_identifier|upper ~ \" table was not found in your \" ~ default_schema|upper ~ \" schema(s). The Fivetran dbt package will create a completely empty \" ~ table_identifier|upper ~ \" staging model as to not break downstream transformations. To turn off these warnings, set the `fivetran__remove_empty_table_warnings` variable to TRUE (see https://github.com/fivetran/dbt_fivetran_utils/tree/releases/v0.4.latest#union_data-source for details).\\n\") }}\n {% endif -%}\n select \n cast(null as {{ dbt.type_string() }}) as _dbt_source_relation\n limit 0\n {%- endif -%}\n\n{%- elif var(union_database_variable, none) -%}\n\n {%- set relations = [] -%}\n\n {%- for database in var(union_database_variable) -%}\n {%- set relation=adapter.get_relation(\n database=source(schema, table_identifier).database if var('has_defined_sources', false) else database,\n schema=source(schema, table_identifier).schema if var('has_defined_sources', false) else var(schema_variable, default_schema),\n identifier=source(schema, table_identifier).identifier if var('has_defined_sources', false) else table_identifier\n ) -%}\n\n {%- set relation_exists=relation is not none -%}\n\n {%- if relation_exists -%}\n {%- do relations.append(relation) -%}\n {%- endif -%}\n\n {%- endfor -%}\n\n {%- if relations != [] -%}\n {{ dbt_utils.union_relations(relations) }}\n {%- else -%}\n {% if execute and not var('fivetran__remove_empty_table_warnings', false) -%}\n {{ exceptions.warn(\"\\n\\nPlease be aware: The \" ~ table_identifier|upper ~ \" table was not found in your \" ~ default_schema|upper ~ \" schema(s). The Fivetran dbt package will create a completely empty \" ~ table_identifier|upper ~ \" staging model as to not break downstream transformations. To turn off these warnings, set the `fivetran__remove_empty_table_warnings` variable to TRUE (see https://github.com/fivetran/dbt_fivetran_utils/tree/releases/v0.4.latest#union_data-source for details).\\n\") }}\n {% endif -%}\n select \n cast(null as {{ dbt.type_string() }}) as _dbt_source_relation\n limit 0\n {%- endif -%}\n\n{%- else -%}\n {% set exception_schemas = {\"linkedin_company_pages\": \"linkedin_pages\", \"instagram_business_pages\": \"instagram_business\"} %}\n {% set relation = namespace(value=\"\") %}\n {% if default_schema in exception_schemas.keys() %}\n {% for corrected_schema_name in exception_schemas.items() %} \n {% if default_schema in corrected_schema_name %}\n {# In order for this macro to effectively work within upstream integration tests (mainly used by the Fivetran dbt package maintainers), this identifier variable selection is required to use the macro with different identifier names. #}\n {% set identifier_var = corrected_schema_name[1] + \"_\" + table_identifier + \"_identifier\" %}\n {%- set relation.value=adapter.get_relation(\n database=source(corrected_schema_name[1], table_identifier).database,\n schema=source(corrected_schema_name[1], table_identifier).schema,\n identifier=var(identifier_var, table_identifier)\n ) -%}\n {% endif %}\n {% endfor %}\n {% else %}\n {# In order for this macro to effectively work within upstream integration tests (mainly used by the Fivetran dbt package maintainers), this identifier variable selection is required to use the macro with different identifier names. #}\n {% set identifier_var = default_schema + \"_\" + table_identifier + \"_identifier\" %}\n {# Unfortunately the Twitter Organic identifiers were misspelled. As such, we will need to account for this in the model. This will be adjusted in the Twitter Organic package, but to ensure backwards compatibility, this needs to be included. #}\n {% if var(identifier_var, none) is none %} \n {% set identifier_var = default_schema + \"_\" + table_identifier + \"_identifer\" %}\n {% endif %}\n {%- set relation.value=adapter.get_relation(\n database=source(default_schema, table_identifier).database,\n schema=source(default_schema, table_identifier).schema,\n identifier=var(identifier_var, table_identifier)\n ) -%}\n {% endif %}\n{%- set table_exists=relation.value is not none -%}\n\n{%- if table_exists -%}\n select * \n from {{ relation.value }}\n{%- else -%}\n {% if execute and not var('fivetran__remove_empty_table_warnings', false) -%}\n {{ exceptions.warn(\"\\n\\nPlease be aware: The \" ~ table_identifier|upper ~ \" table was not found in your \" ~ default_schema|upper ~ \" schema(s). The Fivetran dbt package will create a completely empty \" ~ table_identifier|upper ~ \" staging model as to not break downstream transformations. To turn off these warnings, set the `fivetran__remove_empty_table_warnings` variable to TRUE (see https://github.com/fivetran/dbt_fivetran_utils/tree/releases/v0.4.latest#union_data-source for details).\\n\") }}\n {% endif -%}\n select \n cast(null as {{ dbt.type_string() }}) as _dbt_source_relation\n limit 0\n{%- endif -%}\n{%- endif -%}\n\n{%- endmacro -%}", "depends_on": {"macros": ["macro.dbt_utils.union_relations", "macro.dbt.type_string"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137323.0673459, "supported_languages": null}, "macro.fivetran_utils.dummy_coalesce_value": {"name": "dummy_coalesce_value", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/dummy_coalesce_value.sql", "original_file_path": "macros/dummy_coalesce_value.sql", "unique_id": "macro.fivetran_utils.dummy_coalesce_value", "macro_sql": "{% macro dummy_coalesce_value(column) %}\n\n{% set coalesce_value = {\n 'STRING': \"'DUMMY_STRING'\",\n 'BOOLEAN': 'null',\n 'INT': 999999999,\n 'FLOAT': 999999999.99,\n 'TIMESTAMP': 'cast(\"2099-12-31\" as timestamp)',\n 'DATE': 'cast(\"2099-12-31\" as date)',\n} %}\n\n{% if column.is_float() %}\n{{ return(coalesce_value['FLOAT']) }}\n\n{% elif column.is_numeric() %}\n{{ return(coalesce_value['INT']) }}\n\n{% elif column.is_string() %}\n{{ return(coalesce_value['STRING']) }}\n\n{% elif column.data_type|lower == 'boolean' %}\n{{ return(coalesce_value['BOOLEAN']) }}\n\n{% elif 'timestamp' in column.data_type|lower %}\n{{ return(coalesce_value['TIMESTAMP']) }}\n\n{% elif 'date' in column.data_type|lower %}\n{{ return(coalesce_value['DATE']) }}\n\n{% elif 'int' in column.data_type|lower %}\n{{ return(coalesce_value['INT']) }}\n\n{% endif %}\n\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137323.068635, "supported_languages": null}, "macro.fivetran_utils.extract_url_parameter": {"name": "extract_url_parameter", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/extract_url_parameter.sql", "original_file_path": "macros/extract_url_parameter.sql", "unique_id": "macro.fivetran_utils.extract_url_parameter", "macro_sql": "{% macro extract_url_parameter(field, url_parameter) -%}\n\n{{ adapter.dispatch('extract_url_parameter', 'fivetran_utils') (field, url_parameter) }}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.fivetran_utils.default__extract_url_parameter"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137323.068946, "supported_languages": null}, "macro.fivetran_utils.default__extract_url_parameter": {"name": "default__extract_url_parameter", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/extract_url_parameter.sql", "original_file_path": "macros/extract_url_parameter.sql", "unique_id": "macro.fivetran_utils.default__extract_url_parameter", "macro_sql": "{% macro default__extract_url_parameter(field, url_parameter) -%}\n\n{{ dbt_utils.get_url_parameter(field, url_parameter) }}\n\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.get_url_parameter"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137323.069089, "supported_languages": null}, "macro.fivetran_utils.spark__extract_url_parameter": {"name": "spark__extract_url_parameter", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/extract_url_parameter.sql", "original_file_path": "macros/extract_url_parameter.sql", "unique_id": "macro.fivetran_utils.spark__extract_url_parameter", "macro_sql": "{% macro spark__extract_url_parameter(field, url_parameter) -%}\n\n{%- set formatted_url_parameter = \"'\" + url_parameter + \"=([^&]+)'\" -%}\nnullif(regexp_extract({{ field }}, {{ formatted_url_parameter }}, 1), '')\n\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137323.069269, "supported_languages": null}, "macro.fivetran_utils.wrap_in_quotes": {"name": "wrap_in_quotes", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/wrap_in_quotes.sql", "original_file_path": "macros/wrap_in_quotes.sql", "unique_id": "macro.fivetran_utils.wrap_in_quotes", "macro_sql": "{%- macro wrap_in_quotes(object_to_quote) -%}\n\n{{ return(adapter.dispatch('wrap_in_quotes', 'fivetran_utils')(object_to_quote)) }}\n\n{%- endmacro -%}\n\n", "depends_on": {"macros": ["macro.fivetran_utils.postgres__wrap_in_quotes"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137323.0695739, "supported_languages": null}, "macro.fivetran_utils.default__wrap_in_quotes": {"name": "default__wrap_in_quotes", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/wrap_in_quotes.sql", "original_file_path": "macros/wrap_in_quotes.sql", "unique_id": "macro.fivetran_utils.default__wrap_in_quotes", "macro_sql": "{%- macro default__wrap_in_quotes(object_to_quote) -%}\n{# bigquery, spark, databricks #}\n `{{ object_to_quote }}`\n{%- endmacro -%}\n\n", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137323.069676, "supported_languages": null}, "macro.fivetran_utils.snowflake__wrap_in_quotes": {"name": "snowflake__wrap_in_quotes", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/wrap_in_quotes.sql", "original_file_path": "macros/wrap_in_quotes.sql", "unique_id": "macro.fivetran_utils.snowflake__wrap_in_quotes", "macro_sql": "{%- macro snowflake__wrap_in_quotes(object_to_quote) -%}\n \"{{ object_to_quote | upper }}\"\n{%- endmacro -%}\n\n", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137323.0697799, "supported_languages": null}, "macro.fivetran_utils.redshift__wrap_in_quotes": {"name": "redshift__wrap_in_quotes", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/wrap_in_quotes.sql", "original_file_path": "macros/wrap_in_quotes.sql", "unique_id": "macro.fivetran_utils.redshift__wrap_in_quotes", "macro_sql": "{%- macro redshift__wrap_in_quotes(object_to_quote) -%}\n \"{{ object_to_quote }}\"\n{%- endmacro -%}\n\n", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137323.06987, "supported_languages": null}, "macro.fivetran_utils.postgres__wrap_in_quotes": {"name": "postgres__wrap_in_quotes", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/wrap_in_quotes.sql", "original_file_path": "macros/wrap_in_quotes.sql", "unique_id": "macro.fivetran_utils.postgres__wrap_in_quotes", "macro_sql": "{%- macro postgres__wrap_in_quotes(object_to_quote) -%}\n \"{{ object_to_quote }}\"\n{%- endmacro -%}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137323.0699651, "supported_languages": null}, "macro.fivetran_utils.array_agg": {"name": "array_agg", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/array_agg.sql", "original_file_path": "macros/array_agg.sql", "unique_id": "macro.fivetran_utils.array_agg", "macro_sql": "{% macro array_agg(field_to_agg) -%}\n\n{{ adapter.dispatch('array_agg', 'fivetran_utils') (field_to_agg) }}\n\n{%- endmacro %}", "depends_on": {"macros": ["macro.fivetran_utils.default__array_agg"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137323.070197, "supported_languages": null}, "macro.fivetran_utils.default__array_agg": {"name": "default__array_agg", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/array_agg.sql", "original_file_path": "macros/array_agg.sql", "unique_id": "macro.fivetran_utils.default__array_agg", "macro_sql": "{% macro default__array_agg(field_to_agg) %}\n array_agg({{ field_to_agg }})\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137323.0702899, "supported_languages": null}, "macro.fivetran_utils.redshift__array_agg": {"name": "redshift__array_agg", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/array_agg.sql", "original_file_path": "macros/array_agg.sql", "unique_id": "macro.fivetran_utils.redshift__array_agg", "macro_sql": "{% macro redshift__array_agg(field_to_agg) %}\n listagg({{ field_to_agg }}, ',')\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137323.070378, "supported_languages": null}, "macro.fivetran_utils.empty_variable_warning": {"name": "empty_variable_warning", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/empty_variable_warning.sql", "original_file_path": "macros/empty_variable_warning.sql", "unique_id": "macro.fivetran_utils.empty_variable_warning", "macro_sql": "{% macro empty_variable_warning(variable, downstream_model) %}\n\n{% if not var(variable) %}\n{{ log(\n \"\"\"\n Warning: You have passed an empty list to the \"\"\" ~ variable ~ \"\"\".\n As a result, you won't see the history of any columns in the \"\"\" ~ downstream_model ~ \"\"\" model.\n \"\"\",\n info=True\n) }}\n{% endif %}\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137323.070729, "supported_languages": null}, "macro.fivetran_utils.enabled_vars_one_true": {"name": "enabled_vars_one_true", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/enabled_vars_one_true.sql", "original_file_path": "macros/enabled_vars_one_true.sql", "unique_id": "macro.fivetran_utils.enabled_vars_one_true", "macro_sql": "{% macro enabled_vars_one_true(vars) %}\n\n{% for v in vars %}\n \n {% if var(v, False) == True %}\n {{ return(True) }}\n {% endif %}\n\n{% endfor %}\n\n{{ return(False) }}\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137323.0710762, "supported_languages": null}, "macro.qualtrics_source.get_survey_embedded_data_columns": {"name": "get_survey_embedded_data_columns", "resource_type": "macro", "package_name": "qualtrics_source", "path": "macros/get_survey_embedded_data_columns.sql", "original_file_path": "macros/get_survey_embedded_data_columns.sql", "unique_id": "macro.qualtrics_source.get_survey_embedded_data_columns", "macro_sql": "{% macro get_survey_embedded_data_columns() %}\n\n{% set columns = [\n {\"name\": \"_fivetran_synced\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"import_id\", \"datatype\": dbt.type_string()},\n {\"name\": \"key\", \"datatype\": dbt.type_string()},\n {\"name\": \"response_id\", \"datatype\": dbt.type_string()},\n {\"name\": \"value\", \"datatype\": dbt.type_string()}\n] %}\n\n{{ return(columns) }}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.type_timestamp", "macro.dbt.type_string"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137323.071836, "supported_languages": null}, "macro.qualtrics_source.get_block_columns": {"name": "get_block_columns", "resource_type": "macro", "package_name": "qualtrics_source", "path": "macros/get_block_columns.sql", "original_file_path": "macros/get_block_columns.sql", "unique_id": "macro.qualtrics_source.get_block_columns", "macro_sql": "{% macro get_block_columns() %}\n\n{% set columns = [\n {\"name\": \"_fivetran_deleted\", \"datatype\": \"boolean\"},\n {\"name\": \"_fivetran_synced\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"block_locking\", \"datatype\": dbt.type_string()},\n {\"name\": \"block_visibility\", \"datatype\": dbt.type_string()},\n {\"name\": \"description\", \"datatype\": dbt.type_string()},\n {\"name\": \"id\", \"datatype\": dbt.type_string()},\n {\"name\": \"randomize_questions\", \"datatype\": dbt.type_string()},\n {\"name\": \"survey_id\", \"datatype\": dbt.type_string()},\n {\"name\": \"type\", \"datatype\": dbt.type_string()}\n] %}\n\n{{ return(columns) }}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.type_timestamp", "macro.dbt.type_string"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137323.073002, "supported_languages": null}, "macro.qualtrics_source.get_sub_question_columns": {"name": "get_sub_question_columns", "resource_type": "macro", "package_name": "qualtrics_source", "path": "macros/get_sub_question_columns.sql", "original_file_path": "macros/get_sub_question_columns.sql", "unique_id": "macro.qualtrics_source.get_sub_question_columns", "macro_sql": "{% macro get_sub_question_columns() %}\n\n{% set columns = [\n {\"name\": \"_fivetran_deleted\", \"datatype\": \"boolean\"},\n {\"name\": \"_fivetran_synced\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"choice_data_export_tag\", \"datatype\": dbt.type_string()},\n {\"name\": \"key\", \"datatype\": dbt.type_string()},\n {\"name\": \"question_id\", \"datatype\": dbt.type_string()},\n {\"name\": \"survey_id\", \"datatype\": dbt.type_string()},\n {\"name\": \"text\", \"datatype\": dbt.type_string()}\n] %}\n\n{{ return(columns) }}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.type_timestamp", "macro.dbt.type_string"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137323.0738828, "supported_languages": null}, "macro.qualtrics_source.get_directory_mailing_list_columns": {"name": "get_directory_mailing_list_columns", "resource_type": "macro", "package_name": "qualtrics_source", "path": "macros/get_directory_mailing_list_columns.sql", "original_file_path": "macros/get_directory_mailing_list_columns.sql", "unique_id": "macro.qualtrics_source.get_directory_mailing_list_columns", "macro_sql": "{% macro get_directory_mailing_list_columns() %}\n\n{% set columns = [\n {\"name\": \"_fivetran_deleted\", \"datatype\": \"boolean\"},\n {\"name\": \"_fivetran_synced\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"creation_date\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"directory_id\", \"datatype\": dbt.type_string()},\n {\"name\": \"id\", \"datatype\": dbt.type_string()},\n {\"name\": \"last_modified_date\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"name\", \"datatype\": dbt.type_string()},\n {\"name\": \"owner_id\", \"datatype\": dbt.type_string()}\n] %}\n\n{{ return(columns) }}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.type_timestamp", "macro.dbt.type_string"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137323.0748138, "supported_languages": null}, "macro.qualtrics_source.get_core_contact_columns": {"name": "get_core_contact_columns", "resource_type": "macro", "package_name": "qualtrics_source", "path": "macros/get_core_contact_columns.sql", "original_file_path": "macros/get_core_contact_columns.sql", "unique_id": "macro.qualtrics_source.get_core_contact_columns", "macro_sql": "{% macro get_core_contact_columns() %}\n\n{% set columns = [\n {\"name\": \"_fivetran_synced\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"id\", \"datatype\": dbt.type_string()},\n {\"name\": \"mailing_list_id\", \"datatype\": dbt.type_string()},\n {\"name\": \"first_name\", \"datatype\": dbt.type_string()},\n {\"name\": \"last_name\", \"datatype\": dbt.type_string()},\n {\"name\": \"email\", \"datatype\": dbt.type_string()},\n {\"name\": \"external_data_reference\", \"datatype\": dbt.type_string()},\n {\"name\": \"language\", \"datatype\": dbt.type_string()},\n {\"name\": \"unsubscribed\", \"datatype\": \"boolean\"},\n {\"name\": \"_fivetran_deleted\", \"datatype\": \"boolean\"}\n] %}\n\n{{ fivetran_utils.add_pass_through_columns(columns, var('qualtrics__core_contact_pass_through_columns')) }}\n\n{{ return(columns) }}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.type_timestamp", "macro.dbt.type_string", "macro.fivetran_utils.add_pass_through_columns"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137323.076014, "supported_languages": null}, "macro.qualtrics_source.get_survey_version_columns": {"name": "get_survey_version_columns", "resource_type": "macro", "package_name": "qualtrics_source", "path": "macros/get_survey_version_columns.sql", "original_file_path": "macros/get_survey_version_columns.sql", "unique_id": "macro.qualtrics_source.get_survey_version_columns", "macro_sql": "{% macro get_survey_version_columns() %}\n\n{% set columns = [\n {\"name\": \"_fivetran_deleted\", \"datatype\": \"boolean\"},\n {\"name\": \"_fivetran_synced\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"creation_date\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"description\", \"datatype\": dbt.type_string()},\n {\"name\": \"id\", \"datatype\": dbt.type_string()},\n {\"name\": \"published\", \"datatype\": \"boolean\"},\n {\"name\": \"survey_id\", \"datatype\": dbt.type_string()},\n {\"name\": \"user_id\", \"datatype\": dbt.type_string()},\n {\"name\": \"version_number\", \"datatype\": dbt.type_int()},\n {\"name\": \"was_published\", \"datatype\": \"boolean\"}\n] %}\n\n{{ return(columns) }}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.type_timestamp", "macro.dbt.type_string", "macro.dbt.type_int"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137323.077114, "supported_languages": null}, "macro.qualtrics_source.get_survey_response_columns": {"name": "get_survey_response_columns", "resource_type": "macro", "package_name": "qualtrics_source", "path": "macros/get_survey_response_columns.sql", "original_file_path": "macros/get_survey_response_columns.sql", "unique_id": "macro.qualtrics_source.get_survey_response_columns", "macro_sql": "{% macro get_survey_response_columns() %}\n\n{% set columns = [\n {\"name\": \"_fivetran_synced\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"distribution_channel\", \"datatype\": dbt.type_string()},\n {\"name\": \"duration_in_seconds\", \"datatype\": dbt.type_int()},\n {\"name\": \"end_date\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"finished\", \"datatype\": dbt.type_int()},\n {\"name\": \"id\", \"datatype\": dbt.type_string()},\n {\"name\": \"ip_address\", \"datatype\": dbt.type_string()},\n {\"name\": \"last_modified_date\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"location_latitude\", \"datatype\": dbt.type_float()},\n {\"name\": \"location_longitude\", \"datatype\": dbt.type_float()},\n {\"name\": \"progress\", \"datatype\": dbt.type_int()},\n {\"name\": \"recipient_email\", \"datatype\": dbt.type_string()},\n {\"name\": \"recipient_first_name\", \"datatype\": dbt.type_string()},\n {\"name\": \"recipient_last_name\", \"datatype\": dbt.type_string()},\n {\"name\": \"recorded_date\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"start_date\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"status\", \"datatype\": dbt.type_int()},\n {\"name\": \"survey_id\", \"datatype\": dbt.type_string()},\n {\"name\": \"user_language\", \"datatype\": dbt.type_string()}\n] %}\n\n{{ return(columns) }}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.type_timestamp", "macro.dbt.type_string", "macro.dbt.type_int", "macro.dbt.type_float"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137323.0794392, "supported_languages": null}, "macro.qualtrics_source.get_distribution_columns": {"name": "get_distribution_columns", "resource_type": "macro", "package_name": "qualtrics_source", "path": "macros/get_distribution_columns.sql", "original_file_path": "macros/get_distribution_columns.sql", "unique_id": "macro.qualtrics_source.get_distribution_columns", "macro_sql": "{% macro get_distribution_columns() %}\n\n{% set columns = [\n {\"name\": \"_fivetran_deleted\", \"datatype\": \"boolean\"},\n {\"name\": \"_fivetran_synced\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"created_date\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"header_from_email\", \"datatype\": dbt.type_string()},\n {\"name\": \"header_from_name\", \"datatype\": dbt.type_string()},\n {\"name\": \"header_reply_to_email\", \"datatype\": dbt.type_string()},\n {\"name\": \"header_subject\", \"datatype\": dbt.type_string()},\n {\"name\": \"id\", \"datatype\": dbt.type_string()},\n {\"name\": \"message_library_id\", \"datatype\": dbt.type_string()},\n {\"name\": \"message_message_id\", \"datatype\": dbt.type_string()},\n {\"name\": \"message_message_text\", \"datatype\": dbt.type_string()},\n {\"name\": \"modified_date\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"organization_id\", \"datatype\": dbt.type_string()},\n {\"name\": \"owner_id\", \"datatype\": dbt.type_string()},\n {\"name\": \"parent_distribution_id\", \"datatype\": dbt.type_string()},\n {\"name\": \"recipient_contact_id\", \"datatype\": dbt.type_string()},\n {\"name\": \"recipient_library_id\", \"datatype\": dbt.type_string()},\n {\"name\": \"recipient_mailing_list_id\", \"datatype\": dbt.type_string()},\n {\"name\": \"recipient_sample_id\", \"datatype\": dbt.type_string()},\n {\"name\": \"request_status\", \"datatype\": dbt.type_string()},\n {\"name\": \"request_type\", \"datatype\": dbt.type_string()},\n {\"name\": \"send_date\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"survey_link_expiration_date\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"survey_link_link_type\", \"datatype\": dbt.type_string()},\n {\"name\": \"survey_link_survey_id\", \"datatype\": dbt.type_string()}\n] %}\n\n{{ fivetran_utils.add_pass_through_columns(columns, var('qualtrics__distribution_pass_through_columns')) }}\n\n{{ return(columns) }}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.type_timestamp", "macro.dbt.type_string", "macro.fivetran_utils.add_pass_through_columns"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137323.0824041, "supported_languages": null}, "macro.qualtrics_source.get_user_columns": {"name": "get_user_columns", "resource_type": "macro", "package_name": "qualtrics_source", "path": "macros/get_user_columns.sql", "original_file_path": "macros/get_user_columns.sql", "unique_id": "macro.qualtrics_source.get_user_columns", "macro_sql": "{% macro get_user_columns() %}\n\n{% set columns = [\n {\"name\": \"_fivetran_deleted\", \"datatype\": \"boolean\"},\n {\"name\": \"_fivetran_synced\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"account_creation_date\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"account_expiration_date\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"account_status\", \"datatype\": dbt.type_string()},\n {\"name\": \"division_id\", \"datatype\": dbt.type_string()},\n {\"name\": \"email\", \"datatype\": dbt.type_string()},\n {\"name\": \"first_name\", \"datatype\": dbt.type_string()},\n {\"name\": \"id\", \"datatype\": dbt.type_string()},\n {\"name\": \"language\", \"datatype\": dbt.type_string()},\n {\"name\": \"last_login_date\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"last_name\", \"datatype\": dbt.type_string()},\n {\"name\": \"organization_id\", \"datatype\": dbt.type_string()},\n {\"name\": \"password_expiration_date\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"password_last_changed_date\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"response_count_auditable\", \"datatype\": dbt.type_int()},\n {\"name\": \"response_count_deleted\", \"datatype\": dbt.type_int()},\n {\"name\": \"response_count_generated\", \"datatype\": dbt.type_int()},\n {\"name\": \"time_zone\", \"datatype\": dbt.type_string()},\n {\"name\": \"unsubscribed\", \"datatype\": \"boolean\"},\n {\"name\": \"user_type\", \"datatype\": dbt.type_string()},\n {\"name\": \"username\", \"datatype\": dbt.type_string()}\n] %}\n\n{{ return(columns) }}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.type_timestamp", "macro.dbt.type_string", "macro.dbt.type_int"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137323.084786, "supported_languages": null}, "macro.qualtrics_source.get_question_columns": {"name": "get_question_columns", "resource_type": "macro", "package_name": "qualtrics_source", "path": "macros/get_question_columns.sql", "original_file_path": "macros/get_question_columns.sql", "unique_id": "macro.qualtrics_source.get_question_columns", "macro_sql": "{% macro get_question_columns() %}\n\n{% set columns = [\n {\"name\": \"_fivetran_deleted\", \"datatype\": \"boolean\"},\n {\"name\": \"_fivetran_synced\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"data_export_tag\", \"datatype\": dbt.type_string()},\n {\"name\": \"data_visibility_hidden\", \"datatype\": \"boolean\"},\n {\"name\": \"data_visibility_private\", \"datatype\": \"boolean\"},\n {\"name\": \"id\", \"datatype\": dbt.type_string()},\n {\"name\": \"next_answer_id\", \"datatype\": dbt.type_int()},\n {\"name\": \"next_choice_id\", \"datatype\": dbt.type_int()},\n {\"name\": \"question_description\", \"datatype\": dbt.type_string()},\n {\"name\": \"question_description_option\", \"datatype\": dbt.type_string()},\n {\"name\": \"question_text\", \"datatype\": dbt.type_string()},\n {\"name\": \"question_text_unsafe\", \"datatype\": dbt.type_string()},\n {\"name\": \"question_type\", \"datatype\": dbt.type_string()},\n {\"name\": \"selector\", \"datatype\": dbt.type_string()},\n {\"name\": \"sub_selector\", \"datatype\": dbt.type_string()},\n {\"name\": \"survey_id\", \"datatype\": dbt.type_string()},\n {\"name\": \"validation_setting_force_response\", \"datatype\": dbt.type_string()},\n {\"name\": \"validation_setting_force_response_type\", \"datatype\": dbt.type_string()},\n {\"name\": \"validation_setting_type\", \"datatype\": dbt.type_string()}\n] %}\n\n{{ return(columns) }}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.type_timestamp", "macro.dbt.type_string", "macro.dbt.type_int"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137323.086956, "supported_languages": null}, "macro.qualtrics_source.get_survey_columns": {"name": "get_survey_columns", "resource_type": "macro", "package_name": "qualtrics_source", "path": "macros/get_survey_columns.sql", "original_file_path": "macros/get_survey_columns.sql", "unique_id": "macro.qualtrics_source.get_survey_columns", "macro_sql": "{% macro get_survey_columns() %}\n\n{% set columns = [\n {\"name\": \"_fivetran_deleted\", \"datatype\": \"boolean\"},\n {\"name\": \"_fivetran_synced\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"auto_scoring_category\", \"datatype\": dbt.type_string()},\n {\"name\": \"brand_base_url\", \"datatype\": dbt.type_string()},\n {\"name\": \"brand_id\", \"datatype\": dbt.type_string()},\n {\"name\": \"bundle_short_name\", \"datatype\": dbt.type_string()},\n {\"name\": \"composition_type\", \"datatype\": dbt.type_string()},\n {\"name\": \"creator_id\", \"datatype\": dbt.type_string()},\n {\"name\": \"default_scoring_category\", \"datatype\": dbt.type_string()},\n {\"name\": \"division_id\", \"datatype\": dbt.type_string()},\n {\"name\": \"id\", \"datatype\": dbt.type_string()},\n {\"name\": \"last_accessed\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"last_activated\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"last_modified\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"owner_id\", \"datatype\": dbt.type_string()},\n {\"name\": \"project_category\", \"datatype\": dbt.type_string()},\n {\"name\": \"project_type\", \"datatype\": dbt.type_string()},\n {\"name\": \"registry_sha\", \"datatype\": dbt.type_string()},\n {\"name\": \"registry_version\", \"datatype\": dbt.type_string()},\n {\"name\": \"schema_version\", \"datatype\": dbt.type_string()},\n {\"name\": \"scoring_summary_after_questions\", \"datatype\": \"boolean\"},\n {\"name\": \"scoring_summary_after_survey\", \"datatype\": \"boolean\"},\n {\"name\": \"scoring_summary_category\", \"datatype\": dbt.type_string()},\n {\"name\": \"survey_name\", \"datatype\": dbt.type_string()},\n {\"name\": \"survey_status\", \"datatype\": dbt.type_string()}\n] %}\n\n{{ fivetran_utils.add_pass_through_columns(columns, var('qualtrics__survey_pass_through_columns')) }}\n\n{{ return(columns) }}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.type_timestamp", "macro.dbt.type_string", "macro.fivetran_utils.add_pass_through_columns"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137323.089867, "supported_languages": null}, "macro.qualtrics_source.get_directory_columns": {"name": "get_directory_columns", "resource_type": "macro", "package_name": "qualtrics_source", "path": "macros/get_directory_columns.sql", "original_file_path": "macros/get_directory_columns.sql", "unique_id": "macro.qualtrics_source.get_directory_columns", "macro_sql": "{% macro get_directory_columns() %}\n\n{% set columns = [\n {\"name\": \"_fivetran_deleted\", \"datatype\": \"boolean\"},\n {\"name\": \"_fivetran_synced\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"deduplication_criteria_email\", \"datatype\": \"boolean\"},\n {\"name\": \"deduplication_criteria_external_data_reference\", \"datatype\": \"boolean\"},\n {\"name\": \"deduplication_criteria_first_name\", \"datatype\": \"boolean\"},\n {\"name\": \"deduplication_criteria_last_name\", \"datatype\": \"boolean\"},\n {\"name\": \"deduplication_criteria_phone\", \"datatype\": \"boolean\"},\n {\"name\": \"id\", \"datatype\": dbt.type_string()},\n {\"name\": \"is_default\", \"datatype\": \"boolean\"},\n {\"name\": \"name\", \"datatype\": dbt.type_string()}\n] %}\n\n{{ fivetran_utils.add_pass_through_columns(columns, var('qualtrics__directory_pass_through_columns')) }}\n\n{{ return(columns) }}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.type_timestamp", "macro.dbt.type_string", "macro.fivetran_utils.add_pass_through_columns"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137323.090973, "supported_languages": null}, "macro.qualtrics_source.get_block_question_columns": {"name": "get_block_question_columns", "resource_type": "macro", "package_name": "qualtrics_source", "path": "macros/get_block_question_columns.sql", "original_file_path": "macros/get_block_question_columns.sql", "unique_id": "macro.qualtrics_source.get_block_question_columns", "macro_sql": "{% macro get_block_question_columns() %}\n\n{% set columns = [\n {\"name\": \"_fivetran_deleted\", \"datatype\": \"boolean\"},\n {\"name\": \"_fivetran_synced\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"block_id\", \"datatype\": dbt.type_string()},\n {\"name\": \"question_id\", \"datatype\": dbt.type_string()},\n {\"name\": \"survey_id\", \"datatype\": dbt.type_string()}\n] %}\n\n{{ return(columns) }}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.type_timestamp", "macro.dbt.type_string"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137323.091578, "supported_languages": null}, "macro.qualtrics_source.get_question_response_columns": {"name": "get_question_response_columns", "resource_type": "macro", "package_name": "qualtrics_source", "path": "macros/get_question_response_columns.sql", "original_file_path": "macros/get_question_response_columns.sql", "unique_id": "macro.qualtrics_source.get_question_response_columns", "macro_sql": "{% macro get_question_response_columns() %}\n\n{% set columns = [\n {\"name\": \"_fivetran_id\", \"datatype\": dbt.type_string()},\n {\"name\": \"_fivetran_synced\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"loop_id\", \"datatype\": dbt.type_string()},\n {\"name\": \"question\", \"datatype\": dbt.type_string()},\n {\"name\": \"question_id\", \"datatype\": dbt.type_string()},\n {\"name\": \"question_option_key\", \"datatype\": dbt.type_string()},\n {\"name\": \"response_id\", \"datatype\": dbt.type_string()},\n {\"name\": \"sub_question_key\", \"datatype\": dbt.type_string()},\n {\"name\": \"sub_question_text\", \"datatype\": dbt.type_string()},\n {\"name\": \"value\", \"datatype\": dbt.type_string()}\n] %}\n\n{{ return(columns) }}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.type_string", "macro.dbt.type_timestamp"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137323.092893, "supported_languages": null}, "macro.qualtrics_source.get_core_mailing_list_columns": {"name": "get_core_mailing_list_columns", "resource_type": "macro", "package_name": "qualtrics_source", "path": "macros/get_core_mailing_list_columns.sql", "original_file_path": "macros/get_core_mailing_list_columns.sql", "unique_id": "macro.qualtrics_source.get_core_mailing_list_columns", "macro_sql": "{% macro get_core_mailing_list_columns() %}\n\n{% set columns = [\n {\"name\": \"_fivetran_deleted\", \"datatype\": \"boolean\"},\n {\"name\": \"_fivetran_synced\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"id\", \"datatype\": dbt.type_string()},\n {\"name\": \"library_id\", \"datatype\": dbt.type_string()},\n {\"name\": \"name\", \"datatype\": dbt.type_string()},\n {\"name\": \"category\", \"datatype\": dbt.type_string()},\n {\"name\": \"folder\", \"datatype\": dbt.type_string()}\n] %}\n\n{{ return(columns) }}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.type_timestamp", "macro.dbt.type_string"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137323.093771, "supported_languages": null}, "macro.qualtrics_source.get_directory_contact_columns": {"name": "get_directory_contact_columns", "resource_type": "macro", "package_name": "qualtrics_source", "path": "macros/get_directory_contact_columns.sql", "original_file_path": "macros/get_directory_contact_columns.sql", "unique_id": "macro.qualtrics_source.get_directory_contact_columns", "macro_sql": "{% macro get_directory_contact_columns() %}\n\n{% set columns = [\n {\"name\": \"_fivetran_synced\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"creation_date\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"directory_id\", \"datatype\": dbt.type_string()},\n {\"name\": \"directory_unsubscribe_date\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"directory_unsubscribed\", \"datatype\": \"boolean\"},\n {\"name\": \"email\", \"datatype\": dbt.type_string()},\n {\"name\": \"email_domain\", \"datatype\": dbt.type_string()},\n {\"name\": \"ext_ref\", \"datatype\": dbt.type_string()},\n {\"name\": \"first_name\", \"datatype\": dbt.type_string()},\n {\"name\": \"id\", \"datatype\": dbt.type_string()},\n {\"name\": \"language\", \"datatype\": dbt.type_string()},\n {\"name\": \"last_modified\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"last_name\", \"datatype\": dbt.type_string()},\n {\"name\": \"phone\", \"datatype\": dbt.type_string()}\n] %}\n\n{{ fivetran_utils.add_pass_through_columns(columns, var('qualtrics__directory_contact_pass_through_columns')) }}\n\n{{ return(columns) }}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.type_timestamp", "macro.dbt.type_string", "macro.fivetran_utils.add_pass_through_columns"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137323.0954912, "supported_languages": null}, "macro.qualtrics_source.get_distribution_contact_columns": {"name": "get_distribution_contact_columns", "resource_type": "macro", "package_name": "qualtrics_source", "path": "macros/get_distribution_contact_columns.sql", "original_file_path": "macros/get_distribution_contact_columns.sql", "unique_id": "macro.qualtrics_source.get_distribution_contact_columns", "macro_sql": "{% macro get_distribution_contact_columns() %}\n\n{% set columns = [\n {\"name\": \"_fivetran_synced\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"contact_frequency_rule_id\", \"datatype\": dbt.type_string()},\n {\"name\": \"contact_id\", \"datatype\": dbt.type_string()},\n {\"name\": \"contact_lookup_id\", \"datatype\": dbt.type_string()},\n {\"name\": \"distribution_id\", \"datatype\": dbt.type_string()},\n {\"name\": \"opened_at\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"response_completed_at\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"response_id\", \"datatype\": dbt.type_string()},\n {\"name\": \"response_started_at\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"sent_at\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"status\", \"datatype\": dbt.type_string()},\n {\"name\": \"survey_link\", \"datatype\": dbt.type_string()},\n {\"name\": \"survey_session_id\", \"datatype\": dbt.type_string()}\n] %}\n\n{{ return(columns) }}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.type_timestamp", "macro.dbt.type_string"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137323.097075, "supported_languages": null}, "macro.qualtrics_source.get_question_option_columns": {"name": "get_question_option_columns", "resource_type": "macro", "package_name": "qualtrics_source", "path": "macros/get_question_option_columns.sql", "original_file_path": "macros/get_question_option_columns.sql", "unique_id": "macro.qualtrics_source.get_question_option_columns", "macro_sql": "{% macro get_question_option_columns() %}\n\n{% set columns = [\n {\"name\": \"_fivetran_deleted\", \"datatype\": \"boolean\"},\n {\"name\": \"_fivetran_synced\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"key\", \"datatype\": dbt.type_string()},\n {\"name\": \"question_id\", \"datatype\": dbt.type_string()},\n {\"name\": \"recode_value\", \"datatype\": dbt.type_string()},\n {\"name\": \"survey_id\", \"datatype\": dbt.type_string()},\n {\"name\": \"text\", \"datatype\": dbt.type_string()}\n] %}\n\n{{ return(columns) }}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.type_timestamp", "macro.dbt.type_string"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137323.097884, "supported_languages": null}, "macro.qualtrics_source.get_contact_mailing_list_membership_columns": {"name": "get_contact_mailing_list_membership_columns", "resource_type": "macro", "package_name": "qualtrics_source", "path": "macros/get_contact_mailing_list_membership_columns.sql", "original_file_path": "macros/get_contact_mailing_list_membership_columns.sql", "unique_id": "macro.qualtrics_source.get_contact_mailing_list_membership_columns", "macro_sql": "{% macro get_contact_mailing_list_membership_columns() %}\n\n{% set columns = [\n {\"name\": \"_fivetran_synced\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"contact_id\", \"datatype\": dbt.type_string()},\n {\"name\": \"contact_lookup_id\", \"datatype\": dbt.type_string()},\n {\"name\": \"directory_id\", \"datatype\": dbt.type_string()},\n {\"name\": \"mailing_list_id\", \"datatype\": dbt.type_string()},\n {\"name\": \"name\", \"datatype\": dbt.type_string()},\n {\"name\": \"owner_id\", \"datatype\": dbt.type_string()},\n {\"name\": \"unsubscribe_date\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"unsubscribed\", \"datatype\": \"boolean\"}\n] %}\n\n{{ return(columns) }}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.type_timestamp", "macro.dbt.type_string"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1711137323.0988328, "supported_languages": null}}, "docs": {"doc.dbt.__overview__": {"name": "__overview__", "resource_type": "doc", "package_name": "dbt", "path": "overview.md", "original_file_path": "docs/overview.md", "unique_id": "doc.dbt.__overview__", "block_contents": "### Welcome!\n\nWelcome to the auto-generated documentation for your dbt project!\n\n### Navigation\n\nYou can use the `Project` and `Database` navigation tabs on the left side of the window to explore the models\nin your project.\n\n#### Project Tab\nThe `Project` tab mirrors the directory structure of your dbt project. In this tab, you can see all of the\nmodels defined in your dbt project, as well as models imported from dbt packages.\n\n#### Database Tab\nThe `Database` tab also exposes your models, but in a format that looks more like a database explorer. This view\nshows relations (tables and views) grouped into database schemas. Note that ephemeral models are _not_ shown\nin this interface, as they do not exist in the database.\n\n### Graph Exploration\nYou can click the blue icon on the bottom-right corner of the page to view the lineage graph of your models.\n\nOn model pages, you'll see the immediate parents and children of the model you're exploring. By clicking the `Expand`\nbutton at the top-right of this lineage pane, you'll be able to see all of the models that are used to build,\nor are built from, the model you're exploring.\n\nOnce expanded, you'll be able to use the `--select` and `--exclude` model selection syntax to filter the\nmodels in the graph. For more information on model selection, check out the [dbt docs](https://docs.getdbt.com/docs/model-selection-syntax).\n\nNote that you can also right-click on models to interactively filter and explore the graph.\n\n---\n\n### More information\n\n- [What is dbt](https://docs.getdbt.com/docs/introduction)?\n- Read the [dbt viewpoint](https://docs.getdbt.com/docs/viewpoint)\n- [Installation](https://docs.getdbt.com/docs/installation)\n- Join the [dbt Community](https://www.getdbt.com/community/) for questions and discussion"}, "doc.qualtrics_source._fivetran_synced": {"name": "_fivetran_synced", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source._fivetran_synced", "block_contents": "The time when a record was last updated by Fivetran."}, "doc.qualtrics_source.source_relation": {"name": "source_relation", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.source_relation", "block_contents": "The schema or database this record came from if you are making use of the qualtrics_union_schemas or qualtrics_union_databases variables, respectively. Empty string if you are not using either of these variables to union together multiple Qualtrics connectors."}, "doc.qualtrics_source._fivetran_deleted": {"name": "_fivetran_deleted", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source._fivetran_deleted", "block_contents": "Boolean representing whether the record was soft-deleted in Qualtrics."}, "doc.qualtrics_source.block_locking": {"name": "block_locking", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.block_locking", "block_contents": "Boolean representing whether modification of the block and its contents is prevented."}, "doc.qualtrics_source.block_visibility": {"name": "block_visibility", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.block_visibility", "block_contents": "Whether the questions in the block are 'collapsed' or 'expanded' by default."}, "doc.qualtrics_source.block_description": {"name": "block_description", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.block_description", "block_contents": "Description given to the block."}, "doc.qualtrics_source.block_id": {"name": "block_id", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.block_id", "block_contents": "The ID of the survey block. Match pattern = ^BL_[a-zA-Z0-9]{11,15}$"}, "doc.qualtrics_source.randomize_questions": {"name": "randomize_questions", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.randomize_questions", "block_contents": "If/how the block questions are randomized. Can be - `false` (no randomization), `RandomWithXPerPage` (randomize all and place X questions in each block), `RandomWithOnlyX` (randomly present only X out of the total questions), or `Advanced` (custom configuration)"}, "doc.qualtrics_source.survey_id": {"name": "survey_id", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.survey_id", "block_contents": "The unique identifier for this survey. Match pattern = ^SV_[a-zA-Z0-9]{11,15}$"}, "doc.qualtrics_source.block_type": {"name": "block_type", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.block_type", "block_contents": "Type of block. Can be `Trash`, `Default`, or `Standard`"}, "doc.qualtrics_source.user_id": {"name": "user_id", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.user_id", "block_contents": "Unique ID of the user. Match pattern = ^((UR)|(URH))_[0-9a-zA-Z]{11,15}$"}, "doc.qualtrics_source.division_id": {"name": "division_id", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.division_id", "block_contents": "The unique identifier for the Division ID. Match pattern = ^DV_[0-9a-zA-Z]{11,15}$"}, "doc.qualtrics_source.username": {"name": "username", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.username", "block_contents": "UI-facing username for the account."}, "doc.qualtrics_source.user_first_name": {"name": "user_first_name", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.user_first_name", "block_contents": "The user's first name or given name."}, "doc.qualtrics_source.user_last_name": {"name": "user_last_name", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.user_last_name", "block_contents": "User's surname."}, "doc.qualtrics_source.user_type": {"name": "user_type", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.user_type", "block_contents": "ID of the user type. See mappings of user types to their type IDs [here](https://api.qualtrics.com/dc2be1c61af61-user-type)."}, "doc.qualtrics_source.organization_id": {"name": "organization_id", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.organization_id", "block_contents": "ID of the organization/brand this record belongs to."}, "doc.qualtrics_source.language": {"name": "language", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.language", "block_contents": "The user's default language."}, "doc.qualtrics_source.unsubscribed": {"name": "unsubscribed", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.unsubscribed", "block_contents": "Boolean indicating if the user unsubscribed."}, "doc.qualtrics_source.account_creation_date": {"name": "account_creation_date", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.account_creation_date", "block_contents": "The date and time that the account was created. Dates and times are expressed in ISO 8601 format."}, "doc.qualtrics_source.account_expiration_date": {"name": "account_expiration_date", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.account_expiration_date", "block_contents": "The date the account expires. Dates and times are expressed in ISO 8601 format."}, "doc.qualtrics_source.account_status": {"name": "account_status", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.account_status", "block_contents": "Either `active`, `disabled`, or `notVerified`."}, "doc.qualtrics_source.email": {"name": "email", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.email", "block_contents": "The user's email address."}, "doc.qualtrics_source.last_login_date": {"name": "last_login_date", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.last_login_date", "block_contents": "The date and time the user last logged into the user interface. Dates and times are expressed in ISO 8601 format."}, "doc.qualtrics_source.password_expiration_date": {"name": "password_expiration_date", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.password_expiration_date", "block_contents": "The date the account password expires. Dates and times are expressed in ISO 8601 format."}, "doc.qualtrics_source.password_last_changed_date": {"name": "password_last_changed_date", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.password_last_changed_date", "block_contents": "The date the account password was last changed. Dates and times are expressed in ISO 8601 format."}, "doc.qualtrics_source.response_count_auditable": {"name": "response_count_auditable", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.response_count_auditable", "block_contents": "The count of auditable responses."}, "doc.qualtrics_source.response_count_deleted": {"name": "response_count_deleted", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.response_count_deleted", "block_contents": "The count of deleted responses."}, "doc.qualtrics_source.response_count_generated": {"name": "response_count_generated", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.response_count_generated", "block_contents": "The count of generated responses."}, "doc.qualtrics_source.time_zone": {"name": "time_zone", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.time_zone", "block_contents": "The IANA time zone setting for the user."}, "doc.qualtrics_source.auto_scoring_category": {"name": "auto_scoring_category", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.auto_scoring_category", "block_contents": "The automated scoring category."}, "doc.qualtrics_source.brand_base_url": {"name": "brand_base_url", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.brand_base_url", "block_contents": "Base url for the organization/brand."}, "doc.qualtrics_source.brand_id": {"name": "brand_id", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.brand_id", "block_contents": "Unique ID of the organization/brand."}, "doc.qualtrics_source.bundle_short_name": {"name": "bundle_short_name", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.bundle_short_name", "block_contents": "Short name for the content bundle that the survey is from."}, "doc.qualtrics_source.composition_type": {"name": "composition_type", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.composition_type", "block_contents": "Survey composition type."}, "doc.qualtrics_source.creator_id": {"name": "creator_id", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.creator_id", "block_contents": "The unique identifier for a specific `USER` who created the survey."}, "doc.qualtrics_source.default_scoring_category": {"name": "default_scoring_category", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.default_scoring_category", "block_contents": "The default scoring category."}, "doc.qualtrics_source.is_active": {"name": "is_active", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.is_active", "block_contents": "DEPRECATED. Use `survey_status = 'active'` instead."}, "doc.qualtrics_source.last_accessed": {"name": "last_accessed", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.last_accessed", "block_contents": "The date the survey was last accessed."}, "doc.qualtrics_source.last_activated": {"name": "last_activated", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.last_activated", "block_contents": "The date the survey was last activated."}, "doc.qualtrics_source.owner_id": {"name": "owner_id", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.owner_id", "block_contents": "The unique identifier for a specific user who owns this."}, "doc.qualtrics_source.project_category": {"name": "project_category", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.project_category", "block_contents": "Project category of the survey.\n\nAllowed values - `CORE`, `CX`, `EX`, `BX`, `PX`"}, "doc.qualtrics_source.project_type": {"name": "project_type", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.project_type", "block_contents": "Type of [Qualtrics project](https://www.qualtrics.com/support/survey-platform/my-projects/my-projects-overview/#SelectingProjectType). Match pattern = ^[a-zA-Z]+$"}, "doc.qualtrics_source.registry_sha": {"name": "registry_sha", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.registry_sha", "block_contents": "The survey registry SHA."}, "doc.qualtrics_source.registry_version": {"name": "registry_version", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.registry_version", "block_contents": "The survey registry version."}, "doc.qualtrics_source.schema_version": {"name": "schema_version", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.schema_version", "block_contents": "Qualtrics schema version."}, "doc.qualtrics_source.scoring_summary_after_questions": {"name": "scoring_summary_after_questions", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.scoring_summary_after_questions", "block_contents": "Boolean representing whether the scoring summary is after questions."}, "doc.qualtrics_source.scoring_summary_after_survey": {"name": "scoring_summary_after_survey", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.scoring_summary_after_survey", "block_contents": "Boolean representing whether the scoring summary is after the survey."}, "doc.qualtrics_source.scoring_summary_category": {"name": "scoring_summary_category", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.scoring_summary_category", "block_contents": "The unique identifier for the scoring."}, "doc.qualtrics_source.survey_name": {"name": "survey_name", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.survey_name", "block_contents": "Name of the survey."}, "doc.qualtrics_source.survey_status": {"name": "survey_status", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.survey_status", "block_contents": "The distribution status of the survey, or a flag indicating that it's a library block\n\nAllowed values - `Inactive`, `Active`, `Pending`, `LibBlock`, `Deactive`, `Temporary`"}, "doc.qualtrics_source.data_export_tag": {"name": "data_export_tag", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.data_export_tag", "block_contents": "The tag to identify the question in exported data."}, "doc.qualtrics_source.choice_data_export_tag": {"name": "choice_data_export_tag", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.choice_data_export_tag", "block_contents": "The tag to identify the question choice in exported data."}, "doc.qualtrics_source.data_visibility_hidden": {"name": "data_visibility_hidden", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.data_visibility_hidden", "block_contents": "Boolean that represents whether the embedded data is hidden."}, "doc.qualtrics_source.data_visibility_private": {"name": "data_visibility_private", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.data_visibility_private", "block_contents": "Boolean that represents whether the embedded data is private."}, "doc.qualtrics_source.question_id": {"name": "question_id", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.question_id", "block_contents": "The unique identifier for the question. Match pattern = ^QID[a-zA-Z0-9]+$"}, "doc.qualtrics_source.next_answer_id": {"name": "next_answer_id", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.next_answer_id", "block_contents": "For Matrix questions, the vertical options are denoted as \"Answers\" in the question's structure. \nID of the next answer for this question. ?"}, "doc.qualtrics_source.next_choice_id": {"name": "next_choice_id", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.next_choice_id", "block_contents": "For Matrix questions, the horizontal options are denoted as \"Choices\" in the question's structure. \n\nID of the next choice for this question. ?"}, "doc.qualtrics_source.question_description": {"name": "question_description", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.question_description", "block_contents": "Label to identify the question."}, "doc.qualtrics_source.question_description_option": {"name": "question_description_option", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.question_description_option", "block_contents": "An optional user-provided field for question descriptions. Accepted values = `UseText`, `SpecifyLabel`"}, "doc.qualtrics_source.question_text": {"name": "question_text", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.question_text", "block_contents": "Text for the question."}, "doc.qualtrics_source.question_text_unsafe": {"name": "question_text_unsafe", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.question_text_unsafe", "block_contents": "Un-paresed version of the question text."}, "doc.qualtrics_source.question_type": {"name": "question_type", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.question_type", "block_contents": "The type of question. Can be -\n`MC`,`Matrix`,`Captcha`,`CS`,`DB`,`DD`,`Draw`,`DynamicMatrix`,`FileUpload`,`GAP`,`HeatMap`,`HL`,`HotSpot`,`Meta`,`PGR`,`RO`,`SBS`,`Slider`,`SS`,`TE`,`Timing`,`TreeSelect`"}, "doc.qualtrics_source.selector": {"name": "selector", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.selector", "block_contents": "How answers are selected such as single answer, multiple answer, etc. Accepted values - \n- `Bipolar`\n- `Browser`\n- `Captcha`\n- `CompactView`\n- `CS`\n- `D`\n- `DL`\n- `DND`\n- `DragAndDrop`\n- `ESTB`\n- `FORM`\n- `FileUpload`\n- `GRB`\n- `HBAR`\n- `HR`\n- `HSLIDER`\n- `I`\n- `Image`\n- `LikeDislike`\n- `Likert`\n- `MACOL`\n- `MAHR`\n- `MAVR`\n- `ML`\n- `MSB`\n- `MaxDiff`\n- `NPS`\n- `OH`\n- `OnOff`\n- `POS`\n- `PTB`\n- `PW`\n- `PageTimer`\n- `Profile`\n- `RB`\n- `RO`\n- `SACOL`\n- `SAHR`\n- `SAVR`\n- `SB`\n- `SBSMatrix`\n- `SL`\n- `STAR`\n- `ScreenCapture`\n- `SearchOnly`\n- `Signature`\n- `TA`\n- `TB`\n- `TBelow`\n- `TE`\n- `TL`\n- `TRight`\n- `Text`\n- `V1`\n- `V2`\n- `VR`\n- `VRTL`\n- `WTXB`"}, "doc.qualtrics_source.sub_selector": {"name": "sub_selector", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.sub_selector", "block_contents": "How subquestion answers are selected. Allowed values - SingleAnswer, DL, GR, DND, Long, Medium, MultipleAnswer, Columns, NoColumns, Short, TX, TXOT, WOTXB, WOTB, WTB, WTXB, WVTB."}, "doc.qualtrics_source.validation_setting_force_response": {"name": "validation_setting_force_response", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.validation_setting_force_response", "block_contents": "The response from forcing respondents to answer a question or request that they consider answering the question before leaving the page"}, "doc.qualtrics_source.validation_setting_force_response_type": {"name": "validation_setting_force_response_type", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.validation_setting_force_response_type", "block_contents": "The type of response from forcing respondents to answer a question or request that they consider answering the question before leaving the page"}, "doc.qualtrics_source.validation_setting_type": {"name": "validation_setting_type", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.validation_setting_type", "block_contents": "The type of forced response validation that is set."}, "doc.qualtrics_source.question_response_fivetran_id": {"name": "question_response_fivetran_id", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.question_response_fivetran_id", "block_contents": "Fivetran-generated unique key hashed on `response_id`, `question_id`, `sub_question_key`, `sub_question_text` , `question_option_key` , `loop_id` and `importId`."}, "doc.qualtrics_source.loop_id": {"name": "loop_id", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.loop_id", "block_contents": "ID of the [Loop and Merge](https://www.qualtrics.com/support/survey-platform/survey-module/block-options/loop-and-merge/) object this response is associated with."}, "doc.qualtrics_source.question": {"name": "question", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.question", "block_contents": "Question text."}, "doc.qualtrics_source.question_option_key": {"name": "question_option_key", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.question_option_key", "block_contents": "The key of the `QUESTION_OPTION` that was chosen."}, "doc.qualtrics_source.sub_question_option_key": {"name": "sub_question_option_key", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.sub_question_option_key", "block_contents": "The key of the `QUESTION_OPTION` that was chosen for the sub-question."}, "doc.qualtrics_source.sub_question_text": {"name": "sub_question_text", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.sub_question_text", "block_contents": "Sub question text."}, "doc.qualtrics_source.response_value": {"name": "response_value", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.response_value", "block_contents": "Value of the question response."}, "doc.qualtrics_source.recode_value": {"name": "recode_value", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.recode_value", "block_contents": "Recode/mapping value for the option."}, "doc.qualtrics_source.question_option_text": {"name": "question_option_text", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.question_option_text", "block_contents": "Question option text."}, "doc.qualtrics_source.distribution_channel": {"name": "distribution_channel", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.distribution_channel", "block_contents": "The method by which the survey was distributed to respondents."}, "doc.qualtrics_source.duration_in_seconds": {"name": "duration_in_seconds", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.duration_in_seconds", "block_contents": "How long it took for the respondent to finish the survey in seconds."}, "doc.qualtrics_source.end_date": {"name": "end_date", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.end_date", "block_contents": "The point in time when the survey response was finished."}, "doc.qualtrics_source.finished": {"name": "finished", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.finished", "block_contents": "Boolean (stored as int) indicating if the respondent finished and submitted the survey, the value will be 1, otherwise it will be 0."}, "doc.qualtrics_source.response_id": {"name": "response_id", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.response_id", "block_contents": "The unique ID for the `SURVEY_RESPONSE`."}, "doc.qualtrics_source.ip_address": {"name": "ip_address", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.ip_address", "block_contents": "IP address of the recipient."}, "doc.qualtrics_source.last_modified_date": {"name": "last_modified_date", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.last_modified_date", "block_contents": "The point in time when the record was last modified."}, "doc.qualtrics_source.location_latitude": {"name": "location_latitude", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.location_latitude", "block_contents": "The approximate location of the respondent at the time the survey was taken."}, "doc.qualtrics_source.location_longitude": {"name": "location_longitude", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.location_longitude", "block_contents": "The approximate location of the respondent at the time the survey was taken."}, "doc.qualtrics_source.progress": {"name": "progress", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.progress", "block_contents": "How far the respondent has progressed through the survey as a percentage out of 100."}, "doc.qualtrics_source.recipient_email": {"name": "recipient_email", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.recipient_email", "block_contents": "Email of the [recipient](https://api.qualtrics.com/ZG9jOjg3NzY2OQ-getting-information-about-distributions#the-recipients-object) if they are a single recipient (not a mailing list or sample)."}, "doc.qualtrics_source.recipient_first_name": {"name": "recipient_first_name", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.recipient_first_name", "block_contents": "First name of the [recipient](https://api.qualtrics.com/ZG9jOjg3NzY2OQ-getting-information-about-distributions#the-recipients-object) if they are a single recipient (not a mailing list or sample)."}, "doc.qualtrics_source.recipient_last_name": {"name": "recipient_last_name", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.recipient_last_name", "block_contents": "Last name of the [recipient](https://api.qualtrics.com/ZG9jOjg3NzY2OQ-getting-information-about-distributions#the-recipients-object) if they are a single recipient (not a mailing list or sample)."}, "doc.qualtrics_source.recorded_date": {"name": "recorded_date", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.recorded_date", "block_contents": "The point in time when the survey response was recorded."}, "doc.qualtrics_source.start_date": {"name": "start_date", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.start_date", "block_contents": "The point in time when the survey response was recorded."}, "doc.qualtrics_source.status": {"name": "status", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.status", "block_contents": "The type of response."}, "doc.qualtrics_source.user_language": {"name": "user_language", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.user_language", "block_contents": "The language of the respondent."}, "doc.qualtrics_source.sub_question_key": {"name": "sub_question_key", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.sub_question_key", "block_contents": "Key of the sub question."}, "doc.qualtrics_source.creation_date": {"name": "creation_date", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.creation_date", "block_contents": "The creation date and time of the record, expressed as an ISO 8601 value."}, "doc.qualtrics_source.survey_version_description": {"name": "survey_version_description", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.survey_version_description", "block_contents": "A user-provided description of the survey version."}, "doc.qualtrics_source.version_id": {"name": "version_id", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.version_id", "block_contents": "The unique identifier for this survey version."}, "doc.qualtrics_source.published": {"name": "published", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.published", "block_contents": "Boolean that, when true, publishes the version."}, "doc.qualtrics_source.publisher_user_id": {"name": "publisher_user_id", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.publisher_user_id", "block_contents": "ID of `USER` who published this survey version in your org."}, "doc.qualtrics_source.version_number": {"name": "version_number", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.version_number", "block_contents": "The version number of this survey."}, "doc.qualtrics_source.was_published": {"name": "was_published", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.was_published", "block_contents": "Boolean that is true if the survey version was published."}, "doc.qualtrics_source.import_id": {"name": "import_id", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.import_id", "block_contents": "A unique identifier to recognize this import job of embedded survey data."}, "doc.qualtrics_source.key": {"name": "key", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.key", "block_contents": "Key of the embedded survey data element."}, "doc.qualtrics_source.value": {"name": "value", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.value", "block_contents": "Key of the embedded survey data element."}, "doc.qualtrics_source.deduplication_criteria_email": {"name": "deduplication_criteria_email", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.deduplication_criteria_email", "block_contents": "Boolean representing if directory contacts are deduped based on email."}, "doc.qualtrics_source.deduplication_criteria_external_data_reference": {"name": "deduplication_criteria_external_data_reference", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.deduplication_criteria_external_data_reference", "block_contents": "Boolean representing if directory contacts are deduped based on an external data reference."}, "doc.qualtrics_source.deduplication_criteria_first_name": {"name": "deduplication_criteria_first_name", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.deduplication_criteria_first_name", "block_contents": "Boolean representing if directory contacts are deduped based on first name."}, "doc.qualtrics_source.deduplication_criteria_last_name": {"name": "deduplication_criteria_last_name", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.deduplication_criteria_last_name", "block_contents": "Boolean representing if directory contacts are deduped based on last name."}, "doc.qualtrics_source.deduplication_criteria_phone": {"name": "deduplication_criteria_phone", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.deduplication_criteria_phone", "block_contents": "Boolean representing if directory contacts are deduped based on phone number."}, "doc.qualtrics_source.directory_id": {"name": "directory_id", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.directory_id", "block_contents": "The directory ID, also known as a pool ID. Example - POOL_012345678901234"}, "doc.qualtrics_source.is_default": {"name": "is_default", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.is_default", "block_contents": "Boolean representing if this directory is the default one for your brand. \n\nThe default directory will be the first directory listed in the dropdown menu in Qualtrics."}, "doc.qualtrics_source.directory_name": {"name": "directory_name", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.directory_name", "block_contents": "Name of the directory."}, "doc.qualtrics_source.directory_unsubscribe_date": {"name": "directory_unsubscribe_date", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.directory_unsubscribe_date", "block_contents": "Date and time the user opted out of the directory."}, "doc.qualtrics_source.directory_unsubscribed": {"name": "directory_unsubscribed", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.directory_unsubscribed", "block_contents": "Boolean indicating whether the contact unsubscribed from all contact from the Directory."}, "doc.qualtrics_source.contact_email": {"name": "contact_email", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.contact_email", "block_contents": "Contact's email address. Must be in proper email format."}, "doc.qualtrics_source.email_domain": {"name": "email_domain", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.email_domain", "block_contents": "Domain of the contact's email address."}, "doc.qualtrics_source.ext_ref": {"name": "ext_ref", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.ext_ref", "block_contents": "The external reference for the contact."}, "doc.qualtrics_source.contact_first_name": {"name": "contact_first_name", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.contact_first_name", "block_contents": "Contact's first name."}, "doc.qualtrics_source.contact_id": {"name": "contact_id", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.contact_id", "block_contents": "The ID for the contact. Example - CID_012345678901234"}, "doc.qualtrics_source.contact_last_name": {"name": "contact_last_name", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.contact_last_name", "block_contents": "Contact's surname."}, "doc.qualtrics_source.phone": {"name": "phone", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.phone", "block_contents": "Contact's phone number."}, "doc.qualtrics_source.write_blanks": {"name": "write_blanks", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.write_blanks", "block_contents": "Boolean of whether to write blanks(?) or not."}, "doc.qualtrics_source.header_from_email": {"name": "header_from_email", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.header_from_email", "block_contents": "Email from address."}, "doc.qualtrics_source.header_from_name": {"name": "header_from_name", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.header_from_name", "block_contents": "Email from name."}, "doc.qualtrics_source.header_reply_to_email": {"name": "header_reply_to_email", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.header_reply_to_email", "block_contents": "Email reply-to address."}, "doc.qualtrics_source.header_subject": {"name": "header_subject", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.header_subject", "block_contents": "Email subject; text or message id (MS_)."}, "doc.qualtrics_source.distribution_id": {"name": "distribution_id", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.distribution_id", "block_contents": "The unique Distribution ID."}, "doc.qualtrics_source.message_library_id": {"name": "message_library_id", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.message_library_id", "block_contents": "Library ID of the message."}, "doc.qualtrics_source.message_message_id": {"name": "message_message_id", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.message_message_id", "block_contents": "The ID for the desired library message."}, "doc.qualtrics_source.message_message_text": {"name": "message_message_text", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.message_message_text", "block_contents": "Text of the message to send."}, "doc.qualtrics_source.parent_distribution_id": {"name": "parent_distribution_id", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.parent_distribution_id", "block_contents": "The unique ID of the parent distribution."}, "doc.qualtrics_source.recipient_contact_id": {"name": "recipient_contact_id", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.recipient_contact_id", "block_contents": "The contact ID of the recipient. Can point to `directory_contact` or `core_contact`."}, "doc.qualtrics_source.recipient_library_id": {"name": "recipient_library_id", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.recipient_library_id", "block_contents": "Library ID of the message."}, "doc.qualtrics_source.recipient_mailing_list_id": {"name": "recipient_mailing_list_id", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.recipient_mailing_list_id", "block_contents": "The mailing list or contact group associated with the distribution(s). Can point to `directory_mailing_list` or `core_mailing_list`."}, "doc.qualtrics_source.recipient_sample_id": {"name": "recipient_sample_id", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.recipient_sample_id", "block_contents": "The ID for the desired sample. Can point to `directory_sample` or `core_sample` (not included in package)."}, "doc.qualtrics_source.request_status": {"name": "request_status", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.request_status", "block_contents": "The distribution's status. States include `Pending` and `Done`. The Pending state is for email that is scheduled to be sent at a later time."}, "doc.qualtrics_source.request_type": {"name": "request_type", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.request_type", "block_contents": "The distribution's type. Types include `Invite`, `Reminder`, and `ThankYou`."}, "doc.qualtrics_source.send_date": {"name": "send_date", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.send_date", "block_contents": "The date and time the request will be or was sent (in ISO 8601 format). Note that this date and time could be in the future if the email distribution is scheduled to send after a delay."}, "doc.qualtrics_source.survey_link_expiration_date": {"name": "survey_link_expiration_date", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.survey_link_expiration_date", "block_contents": "The expiration date for the link associated with the survey distribution. Null if `request_type` != `Invite`."}, "doc.qualtrics_source.survey_link_link_type": {"name": "survey_link_link_type", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.survey_link_link_type", "block_contents": "The link type (`Individual`, `Anonymous`, or `Multiple`) for the link associated with the survey distribution. Null if `request_type` != `Invite`."}, "doc.qualtrics_source.survey_link_survey_id": {"name": "survey_link_survey_id", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.survey_link_survey_id", "block_contents": "The unique survey ID. Will be non-null even if `request_type` != `Invite`."}, "doc.qualtrics_source.contact_frequency_rule_id": {"name": "contact_frequency_rule_id", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.contact_frequency_rule_id", "block_contents": "The contact frequency Rule ID. Ex - FQ_AAB234234"}, "doc.qualtrics_source.contact_lookup_id": {"name": "contact_lookup_id", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.contact_lookup_id", "block_contents": "Optional contact lookup ID for individual distribution."}, "doc.qualtrics_source.opened_at": {"name": "opened_at", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.opened_at", "block_contents": "The time a survey was opened by the respondent, will be null if the survey has not been opened."}, "doc.qualtrics_source.response_completed_at": {"name": "response_completed_at", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.response_completed_at", "block_contents": "The time a response was completed, will be null for uncompleted surveys."}, "doc.qualtrics_source.distribution_response_id": {"name": "distribution_response_id", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.distribution_response_id", "block_contents": "The ID of the survey response submitted by this contact. If no survey response has been submitted, this value will be null. If the survey was setup to anonymize responses, then this value will be `Anonymous`."}, "doc.qualtrics_source.response_started_at": {"name": "response_started_at", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.response_started_at", "block_contents": "The time a response was started by the respondent, will be null if survey has not been started."}, "doc.qualtrics_source.sent_at": {"name": "sent_at", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.sent_at", "block_contents": "The time a survey was sent to the respondent."}, "doc.qualtrics_source.distribution_status": {"name": "distribution_status", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.distribution_status", "block_contents": "One of:\n- `Pending` - The distribution is scheduled but has yet to be sent.\n- `Success` - The distribution was successfully delivered to the contact.\n- `Error` - An error occurred while attempting to send the distribution.\n- `Opened` - The distribution was opened by the contact.\n- `Complaint` - The contact complained that the distribution was spam.\n- `Skipped` - The contact was skipped due to contact frequency rules or blacklisted contact information.\n- `Blocked` - The distribution failed to send, because the contact blocked it or the email was caught by the spam circuit breaker.\n- `Failure` - The distribution failed to be delivered.\n- `Unknown` - The distribution failed for an unknown reason.\n- `SoftBounce` - The distribution bounced but can be retried.\n- `HardBounce` - The distribution bounced and should not be retried.\n- `SurveyStarted` - The contact started the survey distributed.\n- `SurveyPartiallyFinished` - The contact submitted a partially completed survey response.\n- `SurveyFinished` - The contact submitted a completed survey response.\n- `SurveyScreenedOut` - The contact screened out while taking the survey.\n- `SessionExpired` - The contact's survey session has expired."}, "doc.qualtrics_source.survey_link": {"name": "survey_link", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.survey_link", "block_contents": "The survey link sent with the distribution. This is null when no link was sent."}, "doc.qualtrics_source.survey_session_id": {"name": "survey_session_id", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.survey_session_id", "block_contents": "An identifier that represents the session in which the respondent interacted with the survey"}, "doc.qualtrics_source.mailing_list_id": {"name": "mailing_list_id", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.mailing_list_id", "block_contents": "The ID for the mailing list."}, "doc.qualtrics_source.mailing_list_name": {"name": "mailing_list_name", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.mailing_list_name", "block_contents": "Name of the mailing list."}, "doc.qualtrics_source.mailing_list_unsubscribed": {"name": "mailing_list_unsubscribed", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.mailing_list_unsubscribed", "block_contents": "Boolean indicating whether the contact has opted out of receiving email through this mailing list."}, "doc.qualtrics_source.mailing_list_unsubscribe_date": {"name": "mailing_list_unsubscribe_date", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.mailing_list_unsubscribe_date", "block_contents": "Date and time the user opted out of this mailing list."}, "doc.qualtrics_source.mailing_list_contact_id": {"name": "mailing_list_contact_id", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.mailing_list_contact_id", "block_contents": "Mailing List Contact ID (different from `contact_id`). ex: `MLRP_*`"}, "doc.qualtrics_source.library_id": {"name": "library_id", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.library_id", "block_contents": "The library ID. Example: `UR_1234567890AbCdE`"}, "doc.qualtrics_source.mailing_list_category": {"name": "mailing_list_category", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.mailing_list_category", "block_contents": "The library ID. Example: `UR_1234567890AbCdE`"}, "doc.qualtrics_source.folder": {"name": "folder", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.folder", "block_contents": "The folder this is placed in."}}, "exposures": {}, "metrics": {}, "groups": {}, "selectors": {}, "disabled": {"model.qualtrics_source.stg_qualtrics__core_contact": [{"database": "postgres", "schema": "qualtrics_source_integration_tests_qualtrics_source", "name": "stg_qualtrics__core_contact", "resource_type": "model", "package_name": "qualtrics_source", "path": "stg_qualtrics__core_contact.sql", "original_file_path": "models/stg_qualtrics__core_contact.sql", "unique_id": "model.qualtrics_source.stg_qualtrics__core_contact", "fqn": ["qualtrics_source", "stg_qualtrics__core_contact"], "alias": "stg_qualtrics__core_contact", "checksum": {"name": "sha256", "checksum": "0d7c4b22f30fd1570c3c8a6f70369361624bf7267c54569e6c2c960fbaa5d1ad"}, "config": {"enabled": false, "alias": null, "schema": "qualtrics_source", "database": null, "tags": ["qualtrics", "fivetran_package", "staging"], "meta": {}, "group": null, "materialized": "table", "incremental_strategy": null, "persist_docs": {}, "post-hook": [], "pre-hook": [], "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "on_configuration_change": "apply", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false, "alias_types": true}, "access": "protected"}, "tags": ["qualtrics", "fivetran_package", "staging"], "description": "Research Core contacts (non-XM directory).", "columns": {"_fivetran_synced": {"name": "_fivetran_synced", "description": "{{ doc('_fivetran_synced') }}", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "contact_id": {"name": "contact_id", "description": "{{ doc('mailing_list_contact_id') }}", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "mailing_list_id": {"name": "mailing_list_id", "description": "{{ doc('mailing_list_id') }}", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "first_name": {"name": "first_name", "description": "{{ doc('contact_first_name') }}", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "last_name": {"name": "last_name", "description": "{{ doc('contact_last_name') }}", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "email": {"name": "email", "description": "{{ doc('contact_email') }}", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "external_data_reference": {"name": "external_data_reference", "description": "{{ doc('ext_ref') }}", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "language": {"name": "language", "description": "{{ doc('language') }}", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "is_unsubscribed": {"name": "is_unsubscribed", "description": "{{ doc('unsubscribed') }}", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "is_deleted": {"name": "is_deleted", "description": "{{ doc('_fivetran_deleted') }}", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "source_relation": {"name": "source_relation", "description": "{{ doc('source_relation') }}", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "email_domain": {"name": "email_domain", "description": "{{ doc('email_domain') }}", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "qualtrics_source://models/stg_qualtrics.yml", "build_path": null, "deferred": false, "unrendered_config": {"tags": ["qualtrics", "fivetran_package", "staging"], "schema": "qualtrics_source", "materialized": "table", "enabled": false}, "created_at": 1711137323.986721, "config_call_dict": {"enabled": false}, "relation_name": "\"postgres\".\"qualtrics_source_integration_tests_qualtrics_source\".\"stg_qualtrics__core_contact\"", "raw_code": "{{ config(enabled=var('qualtrics__using_core_contacts', false)) }}\n\nwith base as (\n\n select * \n from {{ ref('stg_qualtrics__core_contact_tmp') }}\n),\n\nfields as (\n\n select\n {{\n fivetran_utils.fill_staging_columns(\n source_columns=adapter.get_columns_in_relation(ref('stg_qualtrics__core_contact_tmp')),\n staging_columns=get_core_contact_columns()\n )\n }}\n \n {{ fivetran_utils.source_relation(\n union_schema_variable='qualtrics_union_schemas', \n union_database_variable='qualtrics_union_databases') \n }}\n \n from base\n),\n\nfinal as (\n \n select \n id as contact_id,\n mailing_list_id,\n first_name,\n last_name,\n lower(email) as email,\n {{ dbt.split_part('email', \"'@'\", 2) }} as email_domain,\n external_data_reference,\n language,\n unsubscribed as is_unsubscribed,\n _fivetran_deleted as is_deleted,\n _fivetran_synced,\n source_relation\n\n {{ fivetran_utils.fill_pass_through_columns('qualtrics__core_contact_pass_through_columns') }}\n\n from fields\n)\n\nselect *\nfrom final", "language": "sql", "refs": [{"name": "stg_qualtrics__core_contact_tmp", "package": null, "version": null}, {"name": "stg_qualtrics__core_contact_tmp", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.qualtrics_source.get_core_contact_columns", "macro.fivetran_utils.fill_staging_columns", "macro.fivetran_utils.source_relation", "macro.dbt.split_part", "macro.fivetran_utils.fill_pass_through_columns"], "nodes": []}, "compiled_path": null, "contract": {"enforced": false, "alias_types": true, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null, "deprecation_date": null, "defer_relation": null}], "model.qualtrics_source.stg_qualtrics__core_mailing_list": [{"database": "postgres", "schema": "qualtrics_source_integration_tests_qualtrics_source", "name": "stg_qualtrics__core_mailing_list", "resource_type": "model", "package_name": "qualtrics_source", "path": "stg_qualtrics__core_mailing_list.sql", "original_file_path": "models/stg_qualtrics__core_mailing_list.sql", "unique_id": "model.qualtrics_source.stg_qualtrics__core_mailing_list", "fqn": ["qualtrics_source", "stg_qualtrics__core_mailing_list"], "alias": "stg_qualtrics__core_mailing_list", "checksum": {"name": "sha256", "checksum": "c17c8dbc0801d75d8438170c71c21cba126d2dbb28fcf278d776b6b8cd2fbe81"}, "config": {"enabled": false, "alias": null, "schema": "qualtrics_source", "database": null, "tags": ["qualtrics", "fivetran_package", "staging"], "meta": {}, "group": null, "materialized": "table", "incremental_strategy": null, "persist_docs": {}, "post-hook": [], "pre-hook": [], "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "on_configuration_change": "apply", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false, "alias_types": true}, "access": "protected"}, "tags": ["qualtrics", "fivetran_package", "staging"], "description": "Research Core mailing list (non xm-directory).", "columns": {"is_deleted": {"name": "is_deleted", "description": "{{ doc('_fivetran_deleted') }}", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "_fivetran_synced": {"name": "_fivetran_synced", "description": "{{ doc('_fivetran_synced') }}", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "mailing_list_id": {"name": "mailing_list_id", "description": "{{ doc('mailing_list_id') }}", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "library_id": {"name": "library_id", "description": "{{ doc('library_id') }}", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "name": {"name": "name", "description": "{{ doc('mailing_list_name') }}", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "category": {"name": "category", "description": "{{ doc('mailing_list_category') }}", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "folder": {"name": "folder", "description": "{{ doc('folder') }}", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "source_relation": {"name": "source_relation", "description": "{{ doc('source_relation') }}", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "qualtrics_source://models/stg_qualtrics.yml", "build_path": null, "deferred": false, "unrendered_config": {"tags": ["qualtrics", "fivetran_package", "staging"], "schema": "qualtrics_source", "materialized": "table", "enabled": false}, "created_at": 1711137323.98776, "config_call_dict": {"enabled": false}, "relation_name": "\"postgres\".\"qualtrics_source_integration_tests_qualtrics_source\".\"stg_qualtrics__core_mailing_list\"", "raw_code": "{{ config(enabled=var('qualtrics__using_core_mailing_lists', false)) }}\n\nwith base as (\n\n select * \n from {{ ref('stg_qualtrics__core_mailing_list_tmp') }}\n),\n\nfields as (\n\n select\n {{\n fivetran_utils.fill_staging_columns(\n source_columns=adapter.get_columns_in_relation(ref('stg_qualtrics__core_mailing_list_tmp')),\n staging_columns=get_core_mailing_list_columns()\n )\n }}\n\n {{ fivetran_utils.source_relation(\n union_schema_variable='qualtrics_union_schemas', \n union_database_variable='qualtrics_union_databases') \n }}\n \n from base\n),\n\nfinal as (\n \n select \n id as mailing_list_id,\n library_id,\n name,\n category,\n folder,\n _fivetran_deleted as is_deleted,\n _fivetran_synced,\n source_relation\n\n from fields\n)\n\nselect *\nfrom final", "language": "sql", "refs": [{"name": "stg_qualtrics__core_mailing_list_tmp", "package": null, "version": null}, {"name": "stg_qualtrics__core_mailing_list_tmp", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.qualtrics_source.get_core_mailing_list_columns", "macro.fivetran_utils.fill_staging_columns", "macro.fivetran_utils.source_relation"], "nodes": []}, "compiled_path": null, "contract": {"enforced": false, "alias_types": true, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null, "deprecation_date": null, "defer_relation": null}], "model.qualtrics_source.stg_qualtrics__core_mailing_list_tmp": [{"database": "postgres", "schema": "qualtrics_source_integration_tests_qualtrics_source", "name": "stg_qualtrics__core_mailing_list_tmp", "resource_type": "model", "package_name": "qualtrics_source", "path": "tmp/stg_qualtrics__core_mailing_list_tmp.sql", "original_file_path": "models/tmp/stg_qualtrics__core_mailing_list_tmp.sql", "unique_id": "model.qualtrics_source.stg_qualtrics__core_mailing_list_tmp", "fqn": ["qualtrics_source", "tmp", "stg_qualtrics__core_mailing_list_tmp"], "alias": "stg_qualtrics__core_mailing_list_tmp", "checksum": {"name": "sha256", "checksum": "c8175db977b8eedb2f1ce4e55eacaf9b402b5866227dff4943d4e69f666f57c9"}, "config": {"enabled": false, "alias": null, "schema": "qualtrics_source", "database": null, "tags": ["qualtrics", "fivetran_package", "staging"], "meta": {}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "post-hook": [], "pre-hook": [], "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "on_configuration_change": "apply", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false, "alias_types": true}, "access": "protected"}, "tags": ["qualtrics", "fivetran_package", "staging"], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"tags": ["qualtrics", "fivetran_package", "staging"], "schema": "qualtrics_source", "materialized": "view", "enabled": false}, "created_at": 1711137323.79864, "config_call_dict": {"enabled": false}, "relation_name": "\"postgres\".\"qualtrics_source_integration_tests_qualtrics_source\".\"stg_qualtrics__core_mailing_list_tmp\"", "raw_code": "{{ config(enabled=var('qualtrics__using_core_mailing_lists', false)) }}\n-- can disable\n{{\n fivetran_utils.union_data(\n table_identifier='core_mailing_list', \n database_variable='qualtrics_database', \n schema_variable='qualtrics_schema', \n default_database=target.database,\n default_schema='qualtrics',\n default_variable='core_mailing_list',\n union_schema_variable='qualtrics_union_schemas',\n union_database_variable='qualtrics_union_databases'\n )\n}}", "language": "sql", "refs": [], "sources": [["qualtrics", "core_mailing_list"], ["qualtrics", "core_mailing_list"]], "metrics": [], "depends_on": {"macros": ["macro.fivetran_utils.union_data"], "nodes": []}, "compiled_path": null, "contract": {"enforced": false, "alias_types": true, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null, "deprecation_date": null, "defer_relation": null}], "model.qualtrics_source.stg_qualtrics__core_contact_tmp": [{"database": "postgres", "schema": "qualtrics_source_integration_tests_qualtrics_source", "name": "stg_qualtrics__core_contact_tmp", "resource_type": "model", "package_name": "qualtrics_source", "path": "tmp/stg_qualtrics__core_contact_tmp.sql", "original_file_path": "models/tmp/stg_qualtrics__core_contact_tmp.sql", "unique_id": "model.qualtrics_source.stg_qualtrics__core_contact_tmp", "fqn": ["qualtrics_source", "tmp", "stg_qualtrics__core_contact_tmp"], "alias": "stg_qualtrics__core_contact_tmp", "checksum": {"name": "sha256", "checksum": "de453d9f869d610f5e3c6b138cf9d1540b26b120ccff6e3d85386c5515eefd91"}, "config": {"enabled": false, "alias": null, "schema": "qualtrics_source", "database": null, "tags": ["qualtrics", "fivetran_package", "staging"], "meta": {}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {}, "post-hook": [], "pre-hook": [], "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "on_configuration_change": "apply", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false, "alias_types": true}, "access": "protected"}, "tags": ["qualtrics", "fivetran_package", "staging"], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"tags": ["qualtrics", "fivetran_package", "staging"], "schema": "qualtrics_source", "materialized": "view", "enabled": false}, "created_at": 1711137323.849757, "config_call_dict": {"enabled": false}, "relation_name": "\"postgres\".\"qualtrics_source_integration_tests_qualtrics_source\".\"stg_qualtrics__core_contact_tmp\"", "raw_code": "{{ config(enabled=var('qualtrics__using_core_contacts', false)) }}\n-- can disable \n{{\n fivetran_utils.union_data(\n table_identifier='core_contact', \n database_variable='qualtrics_database', \n schema_variable='qualtrics_schema', \n default_database=target.database,\n default_schema='qualtrics',\n default_variable='core_contact',\n union_schema_variable='qualtrics_union_schemas',\n union_database_variable='qualtrics_union_databases'\n )\n}}", "language": "sql", "refs": [], "sources": [["qualtrics", "core_contact"], ["qualtrics", "core_contact"]], "metrics": [], "depends_on": {"macros": ["macro.fivetran_utils.union_data"], "nodes": []}, "compiled_path": null, "contract": {"enforced": false, "alias_types": true, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null, "deprecation_date": null, "defer_relation": null}], "source.qualtrics_source.qualtrics.core_contact": [{"database": "postgres", "schema": "qualtrics_source_integration_tests", "name": "core_contact", "resource_type": "source", "package_name": "qualtrics_source", "path": "models/src_qualtrics.yml", "original_file_path": "models/src_qualtrics.yml", "unique_id": "source.qualtrics_source.qualtrics.core_contact", "fqn": ["qualtrics_source", "qualtrics", "core_contact"], "source_name": "qualtrics", "source_description": "", "loader": "", "identifier": "core_contact", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "Research Core contacts (non-XM directory).", "columns": {"_fivetran_synced": {"name": "_fivetran_synced", "description": "{{ doc('_fivetran_synced') }}", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "id": {"name": "id", "description": "{{ doc('mailing_list_contact_id') }}", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "mailing_list_id": {"name": "mailing_list_id", "description": "{{ doc('mailing_list_id') }}", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "first_name": {"name": "first_name", "description": "{{ doc('contact_first_name') }}", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "last_name": {"name": "last_name", "description": "{{ doc('contact_last_name') }}", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "email": {"name": "email", "description": "{{ doc('contact_email') }}", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "external_data_reference": {"name": "external_data_reference", "description": "{{ doc('ext_ref') }}", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "language": {"name": "language", "description": "{{ doc('language') }}", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "unsubscribed": {"name": "unsubscribed", "description": "{{ doc('unsubscribed') }}", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "_fivetran_deleted": {"name": "_fivetran_deleted", "description": "{{ doc('_fivetran_deleted') }}", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": false}, "patch_path": null, "unrendered_config": {"enabled": false}, "relation_name": "\"postgres\".\"qualtrics_source_integration_tests\".\"core_contact\"", "created_at": 1711137324.156348}], "source.qualtrics_source.qualtrics.core_mailing_list": [{"database": "postgres", "schema": "qualtrics_source_integration_tests", "name": "core_mailing_list", "resource_type": "source", "package_name": "qualtrics_source", "path": "models/src_qualtrics.yml", "original_file_path": "models/src_qualtrics.yml", "unique_id": "source.qualtrics_source.qualtrics.core_mailing_list", "fqn": ["qualtrics_source", "qualtrics", "core_mailing_list"], "source_name": "qualtrics", "source_description": "", "loader": "", "identifier": "core_mailing_list", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "Research Core mailing list (non xm-directory).", "columns": {"_fivetran_deleted": {"name": "_fivetran_deleted", "description": "{{ doc('_fivetran_deleted') }}", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "_fivetran_synced": {"name": "_fivetran_synced", "description": "{{ doc('_fivetran_synced') }}", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "id": {"name": "id", "description": "{{ doc('mailing_list_id') }}", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "library_id": {"name": "library_id", "description": "{{ doc('library_id') }}", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "name": {"name": "name", "description": "{{ doc('mailing_list_name') }}", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "category": {"name": "category", "description": "{{ doc('mailing_list_category') }}", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "folder": {"name": "folder", "description": "{{ doc('folder') }}", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": false}, "patch_path": null, "unrendered_config": {"enabled": false}, "relation_name": "\"postgres\".\"qualtrics_source_integration_tests\".\"core_mailing_list\"", "created_at": 1711137324.156439}]}, "parent_map": {"seed.qualtrics_source_integration_tests.distribution": [], "seed.qualtrics_source_integration_tests.distribution_contact": [], "seed.qualtrics_source_integration_tests.block": [], "seed.qualtrics_source_integration_tests.directory_mailing_list": [], "seed.qualtrics_source_integration_tests.survey_response": [], "seed.qualtrics_source_integration_tests.block_question": [], "seed.qualtrics_source_integration_tests.contact_mailing_list_membership": [], "seed.qualtrics_source_integration_tests.directory": [], "seed.qualtrics_source_integration_tests.question_response": [], "seed.qualtrics_source_integration_tests.directory_contact": [], "seed.qualtrics_source_integration_tests.sub_question": [], "seed.qualtrics_source_integration_tests.survey_version": [], "seed.qualtrics_source_integration_tests.user": [], "seed.qualtrics_source_integration_tests.survey": [], "seed.qualtrics_source_integration_tests.survey_embedded_data": [], "seed.qualtrics_source_integration_tests.question_option": [], "seed.qualtrics_source_integration_tests.question": [], "model.qualtrics_source.stg_qualtrics__survey": ["model.qualtrics_source.stg_qualtrics__survey_tmp"], "model.qualtrics_source.stg_qualtrics__block_question": ["model.qualtrics_source.stg_qualtrics__block_question_tmp"], "model.qualtrics_source.stg_qualtrics__question_option": ["model.qualtrics_source.stg_qualtrics__question_option_tmp"], "model.qualtrics_source.stg_qualtrics__contact_mailing_list_membership": ["model.qualtrics_source.stg_qualtrics__contact_mailing_list_membership_tmp"], "model.qualtrics_source.stg_qualtrics__directory_contact": ["model.qualtrics_source.stg_qualtrics__directory_contact_tmp"], "model.qualtrics_source.stg_qualtrics__question_response": ["model.qualtrics_source.stg_qualtrics__question_response_tmp"], "model.qualtrics_source.stg_qualtrics__directory": ["model.qualtrics_source.stg_qualtrics__directory_tmp"], "model.qualtrics_source.stg_qualtrics__distribution_contact": ["model.qualtrics_source.stg_qualtrics__distribution_contact_tmp"], "model.qualtrics_source.stg_qualtrics__block": ["model.qualtrics_source.stg_qualtrics__block_tmp"], "model.qualtrics_source.stg_qualtrics__distribution": ["model.qualtrics_source.stg_qualtrics__distribution_tmp"], "model.qualtrics_source.stg_qualtrics__survey_embedded_data": ["model.qualtrics_source.stg_qualtrics__survey_embedded_data_tmp"], "model.qualtrics_source.stg_qualtrics__survey_response": ["model.qualtrics_source.stg_qualtrics__survey_response_tmp"], "model.qualtrics_source.stg_qualtrics__user": ["model.qualtrics_source.stg_qualtrics__user_tmp"], "model.qualtrics_source.stg_qualtrics__question": ["model.qualtrics_source.stg_qualtrics__question_tmp"], "model.qualtrics_source.stg_qualtrics__sub_question": ["model.qualtrics_source.stg_qualtrics__sub_question_tmp"], "model.qualtrics_source.stg_qualtrics__survey_version": ["model.qualtrics_source.stg_qualtrics__survey_version_tmp"], "model.qualtrics_source.stg_qualtrics__directory_mailing_list": ["model.qualtrics_source.stg_qualtrics__directory_mailing_list_tmp"], "model.qualtrics_source.stg_qualtrics__directory_tmp": ["source.qualtrics_source.qualtrics.directory"], "model.qualtrics_source.stg_qualtrics__question_tmp": ["source.qualtrics_source.qualtrics.question"], "model.qualtrics_source.stg_qualtrics__question_option_tmp": ["source.qualtrics_source.qualtrics.question_option"], "model.qualtrics_source.stg_qualtrics__distribution_contact_tmp": ["source.qualtrics_source.qualtrics.distribution_contact"], "model.qualtrics_source.stg_qualtrics__survey_tmp": ["source.qualtrics_source.qualtrics.survey"], "model.qualtrics_source.stg_qualtrics__contact_mailing_list_membership_tmp": ["source.qualtrics_source.qualtrics.contact_mailing_list_membership"], "model.qualtrics_source.stg_qualtrics__distribution_tmp": ["source.qualtrics_source.qualtrics.distribution"], "model.qualtrics_source.stg_qualtrics__block_question_tmp": ["source.qualtrics_source.qualtrics.block_question"], "model.qualtrics_source.stg_qualtrics__survey_response_tmp": ["source.qualtrics_source.qualtrics.survey_response"], "model.qualtrics_source.stg_qualtrics__directory_mailing_list_tmp": ["source.qualtrics_source.qualtrics.directory_mailing_list"], "model.qualtrics_source.stg_qualtrics__directory_contact_tmp": ["source.qualtrics_source.qualtrics.directory_contact"], "model.qualtrics_source.stg_qualtrics__block_tmp": ["source.qualtrics_source.qualtrics.block"], "model.qualtrics_source.stg_qualtrics__survey_embedded_data_tmp": ["source.qualtrics_source.qualtrics.survey_embedded_data"], "model.qualtrics_source.stg_qualtrics__user_tmp": ["source.qualtrics_source.qualtrics.user"], "model.qualtrics_source.stg_qualtrics__question_response_tmp": ["source.qualtrics_source.qualtrics.question_response"], "model.qualtrics_source.stg_qualtrics__survey_version_tmp": ["source.qualtrics_source.qualtrics.survey_version"], "model.qualtrics_source.stg_qualtrics__sub_question_tmp": ["source.qualtrics_source.qualtrics.sub_question"], "test.qualtrics_source.not_null_stg_qualtrics__user_user_id.816e912ff9": ["model.qualtrics_source.stg_qualtrics__user"], "test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__user_user_id__source_relation.73c4de157d": ["model.qualtrics_source.stg_qualtrics__user"], "test.qualtrics_source.not_null_stg_qualtrics__survey_survey_id.2796651e04": ["model.qualtrics_source.stg_qualtrics__survey"], "test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__survey_survey_id__source_relation.a1fd5a2968": ["model.qualtrics_source.stg_qualtrics__survey"], "test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__question_question_id__survey_id__source_relation.1e5f78924a": ["model.qualtrics_source.stg_qualtrics__question"], "test.qualtrics_source.not_null_stg_qualtrics__question_response__fivetran_id.6e47cc53d7": ["model.qualtrics_source.stg_qualtrics__question_response"], "test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__question_response__fivetran_id__source_relation.2e0556a912": ["model.qualtrics_source.stg_qualtrics__question_response"], "test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__question_option_question_id__survey_id__key__source_relation.af5af3057f": ["model.qualtrics_source.stg_qualtrics__question_option"], "test.qualtrics_source.not_null_stg_qualtrics__survey_response_response_id.864d3a83e3": ["model.qualtrics_source.stg_qualtrics__survey_response"], "test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__survey_response_response_id__source_relation.c97ddff72b": ["model.qualtrics_source.stg_qualtrics__survey_response"], "test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__sub_question_question_id__survey_id__key__source_relation.12c68e2ef2": ["model.qualtrics_source.stg_qualtrics__sub_question"], "test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__survey_version_version_id__survey_id__source_relation.513ef528c1": ["model.qualtrics_source.stg_qualtrics__survey_version"], "test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__survey_embedded_data_import_id__response_id__key__value__source_relation.73ba345920": ["model.qualtrics_source.stg_qualtrics__survey_embedded_data"], "test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__block_block_id__survey_id__source_relation.9105cad472": ["model.qualtrics_source.stg_qualtrics__block"], "test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__block_question_block_id__question_id__survey_id__source_relation.2fd7c420b5": ["model.qualtrics_source.stg_qualtrics__block_question"], "test.qualtrics_source.not_null_stg_qualtrics__directory_directory_id.65413cdcf7": ["model.qualtrics_source.stg_qualtrics__directory"], "test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__directory_directory_id__source_relation.9c637ae3e0": ["model.qualtrics_source.stg_qualtrics__directory"], "test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__directory_contact_contact_id__directory_id__source_relation.a3dc488ebf": ["model.qualtrics_source.stg_qualtrics__directory_contact"], "test.qualtrics_source.not_null_stg_qualtrics__distribution_distribution_id.6158e414ed": ["model.qualtrics_source.stg_qualtrics__distribution"], "test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__distribution_distribution_id__source_relation.312f709e9c": ["model.qualtrics_source.stg_qualtrics__distribution"], "test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__distribution_contact_contact_id__distribution_id__source_relation.b40826e6b2": ["model.qualtrics_source.stg_qualtrics__distribution_contact"], "test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__directory_mailing_list_mailing_list_id__directory_id__source_relation.24870adb73": ["model.qualtrics_source.stg_qualtrics__directory_mailing_list"], "test.qualtrics_source.not_null_stg_qualtrics__contact_mailing_list_membership_contact_lookup_id.32d4d7bbf5": ["model.qualtrics_source.stg_qualtrics__contact_mailing_list_membership"], "test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__contact_mailing_list_membership_contact_lookup_id__source_relation.943f4b419c": ["model.qualtrics_source.stg_qualtrics__contact_mailing_list_membership"], "test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__core_contact_contact_id__mailing_list_id__source_relation.fbdaf339c9": [], "test.qualtrics_source.not_null_stg_qualtrics__core_mailing_list_mailing_list_id.344fbdd6dc": [], "test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__core_mailing_list_mailing_list_id__source_relation.fcd78a8fd6": [], "source.qualtrics_source.qualtrics.user": [], "source.qualtrics_source.qualtrics.survey": [], "source.qualtrics_source.qualtrics.question": [], "source.qualtrics_source.qualtrics.question_response": [], "source.qualtrics_source.qualtrics.question_option": [], "source.qualtrics_source.qualtrics.survey_response": [], "source.qualtrics_source.qualtrics.sub_question": [], "source.qualtrics_source.qualtrics.survey_version": [], "source.qualtrics_source.qualtrics.survey_embedded_data": [], "source.qualtrics_source.qualtrics.block": [], "source.qualtrics_source.qualtrics.block_question": [], "source.qualtrics_source.qualtrics.directory": [], "source.qualtrics_source.qualtrics.directory_contact": [], "source.qualtrics_source.qualtrics.distribution": [], "source.qualtrics_source.qualtrics.distribution_contact": [], "source.qualtrics_source.qualtrics.directory_mailing_list": [], "source.qualtrics_source.qualtrics.contact_mailing_list_membership": []}, "child_map": {"seed.qualtrics_source_integration_tests.distribution": [], "seed.qualtrics_source_integration_tests.distribution_contact": [], "seed.qualtrics_source_integration_tests.block": [], "seed.qualtrics_source_integration_tests.directory_mailing_list": [], "seed.qualtrics_source_integration_tests.survey_response": [], "seed.qualtrics_source_integration_tests.block_question": [], "seed.qualtrics_source_integration_tests.contact_mailing_list_membership": [], "seed.qualtrics_source_integration_tests.directory": [], "seed.qualtrics_source_integration_tests.question_response": [], "seed.qualtrics_source_integration_tests.directory_contact": [], "seed.qualtrics_source_integration_tests.sub_question": [], "seed.qualtrics_source_integration_tests.survey_version": [], "seed.qualtrics_source_integration_tests.user": [], "seed.qualtrics_source_integration_tests.survey": [], "seed.qualtrics_source_integration_tests.survey_embedded_data": [], "seed.qualtrics_source_integration_tests.question_option": [], "seed.qualtrics_source_integration_tests.question": [], "model.qualtrics_source.stg_qualtrics__survey": ["test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__survey_survey_id__source_relation.a1fd5a2968", "test.qualtrics_source.not_null_stg_qualtrics__survey_survey_id.2796651e04"], "model.qualtrics_source.stg_qualtrics__block_question": ["test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__block_question_block_id__question_id__survey_id__source_relation.2fd7c420b5"], "model.qualtrics_source.stg_qualtrics__question_option": ["test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__question_option_question_id__survey_id__key__source_relation.af5af3057f"], "model.qualtrics_source.stg_qualtrics__contact_mailing_list_membership": ["test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__contact_mailing_list_membership_contact_lookup_id__source_relation.943f4b419c", "test.qualtrics_source.not_null_stg_qualtrics__contact_mailing_list_membership_contact_lookup_id.32d4d7bbf5"], "model.qualtrics_source.stg_qualtrics__directory_contact": ["test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__directory_contact_contact_id__directory_id__source_relation.a3dc488ebf"], "model.qualtrics_source.stg_qualtrics__question_response": ["test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__question_response__fivetran_id__source_relation.2e0556a912", "test.qualtrics_source.not_null_stg_qualtrics__question_response__fivetran_id.6e47cc53d7"], "model.qualtrics_source.stg_qualtrics__directory": ["test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__directory_directory_id__source_relation.9c637ae3e0", "test.qualtrics_source.not_null_stg_qualtrics__directory_directory_id.65413cdcf7"], "model.qualtrics_source.stg_qualtrics__distribution_contact": ["test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__distribution_contact_contact_id__distribution_id__source_relation.b40826e6b2"], "model.qualtrics_source.stg_qualtrics__block": ["test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__block_block_id__survey_id__source_relation.9105cad472"], "model.qualtrics_source.stg_qualtrics__distribution": ["test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__distribution_distribution_id__source_relation.312f709e9c", "test.qualtrics_source.not_null_stg_qualtrics__distribution_distribution_id.6158e414ed"], "model.qualtrics_source.stg_qualtrics__survey_embedded_data": ["test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__survey_embedded_data_import_id__response_id__key__value__source_relation.73ba345920"], "model.qualtrics_source.stg_qualtrics__survey_response": ["test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__survey_response_response_id__source_relation.c97ddff72b", "test.qualtrics_source.not_null_stg_qualtrics__survey_response_response_id.864d3a83e3"], "model.qualtrics_source.stg_qualtrics__user": ["test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__user_user_id__source_relation.73c4de157d", "test.qualtrics_source.not_null_stg_qualtrics__user_user_id.816e912ff9"], "model.qualtrics_source.stg_qualtrics__question": ["test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__question_question_id__survey_id__source_relation.1e5f78924a"], "model.qualtrics_source.stg_qualtrics__sub_question": ["test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__sub_question_question_id__survey_id__key__source_relation.12c68e2ef2"], "model.qualtrics_source.stg_qualtrics__survey_version": ["test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__survey_version_version_id__survey_id__source_relation.513ef528c1"], "model.qualtrics_source.stg_qualtrics__directory_mailing_list": ["test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__directory_mailing_list_mailing_list_id__directory_id__source_relation.24870adb73"], "model.qualtrics_source.stg_qualtrics__directory_tmp": ["model.qualtrics_source.stg_qualtrics__directory"], "model.qualtrics_source.stg_qualtrics__question_tmp": ["model.qualtrics_source.stg_qualtrics__question"], "model.qualtrics_source.stg_qualtrics__question_option_tmp": ["model.qualtrics_source.stg_qualtrics__question_option"], "model.qualtrics_source.stg_qualtrics__distribution_contact_tmp": ["model.qualtrics_source.stg_qualtrics__distribution_contact"], "model.qualtrics_source.stg_qualtrics__survey_tmp": ["model.qualtrics_source.stg_qualtrics__survey"], "model.qualtrics_source.stg_qualtrics__contact_mailing_list_membership_tmp": ["model.qualtrics_source.stg_qualtrics__contact_mailing_list_membership"], "model.qualtrics_source.stg_qualtrics__distribution_tmp": ["model.qualtrics_source.stg_qualtrics__distribution"], "model.qualtrics_source.stg_qualtrics__block_question_tmp": ["model.qualtrics_source.stg_qualtrics__block_question"], "model.qualtrics_source.stg_qualtrics__survey_response_tmp": ["model.qualtrics_source.stg_qualtrics__survey_response"], "model.qualtrics_source.stg_qualtrics__directory_mailing_list_tmp": ["model.qualtrics_source.stg_qualtrics__directory_mailing_list"], "model.qualtrics_source.stg_qualtrics__directory_contact_tmp": ["model.qualtrics_source.stg_qualtrics__directory_contact"], "model.qualtrics_source.stg_qualtrics__block_tmp": ["model.qualtrics_source.stg_qualtrics__block"], "model.qualtrics_source.stg_qualtrics__survey_embedded_data_tmp": ["model.qualtrics_source.stg_qualtrics__survey_embedded_data"], "model.qualtrics_source.stg_qualtrics__user_tmp": ["model.qualtrics_source.stg_qualtrics__user"], "model.qualtrics_source.stg_qualtrics__question_response_tmp": ["model.qualtrics_source.stg_qualtrics__question_response"], "model.qualtrics_source.stg_qualtrics__survey_version_tmp": ["model.qualtrics_source.stg_qualtrics__survey_version"], "model.qualtrics_source.stg_qualtrics__sub_question_tmp": ["model.qualtrics_source.stg_qualtrics__sub_question"], "test.qualtrics_source.not_null_stg_qualtrics__user_user_id.816e912ff9": [], "test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__user_user_id__source_relation.73c4de157d": [], "test.qualtrics_source.not_null_stg_qualtrics__survey_survey_id.2796651e04": [], "test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__survey_survey_id__source_relation.a1fd5a2968": [], "test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__question_question_id__survey_id__source_relation.1e5f78924a": [], "test.qualtrics_source.not_null_stg_qualtrics__question_response__fivetran_id.6e47cc53d7": [], "test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__question_response__fivetran_id__source_relation.2e0556a912": [], "test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__question_option_question_id__survey_id__key__source_relation.af5af3057f": [], "test.qualtrics_source.not_null_stg_qualtrics__survey_response_response_id.864d3a83e3": [], "test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__survey_response_response_id__source_relation.c97ddff72b": [], "test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__sub_question_question_id__survey_id__key__source_relation.12c68e2ef2": [], "test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__survey_version_version_id__survey_id__source_relation.513ef528c1": [], "test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__survey_embedded_data_import_id__response_id__key__value__source_relation.73ba345920": [], "test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__block_block_id__survey_id__source_relation.9105cad472": [], "test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__block_question_block_id__question_id__survey_id__source_relation.2fd7c420b5": [], "test.qualtrics_source.not_null_stg_qualtrics__directory_directory_id.65413cdcf7": [], "test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__directory_directory_id__source_relation.9c637ae3e0": [], "test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__directory_contact_contact_id__directory_id__source_relation.a3dc488ebf": [], "test.qualtrics_source.not_null_stg_qualtrics__distribution_distribution_id.6158e414ed": [], "test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__distribution_distribution_id__source_relation.312f709e9c": [], "test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__distribution_contact_contact_id__distribution_id__source_relation.b40826e6b2": [], "test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__directory_mailing_list_mailing_list_id__directory_id__source_relation.24870adb73": [], "test.qualtrics_source.not_null_stg_qualtrics__contact_mailing_list_membership_contact_lookup_id.32d4d7bbf5": [], "test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__contact_mailing_list_membership_contact_lookup_id__source_relation.943f4b419c": [], "test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__core_contact_contact_id__mailing_list_id__source_relation.fbdaf339c9": [], "test.qualtrics_source.not_null_stg_qualtrics__core_mailing_list_mailing_list_id.344fbdd6dc": [], "test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__core_mailing_list_mailing_list_id__source_relation.fcd78a8fd6": [], "source.qualtrics_source.qualtrics.user": ["model.qualtrics_source.stg_qualtrics__user_tmp"], "source.qualtrics_source.qualtrics.survey": ["model.qualtrics_source.stg_qualtrics__survey_tmp"], "source.qualtrics_source.qualtrics.question": ["model.qualtrics_source.stg_qualtrics__question_tmp"], "source.qualtrics_source.qualtrics.question_response": ["model.qualtrics_source.stg_qualtrics__question_response_tmp"], "source.qualtrics_source.qualtrics.question_option": ["model.qualtrics_source.stg_qualtrics__question_option_tmp"], "source.qualtrics_source.qualtrics.survey_response": ["model.qualtrics_source.stg_qualtrics__survey_response_tmp"], "source.qualtrics_source.qualtrics.sub_question": ["model.qualtrics_source.stg_qualtrics__sub_question_tmp"], "source.qualtrics_source.qualtrics.survey_version": ["model.qualtrics_source.stg_qualtrics__survey_version_tmp"], "source.qualtrics_source.qualtrics.survey_embedded_data": ["model.qualtrics_source.stg_qualtrics__survey_embedded_data_tmp"], "source.qualtrics_source.qualtrics.block": ["model.qualtrics_source.stg_qualtrics__block_tmp"], "source.qualtrics_source.qualtrics.block_question": ["model.qualtrics_source.stg_qualtrics__block_question_tmp"], "source.qualtrics_source.qualtrics.directory": ["model.qualtrics_source.stg_qualtrics__directory_tmp"], "source.qualtrics_source.qualtrics.directory_contact": ["model.qualtrics_source.stg_qualtrics__directory_contact_tmp"], "source.qualtrics_source.qualtrics.distribution": ["model.qualtrics_source.stg_qualtrics__distribution_tmp"], "source.qualtrics_source.qualtrics.distribution_contact": ["model.qualtrics_source.stg_qualtrics__distribution_contact_tmp"], "source.qualtrics_source.qualtrics.directory_mailing_list": ["model.qualtrics_source.stg_qualtrics__directory_mailing_list_tmp"], "source.qualtrics_source.qualtrics.contact_mailing_list_membership": ["model.qualtrics_source.stg_qualtrics__contact_mailing_list_membership_tmp"]}, "group_map": {}, "saved_queries": {}, "semantic_models": {}} +{"metadata": {"dbt_schema_version": "https://schemas.getdbt.com/dbt/manifest/v11.json", "dbt_version": "1.7.9", "generated_at": "2024-04-29T19:41:35.973059Z", "invocation_id": "7c825524-c0d9-4b0e-91ee-7162e7b83981", "env": {}, "project_name": "qualtrics_source_integration_tests", "project_id": "f8c66442b86c1e62c08fef3963ad8f25", "user_id": "8268eefe-e8f7-472e-ab2a-a92f0135d76d", "send_anonymous_usage_stats": true, "adapter_type": "postgres"}, "nodes": {"seed.qualtrics_source_integration_tests.distribution": {"database": "postgres", "schema": "qualtrics_source_integration_tests_702", "name": "distribution", "resource_type": "seed", "package_name": "qualtrics_source_integration_tests", "path": "distribution.csv", "original_file_path": "seeds/distribution.csv", "unique_id": "seed.qualtrics_source_integration_tests.distribution", "fqn": ["qualtrics_source_integration_tests", "distribution"], "alias": "distribution", "checksum": {"name": "sha256", "checksum": "47c99b95aec1d99559f3452fc4cc5fd7f37388a360e0a9b711482b1ebb86c42a"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": [], "meta": {}, "group": null, "materialized": "seed", "incremental_strategy": null, "persist_docs": {}, "post-hook": [], "pre-hook": [], "quoting": {}, "column_types": {"_fivetran_synced": "timestamp", "directory_unsubscribe_date": "timestamp", "response_completed_at": "timestamp", "last_accessed": "timestamp", "account_creation_date": "timestamp", "response_started_at": "timestamp", "account_expiration_date": "timestamp", "last_login_date": "timestamp", "password_expiration_date": "timestamp", "password_last_changed_date": "timestamp", "unsubscribe_date": "timestamp"}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "on_configuration_change": "apply", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false, "alias_types": true}, "delimiter": ",", "quote_columns": null}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"column_types": {"_fivetran_synced": "timestamp", "directory_unsubscribe_date": "timestamp", "response_completed_at": "timestamp", "last_accessed": "timestamp", "account_creation_date": "timestamp", "response_started_at": "timestamp", "account_expiration_date": "timestamp", "last_login_date": "timestamp", "password_expiration_date": "timestamp", "password_last_changed_date": "timestamp", "unsubscribe_date": "timestamp"}}, "created_at": 1714419375.828366, "relation_name": "\"postgres\".\"qualtrics_source_integration_tests_702\".\"distribution\"", "raw_code": "", "root_path": "/Users/catherinefritz/Documents/dbt_packages/qualtrics/dbt_qualtrics_source/integration_tests", "depends_on": {"macros": []}}, "seed.qualtrics_source_integration_tests.distribution_contact": {"database": "postgres", "schema": "qualtrics_source_integration_tests_702", "name": "distribution_contact", "resource_type": "seed", "package_name": "qualtrics_source_integration_tests", "path": "distribution_contact.csv", "original_file_path": "seeds/distribution_contact.csv", "unique_id": "seed.qualtrics_source_integration_tests.distribution_contact", "fqn": ["qualtrics_source_integration_tests", "distribution_contact"], "alias": "distribution_contact", "checksum": {"name": "sha256", "checksum": "9dda62fde0e6eb45349f5f1e5a75d67bd0c907de6f8a60a9ddfa5fbb6da305e7"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": [], "meta": {}, "group": null, "materialized": "seed", "incremental_strategy": null, "persist_docs": {}, "post-hook": [], "pre-hook": [], "quoting": {}, "column_types": {"_fivetran_synced": "timestamp", "directory_unsubscribe_date": "timestamp", "response_completed_at": "timestamp", "last_accessed": "timestamp", "account_creation_date": "timestamp", "response_started_at": "timestamp", "account_expiration_date": "timestamp", "last_login_date": "timestamp", "password_expiration_date": "timestamp", "password_last_changed_date": "timestamp", "unsubscribe_date": "timestamp"}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "on_configuration_change": "apply", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false, "alias_types": true}, "delimiter": ",", "quote_columns": null}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"column_types": {"_fivetran_synced": "timestamp", "directory_unsubscribe_date": "timestamp", "response_completed_at": "timestamp", "last_accessed": "timestamp", "account_creation_date": "timestamp", "response_started_at": "timestamp", "account_expiration_date": "timestamp", "last_login_date": "timestamp", "password_expiration_date": "timestamp", "password_last_changed_date": "timestamp", "unsubscribe_date": "timestamp"}}, "created_at": 1714419375.8371599, "relation_name": "\"postgres\".\"qualtrics_source_integration_tests_702\".\"distribution_contact\"", "raw_code": "", "root_path": "/Users/catherinefritz/Documents/dbt_packages/qualtrics/dbt_qualtrics_source/integration_tests", "depends_on": {"macros": []}}, "seed.qualtrics_source_integration_tests.core_mailing_list": {"database": "postgres", "schema": "qualtrics_source_integration_tests_702", "name": "core_mailing_list", "resource_type": "seed", "package_name": "qualtrics_source_integration_tests", "path": "core_mailing_list.csv", "original_file_path": "seeds/core_mailing_list.csv", "unique_id": "seed.qualtrics_source_integration_tests.core_mailing_list", "fqn": ["qualtrics_source_integration_tests", "core_mailing_list"], "alias": "core_mailing_list", "checksum": {"name": "sha256", "checksum": "b4d93c20c8c32613c80b2a02ebb6469746460efde6a381d39fc0f5cdd779dee5"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": [], "meta": {}, "group": null, "materialized": "seed", "incremental_strategy": null, "persist_docs": {}, "post-hook": [], "pre-hook": [], "quoting": {}, "column_types": {"_fivetran_synced": "timestamp", "directory_unsubscribe_date": "timestamp", "response_completed_at": "timestamp", "last_accessed": "timestamp", "account_creation_date": "timestamp", "response_started_at": "timestamp", "account_expiration_date": "timestamp", "last_login_date": "timestamp", "password_expiration_date": "timestamp", "password_last_changed_date": "timestamp", "unsubscribe_date": "timestamp"}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "on_configuration_change": "apply", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false, "alias_types": true}, "delimiter": ",", "quote_columns": null}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"column_types": {"_fivetran_synced": "timestamp", "directory_unsubscribe_date": "timestamp", "response_completed_at": "timestamp", "last_accessed": "timestamp", "account_creation_date": "timestamp", "response_started_at": "timestamp", "account_expiration_date": "timestamp", "last_login_date": "timestamp", "password_expiration_date": "timestamp", "password_last_changed_date": "timestamp", "unsubscribe_date": "timestamp"}}, "created_at": 1714419375.8392582, "relation_name": "\"postgres\".\"qualtrics_source_integration_tests_702\".\"core_mailing_list\"", "raw_code": "", "root_path": "/Users/catherinefritz/Documents/dbt_packages/qualtrics/dbt_qualtrics_source/integration_tests", "depends_on": {"macros": []}}, "seed.qualtrics_source_integration_tests.block": {"database": "postgres", "schema": "qualtrics_source_integration_tests_702", "name": "block", "resource_type": "seed", "package_name": "qualtrics_source_integration_tests", "path": "block.csv", "original_file_path": "seeds/block.csv", "unique_id": "seed.qualtrics_source_integration_tests.block", "fqn": ["qualtrics_source_integration_tests", "block"], "alias": "block", "checksum": {"name": "sha256", "checksum": "1cc8b955a20da56ec183f1f3d633f7c45e2473fa1fa3d99efe8a0286e98fce54"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": [], "meta": {}, "group": null, "materialized": "seed", "incremental_strategy": null, "persist_docs": {}, "post-hook": [], "pre-hook": [], "quoting": {}, "column_types": {"_fivetran_synced": "timestamp", "directory_unsubscribe_date": "timestamp", "response_completed_at": "timestamp", "last_accessed": "timestamp", "account_creation_date": "timestamp", "response_started_at": "timestamp", "account_expiration_date": "timestamp", "last_login_date": "timestamp", "password_expiration_date": "timestamp", "password_last_changed_date": "timestamp", "unsubscribe_date": "timestamp"}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "on_configuration_change": "apply", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false, "alias_types": true}, "delimiter": ",", "quote_columns": null}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"column_types": {"_fivetran_synced": "timestamp", "directory_unsubscribe_date": "timestamp", "response_completed_at": "timestamp", "last_accessed": "timestamp", "account_creation_date": "timestamp", "response_started_at": "timestamp", "account_expiration_date": "timestamp", "last_login_date": "timestamp", "password_expiration_date": "timestamp", "password_last_changed_date": "timestamp", "unsubscribe_date": "timestamp"}}, "created_at": 1714419375.840731, "relation_name": "\"postgres\".\"qualtrics_source_integration_tests_702\".\"block\"", "raw_code": "", "root_path": "/Users/catherinefritz/Documents/dbt_packages/qualtrics/dbt_qualtrics_source/integration_tests", "depends_on": {"macros": []}}, "seed.qualtrics_source_integration_tests.directory_mailing_list": {"database": "postgres", "schema": "qualtrics_source_integration_tests_702", "name": "directory_mailing_list", "resource_type": "seed", "package_name": "qualtrics_source_integration_tests", "path": "directory_mailing_list.csv", "original_file_path": "seeds/directory_mailing_list.csv", "unique_id": "seed.qualtrics_source_integration_tests.directory_mailing_list", "fqn": ["qualtrics_source_integration_tests", "directory_mailing_list"], "alias": "directory_mailing_list", "checksum": {"name": "sha256", "checksum": "1da1143af777eff994bc0a11da768609597bbc4110e2e440054030e2d82381e3"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": [], "meta": {}, "group": null, "materialized": "seed", "incremental_strategy": null, "persist_docs": {}, "post-hook": [], "pre-hook": [], "quoting": {}, "column_types": {"_fivetran_synced": "timestamp", "directory_unsubscribe_date": "timestamp", "response_completed_at": "timestamp", "last_accessed": "timestamp", "account_creation_date": "timestamp", "response_started_at": "timestamp", "account_expiration_date": "timestamp", "last_login_date": "timestamp", "password_expiration_date": "timestamp", "password_last_changed_date": "timestamp", "unsubscribe_date": "timestamp"}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "on_configuration_change": "apply", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false, "alias_types": true}, "delimiter": ",", "quote_columns": null}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"column_types": {"_fivetran_synced": "timestamp", "directory_unsubscribe_date": "timestamp", "response_completed_at": "timestamp", "last_accessed": "timestamp", "account_creation_date": "timestamp", "response_started_at": "timestamp", "account_expiration_date": "timestamp", "last_login_date": "timestamp", "password_expiration_date": "timestamp", "password_last_changed_date": "timestamp", "unsubscribe_date": "timestamp"}}, "created_at": 1714419375.842182, "relation_name": "\"postgres\".\"qualtrics_source_integration_tests_702\".\"directory_mailing_list\"", "raw_code": "", "root_path": "/Users/catherinefritz/Documents/dbt_packages/qualtrics/dbt_qualtrics_source/integration_tests", "depends_on": {"macros": []}}, "seed.qualtrics_source_integration_tests.survey_response": {"database": "postgres", "schema": "qualtrics_source_integration_tests_702", "name": "survey_response", "resource_type": "seed", "package_name": "qualtrics_source_integration_tests", "path": "survey_response.csv", "original_file_path": "seeds/survey_response.csv", "unique_id": "seed.qualtrics_source_integration_tests.survey_response", "fqn": ["qualtrics_source_integration_tests", "survey_response"], "alias": "survey_response", "checksum": {"name": "sha256", "checksum": "68ac5990f1ee79d0043367fc24eb1f92480fecde1262c58f637d3079916fd9a2"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": [], "meta": {}, "group": null, "materialized": "seed", "incremental_strategy": null, "persist_docs": {}, "post-hook": [], "pre-hook": [], "quoting": {}, "column_types": {"_fivetran_synced": "timestamp", "directory_unsubscribe_date": "timestamp", "response_completed_at": "timestamp", "last_accessed": "timestamp", "account_creation_date": "timestamp", "response_started_at": "timestamp", "account_expiration_date": "timestamp", "last_login_date": "timestamp", "password_expiration_date": "timestamp", "password_last_changed_date": "timestamp", "unsubscribe_date": "timestamp"}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "on_configuration_change": "apply", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false, "alias_types": true}, "delimiter": ",", "quote_columns": null}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"column_types": {"_fivetran_synced": "timestamp", "directory_unsubscribe_date": "timestamp", "response_completed_at": "timestamp", "last_accessed": "timestamp", "account_creation_date": "timestamp", "response_started_at": "timestamp", "account_expiration_date": "timestamp", "last_login_date": "timestamp", "password_expiration_date": "timestamp", "password_last_changed_date": "timestamp", "unsubscribe_date": "timestamp"}}, "created_at": 1714419375.8436239, "relation_name": "\"postgres\".\"qualtrics_source_integration_tests_702\".\"survey_response\"", "raw_code": "", "root_path": "/Users/catherinefritz/Documents/dbt_packages/qualtrics/dbt_qualtrics_source/integration_tests", "depends_on": {"macros": []}}, "seed.qualtrics_source_integration_tests.block_question": {"database": "postgres", "schema": "qualtrics_source_integration_tests_702", "name": "block_question", "resource_type": "seed", "package_name": "qualtrics_source_integration_tests", "path": "block_question.csv", "original_file_path": "seeds/block_question.csv", "unique_id": "seed.qualtrics_source_integration_tests.block_question", "fqn": ["qualtrics_source_integration_tests", "block_question"], "alias": "block_question", "checksum": {"name": "sha256", "checksum": "a6bdbf0193c2efce2f54809e544f71644c04ea5fe8a1011540cfbe887178eb08"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": [], "meta": {}, "group": null, "materialized": "seed", "incremental_strategy": null, "persist_docs": {}, "post-hook": [], "pre-hook": [], "quoting": {}, "column_types": {"_fivetran_synced": "timestamp", "directory_unsubscribe_date": "timestamp", "response_completed_at": "timestamp", "last_accessed": "timestamp", "account_creation_date": "timestamp", "response_started_at": "timestamp", "account_expiration_date": "timestamp", "last_login_date": "timestamp", "password_expiration_date": "timestamp", "password_last_changed_date": "timestamp", "unsubscribe_date": "timestamp"}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "on_configuration_change": "apply", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false, "alias_types": true}, "delimiter": ",", "quote_columns": null}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"column_types": {"_fivetran_synced": "timestamp", "directory_unsubscribe_date": "timestamp", "response_completed_at": "timestamp", "last_accessed": "timestamp", "account_creation_date": "timestamp", "response_started_at": "timestamp", "account_expiration_date": "timestamp", "last_login_date": "timestamp", "password_expiration_date": "timestamp", "password_last_changed_date": "timestamp", "unsubscribe_date": "timestamp"}}, "created_at": 1714419375.8450701, "relation_name": "\"postgres\".\"qualtrics_source_integration_tests_702\".\"block_question\"", "raw_code": "", "root_path": "/Users/catherinefritz/Documents/dbt_packages/qualtrics/dbt_qualtrics_source/integration_tests", "depends_on": {"macros": []}}, "seed.qualtrics_source_integration_tests.contact_mailing_list_membership": {"database": "postgres", "schema": "qualtrics_source_integration_tests_702", "name": "contact_mailing_list_membership", "resource_type": "seed", "package_name": "qualtrics_source_integration_tests", "path": "contact_mailing_list_membership.csv", "original_file_path": "seeds/contact_mailing_list_membership.csv", "unique_id": "seed.qualtrics_source_integration_tests.contact_mailing_list_membership", "fqn": ["qualtrics_source_integration_tests", "contact_mailing_list_membership"], "alias": "contact_mailing_list_membership", "checksum": {"name": "sha256", "checksum": "d57cf827a74dbc4257deb30637437fc49fea45c68f50cf5ec5df30ea9004c55b"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": [], "meta": {}, "group": null, "materialized": "seed", "incremental_strategy": null, "persist_docs": {}, "post-hook": [], "pre-hook": [], "quoting": {}, "column_types": {"_fivetran_synced": "timestamp", "directory_unsubscribe_date": "timestamp", "response_completed_at": "timestamp", "last_accessed": "timestamp", "account_creation_date": "timestamp", "response_started_at": "timestamp", "account_expiration_date": "timestamp", "last_login_date": "timestamp", "password_expiration_date": "timestamp", "password_last_changed_date": "timestamp", "unsubscribe_date": "timestamp"}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "on_configuration_change": "apply", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false, "alias_types": true}, "delimiter": ",", "quote_columns": null}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"column_types": {"_fivetran_synced": "timestamp", "directory_unsubscribe_date": "timestamp", "response_completed_at": "timestamp", "last_accessed": "timestamp", "account_creation_date": "timestamp", "response_started_at": "timestamp", "account_expiration_date": "timestamp", "last_login_date": "timestamp", "password_expiration_date": "timestamp", "password_last_changed_date": "timestamp", "unsubscribe_date": "timestamp"}}, "created_at": 1714419375.846673, "relation_name": "\"postgres\".\"qualtrics_source_integration_tests_702\".\"contact_mailing_list_membership\"", "raw_code": "", "root_path": "/Users/catherinefritz/Documents/dbt_packages/qualtrics/dbt_qualtrics_source/integration_tests", "depends_on": {"macros": []}}, "seed.qualtrics_source_integration_tests.directory": {"database": "postgres", "schema": "qualtrics_source_integration_tests_702", "name": "directory", "resource_type": "seed", "package_name": "qualtrics_source_integration_tests", "path": "directory.csv", "original_file_path": "seeds/directory.csv", "unique_id": "seed.qualtrics_source_integration_tests.directory", "fqn": ["qualtrics_source_integration_tests", "directory"], "alias": "directory", "checksum": {"name": "sha256", "checksum": "221907c6a67c3b15b4fdbf640299e8ff3608e0c65af4d1c908545b66ed159ec1"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": [], "meta": {}, "group": null, "materialized": "seed", "incremental_strategy": null, "persist_docs": {}, "post-hook": [], "pre-hook": [], "quoting": {}, "column_types": {"_fivetran_synced": "timestamp", "directory_unsubscribe_date": "timestamp", "response_completed_at": "timestamp", "last_accessed": "timestamp", "account_creation_date": "timestamp", "response_started_at": "timestamp", "account_expiration_date": "timestamp", "last_login_date": "timestamp", "password_expiration_date": "timestamp", "password_last_changed_date": "timestamp", "unsubscribe_date": "timestamp"}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "on_configuration_change": "apply", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false, "alias_types": true}, "delimiter": ",", "quote_columns": null}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"column_types": {"_fivetran_synced": "timestamp", "directory_unsubscribe_date": "timestamp", "response_completed_at": "timestamp", "last_accessed": "timestamp", "account_creation_date": "timestamp", "response_started_at": "timestamp", "account_expiration_date": "timestamp", "last_login_date": "timestamp", "password_expiration_date": "timestamp", "password_last_changed_date": "timestamp", "unsubscribe_date": "timestamp"}}, "created_at": 1714419375.848233, "relation_name": "\"postgres\".\"qualtrics_source_integration_tests_702\".\"directory\"", "raw_code": "", "root_path": "/Users/catherinefritz/Documents/dbt_packages/qualtrics/dbt_qualtrics_source/integration_tests", "depends_on": {"macros": []}}, "seed.qualtrics_source_integration_tests.question_response": {"database": "postgres", "schema": "qualtrics_source_integration_tests_702", "name": "question_response", "resource_type": "seed", "package_name": "qualtrics_source_integration_tests", "path": "question_response.csv", "original_file_path": "seeds/question_response.csv", "unique_id": "seed.qualtrics_source_integration_tests.question_response", "fqn": ["qualtrics_source_integration_tests", "question_response"], "alias": "question_response", "checksum": {"name": "sha256", "checksum": "4c2584fca86b3712ad4748130f395e21ba9391a1bc96cf657ff2bbb2dd353400"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": [], "meta": {}, "group": null, "materialized": "seed", "incremental_strategy": null, "persist_docs": {}, "post-hook": [], "pre-hook": [], "quoting": {}, "column_types": {"_fivetran_synced": "timestamp", "directory_unsubscribe_date": "timestamp", "response_completed_at": "timestamp", "last_accessed": "timestamp", "account_creation_date": "timestamp", "response_started_at": "timestamp", "account_expiration_date": "timestamp", "last_login_date": "timestamp", "password_expiration_date": "timestamp", "password_last_changed_date": "timestamp", "unsubscribe_date": "timestamp"}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "on_configuration_change": "apply", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false, "alias_types": true}, "delimiter": ",", "quote_columns": null}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"column_types": {"_fivetran_synced": "timestamp", "directory_unsubscribe_date": "timestamp", "response_completed_at": "timestamp", "last_accessed": "timestamp", "account_creation_date": "timestamp", "response_started_at": "timestamp", "account_expiration_date": "timestamp", "last_login_date": "timestamp", "password_expiration_date": "timestamp", "password_last_changed_date": "timestamp", "unsubscribe_date": "timestamp"}}, "created_at": 1714419375.849719, "relation_name": "\"postgres\".\"qualtrics_source_integration_tests_702\".\"question_response\"", "raw_code": "", "root_path": "/Users/catherinefritz/Documents/dbt_packages/qualtrics/dbt_qualtrics_source/integration_tests", "depends_on": {"macros": []}}, "seed.qualtrics_source_integration_tests.directory_contact": {"database": "postgres", "schema": "qualtrics_source_integration_tests_702", "name": "directory_contact", "resource_type": "seed", "package_name": "qualtrics_source_integration_tests", "path": "directory_contact.csv", "original_file_path": "seeds/directory_contact.csv", "unique_id": "seed.qualtrics_source_integration_tests.directory_contact", "fqn": ["qualtrics_source_integration_tests", "directory_contact"], "alias": "directory_contact", "checksum": {"name": "sha256", "checksum": "8b9865464b7e644bb92fe2f8929cc64391cc1ce0ebcc07ebd1fa599d50a63b89"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": [], "meta": {}, "group": null, "materialized": "seed", "incremental_strategy": null, "persist_docs": {}, "post-hook": [], "pre-hook": [], "quoting": {}, "column_types": {"_fivetran_synced": "timestamp", "directory_unsubscribe_date": "timestamp", "response_completed_at": "timestamp", "last_accessed": "timestamp", "account_creation_date": "timestamp", "response_started_at": "timestamp", "account_expiration_date": "timestamp", "last_login_date": "timestamp", "password_expiration_date": "timestamp", "password_last_changed_date": "timestamp", "unsubscribe_date": "timestamp", "phone": "varchar"}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "on_configuration_change": "apply", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false, "alias_types": true}, "delimiter": ",", "quote_columns": null}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"column_types": {"phone": "{{ 'string' if target.type in ['bigquery','spark','databricks'] else 'varchar' }}"}}, "created_at": 1714419375.8511932, "relation_name": "\"postgres\".\"qualtrics_source_integration_tests_702\".\"directory_contact\"", "raw_code": "", "root_path": "/Users/catherinefritz/Documents/dbt_packages/qualtrics/dbt_qualtrics_source/integration_tests", "depends_on": {"macros": []}}, "seed.qualtrics_source_integration_tests.sub_question": {"database": "postgres", "schema": "qualtrics_source_integration_tests_702", "name": "sub_question", "resource_type": "seed", "package_name": "qualtrics_source_integration_tests", "path": "sub_question.csv", "original_file_path": "seeds/sub_question.csv", "unique_id": "seed.qualtrics_source_integration_tests.sub_question", "fqn": ["qualtrics_source_integration_tests", "sub_question"], "alias": "sub_question", "checksum": {"name": "sha256", "checksum": "22dc12ba9c3510d14573c0a6eec4dea32ee541c2bbdca310bdf6febd27f5a2e1"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": [], "meta": {}, "group": null, "materialized": "seed", "incremental_strategy": null, "persist_docs": {}, "post-hook": [], "pre-hook": [], "quoting": {}, "column_types": {"_fivetran_synced": "timestamp", "directory_unsubscribe_date": "timestamp", "response_completed_at": "timestamp", "last_accessed": "timestamp", "account_creation_date": "timestamp", "response_started_at": "timestamp", "account_expiration_date": "timestamp", "last_login_date": "timestamp", "password_expiration_date": "timestamp", "password_last_changed_date": "timestamp", "unsubscribe_date": "timestamp"}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "on_configuration_change": "apply", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false, "alias_types": true}, "delimiter": ",", "quote_columns": null}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"column_types": {"_fivetran_synced": "timestamp", "directory_unsubscribe_date": "timestamp", "response_completed_at": "timestamp", "last_accessed": "timestamp", "account_creation_date": "timestamp", "response_started_at": "timestamp", "account_expiration_date": "timestamp", "last_login_date": "timestamp", "password_expiration_date": "timestamp", "password_last_changed_date": "timestamp", "unsubscribe_date": "timestamp"}}, "created_at": 1714419375.852823, "relation_name": "\"postgres\".\"qualtrics_source_integration_tests_702\".\"sub_question\"", "raw_code": "", "root_path": "/Users/catherinefritz/Documents/dbt_packages/qualtrics/dbt_qualtrics_source/integration_tests", "depends_on": {"macros": []}}, "seed.qualtrics_source_integration_tests.survey_version": {"database": "postgres", "schema": "qualtrics_source_integration_tests_702", "name": "survey_version", "resource_type": "seed", "package_name": "qualtrics_source_integration_tests", "path": "survey_version.csv", "original_file_path": "seeds/survey_version.csv", "unique_id": "seed.qualtrics_source_integration_tests.survey_version", "fqn": ["qualtrics_source_integration_tests", "survey_version"], "alias": "survey_version", "checksum": {"name": "sha256", "checksum": "e62bb692f7cbb579d1e3ef22873840a5d1e27168fbb795fda6bc4a401fe6924d"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": [], "meta": {}, "group": null, "materialized": "seed", "incremental_strategy": null, "persist_docs": {}, "post-hook": [], "pre-hook": [], "quoting": {}, "column_types": {"_fivetran_synced": "timestamp", "directory_unsubscribe_date": "timestamp", "response_completed_at": "timestamp", "last_accessed": "timestamp", "account_creation_date": "timestamp", "response_started_at": "timestamp", "account_expiration_date": "timestamp", "last_login_date": "timestamp", "password_expiration_date": "timestamp", "password_last_changed_date": "timestamp", "unsubscribe_date": "timestamp"}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "on_configuration_change": "apply", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false, "alias_types": true}, "delimiter": ",", "quote_columns": null}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"column_types": {"_fivetran_synced": "timestamp", "directory_unsubscribe_date": "timestamp", "response_completed_at": "timestamp", "last_accessed": "timestamp", "account_creation_date": "timestamp", "response_started_at": "timestamp", "account_expiration_date": "timestamp", "last_login_date": "timestamp", "password_expiration_date": "timestamp", "password_last_changed_date": "timestamp", "unsubscribe_date": "timestamp"}}, "created_at": 1714419375.854261, "relation_name": "\"postgres\".\"qualtrics_source_integration_tests_702\".\"survey_version\"", "raw_code": "", "root_path": "/Users/catherinefritz/Documents/dbt_packages/qualtrics/dbt_qualtrics_source/integration_tests", "depends_on": {"macros": []}}, "seed.qualtrics_source_integration_tests.user": {"database": "postgres", "schema": "qualtrics_source_integration_tests_702", "name": "user", "resource_type": "seed", "package_name": "qualtrics_source_integration_tests", "path": "user.csv", "original_file_path": "seeds/user.csv", "unique_id": "seed.qualtrics_source_integration_tests.user", "fqn": ["qualtrics_source_integration_tests", "user"], "alias": "user", "checksum": {"name": "sha256", "checksum": "9ce3e39e5b7abfdb378d2f45164add5a4969c2f46e80c9c306895259e9fc384e"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": [], "meta": {}, "group": null, "materialized": "seed", "incremental_strategy": null, "persist_docs": {}, "post-hook": [], "pre-hook": [], "quoting": {}, "column_types": {"_fivetran_synced": "timestamp", "directory_unsubscribe_date": "timestamp", "response_completed_at": "timestamp", "last_accessed": "timestamp", "account_creation_date": "timestamp", "response_started_at": "timestamp", "account_expiration_date": "timestamp", "last_login_date": "timestamp", "password_expiration_date": "timestamp", "password_last_changed_date": "timestamp", "unsubscribe_date": "timestamp"}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "on_configuration_change": "apply", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false, "alias_types": true}, "delimiter": ",", "quote_columns": null}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"column_types": {"_fivetran_synced": "timestamp", "directory_unsubscribe_date": "timestamp", "response_completed_at": "timestamp", "last_accessed": "timestamp", "account_creation_date": "timestamp", "response_started_at": "timestamp", "account_expiration_date": "timestamp", "last_login_date": "timestamp", "password_expiration_date": "timestamp", "password_last_changed_date": "timestamp", "unsubscribe_date": "timestamp"}}, "created_at": 1714419375.855715, "relation_name": "\"postgres\".\"qualtrics_source_integration_tests_702\".\"user\"", "raw_code": "", "root_path": "/Users/catherinefritz/Documents/dbt_packages/qualtrics/dbt_qualtrics_source/integration_tests", "depends_on": {"macros": []}}, "seed.qualtrics_source_integration_tests.survey": {"database": "postgres", "schema": "qualtrics_source_integration_tests_702", "name": "survey", "resource_type": "seed", "package_name": "qualtrics_source_integration_tests", "path": "survey.csv", "original_file_path": "seeds/survey.csv", "unique_id": "seed.qualtrics_source_integration_tests.survey", "fqn": ["qualtrics_source_integration_tests", "survey"], "alias": "survey", "checksum": {"name": "sha256", "checksum": "8061b3f8a96dc4c4c1a753ef22ade8e1a13f675b88c54049a30786cae350d491"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": [], "meta": {}, "group": null, "materialized": "seed", "incremental_strategy": null, "persist_docs": {}, "post-hook": [], "pre-hook": [], "quoting": {}, "column_types": {"_fivetran_synced": "timestamp", "directory_unsubscribe_date": "timestamp", "response_completed_at": "timestamp", "last_accessed": "timestamp", "account_creation_date": "timestamp", "response_started_at": "timestamp", "account_expiration_date": "timestamp", "last_login_date": "timestamp", "password_expiration_date": "timestamp", "password_last_changed_date": "timestamp", "unsubscribe_date": "timestamp"}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "on_configuration_change": "apply", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false, "alias_types": true}, "delimiter": ",", "quote_columns": null}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"column_types": {"_fivetran_synced": "timestamp", "directory_unsubscribe_date": "timestamp", "response_completed_at": "timestamp", "last_accessed": "timestamp", "account_creation_date": "timestamp", "response_started_at": "timestamp", "account_expiration_date": "timestamp", "last_login_date": "timestamp", "password_expiration_date": "timestamp", "password_last_changed_date": "timestamp", "unsubscribe_date": "timestamp"}}, "created_at": 1714419375.857128, "relation_name": "\"postgres\".\"qualtrics_source_integration_tests_702\".\"survey\"", "raw_code": "", "root_path": "/Users/catherinefritz/Documents/dbt_packages/qualtrics/dbt_qualtrics_source/integration_tests", "depends_on": {"macros": []}}, "seed.qualtrics_source_integration_tests.survey_embedded_data": {"database": "postgres", "schema": "qualtrics_source_integration_tests_702", "name": "survey_embedded_data", "resource_type": "seed", "package_name": "qualtrics_source_integration_tests", "path": "survey_embedded_data.csv", "original_file_path": "seeds/survey_embedded_data.csv", "unique_id": "seed.qualtrics_source_integration_tests.survey_embedded_data", "fqn": ["qualtrics_source_integration_tests", "survey_embedded_data"], "alias": "survey_embedded_data", "checksum": {"name": "sha256", "checksum": "db8403da03e8b1a23a82e7c155e7b6cab6eeb98908365d908001caeb05761928"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": [], "meta": {}, "group": null, "materialized": "seed", "incremental_strategy": null, "persist_docs": {}, "post-hook": [], "pre-hook": [], "quoting": {}, "column_types": {"_fivetran_synced": "timestamp", "directory_unsubscribe_date": "timestamp", "response_completed_at": "timestamp", "last_accessed": "timestamp", "account_creation_date": "timestamp", "response_started_at": "timestamp", "account_expiration_date": "timestamp", "last_login_date": "timestamp", "password_expiration_date": "timestamp", "password_last_changed_date": "timestamp", "unsubscribe_date": "timestamp"}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "on_configuration_change": "apply", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false, "alias_types": true}, "delimiter": ",", "quote_columns": null}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"column_types": {"_fivetran_synced": "timestamp", "directory_unsubscribe_date": "timestamp", "response_completed_at": "timestamp", "last_accessed": "timestamp", "account_creation_date": "timestamp", "response_started_at": "timestamp", "account_expiration_date": "timestamp", "last_login_date": "timestamp", "password_expiration_date": "timestamp", "password_last_changed_date": "timestamp", "unsubscribe_date": "timestamp"}}, "created_at": 1714419375.858559, "relation_name": "\"postgres\".\"qualtrics_source_integration_tests_702\".\"survey_embedded_data\"", "raw_code": "", "root_path": "/Users/catherinefritz/Documents/dbt_packages/qualtrics/dbt_qualtrics_source/integration_tests", "depends_on": {"macros": []}}, "seed.qualtrics_source_integration_tests.question_option": {"database": "postgres", "schema": "qualtrics_source_integration_tests_702", "name": "question_option", "resource_type": "seed", "package_name": "qualtrics_source_integration_tests", "path": "question_option.csv", "original_file_path": "seeds/question_option.csv", "unique_id": "seed.qualtrics_source_integration_tests.question_option", "fqn": ["qualtrics_source_integration_tests", "question_option"], "alias": "question_option", "checksum": {"name": "sha256", "checksum": "68524f01bb9943b2cb964157c395380944fae319e858ede27d67643898b7f564"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": [], "meta": {}, "group": null, "materialized": "seed", "incremental_strategy": null, "persist_docs": {}, "post-hook": [], "pre-hook": [], "quoting": {}, "column_types": {"_fivetran_synced": "timestamp", "directory_unsubscribe_date": "timestamp", "response_completed_at": "timestamp", "last_accessed": "timestamp", "account_creation_date": "timestamp", "response_started_at": "timestamp", "account_expiration_date": "timestamp", "last_login_date": "timestamp", "password_expiration_date": "timestamp", "password_last_changed_date": "timestamp", "unsubscribe_date": "timestamp"}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "on_configuration_change": "apply", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false, "alias_types": true}, "delimiter": ",", "quote_columns": null}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"column_types": {"_fivetran_synced": "timestamp", "directory_unsubscribe_date": "timestamp", "response_completed_at": "timestamp", "last_accessed": "timestamp", "account_creation_date": "timestamp", "response_started_at": "timestamp", "account_expiration_date": "timestamp", "last_login_date": "timestamp", "password_expiration_date": "timestamp", "password_last_changed_date": "timestamp", "unsubscribe_date": "timestamp"}}, "created_at": 1714419375.860123, "relation_name": "\"postgres\".\"qualtrics_source_integration_tests_702\".\"question_option\"", "raw_code": "", "root_path": "/Users/catherinefritz/Documents/dbt_packages/qualtrics/dbt_qualtrics_source/integration_tests", "depends_on": {"macros": []}}, "seed.qualtrics_source_integration_tests.question": {"database": "postgres", "schema": "qualtrics_source_integration_tests_702", "name": "question", "resource_type": "seed", "package_name": "qualtrics_source_integration_tests", "path": "question.csv", "original_file_path": "seeds/question.csv", "unique_id": "seed.qualtrics_source_integration_tests.question", "fqn": ["qualtrics_source_integration_tests", "question"], "alias": "question", "checksum": {"name": "sha256", "checksum": "45504344559dedc7a9620fbcd4d5f52c5bbc4e1da9c5edf5ab6892d82c0e1a94"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": [], "meta": {}, "group": null, "materialized": "seed", "incremental_strategy": null, "persist_docs": {}, "post-hook": [], "pre-hook": [], "quoting": {}, "column_types": {"_fivetran_synced": "timestamp", "directory_unsubscribe_date": "timestamp", "response_completed_at": "timestamp", "last_accessed": "timestamp", "account_creation_date": "timestamp", "response_started_at": "timestamp", "account_expiration_date": "timestamp", "last_login_date": "timestamp", "password_expiration_date": "timestamp", "password_last_changed_date": "timestamp", "unsubscribe_date": "timestamp"}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "on_configuration_change": "apply", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false, "alias_types": true}, "delimiter": ",", "quote_columns": null}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"column_types": {"_fivetran_synced": "timestamp", "directory_unsubscribe_date": "timestamp", "response_completed_at": "timestamp", "last_accessed": "timestamp", "account_creation_date": "timestamp", "response_started_at": "timestamp", "account_expiration_date": "timestamp", "last_login_date": "timestamp", "password_expiration_date": "timestamp", "password_last_changed_date": "timestamp", "unsubscribe_date": "timestamp"}}, "created_at": 1714419375.861543, "relation_name": "\"postgres\".\"qualtrics_source_integration_tests_702\".\"question\"", "raw_code": "", "root_path": "/Users/catherinefritz/Documents/dbt_packages/qualtrics/dbt_qualtrics_source/integration_tests", "depends_on": {"macros": []}}, "seed.qualtrics_source_integration_tests.core_contact": {"database": "postgres", "schema": "qualtrics_source_integration_tests_702", "name": "core_contact", "resource_type": "seed", "package_name": "qualtrics_source_integration_tests", "path": "core_contact.csv", "original_file_path": "seeds/core_contact.csv", "unique_id": "seed.qualtrics_source_integration_tests.core_contact", "fqn": ["qualtrics_source_integration_tests", "core_contact"], "alias": "core_contact", "checksum": {"name": "sha256", "checksum": "e3f01e93a1016ef07a61cd5ff5ce7443be68e3302c32aaba006d082785235e9d"}, "config": {"enabled": true, "alias": null, "schema": null, "database": null, "tags": [], "meta": {}, "group": null, "materialized": "seed", "incremental_strategy": null, "persist_docs": {}, "post-hook": [], "pre-hook": [], "quoting": {}, "column_types": {"_fivetran_synced": "timestamp", "directory_unsubscribe_date": "timestamp", "response_completed_at": "timestamp", "last_accessed": "timestamp", "account_creation_date": "timestamp", "response_started_at": "timestamp", "account_expiration_date": "timestamp", "last_login_date": "timestamp", "password_expiration_date": "timestamp", "password_last_changed_date": "timestamp", "unsubscribe_date": "timestamp"}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "on_configuration_change": "apply", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false, "alias_types": true}, "delimiter": ",", "quote_columns": null}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"column_types": {"_fivetran_synced": "timestamp", "directory_unsubscribe_date": "timestamp", "response_completed_at": "timestamp", "last_accessed": "timestamp", "account_creation_date": "timestamp", "response_started_at": "timestamp", "account_expiration_date": "timestamp", "last_login_date": "timestamp", "password_expiration_date": "timestamp", "password_last_changed_date": "timestamp", "unsubscribe_date": "timestamp"}}, "created_at": 1714419375.862963, "relation_name": "\"postgres\".\"qualtrics_source_integration_tests_702\".\"core_contact\"", "raw_code": "", "root_path": "/Users/catherinefritz/Documents/dbt_packages/qualtrics/dbt_qualtrics_source/integration_tests", "depends_on": {"macros": []}}, "model.qualtrics_source.stg_qualtrics__survey": {"database": "postgres", "schema": "qualtrics_source_integration_tests_702_qualtrics_source", "name": "stg_qualtrics__survey", "resource_type": "model", "package_name": "qualtrics_source", "path": "stg_qualtrics__survey.sql", "original_file_path": "models/stg_qualtrics__survey.sql", "unique_id": "model.qualtrics_source.stg_qualtrics__survey", "fqn": ["qualtrics_source", "stg_qualtrics__survey"], "alias": "stg_qualtrics__survey", "checksum": {"name": "sha256", "checksum": "cbb35dfc1e3a2a0c938e066404d8b9baf0cb72d76f465ea13a806ede28db1fc5"}, "config": {"enabled": true, "alias": null, "schema": "qualtrics_source", "database": null, "tags": ["qualtrics", "fivetran_package", "staging"], "meta": {}, "group": null, "materialized": "table", "incremental_strategy": null, "persist_docs": {"relation": true, "columns": true}, "post-hook": [], "pre-hook": [], "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "on_configuration_change": "apply", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false, "alias_types": true}, "access": "protected"}, "tags": ["qualtrics", "fivetran_package", "staging"], "description": "Qualtrics survey.", "columns": {"is_deleted": {"name": "is_deleted", "description": "Boolean representing whether the record was soft-deleted in Qualtrics.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "_fivetran_synced": {"name": "_fivetran_synced", "description": "The time when a record was last updated by Fivetran.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "auto_scoring_category": {"name": "auto_scoring_category", "description": "The automated scoring category.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "brand_base_url": {"name": "brand_base_url", "description": "Base url for the organization/brand.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "brand_id": {"name": "brand_id", "description": "Unique ID of the organization/brand.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "bundle_short_name": {"name": "bundle_short_name", "description": "Short name for the content bundle that the survey is from.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "composition_type": {"name": "composition_type", "description": "Survey composition type.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "creator_user_id": {"name": "creator_user_id", "description": "The unique identifier for a specific `USER` who created the survey.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "default_scoring_category": {"name": "default_scoring_category", "description": "The default scoring category.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "division_id": {"name": "division_id", "description": "The unique identifier for the Division ID. Match pattern = ^DV_[0-9a-zA-Z]{11,15}$", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "survey_id": {"name": "survey_id", "description": "The unique identifier for this survey. Match pattern = ^SV_[a-zA-Z0-9]{11,15}$", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "last_accessed_at": {"name": "last_accessed_at", "description": "The date the survey was last accessed.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "last_activated_at": {"name": "last_activated_at", "description": "The date the survey was last activated.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "last_modified_at": {"name": "last_modified_at", "description": "The point in time when the record was last modified.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "owner_user_id": {"name": "owner_user_id", "description": "The unique identifier for a specific user who owns this.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "project_category": {"name": "project_category", "description": "Project category of the survey.\n\nAllowed values - `CORE`, `CX`, `EX`, `BX`, `PX`", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "project_type": {"name": "project_type", "description": "Type of [Qualtrics project](https://www.qualtrics.com/support/survey-platform/my-projects/my-projects-overview/#SelectingProjectType). Match pattern = ^[a-zA-Z]+$", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "registry_sha": {"name": "registry_sha", "description": "The survey registry SHA.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "registry_version": {"name": "registry_version", "description": "The survey registry version.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "schema_version": {"name": "schema_version", "description": "Qualtrics schema version.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "scoring_summary_after_questions": {"name": "scoring_summary_after_questions", "description": "Boolean representing whether the scoring summary is after questions.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "scoring_summary_after_survey": {"name": "scoring_summary_after_survey", "description": "Boolean representing whether the scoring summary is after the survey.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "scoring_summary_category": {"name": "scoring_summary_category", "description": "The unique identifier for the scoring.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "survey_name": {"name": "survey_name", "description": "Name of the survey.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "survey_status": {"name": "survey_status", "description": "The distribution status of the survey, or a flag indicating that it's a library block\n\nAllowed values - `Inactive`, `Active`, `Pending`, `LibBlock`, `Deactive`, `Temporary`", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "source_relation": {"name": "source_relation", "description": "The schema or database this record came from if you are making use of the qualtrics_union_schemas or qualtrics_union_databases variables, respectively. Empty string if you are not using either of these variables to union together multiple Qualtrics connectors.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "qualtrics_source://models/stg_qualtrics.yml", "build_path": null, "deferred": false, "unrendered_config": {"tags": ["qualtrics", "fivetran_package", "staging"], "schema": "qualtrics_source", "materialized": "table", "persist_docs": {"relation": true, "columns": "{{ false if target.type in ['spark','databricks'] else true }}"}}, "created_at": 1714419376.457601, "relation_name": "\"postgres\".\"qualtrics_source_integration_tests_702_qualtrics_source\".\"stg_qualtrics__survey\"", "raw_code": "with base as (\n\n select * \n from {{ ref('stg_qualtrics__survey_tmp') }}\n),\n\nfields as (\n\n select\n {{\n fivetran_utils.fill_staging_columns(\n source_columns=adapter.get_columns_in_relation(ref('stg_qualtrics__survey_tmp')),\n staging_columns=get_survey_columns()\n )\n }}\n\n {{ fivetran_utils.source_relation(\n union_schema_variable='qualtrics_union_schemas', \n union_database_variable='qualtrics_union_databases') \n }}\n \n from base\n),\n\nfinal as (\n \n select \n id as survey_id,\n survey_name,\n survey_status,\n brand_base_url,\n brand_id,\n bundle_short_name,\n composition_type,\n auto_scoring_category,\n default_scoring_category,\n division_id,\n creator_id as creator_user_id,\n owner_id as owner_user_id,\n project_category,\n project_type,\n registry_sha,\n registry_version,\n schema_version,\n scoring_summary_after_questions,\n scoring_summary_after_survey,\n scoring_summary_category,\n cast(last_accessed as {{ dbt.type_timestamp() }}) as last_accessed_at,\n cast(last_activated as {{ dbt.type_timestamp() }}) as last_activated_at,\n cast(last_modified as {{ dbt.type_timestamp() }}) as last_modified_at,\n _fivetran_deleted as is_deleted,\n _fivetran_synced,\n source_relation\n\n {{ fivetran_utils.fill_pass_through_columns('qualtrics__survey_pass_through_columns') }}\n\n from fields\n)\n\nselect *\nfrom final", "language": "sql", "refs": [{"name": "stg_qualtrics__survey_tmp", "package": null, "version": null}, {"name": "stg_qualtrics__survey_tmp", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.qualtrics_source.get_survey_columns", "macro.fivetran_utils.fill_staging_columns", "macro.fivetran_utils.source_relation", "macro.dbt.type_timestamp", "macro.fivetran_utils.fill_pass_through_columns"], "nodes": ["model.qualtrics_source.stg_qualtrics__survey_tmp"]}, "compiled_path": "target/compiled/qualtrics_source/models/stg_qualtrics__survey.sql", "compiled": true, "compiled_code": "with base as (\n\n select * \n from \"postgres\".\"qualtrics_source_integration_tests_702_qualtrics_source\".\"stg_qualtrics__survey_tmp\"\n),\n\nfields as (\n\n select\n \n \n \n _fivetran_deleted\n \n as \n \n _fivetran_deleted\n \n, \n \n \n _fivetran_synced\n \n as \n \n _fivetran_synced\n \n, \n \n \n auto_scoring_category\n \n as \n \n auto_scoring_category\n \n, \n \n \n brand_base_url\n \n as \n \n brand_base_url\n \n, \n \n \n brand_id\n \n as \n \n brand_id\n \n, \n \n \n bundle_short_name\n \n as \n \n bundle_short_name\n \n, \n \n \n composition_type\n \n as \n \n composition_type\n \n, \n \n \n creator_id\n \n as \n \n creator_id\n \n, \n \n \n default_scoring_category\n \n as \n \n default_scoring_category\n \n, \n \n \n division_id\n \n as \n \n division_id\n \n, \n \n \n id\n \n as \n \n id\n \n, \n \n \n last_accessed\n \n as \n \n last_accessed\n \n, \n \n \n last_activated\n \n as \n \n last_activated\n \n, \n \n \n last_modified\n \n as \n \n last_modified\n \n, \n \n \n owner_id\n \n as \n \n owner_id\n \n, \n \n \n project_category\n \n as \n \n project_category\n \n, \n \n \n project_type\n \n as \n \n project_type\n \n, \n \n \n registry_sha\n \n as \n \n registry_sha\n \n, \n \n \n registry_version\n \n as \n \n registry_version\n \n, \n \n \n schema_version\n \n as \n \n schema_version\n \n, \n \n \n scoring_summary_after_questions\n \n as \n \n scoring_summary_after_questions\n \n, \n \n \n scoring_summary_after_survey\n \n as \n \n scoring_summary_after_survey\n \n, \n \n \n scoring_summary_category\n \n as \n \n scoring_summary_category\n \n, \n \n \n survey_name\n \n as \n \n survey_name\n \n, \n \n \n survey_status\n \n as \n \n survey_status\n \n\n\n\n\n \n\n\n, cast('' as TEXT) as source_relation\n\n\n\n \n from base\n),\n\nfinal as (\n \n select \n id as survey_id,\n survey_name,\n survey_status,\n brand_base_url,\n brand_id,\n bundle_short_name,\n composition_type,\n auto_scoring_category,\n default_scoring_category,\n division_id,\n creator_id as creator_user_id,\n owner_id as owner_user_id,\n project_category,\n project_type,\n registry_sha,\n registry_version,\n schema_version,\n scoring_summary_after_questions,\n scoring_summary_after_survey,\n scoring_summary_category,\n cast(last_accessed as timestamp) as last_accessed_at,\n cast(last_activated as timestamp) as last_activated_at,\n cast(last_modified as timestamp) as last_modified_at,\n _fivetran_deleted as is_deleted,\n _fivetran_synced,\n source_relation\n\n \n\n\n\n\n\n from fields\n)\n\nselect *\nfrom final", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "alias_types": true, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null, "deprecation_date": null}, "model.qualtrics_source.stg_qualtrics__block_question": {"database": "postgres", "schema": "qualtrics_source_integration_tests_702_qualtrics_source", "name": "stg_qualtrics__block_question", "resource_type": "model", "package_name": "qualtrics_source", "path": "stg_qualtrics__block_question.sql", "original_file_path": "models/stg_qualtrics__block_question.sql", "unique_id": "model.qualtrics_source.stg_qualtrics__block_question", "fqn": ["qualtrics_source", "stg_qualtrics__block_question"], "alias": "stg_qualtrics__block_question", "checksum": {"name": "sha256", "checksum": "9058b1a430fb1b6aea93f2c7b97324dd96ba56eab90265bbd4837bd7c29eecbd"}, "config": {"enabled": true, "alias": null, "schema": "qualtrics_source", "database": null, "tags": ["qualtrics", "fivetran_package", "staging"], "meta": {}, "group": null, "materialized": "table", "incremental_strategy": null, "persist_docs": {"relation": true, "columns": true}, "post-hook": [], "pre-hook": [], "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "on_configuration_change": "apply", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false, "alias_types": true}, "access": "protected"}, "tags": ["qualtrics", "fivetran_package", "staging"], "description": "Table relating questions and blocks together.", "columns": {"is_deleted": {"name": "is_deleted", "description": "Boolean representing whether the record was soft-deleted in Qualtrics.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "_fivetran_synced": {"name": "_fivetran_synced", "description": "The time when a record was last updated by Fivetran.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "block_id": {"name": "block_id", "description": "The ID of the survey block. Match pattern = ^BL_[a-zA-Z0-9]{11,15}$", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "question_id": {"name": "question_id", "description": "The unique identifier for the question. Match pattern = ^QID[a-zA-Z0-9]+$", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "survey_id": {"name": "survey_id", "description": "The unique identifier for this survey. Match pattern = ^SV_[a-zA-Z0-9]{11,15}$", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "source_relation": {"name": "source_relation", "description": "The schema or database this record came from if you are making use of the qualtrics_union_schemas or qualtrics_union_databases variables, respectively. Empty string if you are not using either of these variables to union together multiple Qualtrics connectors.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "qualtrics_source://models/stg_qualtrics.yml", "build_path": null, "deferred": false, "unrendered_config": {"tags": ["qualtrics", "fivetran_package", "staging"], "schema": "qualtrics_source", "materialized": "table", "persist_docs": {"relation": true, "columns": "{{ false if target.type in ['spark','databricks'] else true }}"}}, "created_at": 1714419376.471926, "relation_name": "\"postgres\".\"qualtrics_source_integration_tests_702_qualtrics_source\".\"stg_qualtrics__block_question\"", "raw_code": "with base as (\n\n select * \n from {{ ref('stg_qualtrics__block_question_tmp') }}\n),\n\nfields as (\n\n select\n {{\n fivetran_utils.fill_staging_columns(\n source_columns=adapter.get_columns_in_relation(ref('stg_qualtrics__block_question_tmp')),\n staging_columns=get_block_question_columns()\n )\n }}\n\n {{ fivetran_utils.source_relation(\n union_schema_variable='qualtrics_union_schemas', \n union_database_variable='qualtrics_union_databases') \n }}\n\n from base\n),\n\nfinal as (\n \n select \n block_id,\n question_id,\n survey_id,\n _fivetran_deleted as is_deleted,\n _fivetran_synced,\n source_relation\n \n from fields\n)\n\nselect *\nfrom final", "language": "sql", "refs": [{"name": "stg_qualtrics__block_question_tmp", "package": null, "version": null}, {"name": "stg_qualtrics__block_question_tmp", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.qualtrics_source.get_block_question_columns", "macro.fivetran_utils.fill_staging_columns", "macro.fivetran_utils.source_relation"], "nodes": ["model.qualtrics_source.stg_qualtrics__block_question_tmp"]}, "compiled_path": "target/compiled/qualtrics_source/models/stg_qualtrics__block_question.sql", "compiled": true, "compiled_code": "with base as (\n\n select * \n from \"postgres\".\"qualtrics_source_integration_tests_702_qualtrics_source\".\"stg_qualtrics__block_question_tmp\"\n),\n\nfields as (\n\n select\n \n \n \n _fivetran_deleted\n \n as \n \n _fivetran_deleted\n \n, \n \n \n _fivetran_synced\n \n as \n \n _fivetran_synced\n \n, \n \n \n block_id\n \n as \n \n block_id\n \n, \n \n \n question_id\n \n as \n \n question_id\n \n, \n \n \n survey_id\n \n as \n \n survey_id\n \n\n\n\n\n \n\n\n, cast('' as TEXT) as source_relation\n\n\n\n\n from base\n),\n\nfinal as (\n \n select \n block_id,\n question_id,\n survey_id,\n _fivetran_deleted as is_deleted,\n _fivetran_synced,\n source_relation\n \n from fields\n)\n\nselect *\nfrom final", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "alias_types": true, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null, "deprecation_date": null}, "model.qualtrics_source.stg_qualtrics__question_option": {"database": "postgres", "schema": "qualtrics_source_integration_tests_702_qualtrics_source", "name": "stg_qualtrics__question_option", "resource_type": "model", "package_name": "qualtrics_source", "path": "stg_qualtrics__question_option.sql", "original_file_path": "models/stg_qualtrics__question_option.sql", "unique_id": "model.qualtrics_source.stg_qualtrics__question_option", "fqn": ["qualtrics_source", "stg_qualtrics__question_option"], "alias": "stg_qualtrics__question_option", "checksum": {"name": "sha256", "checksum": "b7f4a09e6ecbc2e72900e78ffe3bbd104183414ffda7453c5f5e620609ae40a4"}, "config": {"enabled": true, "alias": null, "schema": "qualtrics_source", "database": null, "tags": ["qualtrics", "fivetran_package", "staging"], "meta": {}, "group": null, "materialized": "table", "incremental_strategy": null, "persist_docs": {"relation": true, "columns": true}, "post-hook": [], "pre-hook": [], "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "on_configuration_change": "apply", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false, "alias_types": true}, "access": "protected"}, "tags": ["qualtrics", "fivetran_package", "staging"], "description": "Choice options for survey questions.", "columns": {"is_deleted": {"name": "is_deleted", "description": "Boolean representing whether the record was soft-deleted in Qualtrics.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "_fivetran_synced": {"name": "_fivetran_synced", "description": "The time when a record was last updated by Fivetran.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "key": {"name": "key", "description": "The key of the `QUESTION_OPTION` that was chosen.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "question_id": {"name": "question_id", "description": "The unique identifier for the question. Match pattern = ^QID[a-zA-Z0-9]+$", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "recode_value": {"name": "recode_value", "description": "Recode/mapping value for the option.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "survey_id": {"name": "survey_id", "description": "The unique identifier for this survey. Match pattern = ^SV_[a-zA-Z0-9]{11,15}$", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "text": {"name": "text", "description": "Question option text.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "source_relation": {"name": "source_relation", "description": "The schema or database this record came from if you are making use of the qualtrics_union_schemas or qualtrics_union_databases variables, respectively. Empty string if you are not using either of these variables to union together multiple Qualtrics connectors.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "qualtrics_source://models/stg_qualtrics.yml", "build_path": null, "deferred": false, "unrendered_config": {"tags": ["qualtrics", "fivetran_package", "staging"], "schema": "qualtrics_source", "materialized": "table", "persist_docs": {"relation": true, "columns": "{{ false if target.type in ['spark','databricks'] else true }}"}}, "created_at": 1714419376.4635808, "relation_name": "\"postgres\".\"qualtrics_source_integration_tests_702_qualtrics_source\".\"stg_qualtrics__question_option\"", "raw_code": "with base as (\n\n select * \n from {{ ref('stg_qualtrics__question_option_tmp') }}\n),\n\nfields as (\n\n select\n {{\n fivetran_utils.fill_staging_columns(\n source_columns=adapter.get_columns_in_relation(ref('stg_qualtrics__question_option_tmp')),\n staging_columns=get_question_option_columns()\n )\n }}\n\n {{ fivetran_utils.source_relation(\n union_schema_variable='qualtrics_union_schemas', \n union_database_variable='qualtrics_union_databases') \n }}\n \n from base\n),\n\nfinal as (\n \n select \n question_id,\n survey_id,\n key,\n recode_value,\n text,\n _fivetran_deleted as is_deleted,\n _fivetran_synced,\n source_relation\n \n from fields\n)\n\nselect *\nfrom final", "language": "sql", "refs": [{"name": "stg_qualtrics__question_option_tmp", "package": null, "version": null}, {"name": "stg_qualtrics__question_option_tmp", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.qualtrics_source.get_question_option_columns", "macro.fivetran_utils.fill_staging_columns", "macro.fivetran_utils.source_relation"], "nodes": ["model.qualtrics_source.stg_qualtrics__question_option_tmp"]}, "compiled_path": "target/compiled/qualtrics_source/models/stg_qualtrics__question_option.sql", "compiled": true, "compiled_code": "with base as (\n\n select * \n from \"postgres\".\"qualtrics_source_integration_tests_702_qualtrics_source\".\"stg_qualtrics__question_option_tmp\"\n),\n\nfields as (\n\n select\n \n \n \n _fivetran_deleted\n \n as \n \n _fivetran_deleted\n \n, \n \n \n _fivetran_synced\n \n as \n \n _fivetran_synced\n \n, \n \n \n key\n \n as \n \n key\n \n, \n \n \n question_id\n \n as \n \n question_id\n \n, \n \n \n recode_value\n \n as \n \n recode_value\n \n, \n \n \n survey_id\n \n as \n \n survey_id\n \n, \n \n \n text\n \n as \n \n text\n \n\n\n\n\n \n\n\n, cast('' as TEXT) as source_relation\n\n\n\n \n from base\n),\n\nfinal as (\n \n select \n question_id,\n survey_id,\n key,\n recode_value,\n text,\n _fivetran_deleted as is_deleted,\n _fivetran_synced,\n source_relation\n \n from fields\n)\n\nselect *\nfrom final", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "alias_types": true, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null, "deprecation_date": null}, "model.qualtrics_source.stg_qualtrics__contact_mailing_list_membership": {"database": "postgres", "schema": "qualtrics_source_integration_tests_702_qualtrics_source", "name": "stg_qualtrics__contact_mailing_list_membership", "resource_type": "model", "package_name": "qualtrics_source", "path": "stg_qualtrics__contact_mailing_list_membership.sql", "original_file_path": "models/stg_qualtrics__contact_mailing_list_membership.sql", "unique_id": "model.qualtrics_source.stg_qualtrics__contact_mailing_list_membership", "fqn": ["qualtrics_source", "stg_qualtrics__contact_mailing_list_membership"], "alias": "stg_qualtrics__contact_mailing_list_membership", "checksum": {"name": "sha256", "checksum": "54ea8e7307c0e79de4912e123482d18de79c5cf880f3f8c0284db6e9cbb471ab"}, "config": {"enabled": true, "alias": null, "schema": "qualtrics_source", "database": null, "tags": ["qualtrics", "fivetran_package", "staging"], "meta": {}, "group": null, "materialized": "table", "incremental_strategy": null, "persist_docs": {"relation": true, "columns": true}, "post-hook": [], "pre-hook": [], "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "on_configuration_change": "apply", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false, "alias_types": true}, "access": "protected"}, "tags": ["qualtrics", "fivetran_package", "staging"], "description": "Table relating contacts to mailing lists they are a part of.", "columns": {"_fivetran_synced": {"name": "_fivetran_synced", "description": "The time when a record was last updated by Fivetran.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "contact_id": {"name": "contact_id", "description": "The ID for the contact. Example - CID_012345678901234", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "contact_lookup_id": {"name": "contact_lookup_id", "description": "Optional contact lookup ID for individual distribution.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "directory_id": {"name": "directory_id", "description": "The directory ID, also known as a pool ID. Example - POOL_012345678901234", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "mailing_list_id": {"name": "mailing_list_id", "description": "The ID for the mailing list.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "name": {"name": "name", "description": "Name of the mailing list.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "owner_user_id": {"name": "owner_user_id", "description": "The unique identifier for a specific user who owns this.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "unsubscribed_at": {"name": "unsubscribed_at", "description": "Date and time the user opted out of this mailing list.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "is_unsubscribed": {"name": "is_unsubscribed", "description": "Boolean indicating whether the contact has opted out of receiving email through this mailing list.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "source_relation": {"name": "source_relation", "description": "The schema or database this record came from if you are making use of the qualtrics_union_schemas or qualtrics_union_databases variables, respectively. Empty string if you are not using either of these variables to union together multiple Qualtrics connectors.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "qualtrics_source://models/stg_qualtrics.yml", "build_path": null, "deferred": false, "unrendered_config": {"tags": ["qualtrics", "fivetran_package", "staging"], "schema": "qualtrics_source", "materialized": "table", "persist_docs": {"relation": true, "columns": "{{ false if target.type in ['spark','databricks'] else true }}"}}, "created_at": 1714419376.482142, "relation_name": "\"postgres\".\"qualtrics_source_integration_tests_702_qualtrics_source\".\"stg_qualtrics__contact_mailing_list_membership\"", "raw_code": "with base as (\n\n select * \n from {{ ref('stg_qualtrics__contact_mailing_list_membership_tmp') }}\n),\n\nfields as (\n\n select\n {{\n fivetran_utils.fill_staging_columns(\n source_columns=adapter.get_columns_in_relation(ref('stg_qualtrics__contact_mailing_list_membership_tmp')),\n staging_columns=get_contact_mailing_list_membership_columns()\n )\n }}\n\n {{ fivetran_utils.source_relation(\n union_schema_variable='qualtrics_union_schemas', \n union_database_variable='qualtrics_union_databases') \n }}\n \n from base\n),\n\nfinal as (\n \n select \n contact_id,\n contact_lookup_id,\n directory_id,\n mailing_list_id,\n name,\n owner_id as owner_user_id,\n cast(unsubscribe_date as {{ dbt.type_timestamp() }}) as unsubscribed_at,\n unsubscribed as is_unsubscribed,\n _fivetran_synced,\n source_relation\n\n from fields\n)\n\nselect *\nfrom final", "language": "sql", "refs": [{"name": "stg_qualtrics__contact_mailing_list_membership_tmp", "package": null, "version": null}, {"name": "stg_qualtrics__contact_mailing_list_membership_tmp", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.qualtrics_source.get_contact_mailing_list_membership_columns", "macro.fivetran_utils.fill_staging_columns", "macro.fivetran_utils.source_relation", "macro.dbt.type_timestamp"], "nodes": ["model.qualtrics_source.stg_qualtrics__contact_mailing_list_membership_tmp"]}, "compiled_path": "target/compiled/qualtrics_source/models/stg_qualtrics__contact_mailing_list_membership.sql", "compiled": true, "compiled_code": "with base as (\n\n select * \n from \"postgres\".\"qualtrics_source_integration_tests_702_qualtrics_source\".\"stg_qualtrics__contact_mailing_list_membership_tmp\"\n),\n\nfields as (\n\n select\n \n \n \n _fivetran_synced\n \n as \n \n _fivetran_synced\n \n, \n \n \n contact_id\n \n as \n \n contact_id\n \n, \n \n \n contact_lookup_id\n \n as \n \n contact_lookup_id\n \n, \n \n \n directory_id\n \n as \n \n directory_id\n \n, \n \n \n mailing_list_id\n \n as \n \n mailing_list_id\n \n, \n \n \n name\n \n as \n \n name\n \n, \n \n \n owner_id\n \n as \n \n owner_id\n \n, \n \n \n unsubscribe_date\n \n as \n \n unsubscribe_date\n \n, \n \n \n unsubscribed\n \n as \n \n unsubscribed\n \n\n\n\n\n \n\n\n, cast('' as TEXT) as source_relation\n\n\n\n \n from base\n),\n\nfinal as (\n \n select \n contact_id,\n contact_lookup_id,\n directory_id,\n mailing_list_id,\n name,\n owner_id as owner_user_id,\n cast(unsubscribe_date as timestamp) as unsubscribed_at,\n unsubscribed as is_unsubscribed,\n _fivetran_synced,\n source_relation\n\n from fields\n)\n\nselect *\nfrom final", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "alias_types": true, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null, "deprecation_date": null}, "model.qualtrics_source.stg_qualtrics__directory_contact": {"database": "postgres", "schema": "qualtrics_source_integration_tests_702_qualtrics_source", "name": "stg_qualtrics__directory_contact", "resource_type": "model", "package_name": "qualtrics_source", "path": "stg_qualtrics__directory_contact.sql", "original_file_path": "models/stg_qualtrics__directory_contact.sql", "unique_id": "model.qualtrics_source.stg_qualtrics__directory_contact", "fqn": ["qualtrics_source", "stg_qualtrics__directory_contact"], "alias": "stg_qualtrics__directory_contact", "checksum": {"name": "sha256", "checksum": "5e6d3dc62c11df35205fd07f27d0acf160e19ad02ec854ffc8ce9713cc6c9ddf"}, "config": {"enabled": true, "alias": null, "schema": "qualtrics_source", "database": null, "tags": ["qualtrics", "fivetran_package", "staging"], "meta": {}, "group": null, "materialized": "table", "incremental_strategy": null, "persist_docs": {"relation": true, "columns": true}, "post-hook": [], "pre-hook": [], "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "on_configuration_change": "apply", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false, "alias_types": true}, "access": "protected"}, "tags": ["qualtrics", "fivetran_package", "staging"], "description": "Tablle relating contacts to the directories they are a part of.", "columns": {"_fivetran_synced": {"name": "_fivetran_synced", "description": "The time when a record was last updated by Fivetran.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "created_at": {"name": "created_at", "description": "The creation date and time of the record, expressed as an ISO 8601 value.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "directory_id": {"name": "directory_id", "description": "The directory ID, also known as a pool ID. Example - POOL_012345678901234", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "unsubscribed_from_directory_at": {"name": "unsubscribed_from_directory_at", "description": "Date and time the user opted out of the directory.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "is_unsubscribed_from_directory": {"name": "is_unsubscribed_from_directory", "description": "Boolean indicating whether the contact unsubscribed from all contact from the Directory.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "email": {"name": "email", "description": "Contact's email address. Must be in proper email format.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "email_domain": {"name": "email_domain", "description": "Domain of the contact's email address.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "ext_ref": {"name": "ext_ref", "description": "The external reference for the contact.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "first_name": {"name": "first_name", "description": "Contact's first name.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "contact_id": {"name": "contact_id", "description": "The ID for the contact. Example - CID_012345678901234", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "language": {"name": "language", "description": "The user's default language.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "last_modified_at": {"name": "last_modified_at", "description": "The point in time when the record was last modified.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "last_name": {"name": "last_name", "description": "Contact's surname.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "phone": {"name": "phone", "description": "Contact's phone number.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "source_relation": {"name": "source_relation", "description": "The schema or database this record came from if you are making use of the qualtrics_union_schemas or qualtrics_union_databases variables, respectively. Empty string if you are not using either of these variables to union together multiple Qualtrics connectors.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "qualtrics_source://models/stg_qualtrics.yml", "build_path": null, "deferred": false, "unrendered_config": {"tags": ["qualtrics", "fivetran_package", "staging"], "schema": "qualtrics_source", "materialized": "table", "persist_docs": {"relation": true, "columns": "{{ false if target.type in ['spark','databricks'] else true }}"}}, "created_at": 1714419376.475269, "relation_name": "\"postgres\".\"qualtrics_source_integration_tests_702_qualtrics_source\".\"stg_qualtrics__directory_contact\"", "raw_code": "with base as (\n\n select * \n from {{ ref('stg_qualtrics__directory_contact_tmp') }}\n),\n\nfields as (\n\n select\n {{\n fivetran_utils.fill_staging_columns(\n source_columns=adapter.get_columns_in_relation(ref('stg_qualtrics__directory_contact_tmp')),\n staging_columns=get_directory_contact_columns()\n )\n }}\n\n {{ fivetran_utils.source_relation(\n union_schema_variable='qualtrics_union_schemas', \n union_database_variable='qualtrics_union_databases') \n }}\n \n from base\n),\n\nfinal as (\n \n select \n cast(creation_date as {{ dbt.type_timestamp() }}) as created_at,\n directory_id,\n cast(directory_unsubscribe_date as {{ dbt.type_timestamp() }}) as unsubscribed_from_directory_at,\n directory_unsubscribed as is_unsubscribed_from_directory,\n lower(email) as email,\n lower(email_domain) as email_domain,\n ext_ref,\n first_name,\n last_name,\n REGEXP_REPLACE(phone, '[^0-9]', '') AS phone, -- remove any non-numeric chars\n id as contact_id,\n language,\n cast(last_modified as {{ dbt.type_timestamp() }}) as last_modified_at,\n _fivetran_synced,\n source_relation\n\n {{ fivetran_utils.fill_pass_through_columns('qualtrics__directory_contact_pass_through_columns') }}\n\n from fields\n)\n\nselect *\nfrom final", "language": "sql", "refs": [{"name": "stg_qualtrics__directory_contact_tmp", "package": null, "version": null}, {"name": "stg_qualtrics__directory_contact_tmp", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.qualtrics_source.get_directory_contact_columns", "macro.fivetran_utils.fill_staging_columns", "macro.fivetran_utils.source_relation", "macro.dbt.type_timestamp", "macro.fivetran_utils.fill_pass_through_columns"], "nodes": ["model.qualtrics_source.stg_qualtrics__directory_contact_tmp"]}, "compiled_path": "target/compiled/qualtrics_source/models/stg_qualtrics__directory_contact.sql", "compiled": true, "compiled_code": "with base as (\n\n select * \n from \"postgres\".\"qualtrics_source_integration_tests_702_qualtrics_source\".\"stg_qualtrics__directory_contact_tmp\"\n),\n\nfields as (\n\n select\n \n \n \n _fivetran_synced\n \n as \n \n _fivetran_synced\n \n, \n \n \n creation_date\n \n as \n \n creation_date\n \n, \n \n \n directory_id\n \n as \n \n directory_id\n \n, \n \n \n directory_unsubscribe_date\n \n as \n \n directory_unsubscribe_date\n \n, \n \n \n directory_unsubscribed\n \n as \n \n directory_unsubscribed\n \n, \n \n \n email\n \n as \n \n email\n \n, \n \n \n email_domain\n \n as \n \n email_domain\n \n, \n \n \n ext_ref\n \n as \n \n ext_ref\n \n, \n \n \n first_name\n \n as \n \n first_name\n \n, \n \n \n id\n \n as \n \n id\n \n, \n \n \n language\n \n as \n \n language\n \n, \n \n \n last_modified\n \n as \n \n last_modified\n \n, \n \n \n last_name\n \n as \n \n last_name\n \n, \n \n \n phone\n \n as \n \n phone\n \n\n\n\n\n \n\n\n, cast('' as TEXT) as source_relation\n\n\n\n \n from base\n),\n\nfinal as (\n \n select \n cast(creation_date as timestamp) as created_at,\n directory_id,\n cast(directory_unsubscribe_date as timestamp) as unsubscribed_from_directory_at,\n directory_unsubscribed as is_unsubscribed_from_directory,\n lower(email) as email,\n lower(email_domain) as email_domain,\n ext_ref,\n first_name,\n last_name,\n REGEXP_REPLACE(phone, '[^0-9]', '') AS phone, -- remove any non-numeric chars\n id as contact_id,\n language,\n cast(last_modified as timestamp) as last_modified_at,\n _fivetran_synced,\n source_relation\n\n \n\n\n\n\n\n from fields\n)\n\nselect *\nfrom final", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "alias_types": true, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null, "deprecation_date": null}, "model.qualtrics_source.stg_qualtrics__question_response": {"database": "postgres", "schema": "qualtrics_source_integration_tests_702_qualtrics_source", "name": "stg_qualtrics__question_response", "resource_type": "model", "package_name": "qualtrics_source", "path": "stg_qualtrics__question_response.sql", "original_file_path": "models/stg_qualtrics__question_response.sql", "unique_id": "model.qualtrics_source.stg_qualtrics__question_response", "fqn": ["qualtrics_source", "stg_qualtrics__question_response"], "alias": "stg_qualtrics__question_response", "checksum": {"name": "sha256", "checksum": "30c4f871c3b5aebedfa5a2d8b2edb0f6d7f9536c180b39c43695476f672a7aea"}, "config": {"enabled": true, "alias": null, "schema": "qualtrics_source", "database": null, "tags": ["qualtrics", "fivetran_package", "staging"], "meta": {}, "group": null, "materialized": "table", "incremental_strategy": null, "persist_docs": {"relation": true, "columns": true}, "post-hook": [], "pre-hook": [], "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "on_configuration_change": "apply", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false, "alias_types": true}, "access": "protected"}, "tags": ["qualtrics", "fivetran_package", "staging"], "description": "Responses to individual questions (and their sub-questions).", "columns": {"_fivetran_id": {"name": "_fivetran_id", "description": "Fivetran-generated unique key hashed on `response_id`, `question_id`, `sub_question_key`, `sub_question_text` , `question_option_key` , `loop_id` and `importId`.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "_fivetran_synced": {"name": "_fivetran_synced", "description": "The time when a record was last updated by Fivetran.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "loop_id": {"name": "loop_id", "description": "ID of the [Loop and Merge](https://www.qualtrics.com/support/survey-platform/survey-module/block-options/loop-and-merge/) object this response is associated with.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "question": {"name": "question", "description": "Question text.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "question_id": {"name": "question_id", "description": "The unique identifier for the question. Match pattern = ^QID[a-zA-Z0-9]+$", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "question_option_key": {"name": "question_option_key", "description": "The key of the `QUESTION_OPTION` that was chosen.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "response_id": {"name": "response_id", "description": "The unique ID for the `SURVEY_RESPONSE`.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "sub_question_key": {"name": "sub_question_key", "description": "Key of the sub question.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "sub_question_text": {"name": "sub_question_text", "description": "Sub question text.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "value": {"name": "value", "description": "Value of the question response.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "source_relation": {"name": "source_relation", "description": "The schema or database this record came from if you are making use of the qualtrics_union_schemas or qualtrics_union_databases variables, respectively. Empty string if you are not using either of these variables to union together multiple Qualtrics connectors.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "qualtrics_source://models/stg_qualtrics.yml", "build_path": null, "deferred": false, "unrendered_config": {"tags": ["qualtrics", "fivetran_package", "staging"], "schema": "qualtrics_source", "materialized": "table", "persist_docs": {"relation": true, "columns": "{{ false if target.type in ['spark','databricks'] else true }}"}}, "created_at": 1714419376.4625878, "relation_name": "\"postgres\".\"qualtrics_source_integration_tests_702_qualtrics_source\".\"stg_qualtrics__question_response\"", "raw_code": "with base as (\n\n select * \n from {{ ref('stg_qualtrics__question_response_tmp') }}\n),\n\nfields as (\n\n select\n {{\n fivetran_utils.fill_staging_columns(\n source_columns=adapter.get_columns_in_relation(ref('stg_qualtrics__question_response_tmp')),\n staging_columns=get_question_response_columns()\n )\n }}\n \n {{ fivetran_utils.source_relation(\n union_schema_variable='qualtrics_union_schemas', \n union_database_variable='qualtrics_union_databases') \n }}\n \n from base\n),\n\nfinal as (\n \n select \n _fivetran_id,\n loop_id,\n question_id,\n question,\n question_option_key,\n response_id,\n sub_question_key,\n sub_question_text,\n value,\n _fivetran_synced,\n source_relation\n \n from fields\n)\n\nselect *\nfrom final", "language": "sql", "refs": [{"name": "stg_qualtrics__question_response_tmp", "package": null, "version": null}, {"name": "stg_qualtrics__question_response_tmp", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.qualtrics_source.get_question_response_columns", "macro.fivetran_utils.fill_staging_columns", "macro.fivetran_utils.source_relation"], "nodes": ["model.qualtrics_source.stg_qualtrics__question_response_tmp"]}, "compiled_path": "target/compiled/qualtrics_source/models/stg_qualtrics__question_response.sql", "compiled": true, "compiled_code": "with base as (\n\n select * \n from \"postgres\".\"qualtrics_source_integration_tests_702_qualtrics_source\".\"stg_qualtrics__question_response_tmp\"\n),\n\nfields as (\n\n select\n \n \n \n _fivetran_id\n \n as \n \n _fivetran_id\n \n, \n \n \n _fivetran_synced\n \n as \n \n _fivetran_synced\n \n, \n \n \n loop_id\n \n as \n \n loop_id\n \n, \n \n \n question\n \n as \n \n question\n \n, \n \n \n question_id\n \n as \n \n question_id\n \n, \n \n \n question_option_key\n \n as \n \n question_option_key\n \n, \n \n \n response_id\n \n as \n \n response_id\n \n, \n \n \n sub_question_key\n \n as \n \n sub_question_key\n \n, \n \n \n sub_question_text\n \n as \n \n sub_question_text\n \n, \n \n \n value\n \n as \n \n value\n \n\n\n\n \n \n\n\n, cast('' as TEXT) as source_relation\n\n\n\n \n from base\n),\n\nfinal as (\n \n select \n _fivetran_id,\n loop_id,\n question_id,\n question,\n question_option_key,\n response_id,\n sub_question_key,\n sub_question_text,\n value,\n _fivetran_synced,\n source_relation\n \n from fields\n)\n\nselect *\nfrom final", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "alias_types": true, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null, "deprecation_date": null}, "model.qualtrics_source.stg_qualtrics__directory": {"database": "postgres", "schema": "qualtrics_source_integration_tests_702_qualtrics_source", "name": "stg_qualtrics__directory", "resource_type": "model", "package_name": "qualtrics_source", "path": "stg_qualtrics__directory.sql", "original_file_path": "models/stg_qualtrics__directory.sql", "unique_id": "model.qualtrics_source.stg_qualtrics__directory", "fqn": ["qualtrics_source", "stg_qualtrics__directory"], "alias": "stg_qualtrics__directory", "checksum": {"name": "sha256", "checksum": "46839c63e3b81e0963f546946a4509962c9b1c008bf131e875e0a8fcfe0cd68c"}, "config": {"enabled": true, "alias": null, "schema": "qualtrics_source", "database": null, "tags": ["qualtrics", "fivetran_package", "staging"], "meta": {}, "group": null, "materialized": "table", "incremental_strategy": null, "persist_docs": {"relation": true, "columns": true}, "post-hook": [], "pre-hook": [], "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "on_configuration_change": "apply", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false, "alias_types": true}, "access": "protected"}, "tags": ["qualtrics", "fivetran_package", "staging"], "description": "A directory is an address book for the entire brand and contains all of the contacts that have been added by your users.", "columns": {"is_deleted": {"name": "is_deleted", "description": "Boolean representing whether the record was soft-deleted in Qualtrics.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "_fivetran_synced": {"name": "_fivetran_synced", "description": "The time when a record was last updated by Fivetran.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "is_deduped_on_email": {"name": "is_deduped_on_email", "description": "Boolean representing if directory contacts are deduped based on email.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "is_deduped_on_ext_ref": {"name": "is_deduped_on_ext_ref", "description": "Boolean representing if directory contacts are deduped based on an external data reference.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "is_deduped_on_first_name": {"name": "is_deduped_on_first_name", "description": "Boolean representing if directory contacts are deduped based on first name.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "is_deduped_on_last_name": {"name": "is_deduped_on_last_name", "description": "Boolean representing if directory contacts are deduped based on last name.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "is_deduped_on_phone": {"name": "is_deduped_on_phone", "description": "Boolean representing if directory contacts are deduped based on phone number.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "directory_id": {"name": "directory_id", "description": "The directory ID, also known as a pool ID. Example - POOL_012345678901234", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "is_default": {"name": "is_default", "description": "Boolean representing if this directory is the default one for your brand. \n\nThe default directory will be the first directory listed in the dropdown menu in Qualtrics.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "name": {"name": "name", "description": "Name of the directory.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "source_relation": {"name": "source_relation", "description": "The schema or database this record came from if you are making use of the qualtrics_union_schemas or qualtrics_union_databases variables, respectively. Empty string if you are not using either of these variables to union together multiple Qualtrics connectors.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "qualtrics_source://models/stg_qualtrics.yml", "build_path": null, "deferred": false, "unrendered_config": {"tags": ["qualtrics", "fivetran_package", "staging"], "schema": "qualtrics_source", "materialized": "table", "persist_docs": {"relation": true, "columns": "{{ false if target.type in ['spark','databricks'] else true }}"}}, "created_at": 1714419376.473681, "relation_name": "\"postgres\".\"qualtrics_source_integration_tests_702_qualtrics_source\".\"stg_qualtrics__directory\"", "raw_code": "with base as (\n\n select * \n from {{ ref('stg_qualtrics__directory_tmp') }}\n),\n\nfields as (\n\n select\n {{\n fivetran_utils.fill_staging_columns(\n source_columns=adapter.get_columns_in_relation(ref('stg_qualtrics__directory_tmp')),\n staging_columns=get_directory_columns()\n )\n }}\n\n {{ fivetran_utils.source_relation(\n union_schema_variable='qualtrics_union_schemas', \n union_database_variable='qualtrics_union_databases') \n }}\n \n from base\n),\n\nfinal as (\n \n select \n deduplication_criteria_email as is_deduped_on_email,\n deduplication_criteria_external_data_reference as is_deduped_on_ext_ref,\n deduplication_criteria_first_name as is_deduped_on_first_name,\n deduplication_criteria_last_name as is_deduped_on_last_name,\n deduplication_criteria_phone as is_deduped_on_phone,\n id as directory_id,\n is_default,\n name,\n _fivetran_deleted as is_deleted,\n _fivetran_synced,\n source_relation\n\n {{ fivetran_utils.fill_pass_through_columns('qualtrics__directory_pass_through_columns') }}\n\n from fields\n)\n\nselect *\nfrom final", "language": "sql", "refs": [{"name": "stg_qualtrics__directory_tmp", "package": null, "version": null}, {"name": "stg_qualtrics__directory_tmp", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.qualtrics_source.get_directory_columns", "macro.fivetran_utils.fill_staging_columns", "macro.fivetran_utils.source_relation", "macro.fivetran_utils.fill_pass_through_columns"], "nodes": ["model.qualtrics_source.stg_qualtrics__directory_tmp"]}, "compiled_path": "target/compiled/qualtrics_source/models/stg_qualtrics__directory.sql", "compiled": true, "compiled_code": "with base as (\n\n select * \n from \"postgres\".\"qualtrics_source_integration_tests_702_qualtrics_source\".\"stg_qualtrics__directory_tmp\"\n),\n\nfields as (\n\n select\n \n \n \n _fivetran_deleted\n \n as \n \n _fivetran_deleted\n \n, \n \n \n _fivetran_synced\n \n as \n \n _fivetran_synced\n \n, \n \n \n deduplication_criteria_email\n \n as \n \n deduplication_criteria_email\n \n, \n \n \n deduplication_criteria_external_data_reference\n \n as \n \n deduplication_criteria_external_data_reference\n \n, \n \n \n deduplication_criteria_first_name\n \n as \n \n deduplication_criteria_first_name\n \n, \n \n \n deduplication_criteria_last_name\n \n as \n \n deduplication_criteria_last_name\n \n, \n \n \n deduplication_criteria_phone\n \n as \n \n deduplication_criteria_phone\n \n, \n \n \n id\n \n as \n \n id\n \n, \n \n \n is_default\n \n as \n \n is_default\n \n, \n \n \n name\n \n as \n \n name\n \n\n\n\n\n \n\n\n, cast('' as TEXT) as source_relation\n\n\n\n \n from base\n),\n\nfinal as (\n \n select \n deduplication_criteria_email as is_deduped_on_email,\n deduplication_criteria_external_data_reference as is_deduped_on_ext_ref,\n deduplication_criteria_first_name as is_deduped_on_first_name,\n deduplication_criteria_last_name as is_deduped_on_last_name,\n deduplication_criteria_phone as is_deduped_on_phone,\n id as directory_id,\n is_default,\n name,\n _fivetran_deleted as is_deleted,\n _fivetran_synced,\n source_relation\n\n \n\n\n\n\n\n from fields\n)\n\nselect *\nfrom final", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "alias_types": true, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null, "deprecation_date": null}, "model.qualtrics_source.stg_qualtrics__distribution_contact": {"database": "postgres", "schema": "qualtrics_source_integration_tests_702_qualtrics_source", "name": "stg_qualtrics__distribution_contact", "resource_type": "model", "package_name": "qualtrics_source", "path": "stg_qualtrics__distribution_contact.sql", "original_file_path": "models/stg_qualtrics__distribution_contact.sql", "unique_id": "model.qualtrics_source.stg_qualtrics__distribution_contact", "fqn": ["qualtrics_source", "stg_qualtrics__distribution_contact"], "alias": "stg_qualtrics__distribution_contact", "checksum": {"name": "sha256", "checksum": "4f686edbd1142da3a32c04d5330cee06ac04d67113cb4332fa5c6a113c83419c"}, "config": {"enabled": true, "alias": null, "schema": "qualtrics_source", "database": null, "tags": ["qualtrics", "fivetran_package", "staging"], "meta": {}, "group": null, "materialized": "table", "incremental_strategy": null, "persist_docs": {"relation": true, "columns": true}, "post-hook": [], "pre-hook": [], "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "on_configuration_change": "apply", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false, "alias_types": true}, "access": "protected"}, "tags": ["qualtrics", "fivetran_package", "staging"], "description": "Table relating contacts to distributions they've been a part of.", "columns": {"_fivetran_synced": {"name": "_fivetran_synced", "description": "The time when a record was last updated by Fivetran.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "contact_frequency_rule_id": {"name": "contact_frequency_rule_id", "description": "The contact frequency Rule ID. Ex - FQ_AAB234234", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "contact_id": {"name": "contact_id", "description": "The ID for the contact. Example - CID_012345678901234", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "contact_lookup_id": {"name": "contact_lookup_id", "description": "Optional contact lookup ID for individual distribution.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "distribution_id": {"name": "distribution_id", "description": "The unique Distribution ID.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "opened_at": {"name": "opened_at", "description": "The time a survey was opened by the respondent, will be null if the survey has not been opened.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "response_completed_at": {"name": "response_completed_at", "description": "The time a response was completed, will be null for uncompleted surveys.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "response_id": {"name": "response_id", "description": "The ID of the survey response submitted by this contact. If no survey response has been submitted, this value will be null. If the survey was setup to anonymize responses, then this value will be `Anonymous`.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "response_started_at": {"name": "response_started_at", "description": "The time a response was started by the respondent, will be null if survey has not been started.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "sent_at": {"name": "sent_at", "description": "The time a survey was sent to the respondent.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "status": {"name": "status", "description": "One of ([full descriptions](https://api.qualtrics.com/fc8017650d0b9-distribution-status)):\n- `Pending`\n- `Success`\n- `Error`\n- `Opened`\n- `Complaint`\n- `Skipped`\n- `Blocked`\n- `Failure`\n- `Unknown`\n- `SoftBounce`\n- `HardBounce`\n- `SurveyStarted`\n- `SurveyPartiallyFinished`\n- `SurveyFinished`\n- `SurveyScreenedOut`\n- `SessionExpired`", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "survey_link": {"name": "survey_link", "description": "The survey link sent with the distribution. This is null when no link was sent.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "survey_session_id": {"name": "survey_session_id", "description": "An identifier that represents the session in which the respondent interacted with the survey", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "source_relation": {"name": "source_relation", "description": "The schema or database this record came from if you are making use of the qualtrics_union_schemas or qualtrics_union_databases variables, respectively. Empty string if you are not using either of these variables to union together multiple Qualtrics connectors.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "qualtrics_source://models/stg_qualtrics.yml", "build_path": null, "deferred": false, "unrendered_config": {"tags": ["qualtrics", "fivetran_package", "staging"], "schema": "qualtrics_source", "materialized": "table", "persist_docs": {"relation": true, "columns": "{{ false if target.type in ['spark','databricks'] else true }}"}}, "created_at": 1714419376.480764, "relation_name": "\"postgres\".\"qualtrics_source_integration_tests_702_qualtrics_source\".\"stg_qualtrics__distribution_contact\"", "raw_code": "with base as (\n\n select * \n from {{ ref('stg_qualtrics__distribution_contact_tmp') }}\n),\n\nfields as (\n\n select\n {{\n fivetran_utils.fill_staging_columns(\n source_columns=adapter.get_columns_in_relation(ref('stg_qualtrics__distribution_contact_tmp')),\n staging_columns=get_distribution_contact_columns()\n )\n }}\n\n {{ fivetran_utils.source_relation(\n union_schema_variable='qualtrics_union_schemas', \n union_database_variable='qualtrics_union_databases') \n }}\n \n from base\n),\n\nfinal as (\n \n select \n contact_frequency_rule_id,\n contact_id,\n contact_lookup_id,\n distribution_id,\n cast(opened_at as {{ dbt.type_timestamp() }}) as opened_at,\n cast(response_completed_at as {{ dbt.type_timestamp() }}) as response_completed_at,\n response_id,\n cast(response_started_at as {{ dbt.type_timestamp() }}) as response_started_at,\n cast(sent_at as {{ dbt.type_timestamp() }}) as sent_at,\n status,\n survey_link,\n survey_session_id,\n _fivetran_synced,\n source_relation\n\n from fields\n)\n\nselect *\nfrom final", "language": "sql", "refs": [{"name": "stg_qualtrics__distribution_contact_tmp", "package": null, "version": null}, {"name": "stg_qualtrics__distribution_contact_tmp", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.qualtrics_source.get_distribution_contact_columns", "macro.fivetran_utils.fill_staging_columns", "macro.fivetran_utils.source_relation", "macro.dbt.type_timestamp"], "nodes": ["model.qualtrics_source.stg_qualtrics__distribution_contact_tmp"]}, "compiled_path": "target/compiled/qualtrics_source/models/stg_qualtrics__distribution_contact.sql", "compiled": true, "compiled_code": "with base as (\n\n select * \n from \"postgres\".\"qualtrics_source_integration_tests_702_qualtrics_source\".\"stg_qualtrics__distribution_contact_tmp\"\n),\n\nfields as (\n\n select\n \n \n \n _fivetran_synced\n \n as \n \n _fivetran_synced\n \n, \n \n \n contact_frequency_rule_id\n \n as \n \n contact_frequency_rule_id\n \n, \n \n \n contact_id\n \n as \n \n contact_id\n \n, \n \n \n contact_lookup_id\n \n as \n \n contact_lookup_id\n \n, \n \n \n distribution_id\n \n as \n \n distribution_id\n \n, \n \n \n opened_at\n \n as \n \n opened_at\n \n, \n \n \n response_completed_at\n \n as \n \n response_completed_at\n \n, \n \n \n response_id\n \n as \n \n response_id\n \n, \n \n \n response_started_at\n \n as \n \n response_started_at\n \n, \n \n \n sent_at\n \n as \n \n sent_at\n \n, \n \n \n status\n \n as \n \n status\n \n, \n \n \n survey_link\n \n as \n \n survey_link\n \n, \n \n \n survey_session_id\n \n as \n \n survey_session_id\n \n\n\n\n\n \n\n\n, cast('' as TEXT) as source_relation\n\n\n\n \n from base\n),\n\nfinal as (\n \n select \n contact_frequency_rule_id,\n contact_id,\n contact_lookup_id,\n distribution_id,\n cast(opened_at as timestamp) as opened_at,\n cast(response_completed_at as timestamp) as response_completed_at,\n response_id,\n cast(response_started_at as timestamp) as response_started_at,\n cast(sent_at as timestamp) as sent_at,\n status,\n survey_link,\n survey_session_id,\n _fivetran_synced,\n source_relation\n\n from fields\n)\n\nselect *\nfrom final", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "alias_types": true, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null, "deprecation_date": null}, "model.qualtrics_source.stg_qualtrics__block": {"database": "postgres", "schema": "qualtrics_source_integration_tests_702_qualtrics_source", "name": "stg_qualtrics__block", "resource_type": "model", "package_name": "qualtrics_source", "path": "stg_qualtrics__block.sql", "original_file_path": "models/stg_qualtrics__block.sql", "unique_id": "model.qualtrics_source.stg_qualtrics__block", "fqn": ["qualtrics_source", "stg_qualtrics__block"], "alias": "stg_qualtrics__block", "checksum": {"name": "sha256", "checksum": "cd863a598c429db991f7b567006b2b67b9308f85076e6fefe77b1f89355f1c1b"}, "config": {"enabled": true, "alias": null, "schema": "qualtrics_source", "database": null, "tags": ["qualtrics", "fivetran_package", "staging"], "meta": {}, "group": null, "materialized": "table", "incremental_strategy": null, "persist_docs": {"relation": true, "columns": true}, "post-hook": [], "pre-hook": [], "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "on_configuration_change": "apply", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false, "alias_types": true}, "access": "protected"}, "tags": ["qualtrics", "fivetran_package", "staging"], "description": "Groups of questions, used to organize longer surveys and conditionally display sets of questions.", "columns": {"is_deleted": {"name": "is_deleted", "description": "Boolean representing whether the record was soft-deleted in Qualtrics.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "_fivetran_synced": {"name": "_fivetran_synced", "description": "The time when a record was last updated by Fivetran.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "is_locked": {"name": "is_locked", "description": "Boolean representing whether modification of the block and its contents is prevented.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "block_visibility": {"name": "block_visibility", "description": "Whether the questions in the block are 'collapsed' or 'expanded' by default.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "description": {"name": "description", "description": "Description given to the block.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "block_id": {"name": "block_id", "description": "The ID of the survey block. Match pattern = ^BL_[a-zA-Z0-9]{11,15}$", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "randomize_questions": {"name": "randomize_questions", "description": "If/how the block questions are randomized. Can be - `false` (no randomization), `RandomWithXPerPage` (randomize all and place X questions in each block), `RandomWithOnlyX` (randomly present only X out of the total questions), or `Advanced` (custom configuration)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "survey_id": {"name": "survey_id", "description": "The unique identifier for this survey. Match pattern = ^SV_[a-zA-Z0-9]{11,15}$", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "type": {"name": "type", "description": "Type of block. Can be `Trash`, `Default`, or `Standard`", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "source_relation": {"name": "source_relation", "description": "The schema or database this record came from if you are making use of the qualtrics_union_schemas or qualtrics_union_databases variables, respectively. Empty string if you are not using either of these variables to union together multiple Qualtrics connectors.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "qualtrics_source://models/stg_qualtrics.yml", "build_path": null, "deferred": false, "unrendered_config": {"tags": ["qualtrics", "fivetran_package", "staging"], "schema": "qualtrics_source", "materialized": "table", "persist_docs": {"relation": true, "columns": "{{ false if target.type in ['spark','databricks'] else true }}"}}, "created_at": 1714419376.471522, "relation_name": "\"postgres\".\"qualtrics_source_integration_tests_702_qualtrics_source\".\"stg_qualtrics__block\"", "raw_code": "with base as (\n\n select * \n from {{ ref('stg_qualtrics__block_tmp') }}\n),\n\nfields as (\n\n select\n {{\n fivetran_utils.fill_staging_columns(\n source_columns=adapter.get_columns_in_relation(ref('stg_qualtrics__block_tmp')),\n staging_columns=get_block_columns()\n )\n }}\n\n {{ fivetran_utils.source_relation(\n union_schema_variable='qualtrics_union_schemas', \n union_database_variable='qualtrics_union_databases') \n }}\n\n from base\n),\n\nfinal as (\n \n select \n block_locking as is_locked,\n block_visibility,\n description,\n id as block_id,\n randomize_questions,\n survey_id,\n type,\n _fivetran_deleted as is_deleted,\n _fivetran_synced,\n source_relation\n\n from fields\n)\n\nselect *\nfrom final", "language": "sql", "refs": [{"name": "stg_qualtrics__block_tmp", "package": null, "version": null}, {"name": "stg_qualtrics__block_tmp", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.qualtrics_source.get_block_columns", "macro.fivetran_utils.fill_staging_columns", "macro.fivetran_utils.source_relation"], "nodes": ["model.qualtrics_source.stg_qualtrics__block_tmp"]}, "compiled_path": "target/compiled/qualtrics_source/models/stg_qualtrics__block.sql", "compiled": true, "compiled_code": "with base as (\n\n select * \n from \"postgres\".\"qualtrics_source_integration_tests_702_qualtrics_source\".\"stg_qualtrics__block_tmp\"\n),\n\nfields as (\n\n select\n \n \n \n _fivetran_deleted\n \n as \n \n _fivetran_deleted\n \n, \n \n \n _fivetran_synced\n \n as \n \n _fivetran_synced\n \n, \n \n \n block_locking\n \n as \n \n block_locking\n \n, \n \n \n block_visibility\n \n as \n \n block_visibility\n \n, \n \n \n description\n \n as \n \n description\n \n, \n \n \n id\n \n as \n \n id\n \n, \n \n \n randomize_questions\n \n as \n \n randomize_questions\n \n, \n \n \n survey_id\n \n as \n \n survey_id\n \n, \n \n \n type\n \n as \n \n type\n \n\n\n\n\n \n\n\n, cast('' as TEXT) as source_relation\n\n\n\n\n from base\n),\n\nfinal as (\n \n select \n block_locking as is_locked,\n block_visibility,\n description,\n id as block_id,\n randomize_questions,\n survey_id,\n type,\n _fivetran_deleted as is_deleted,\n _fivetran_synced,\n source_relation\n\n from fields\n)\n\nselect *\nfrom final", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "alias_types": true, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null, "deprecation_date": null}, "model.qualtrics_source.stg_qualtrics__distribution": {"database": "postgres", "schema": "qualtrics_source_integration_tests_702_qualtrics_source", "name": "stg_qualtrics__distribution", "resource_type": "model", "package_name": "qualtrics_source", "path": "stg_qualtrics__distribution.sql", "original_file_path": "models/stg_qualtrics__distribution.sql", "unique_id": "model.qualtrics_source.stg_qualtrics__distribution", "fqn": ["qualtrics_source", "stg_qualtrics__distribution"], "alias": "stg_qualtrics__distribution", "checksum": {"name": "sha256", "checksum": "1ce7fa1b2aacfdbc380398459d2885374f031f58d73f009a6dbdc4fab4e3e576"}, "config": {"enabled": true, "alias": null, "schema": "qualtrics_source", "database": null, "tags": ["qualtrics", "fivetran_package", "staging"], "meta": {}, "group": null, "materialized": "table", "incremental_strategy": null, "persist_docs": {"relation": true, "columns": true}, "post-hook": [], "pre-hook": [], "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "on_configuration_change": "apply", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false, "alias_types": true}, "access": "protected"}, "tags": ["qualtrics", "fivetran_package", "staging"], "description": "Use distributions to reach out to contacts in the XM Directory platform, with or without a survey attached.", "columns": {"is_deleted": {"name": "is_deleted", "description": "Boolean representing whether the record was soft-deleted in Qualtrics.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "_fivetran_synced": {"name": "_fivetran_synced", "description": "The time when a record was last updated by Fivetran.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "created_at": {"name": "created_at", "description": "The creation date and time of the record, expressed as an ISO 8601 value.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "header_from_email": {"name": "header_from_email", "description": "Email from address.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "header_from_name": {"name": "header_from_name", "description": "Email from name.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "header_reply_to_email": {"name": "header_reply_to_email", "description": "Email reply-to address.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "header_subject": {"name": "header_subject", "description": "Email subject; text or message id (MS_).", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "distribution_id": {"name": "distribution_id", "description": "The unique Distribution ID.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "message_library_id": {"name": "message_library_id", "description": "Library ID of the message.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "message_id": {"name": "message_id", "description": "The ID for the desired library message.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "message_text": {"name": "message_text", "description": "Text of the message to send.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "last_modified_at": {"name": "last_modified_at", "description": "The point in time when the record was last modified.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "organization_id": {"name": "organization_id", "description": "ID of the organization/brand this record belongs to.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "owner_user_id": {"name": "owner_user_id", "description": "The unique identifier for a specific user who owns this.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "parent_distribution_id": {"name": "parent_distribution_id", "description": "The unique ID of the parent distribution.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "recipient_contact_id": {"name": "recipient_contact_id", "description": "The contact ID of the recipient. Can point to `directory_contact` or `core_contact`.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "recipient_library_id": {"name": "recipient_library_id", "description": "Library ID of the message.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "recipient_mailing_list_id": {"name": "recipient_mailing_list_id", "description": "The mailing list or contact group associated with the distribution(s). Can point to `directory_mailing_list` or `core_mailing_list`.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "recipient_sample_id": {"name": "recipient_sample_id", "description": "The ID for the desired sample. Can point to `directory_sample` or `core_sample` (not included in package).", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "request_status": {"name": "request_status", "description": "The distribution's status. States include `Pending` and `Done`. The Pending state is for email that is scheduled to be sent at a later time.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "request_type": {"name": "request_type", "description": "The distribution's type. Types include `Invite`, `Reminder`, and `ThankYou`.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "send_at": {"name": "send_at", "description": "The date and time the request will be or was sent (in ISO 8601 format). Note that this date and time could be in the future if the email distribution is scheduled to send after a delay.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "survey_link_expires_at": {"name": "survey_link_expires_at", "description": "The expiration date for the link associated with the survey distribution. Null if `request_type` != `Invite`.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "survey_link_type": {"name": "survey_link_type", "description": "The link type (`Individual`, `Anonymous`, or `Multiple`) for the link associated with the survey distribution. Null if `request_type` != `Invite`.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "survey_id": {"name": "survey_id", "description": "The unique survey ID. Will be non-null even if `request_type` != `Invite`.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "source_relation": {"name": "source_relation", "description": "The schema or database this record came from if you are making use of the qualtrics_union_schemas or qualtrics_union_databases variables, respectively. Empty string if you are not using either of these variables to union together multiple Qualtrics connectors.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "qualtrics_source://models/stg_qualtrics.yml", "build_path": null, "deferred": false, "unrendered_config": {"tags": ["qualtrics", "fivetran_package", "staging"], "schema": "qualtrics_source", "materialized": "table", "persist_docs": {"relation": true, "columns": "{{ false if target.type in ['spark','databricks'] else true }}"}}, "created_at": 1714419376.478901, "relation_name": "\"postgres\".\"qualtrics_source_integration_tests_702_qualtrics_source\".\"stg_qualtrics__distribution\"", "raw_code": "with base as (\n\n select * \n from {{ ref('stg_qualtrics__distribution_tmp') }}\n),\n\nfields as (\n\n select\n {{\n fivetran_utils.fill_staging_columns(\n source_columns=adapter.get_columns_in_relation(ref('stg_qualtrics__distribution_tmp')),\n staging_columns=get_distribution_columns()\n )\n }}\n\n {{ fivetran_utils.source_relation(\n union_schema_variable='qualtrics_union_schemas', \n union_database_variable='qualtrics_union_databases') \n }}\n \n from base\n),\n\nfinal as (\n \n select \n cast(created_date as {{ dbt.type_timestamp() }}) as created_at,\n header_from_email,\n header_from_name,\n header_reply_to_email,\n header_subject,\n id as distribution_id,\n message_library_id,\n message_message_id as message_id,\n message_message_text as message_text,\n cast(modified_date as {{ dbt.type_timestamp() }}) as last_modified_at,\n organization_id,\n owner_id as owner_user_id,\n parent_distribution_id,\n recipient_contact_id,\n recipient_library_id,\n recipient_mailing_list_id,\n recipient_sample_id,\n request_status,\n request_type,\n cast(send_date as {{ dbt.type_timestamp() }}) as send_at,\n cast(survey_link_expiration_date as {{ dbt.type_timestamp() }}) as survey_link_expires_at,\n survey_link_link_type as survey_link_type,\n survey_link_survey_id as survey_id,\n _fivetran_deleted as is_deleted,\n _fivetran_synced,\n source_relation\n\n {{ fivetran_utils.fill_pass_through_columns('qualtrics__distribution_pass_through_columns') }}\n\n from fields\n)\n\nselect *\nfrom final", "language": "sql", "refs": [{"name": "stg_qualtrics__distribution_tmp", "package": null, "version": null}, {"name": "stg_qualtrics__distribution_tmp", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.qualtrics_source.get_distribution_columns", "macro.fivetran_utils.fill_staging_columns", "macro.fivetran_utils.source_relation", "macro.dbt.type_timestamp", "macro.fivetran_utils.fill_pass_through_columns"], "nodes": ["model.qualtrics_source.stg_qualtrics__distribution_tmp"]}, "compiled_path": "target/compiled/qualtrics_source/models/stg_qualtrics__distribution.sql", "compiled": true, "compiled_code": "with base as (\n\n select * \n from \"postgres\".\"qualtrics_source_integration_tests_702_qualtrics_source\".\"stg_qualtrics__distribution_tmp\"\n),\n\nfields as (\n\n select\n \n \n \n _fivetran_deleted\n \n as \n \n _fivetran_deleted\n \n, \n \n \n _fivetran_synced\n \n as \n \n _fivetran_synced\n \n, \n \n \n created_date\n \n as \n \n created_date\n \n, \n \n \n header_from_email\n \n as \n \n header_from_email\n \n, \n \n \n header_from_name\n \n as \n \n header_from_name\n \n, \n \n \n header_reply_to_email\n \n as \n \n header_reply_to_email\n \n, \n \n \n header_subject\n \n as \n \n header_subject\n \n, \n \n \n id\n \n as \n \n id\n \n, \n \n \n message_library_id\n \n as \n \n message_library_id\n \n, \n \n \n message_message_id\n \n as \n \n message_message_id\n \n, \n \n \n message_message_text\n \n as \n \n message_message_text\n \n, \n \n \n modified_date\n \n as \n \n modified_date\n \n, \n \n \n organization_id\n \n as \n \n organization_id\n \n, \n \n \n owner_id\n \n as \n \n owner_id\n \n, \n \n \n parent_distribution_id\n \n as \n \n parent_distribution_id\n \n, \n \n \n recipient_contact_id\n \n as \n \n recipient_contact_id\n \n, \n \n \n recipient_library_id\n \n as \n \n recipient_library_id\n \n, \n \n \n recipient_mailing_list_id\n \n as \n \n recipient_mailing_list_id\n \n, \n \n \n recipient_sample_id\n \n as \n \n recipient_sample_id\n \n, \n \n \n request_status\n \n as \n \n request_status\n \n, \n \n \n request_type\n \n as \n \n request_type\n \n, \n \n \n send_date\n \n as \n \n send_date\n \n, \n \n \n survey_link_expiration_date\n \n as \n \n survey_link_expiration_date\n \n, \n \n \n survey_link_link_type\n \n as \n \n survey_link_link_type\n \n, \n \n \n survey_link_survey_id\n \n as \n \n survey_link_survey_id\n \n\n\n\n\n \n\n\n, cast('' as TEXT) as source_relation\n\n\n\n \n from base\n),\n\nfinal as (\n \n select \n cast(created_date as timestamp) as created_at,\n header_from_email,\n header_from_name,\n header_reply_to_email,\n header_subject,\n id as distribution_id,\n message_library_id,\n message_message_id as message_id,\n message_message_text as message_text,\n cast(modified_date as timestamp) as last_modified_at,\n organization_id,\n owner_id as owner_user_id,\n parent_distribution_id,\n recipient_contact_id,\n recipient_library_id,\n recipient_mailing_list_id,\n recipient_sample_id,\n request_status,\n request_type,\n cast(send_date as timestamp) as send_at,\n cast(survey_link_expiration_date as timestamp) as survey_link_expires_at,\n survey_link_link_type as survey_link_type,\n survey_link_survey_id as survey_id,\n _fivetran_deleted as is_deleted,\n _fivetran_synced,\n source_relation\n\n \n\n\n\n\n\n from fields\n)\n\nselect *\nfrom final", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "alias_types": true, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null, "deprecation_date": null}, "model.qualtrics_source.stg_qualtrics__core_contact": {"database": "postgres", "schema": "qualtrics_source_integration_tests_702_qualtrics_source", "name": "stg_qualtrics__core_contact", "resource_type": "model", "package_name": "qualtrics_source", "path": "stg_qualtrics__core_contact.sql", "original_file_path": "models/stg_qualtrics__core_contact.sql", "unique_id": "model.qualtrics_source.stg_qualtrics__core_contact", "fqn": ["qualtrics_source", "stg_qualtrics__core_contact"], "alias": "stg_qualtrics__core_contact", "checksum": {"name": "sha256", "checksum": "0d7c4b22f30fd1570c3c8a6f70369361624bf7267c54569e6c2c960fbaa5d1ad"}, "config": {"enabled": true, "alias": null, "schema": "qualtrics_source", "database": null, "tags": ["qualtrics", "fivetran_package", "staging"], "meta": {}, "group": null, "materialized": "table", "incremental_strategy": null, "persist_docs": {"relation": true, "columns": true}, "post-hook": [], "pre-hook": [], "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "on_configuration_change": "apply", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false, "alias_types": true}, "access": "protected"}, "tags": ["qualtrics", "fivetran_package", "staging"], "description": "Research Core contacts (non-XM directory).", "columns": {"_fivetran_synced": {"name": "_fivetran_synced", "description": "The time when a record was last updated by Fivetran.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "contact_id": {"name": "contact_id", "description": "Mailing List Contact ID (different from `contact_id`). ex: `MLRP_*`", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "mailing_list_id": {"name": "mailing_list_id", "description": "The ID for the mailing list.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "first_name": {"name": "first_name", "description": "Contact's first name.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "last_name": {"name": "last_name", "description": "Contact's surname.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "email": {"name": "email", "description": "Contact's email address. Must be in proper email format.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "external_data_reference": {"name": "external_data_reference", "description": "The external reference for the contact.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "language": {"name": "language", "description": "The user's default language.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "is_unsubscribed": {"name": "is_unsubscribed", "description": "Boolean indicating if the user unsubscribed.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "is_deleted": {"name": "is_deleted", "description": "Boolean representing whether the record was soft-deleted in Qualtrics.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "source_relation": {"name": "source_relation", "description": "The schema or database this record came from if you are making use of the qualtrics_union_schemas or qualtrics_union_databases variables, respectively. Empty string if you are not using either of these variables to union together multiple Qualtrics connectors.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "email_domain": {"name": "email_domain", "description": "Domain of the contact's email address.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "qualtrics_source://models/stg_qualtrics.yml", "build_path": null, "deferred": false, "unrendered_config": {"tags": ["qualtrics", "fivetran_package", "staging"], "schema": "qualtrics_source", "materialized": "table", "enabled": true, "persist_docs": {"relation": true, "columns": "{{ false if target.type in ['spark','databricks'] else true }}"}}, "created_at": 1714419376.4828181, "relation_name": "\"postgres\".\"qualtrics_source_integration_tests_702_qualtrics_source\".\"stg_qualtrics__core_contact\"", "raw_code": "{{ config(enabled=var('qualtrics__using_core_contacts', false)) }}\n\nwith base as (\n\n select * \n from {{ ref('stg_qualtrics__core_contact_tmp') }}\n),\n\nfields as (\n\n select\n {{\n fivetran_utils.fill_staging_columns(\n source_columns=adapter.get_columns_in_relation(ref('stg_qualtrics__core_contact_tmp')),\n staging_columns=get_core_contact_columns()\n )\n }}\n \n {{ fivetran_utils.source_relation(\n union_schema_variable='qualtrics_union_schemas', \n union_database_variable='qualtrics_union_databases') \n }}\n \n from base\n),\n\nfinal as (\n \n select \n id as contact_id,\n mailing_list_id,\n first_name,\n last_name,\n lower(email) as email,\n {{ dbt.split_part('email', \"'@'\", 2) }} as email_domain,\n external_data_reference,\n language,\n unsubscribed as is_unsubscribed,\n _fivetran_deleted as is_deleted,\n _fivetran_synced,\n source_relation\n\n {{ fivetran_utils.fill_pass_through_columns('qualtrics__core_contact_pass_through_columns') }}\n\n from fields\n)\n\nselect *\nfrom final", "language": "sql", "refs": [{"name": "stg_qualtrics__core_contact_tmp", "package": null, "version": null}, {"name": "stg_qualtrics__core_contact_tmp", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.qualtrics_source.get_core_contact_columns", "macro.fivetran_utils.fill_staging_columns", "macro.fivetran_utils.source_relation", "macro.dbt.split_part", "macro.fivetran_utils.fill_pass_through_columns"], "nodes": ["model.qualtrics_source.stg_qualtrics__core_contact_tmp"]}, "compiled_path": "target/compiled/qualtrics_source/models/stg_qualtrics__core_contact.sql", "compiled": true, "compiled_code": "\n\nwith base as (\n\n select * \n from \"postgres\".\"qualtrics_source_integration_tests_702_qualtrics_source\".\"stg_qualtrics__core_contact_tmp\"\n),\n\nfields as (\n\n select\n \n \n \n _fivetran_synced\n \n as \n \n _fivetran_synced\n \n, \n \n \n id\n \n as \n \n id\n \n, \n \n \n mailing_list_id\n \n as \n \n mailing_list_id\n \n, \n \n \n first_name\n \n as \n \n first_name\n \n, \n \n \n last_name\n \n as \n \n last_name\n \n, \n \n \n email\n \n as \n \n email\n \n, \n \n \n external_data_reference\n \n as \n \n external_data_reference\n \n, \n \n \n language\n \n as \n \n language\n \n, \n \n \n unsubscribed\n \n as \n \n unsubscribed\n \n, \n \n \n _fivetran_deleted\n \n as \n \n _fivetran_deleted\n \n\n\n\n \n \n\n\n, cast('' as TEXT) as source_relation\n\n\n\n \n from base\n),\n\nfinal as (\n \n select \n id as contact_id,\n mailing_list_id,\n first_name,\n last_name,\n lower(email) as email,\n \n\n \n \n\n split_part(\n email,\n '@',\n 2\n )\n\n\n \n\n as email_domain,\n external_data_reference,\n language,\n unsubscribed as is_unsubscribed,\n _fivetran_deleted as is_deleted,\n _fivetran_synced,\n source_relation\n\n \n\n\n\n\n\n from fields\n)\n\nselect *\nfrom final", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "alias_types": true, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null, "deprecation_date": null}, "model.qualtrics_source.stg_qualtrics__survey_embedded_data": {"database": "postgres", "schema": "qualtrics_source_integration_tests_702_qualtrics_source", "name": "stg_qualtrics__survey_embedded_data", "resource_type": "model", "package_name": "qualtrics_source", "path": "stg_qualtrics__survey_embedded_data.sql", "original_file_path": "models/stg_qualtrics__survey_embedded_data.sql", "unique_id": "model.qualtrics_source.stg_qualtrics__survey_embedded_data", "fqn": ["qualtrics_source", "stg_qualtrics__survey_embedded_data"], "alias": "stg_qualtrics__survey_embedded_data", "checksum": {"name": "sha256", "checksum": "f414470a3eeb52358ba7caf772f85b20b103f04e906d338f81985ec0892d14ac"}, "config": {"enabled": true, "alias": null, "schema": "qualtrics_source", "database": null, "tags": ["qualtrics", "fivetran_package", "staging"], "meta": {}, "group": null, "materialized": "table", "incremental_strategy": null, "persist_docs": {"relation": true, "columns": true}, "post-hook": [], "pre-hook": [], "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "on_configuration_change": "apply", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false, "alias_types": true}, "access": "protected"}, "tags": ["qualtrics", "fivetran_package", "staging"], "description": "Any extra information you would like recorded in addition to the question responses.", "columns": {"_fivetran_synced": {"name": "_fivetran_synced", "description": "The time when a record was last updated by Fivetran.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "import_id": {"name": "import_id", "description": "A unique identifier to recognize this import job of embedded survey data.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "key": {"name": "key", "description": "Key of the embedded survey data element.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "response_id": {"name": "response_id", "description": "The unique ID for the `SURVEY_RESPONSE`.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "value": {"name": "value", "description": "Key of the embedded survey data element.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "source_relation": {"name": "source_relation", "description": "The schema or database this record came from if you are making use of the qualtrics_union_schemas or qualtrics_union_databases variables, respectively. Empty string if you are not using either of these variables to union together multiple Qualtrics connectors.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "qualtrics_source://models/stg_qualtrics.yml", "build_path": null, "deferred": false, "unrendered_config": {"tags": ["qualtrics", "fivetran_package", "staging"], "schema": "qualtrics_source", "materialized": "table", "persist_docs": {"relation": true, "columns": "{{ false if target.type in ['spark','databricks'] else true }}"}}, "created_at": 1714419376.470068, "relation_name": "\"postgres\".\"qualtrics_source_integration_tests_702_qualtrics_source\".\"stg_qualtrics__survey_embedded_data\"", "raw_code": "with base as (\n\n select * \n from {{ ref('stg_qualtrics__survey_embedded_data_tmp') }}\n),\n\nfields as (\n\n select\n {{\n fivetran_utils.fill_staging_columns(\n source_columns=adapter.get_columns_in_relation(ref('stg_qualtrics__survey_embedded_data_tmp')),\n staging_columns=get_survey_embedded_data_columns()\n )\n }}\n\n {{ fivetran_utils.source_relation(\n union_schema_variable='qualtrics_union_schemas', \n union_database_variable='qualtrics_union_databases') \n }}\n \n from base\n),\n\nfinal as (\n \n select \n import_id,\n key,\n response_id,\n value,\n _fivetran_synced,\n source_relation\n \n from fields\n)\n\nselect *\nfrom final", "language": "sql", "refs": [{"name": "stg_qualtrics__survey_embedded_data_tmp", "package": null, "version": null}, {"name": "stg_qualtrics__survey_embedded_data_tmp", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.qualtrics_source.get_survey_embedded_data_columns", "macro.fivetran_utils.fill_staging_columns", "macro.fivetran_utils.source_relation"], "nodes": ["model.qualtrics_source.stg_qualtrics__survey_embedded_data_tmp"]}, "compiled_path": "target/compiled/qualtrics_source/models/stg_qualtrics__survey_embedded_data.sql", "compiled": true, "compiled_code": "with base as (\n\n select * \n from \"postgres\".\"qualtrics_source_integration_tests_702_qualtrics_source\".\"stg_qualtrics__survey_embedded_data_tmp\"\n),\n\nfields as (\n\n select\n \n \n \n _fivetran_synced\n \n as \n \n _fivetran_synced\n \n, \n \n \n import_id\n \n as \n \n import_id\n \n, \n \n \n key\n \n as \n \n key\n \n, \n \n \n response_id\n \n as \n \n response_id\n \n, \n \n \n value\n \n as \n \n value\n \n\n\n\n\n \n\n\n, cast('' as TEXT) as source_relation\n\n\n\n \n from base\n),\n\nfinal as (\n \n select \n import_id,\n key,\n response_id,\n value,\n _fivetran_synced,\n source_relation\n \n from fields\n)\n\nselect *\nfrom final", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "alias_types": true, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null, "deprecation_date": null}, "model.qualtrics_source.stg_qualtrics__survey_response": {"database": "postgres", "schema": "qualtrics_source_integration_tests_702_qualtrics_source", "name": "stg_qualtrics__survey_response", "resource_type": "model", "package_name": "qualtrics_source", "path": "stg_qualtrics__survey_response.sql", "original_file_path": "models/stg_qualtrics__survey_response.sql", "unique_id": "model.qualtrics_source.stg_qualtrics__survey_response", "fqn": ["qualtrics_source", "stg_qualtrics__survey_response"], "alias": "stg_qualtrics__survey_response", "checksum": {"name": "sha256", "checksum": "d73839628a21968e590d801a880300ac2ffbe8a424226b0ac9d8dbc437e37f19"}, "config": {"enabled": true, "alias": null, "schema": "qualtrics_source", "database": null, "tags": ["qualtrics", "fivetran_package", "staging"], "meta": {}, "group": null, "materialized": "table", "incremental_strategy": null, "persist_docs": {"relation": true, "columns": true}, "post-hook": [], "pre-hook": [], "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "on_configuration_change": "apply", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false, "alias_types": true}, "access": "protected"}, "tags": ["qualtrics", "fivetran_package", "staging"], "description": "Individual responses to surveys. A response becomes \"recorded\" when a respondent submits a survey, a survey is manually closed from the Responses in Progress page, or a survey session expires.\n", "columns": {"_fivetran_synced": {"name": "_fivetran_synced", "description": "The time when a record was last updated by Fivetran.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "distribution_channel": {"name": "distribution_channel", "description": "The method by which the survey was distributed to respondents.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "duration_in_seconds": {"name": "duration_in_seconds", "description": "How long it took for the respondent to finish the survey in seconds.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "finished_at": {"name": "finished_at", "description": "The point in time when the survey response was finished.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "is_finished": {"name": "is_finished", "description": "Boolean (stored as int) indicating if the respondent finished and submitted the survey, the value will be 1, otherwise it will be 0.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "response_id": {"name": "response_id", "description": "The unique ID for the `SURVEY_RESPONSE`.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "ip_address": {"name": "ip_address", "description": "IP address of the recipient.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "last_modified_at": {"name": "last_modified_at", "description": "The point in time when the record was last modified.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "location_latitude": {"name": "location_latitude", "description": "The approximate location of the respondent at the time the survey was taken.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "location_longitude": {"name": "location_longitude", "description": "The approximate location of the respondent at the time the survey was taken.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "progress": {"name": "progress", "description": "How far the respondent has progressed through the survey as a percentage out of 100.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "recipient_email": {"name": "recipient_email", "description": "Email of the [recipient](https://api.qualtrics.com/ZG9jOjg3NzY2OQ-getting-information-about-distributions#the-recipients-object) if they are a single recipient (not a mailing list or sample).", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "recipient_first_name": {"name": "recipient_first_name", "description": "First name of the [recipient](https://api.qualtrics.com/ZG9jOjg3NzY2OQ-getting-information-about-distributions#the-recipients-object) if they are a single recipient (not a mailing list or sample).", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "recipient_last_name": {"name": "recipient_last_name", "description": "Last name of the [recipient](https://api.qualtrics.com/ZG9jOjg3NzY2OQ-getting-information-about-distributions#the-recipients-object) if they are a single recipient (not a mailing list or sample).", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "recorded_date": {"name": "recorded_date", "description": "The point in time when the survey response was recorded.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "started_at": {"name": "started_at", "description": "The point in time when the survey response was recorded.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "status": {"name": "status", "description": "The type of response.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "survey_id": {"name": "survey_id", "description": "The unique identifier for this survey. Match pattern = ^SV_[a-zA-Z0-9]{11,15}$", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "user_language": {"name": "user_language", "description": "The language of the respondent.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "source_relation": {"name": "source_relation", "description": "The schema or database this record came from if you are making use of the qualtrics_union_schemas or qualtrics_union_databases variables, respectively. Empty string if you are not using either of these variables to union together multiple Qualtrics connectors.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "qualtrics_source://models/stg_qualtrics.yml", "build_path": null, "deferred": false, "unrendered_config": {"tags": ["qualtrics", "fivetran_package", "staging"], "schema": "qualtrics_source", "materialized": "table", "persist_docs": {"relation": true, "columns": "{{ false if target.type in ['spark','databricks'] else true }}"}}, "created_at": 1714419376.467235, "relation_name": "\"postgres\".\"qualtrics_source_integration_tests_702_qualtrics_source\".\"stg_qualtrics__survey_response\"", "raw_code": "with base as (\n\n select * \n from {{ ref('stg_qualtrics__survey_response_tmp') }}\n),\n\nfields as (\n\n select\n {{\n fivetran_utils.fill_staging_columns(\n source_columns=adapter.get_columns_in_relation(ref('stg_qualtrics__survey_response_tmp')),\n staging_columns=get_survey_response_columns()\n )\n }}\n\n {{ fivetran_utils.source_relation(\n union_schema_variable='qualtrics_union_schemas', \n union_database_variable='qualtrics_union_databases') \n }}\n \n from base\n),\n\nfinal as (\n \n select \n distribution_channel,\n duration_in_seconds,\n cast(end_date as {{ dbt.type_timestamp() }}) as finished_at,\n cast(case when finished = 1 then true else false end as {{ dbt.type_boolean() }}) as is_finished,\n id as response_id,\n ip_address,\n cast(last_modified_date as {{ dbt.type_timestamp() }}) as last_modified_at,\n location_latitude,\n location_longitude,\n progress,\n lower(recipient_email) as recipient_email,\n recipient_first_name,\n recipient_last_name,\n cast(recorded_date as {{ dbt.type_timestamp() }}) as recorded_date,\n cast(start_date as {{ dbt.type_timestamp() }}) as started_at,\n status,\n survey_id,\n user_language,\n _fivetran_synced,\n source_relation\n \n from fields\n)\n\nselect *\nfrom final", "language": "sql", "refs": [{"name": "stg_qualtrics__survey_response_tmp", "package": null, "version": null}, {"name": "stg_qualtrics__survey_response_tmp", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.qualtrics_source.get_survey_response_columns", "macro.fivetran_utils.fill_staging_columns", "macro.fivetran_utils.source_relation", "macro.dbt.type_timestamp", "macro.dbt.type_boolean"], "nodes": ["model.qualtrics_source.stg_qualtrics__survey_response_tmp"]}, "compiled_path": "target/compiled/qualtrics_source/models/stg_qualtrics__survey_response.sql", "compiled": true, "compiled_code": "with base as (\n\n select * \n from \"postgres\".\"qualtrics_source_integration_tests_702_qualtrics_source\".\"stg_qualtrics__survey_response_tmp\"\n),\n\nfields as (\n\n select\n \n \n \n _fivetran_synced\n \n as \n \n _fivetran_synced\n \n, \n \n \n distribution_channel\n \n as \n \n distribution_channel\n \n, \n \n \n duration_in_seconds\n \n as \n \n duration_in_seconds\n \n, \n \n \n end_date\n \n as \n \n end_date\n \n, \n \n \n finished\n \n as \n \n finished\n \n, \n \n \n id\n \n as \n \n id\n \n, \n \n \n ip_address\n \n as \n \n ip_address\n \n, \n \n \n last_modified_date\n \n as \n \n last_modified_date\n \n, \n \n \n location_latitude\n \n as \n \n location_latitude\n \n, \n \n \n location_longitude\n \n as \n \n location_longitude\n \n, \n \n \n progress\n \n as \n \n progress\n \n, \n \n \n recipient_email\n \n as \n \n recipient_email\n \n, \n \n \n recipient_first_name\n \n as \n \n recipient_first_name\n \n, \n \n \n recipient_last_name\n \n as \n \n recipient_last_name\n \n, \n \n \n recorded_date\n \n as \n \n recorded_date\n \n, \n \n \n start_date\n \n as \n \n start_date\n \n, \n \n \n status\n \n as \n \n status\n \n, \n \n \n survey_id\n \n as \n \n survey_id\n \n, \n \n \n user_language\n \n as \n \n user_language\n \n\n\n\n\n \n\n\n, cast('' as TEXT) as source_relation\n\n\n\n \n from base\n),\n\nfinal as (\n \n select \n distribution_channel,\n duration_in_seconds,\n cast(end_date as timestamp) as finished_at,\n cast(case when finished = 1 then true else false end as boolean) as is_finished,\n id as response_id,\n ip_address,\n cast(last_modified_date as timestamp) as last_modified_at,\n location_latitude,\n location_longitude,\n progress,\n lower(recipient_email) as recipient_email,\n recipient_first_name,\n recipient_last_name,\n cast(recorded_date as timestamp) as recorded_date,\n cast(start_date as timestamp) as started_at,\n status,\n survey_id,\n user_language,\n _fivetran_synced,\n source_relation\n \n from fields\n)\n\nselect *\nfrom final", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "alias_types": true, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null, "deprecation_date": null}, "model.qualtrics_source.stg_qualtrics__user": {"database": "postgres", "schema": "qualtrics_source_integration_tests_702_qualtrics_source", "name": "stg_qualtrics__user", "resource_type": "model", "package_name": "qualtrics_source", "path": "stg_qualtrics__user.sql", "original_file_path": "models/stg_qualtrics__user.sql", "unique_id": "model.qualtrics_source.stg_qualtrics__user", "fqn": ["qualtrics_source", "stg_qualtrics__user"], "alias": "stg_qualtrics__user", "checksum": {"name": "sha256", "checksum": "5a71bf6930670052f8d6924fdc902a2854badfa5f8f4b045c672016bb86b4c26"}, "config": {"enabled": true, "alias": null, "schema": "qualtrics_source", "database": null, "tags": ["qualtrics", "fivetran_package", "staging"], "meta": {}, "group": null, "materialized": "table", "incremental_strategy": null, "persist_docs": {"relation": true, "columns": true}, "post-hook": [], "pre-hook": [], "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "on_configuration_change": "apply", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false, "alias_types": true}, "access": "protected"}, "tags": ["qualtrics", "fivetran_package", "staging"], "description": "These are the users in your organizations, not the contacts for whom you are building content like surveys and messages.", "columns": {"is_deleted": {"name": "is_deleted", "description": "Boolean representing whether the record was soft-deleted in Qualtrics.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "_fivetran_synced": {"name": "_fivetran_synced", "description": "The time when a record was last updated by Fivetran.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "account_created_at": {"name": "account_created_at", "description": "The date and time that the account was created. Dates and times are expressed in ISO 8601 format.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "account_expires_at": {"name": "account_expires_at", "description": "The date the account expires. Dates and times are expressed in ISO 8601 format.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "account_status": {"name": "account_status", "description": "Either `active`, `disabled`, or `notVerified`.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "division_id": {"name": "division_id", "description": "The unique identifier for the Division ID. Match pattern = ^DV_[0-9a-zA-Z]{11,15}$", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "email": {"name": "email", "description": "The user's email address.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "first_name": {"name": "first_name", "description": "The user's first name or given name.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "user_id": {"name": "user_id", "description": "Unique ID of the user. Match pattern = ^((UR)|(URH))_[0-9a-zA-Z]{11,15}$", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "language": {"name": "language", "description": "The user's default language.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "last_login_at": {"name": "last_login_at", "description": "The date and time the user last logged into the user interface. Dates and times are expressed in ISO 8601 format.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "last_name": {"name": "last_name", "description": "User's surname.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "organization_id": {"name": "organization_id", "description": "ID of the organization/brand this record belongs to.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "password_expires_at": {"name": "password_expires_at", "description": "The date the account password expires. Dates and times are expressed in ISO 8601 format.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "password_last_changed_at": {"name": "password_last_changed_at", "description": "The date the account password was last changed. Dates and times are expressed in ISO 8601 format.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "response_count_auditable": {"name": "response_count_auditable", "description": "The count of auditable responses.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "response_count_deleted": {"name": "response_count_deleted", "description": "The count of deleted responses.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "response_count_generated": {"name": "response_count_generated", "description": "The count of generated responses.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "time_zone": {"name": "time_zone", "description": "The IANA time zone setting for the user.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "is_unsubscribed": {"name": "is_unsubscribed", "description": "Boolean indicating if the user unsubscribed.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "user_type": {"name": "user_type", "description": "ID of the user type. See mappings of user types to their type IDs [here](https://api.qualtrics.com/dc2be1c61af61-user-type).", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "username": {"name": "username", "description": "UI-facing username for the account.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "source_relation": {"name": "source_relation", "description": "The schema or database this record came from if you are making use of the qualtrics_union_schemas or qualtrics_union_databases variables, respectively. Empty string if you are not using either of these variables to union together multiple Qualtrics connectors.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "qualtrics_source://models/stg_qualtrics.yml", "build_path": null, "deferred": false, "unrendered_config": {"tags": ["qualtrics", "fivetran_package", "staging"], "schema": "qualtrics_source", "materialized": "table", "persist_docs": {"relation": true, "columns": "{{ false if target.type in ['spark','databricks'] else true }}"}}, "created_at": 1714419376.452972, "relation_name": "\"postgres\".\"qualtrics_source_integration_tests_702_qualtrics_source\".\"stg_qualtrics__user\"", "raw_code": "with base as (\n\n select * \n from {{ ref('stg_qualtrics__user_tmp') }}\n),\n\nfields as (\n\n select\n {{\n fivetran_utils.fill_staging_columns(\n source_columns=adapter.get_columns_in_relation(ref('stg_qualtrics__user_tmp')),\n staging_columns=get_user_columns()\n )\n }}\n\n {{ fivetran_utils.source_relation(\n union_schema_variable='qualtrics_union_schemas', \n union_database_variable='qualtrics_union_databases') \n }}\n \n from base\n),\n\nfinal as (\n \n select \n cast(account_creation_date as {{ dbt.type_timestamp() }}) as account_created_at,\n cast(account_expiration_date as {{ dbt.type_timestamp() }}) as account_expires_at,\n account_status,\n division_id,\n email,\n first_name,\n id as user_id,\n language,\n cast(last_login_date as {{ dbt.type_timestamp() }}) as last_login_at,\n last_name,\n organization_id,\n cast(password_expiration_date as {{ dbt.type_timestamp() }}) as password_expires_at,\n cast(password_last_changed_date as {{ dbt.type_timestamp() }}) as password_last_changed_at,\n response_count_auditable,\n response_count_deleted,\n response_count_generated,\n time_zone,\n unsubscribed as is_unsubscribed,\n user_type,\n username,\n _fivetran_deleted as is_deleted,\n _fivetran_synced,\n source_relation\n from fields\n)\n\nselect *\nfrom final", "language": "sql", "refs": [{"name": "stg_qualtrics__user_tmp", "package": null, "version": null}, {"name": "stg_qualtrics__user_tmp", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.qualtrics_source.get_user_columns", "macro.fivetran_utils.fill_staging_columns", "macro.fivetran_utils.source_relation", "macro.dbt.type_timestamp"], "nodes": ["model.qualtrics_source.stg_qualtrics__user_tmp"]}, "compiled_path": "target/compiled/qualtrics_source/models/stg_qualtrics__user.sql", "compiled": true, "compiled_code": "with base as (\n\n select * \n from \"postgres\".\"qualtrics_source_integration_tests_702_qualtrics_source\".\"stg_qualtrics__user_tmp\"\n),\n\nfields as (\n\n select\n \n \n \n _fivetran_deleted\n \n as \n \n _fivetran_deleted\n \n, \n \n \n _fivetran_synced\n \n as \n \n _fivetran_synced\n \n, \n \n \n account_creation_date\n \n as \n \n account_creation_date\n \n, \n \n \n account_expiration_date\n \n as \n \n account_expiration_date\n \n, \n \n \n account_status\n \n as \n \n account_status\n \n, \n \n \n division_id\n \n as \n \n division_id\n \n, \n \n \n email\n \n as \n \n email\n \n, \n \n \n first_name\n \n as \n \n first_name\n \n, \n \n \n id\n \n as \n \n id\n \n, \n \n \n language\n \n as \n \n language\n \n, \n \n \n last_login_date\n \n as \n \n last_login_date\n \n, \n \n \n last_name\n \n as \n \n last_name\n \n, \n \n \n organization_id\n \n as \n \n organization_id\n \n, \n \n \n password_expiration_date\n \n as \n \n password_expiration_date\n \n, \n \n \n password_last_changed_date\n \n as \n \n password_last_changed_date\n \n, \n \n \n response_count_auditable\n \n as \n \n response_count_auditable\n \n, \n \n \n response_count_deleted\n \n as \n \n response_count_deleted\n \n, \n \n \n response_count_generated\n \n as \n \n response_count_generated\n \n, \n \n \n time_zone\n \n as \n \n time_zone\n \n, \n \n \n unsubscribed\n \n as \n \n unsubscribed\n \n, \n \n \n user_type\n \n as \n \n user_type\n \n, \n \n \n username\n \n as \n \n username\n \n\n\n\n\n \n\n\n, cast('' as TEXT) as source_relation\n\n\n\n \n from base\n),\n\nfinal as (\n \n select \n cast(account_creation_date as timestamp) as account_created_at,\n cast(account_expiration_date as timestamp) as account_expires_at,\n account_status,\n division_id,\n email,\n first_name,\n id as user_id,\n language,\n cast(last_login_date as timestamp) as last_login_at,\n last_name,\n organization_id,\n cast(password_expiration_date as timestamp) as password_expires_at,\n cast(password_last_changed_date as timestamp) as password_last_changed_at,\n response_count_auditable,\n response_count_deleted,\n response_count_generated,\n time_zone,\n unsubscribed as is_unsubscribed,\n user_type,\n username,\n _fivetran_deleted as is_deleted,\n _fivetran_synced,\n source_relation\n from fields\n)\n\nselect *\nfrom final", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "alias_types": true, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null, "deprecation_date": null}, "model.qualtrics_source.stg_qualtrics__core_mailing_list": {"database": "postgres", "schema": "qualtrics_source_integration_tests_702_qualtrics_source", "name": "stg_qualtrics__core_mailing_list", "resource_type": "model", "package_name": "qualtrics_source", "path": "stg_qualtrics__core_mailing_list.sql", "original_file_path": "models/stg_qualtrics__core_mailing_list.sql", "unique_id": "model.qualtrics_source.stg_qualtrics__core_mailing_list", "fqn": ["qualtrics_source", "stg_qualtrics__core_mailing_list"], "alias": "stg_qualtrics__core_mailing_list", "checksum": {"name": "sha256", "checksum": "c17c8dbc0801d75d8438170c71c21cba126d2dbb28fcf278d776b6b8cd2fbe81"}, "config": {"enabled": true, "alias": null, "schema": "qualtrics_source", "database": null, "tags": ["qualtrics", "fivetran_package", "staging"], "meta": {}, "group": null, "materialized": "table", "incremental_strategy": null, "persist_docs": {"relation": true, "columns": true}, "post-hook": [], "pre-hook": [], "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "on_configuration_change": "apply", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false, "alias_types": true}, "access": "protected"}, "tags": ["qualtrics", "fivetran_package", "staging"], "description": "Research Core mailing list (non xm-directory).", "columns": {"is_deleted": {"name": "is_deleted", "description": "Boolean representing whether the record was soft-deleted in Qualtrics.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "_fivetran_synced": {"name": "_fivetran_synced", "description": "The time when a record was last updated by Fivetran.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "mailing_list_id": {"name": "mailing_list_id", "description": "The ID for the mailing list.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "library_id": {"name": "library_id", "description": "The library ID. Example: `UR_1234567890AbCdE`", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "name": {"name": "name", "description": "Name of the mailing list.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "category": {"name": "category", "description": "The library ID. Example: `UR_1234567890AbCdE`", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "folder": {"name": "folder", "description": "The folder this is placed in.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "source_relation": {"name": "source_relation", "description": "The schema or database this record came from if you are making use of the qualtrics_union_schemas or qualtrics_union_databases variables, respectively. Empty string if you are not using either of these variables to union together multiple Qualtrics connectors.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "qualtrics_source://models/stg_qualtrics.yml", "build_path": null, "deferred": false, "unrendered_config": {"tags": ["qualtrics", "fivetran_package", "staging"], "schema": "qualtrics_source", "materialized": "table", "enabled": true, "persist_docs": {"relation": true, "columns": "{{ false if target.type in ['spark','databricks'] else true }}"}}, "created_at": 1714419376.483742, "relation_name": "\"postgres\".\"qualtrics_source_integration_tests_702_qualtrics_source\".\"stg_qualtrics__core_mailing_list\"", "raw_code": "{{ config(enabled=var('qualtrics__using_core_mailing_lists', false)) }}\n\nwith base as (\n\n select * \n from {{ ref('stg_qualtrics__core_mailing_list_tmp') }}\n),\n\nfields as (\n\n select\n {{\n fivetran_utils.fill_staging_columns(\n source_columns=adapter.get_columns_in_relation(ref('stg_qualtrics__core_mailing_list_tmp')),\n staging_columns=get_core_mailing_list_columns()\n )\n }}\n\n {{ fivetran_utils.source_relation(\n union_schema_variable='qualtrics_union_schemas', \n union_database_variable='qualtrics_union_databases') \n }}\n \n from base\n),\n\nfinal as (\n \n select \n id as mailing_list_id,\n library_id,\n name,\n category,\n folder,\n _fivetran_deleted as is_deleted,\n _fivetran_synced,\n source_relation\n\n from fields\n)\n\nselect *\nfrom final", "language": "sql", "refs": [{"name": "stg_qualtrics__core_mailing_list_tmp", "package": null, "version": null}, {"name": "stg_qualtrics__core_mailing_list_tmp", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.qualtrics_source.get_core_mailing_list_columns", "macro.fivetran_utils.fill_staging_columns", "macro.fivetran_utils.source_relation"], "nodes": ["model.qualtrics_source.stg_qualtrics__core_mailing_list_tmp"]}, "compiled_path": "target/compiled/qualtrics_source/models/stg_qualtrics__core_mailing_list.sql", "compiled": true, "compiled_code": "\n\nwith base as (\n\n select * \n from \"postgres\".\"qualtrics_source_integration_tests_702_qualtrics_source\".\"stg_qualtrics__core_mailing_list_tmp\"\n),\n\nfields as (\n\n select\n \n \n \n _fivetran_deleted\n \n as \n \n _fivetran_deleted\n \n, \n \n \n _fivetran_synced\n \n as \n \n _fivetran_synced\n \n, \n \n \n id\n \n as \n \n id\n \n, \n \n \n library_id\n \n as \n \n library_id\n \n, \n \n \n name\n \n as \n \n name\n \n, \n \n \n category\n \n as \n \n category\n \n, \n \n \n folder\n \n as \n \n folder\n \n\n\n\n\n \n\n\n, cast('' as TEXT) as source_relation\n\n\n\n \n from base\n),\n\nfinal as (\n \n select \n id as mailing_list_id,\n library_id,\n name,\n category,\n folder,\n _fivetran_deleted as is_deleted,\n _fivetran_synced,\n source_relation\n\n from fields\n)\n\nselect *\nfrom final", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "alias_types": true, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null, "deprecation_date": null}, "model.qualtrics_source.stg_qualtrics__question": {"database": "postgres", "schema": "qualtrics_source_integration_tests_702_qualtrics_source", "name": "stg_qualtrics__question", "resource_type": "model", "package_name": "qualtrics_source", "path": "stg_qualtrics__question.sql", "original_file_path": "models/stg_qualtrics__question.sql", "unique_id": "model.qualtrics_source.stg_qualtrics__question", "fqn": ["qualtrics_source", "stg_qualtrics__question"], "alias": "stg_qualtrics__question", "checksum": {"name": "sha256", "checksum": "ec8c895c4dbafa5d536bcc7713eb26f718794c2052787ed2284fa23cb25f72ee"}, "config": {"enabled": true, "alias": null, "schema": "qualtrics_source", "database": null, "tags": ["qualtrics", "fivetran_package", "staging"], "meta": {}, "group": null, "materialized": "table", "incremental_strategy": null, "persist_docs": {"relation": true, "columns": true}, "post-hook": [], "pre-hook": [], "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "on_configuration_change": "apply", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false, "alias_types": true}, "access": "protected"}, "tags": ["qualtrics", "fivetran_package", "staging"], "description": "Questions within a survey.", "columns": {"is_deleted": {"name": "is_deleted", "description": "Boolean representing whether the record was soft-deleted in Qualtrics.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "_fivetran_synced": {"name": "_fivetran_synced", "description": "The time when a record was last updated by Fivetran.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "data_export_tag": {"name": "data_export_tag", "description": "The tag to identify the question in exported data.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "is_data_hidden": {"name": "is_data_hidden", "description": "Boolean that represents whether the embedded data is hidden.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "is_data_private": {"name": "is_data_private", "description": "Boolean that represents whether the embedded data is private.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "question_id": {"name": "question_id", "description": "The unique identifier for the question. Match pattern = ^QID[a-zA-Z0-9]+$", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "next_answer_id": {"name": "next_answer_id", "description": "For Matrix questions, the vertical options are denoted as \"Answers\" in the question's structure. \nID of the next answer for this question. ?", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "next_choice_id": {"name": "next_choice_id", "description": "For Matrix questions, the horizontal options are denoted as \"Choices\" in the question's structure. \n\nID of the next choice for this question. ?", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "question_description": {"name": "question_description", "description": "Label to identify the question.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "question_description_option": {"name": "question_description_option", "description": "An optional user-provided field for question descriptions. Accepted values = `UseText`, `SpecifyLabel`", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "question_text": {"name": "question_text", "description": "Text for the question.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "question_text_unsafe": {"name": "question_text_unsafe", "description": "Un-paresed version of the question text.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "question_type": {"name": "question_type", "description": "The type of question. Can be -\n`MC`,`Matrix`,`Captcha`,`CS`,`DB`,`DD`,`Draw`,`DynamicMatrix`,`FileUpload`,`GAP`,`HeatMap`,`HL`,`HotSpot`,`Meta`,`PGR`,`RO`,`SBS`,`Slider`,`SS`,`TE`,`Timing`,`TreeSelect`", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "selector": {"name": "selector", "description": "How answers are selected such as single answer, multiple answer, etc. Accepted values - \n- `Bipolar`\n- `Browser`\n- `Captcha`\n- `CompactView`\n- `CS`\n- `D`\n- `DL`\n- `DND`\n- `DragAndDrop`\n- `ESTB`\n- `FORM`\n- `FileUpload`\n- `GRB`\n- `HBAR`\n- `HR`\n- `HSLIDER`\n- `I`\n- `Image`\n- `LikeDislike`\n- `Likert`\n- `MACOL`\n- `MAHR`\n- `MAVR`\n- `ML`\n- `MSB`\n- `MaxDiff`\n- `NPS`\n- `OH`\n- `OnOff`\n- `POS`\n- `PTB`\n- `PW`\n- `PageTimer`\n- `Profile`\n- `RB`\n- `RO`\n- `SACOL`\n- `SAHR`\n- `SAVR`\n- `SB`\n- `SBSMatrix`\n- `SL`\n- `STAR`\n- `ScreenCapture`\n- `SearchOnly`\n- `Signature`\n- `TA`\n- `TB`\n- `TBelow`\n- `TE`\n- `TL`\n- `TRight`\n- `Text`\n- `V1`\n- `V2`\n- `VR`\n- `VRTL`\n- `WTXB`", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "sub_selector": {"name": "sub_selector", "description": "How subquestion answers are selected. Allowed values - SingleAnswer, DL, GR, DND, Long, Medium, MultipleAnswer, Columns, NoColumns, Short, TX, TXOT, WOTXB, WOTB, WTB, WTXB, WVTB.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "survey_id": {"name": "survey_id", "description": "The unique identifier for this survey. Match pattern = ^SV_[a-zA-Z0-9]{11,15}$", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "validation_setting_force_response": {"name": "validation_setting_force_response", "description": "The response from forcing respondents to answer a question or request that they consider answering the question before leaving the page", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "validation_setting_force_response_type": {"name": "validation_setting_force_response_type", "description": "The type of response from forcing respondents to answer a question or request that they consider answering the question before leaving the page", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "validation_setting_type": {"name": "validation_setting_type", "description": "The type of forced response validation that is set.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "source_relation": {"name": "source_relation", "description": "The schema or database this record came from if you are making use of the qualtrics_union_schemas or qualtrics_union_databases variables, respectively. Empty string if you are not using either of these variables to union together multiple Qualtrics connectors.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "qualtrics_source://models/stg_qualtrics.yml", "build_path": null, "deferred": false, "unrendered_config": {"tags": ["qualtrics", "fivetran_package", "staging"], "schema": "qualtrics_source", "materialized": "table", "persist_docs": {"relation": true, "columns": "{{ false if target.type in ['spark','databricks'] else true }}"}}, "created_at": 1714419376.4608278, "relation_name": "\"postgres\".\"qualtrics_source_integration_tests_702_qualtrics_source\".\"stg_qualtrics__question\"", "raw_code": "with base as (\n\n select * \n from {{ ref('stg_qualtrics__question_tmp') }}\n),\n\nfields as (\n\n select\n {{\n fivetran_utils.fill_staging_columns(\n source_columns=adapter.get_columns_in_relation(ref('stg_qualtrics__question_tmp')),\n staging_columns=get_question_columns()\n )\n }}\n\n {{ fivetran_utils.source_relation(\n union_schema_variable='qualtrics_union_schemas', \n union_database_variable='qualtrics_union_databases') \n }}\n \n from base\n),\n\nfinal as (\n \n select \n data_export_tag,\n data_visibility_hidden as is_data_hidden,\n data_visibility_private as is_data_private,\n id as question_id,\n next_answer_id,\n next_choice_id,\n question_description,\n question_description_option,\n question_text,\n question_text_unsafe,\n question_type,\n selector,\n sub_selector,\n survey_id,\n validation_setting_force_response,\n validation_setting_force_response_type,\n validation_setting_type,\n _fivetran_deleted as is_deleted,\n _fivetran_synced,\n source_relation\n from fields\n)\n\nselect *\nfrom final", "language": "sql", "refs": [{"name": "stg_qualtrics__question_tmp", "package": null, "version": null}, {"name": "stg_qualtrics__question_tmp", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.qualtrics_source.get_question_columns", "macro.fivetran_utils.fill_staging_columns", "macro.fivetran_utils.source_relation"], "nodes": ["model.qualtrics_source.stg_qualtrics__question_tmp"]}, "compiled_path": "target/compiled/qualtrics_source/models/stg_qualtrics__question.sql", "compiled": true, "compiled_code": "with base as (\n\n select * \n from \"postgres\".\"qualtrics_source_integration_tests_702_qualtrics_source\".\"stg_qualtrics__question_tmp\"\n),\n\nfields as (\n\n select\n \n \n \n _fivetran_deleted\n \n as \n \n _fivetran_deleted\n \n, \n \n \n _fivetran_synced\n \n as \n \n _fivetran_synced\n \n, \n \n \n data_export_tag\n \n as \n \n data_export_tag\n \n, \n \n \n data_visibility_hidden\n \n as \n \n data_visibility_hidden\n \n, \n \n \n data_visibility_private\n \n as \n \n data_visibility_private\n \n, \n \n \n id\n \n as \n \n id\n \n, \n \n \n next_answer_id\n \n as \n \n next_answer_id\n \n, \n \n \n next_choice_id\n \n as \n \n next_choice_id\n \n, \n \n \n question_description\n \n as \n \n question_description\n \n, \n \n \n question_description_option\n \n as \n \n question_description_option\n \n, \n \n \n question_text\n \n as \n \n question_text\n \n, \n \n \n question_text_unsafe\n \n as \n \n question_text_unsafe\n \n, \n \n \n question_type\n \n as \n \n question_type\n \n, \n \n \n selector\n \n as \n \n selector\n \n, \n \n \n sub_selector\n \n as \n \n sub_selector\n \n, \n \n \n survey_id\n \n as \n \n survey_id\n \n, \n \n \n validation_setting_force_response\n \n as \n \n validation_setting_force_response\n \n, \n \n \n validation_setting_force_response_type\n \n as \n \n validation_setting_force_response_type\n \n, \n \n \n validation_setting_type\n \n as \n \n validation_setting_type\n \n\n\n\n\n \n\n\n, cast('' as TEXT) as source_relation\n\n\n\n \n from base\n),\n\nfinal as (\n \n select \n data_export_tag,\n data_visibility_hidden as is_data_hidden,\n data_visibility_private as is_data_private,\n id as question_id,\n next_answer_id,\n next_choice_id,\n question_description,\n question_description_option,\n question_text,\n question_text_unsafe,\n question_type,\n selector,\n sub_selector,\n survey_id,\n validation_setting_force_response,\n validation_setting_force_response_type,\n validation_setting_type,\n _fivetran_deleted as is_deleted,\n _fivetran_synced,\n source_relation\n from fields\n)\n\nselect *\nfrom final", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "alias_types": true, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null, "deprecation_date": null}, "model.qualtrics_source.stg_qualtrics__sub_question": {"database": "postgres", "schema": "qualtrics_source_integration_tests_702_qualtrics_source", "name": "stg_qualtrics__sub_question", "resource_type": "model", "package_name": "qualtrics_source", "path": "stg_qualtrics__sub_question.sql", "original_file_path": "models/stg_qualtrics__sub_question.sql", "unique_id": "model.qualtrics_source.stg_qualtrics__sub_question", "fqn": ["qualtrics_source", "stg_qualtrics__sub_question"], "alias": "stg_qualtrics__sub_question", "checksum": {"name": "sha256", "checksum": "7b5cd7b6b1d8254e2ef3ff2225d359996599511285af6ab50757b06655f39164"}, "config": {"enabled": true, "alias": null, "schema": "qualtrics_source", "database": null, "tags": ["qualtrics", "fivetran_package", "staging"], "meta": {}, "group": null, "materialized": "table", "incremental_strategy": null, "persist_docs": {"relation": true, "columns": true}, "post-hook": [], "pre-hook": [], "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "on_configuration_change": "apply", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false, "alias_types": true}, "access": "protected"}, "tags": ["qualtrics", "fivetran_package", "staging"], "description": "Sub-questions of questions.", "columns": {"is_deleted": {"name": "is_deleted", "description": "Boolean representing whether the record was soft-deleted in Qualtrics.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "_fivetran_synced": {"name": "_fivetran_synced", "description": "The time when a record was last updated by Fivetran.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "choice_data_export_tag": {"name": "choice_data_export_tag", "description": "The tag to identify the question choice in exported data.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "key": {"name": "key", "description": "Key of the sub question.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "question_id": {"name": "question_id", "description": "The unique identifier for the question. Match pattern = ^QID[a-zA-Z0-9]+$", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "survey_id": {"name": "survey_id", "description": "The unique identifier for this survey. Match pattern = ^SV_[a-zA-Z0-9]{11,15}$", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "text": {"name": "text", "description": "Sub question text.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "source_relation": {"name": "source_relation", "description": "The schema or database this record came from if you are making use of the qualtrics_union_schemas or qualtrics_union_databases variables, respectively. Empty string if you are not using either of these variables to union together multiple Qualtrics connectors.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "qualtrics_source://models/stg_qualtrics.yml", "build_path": null, "deferred": false, "unrendered_config": {"tags": ["qualtrics", "fivetran_package", "staging"], "schema": "qualtrics_source", "materialized": "table", "persist_docs": {"relation": true, "columns": "{{ false if target.type in ['spark','databricks'] else true }}"}}, "created_at": 1714419376.467856, "relation_name": "\"postgres\".\"qualtrics_source_integration_tests_702_qualtrics_source\".\"stg_qualtrics__sub_question\"", "raw_code": "with base as (\n\n select * \n from {{ ref('stg_qualtrics__sub_question_tmp') }}\n),\n\nfields as (\n\n select\n {{\n fivetran_utils.fill_staging_columns(\n source_columns=adapter.get_columns_in_relation(ref('stg_qualtrics__sub_question_tmp')),\n staging_columns=get_sub_question_columns()\n )\n }}\n\n {{ fivetran_utils.source_relation(\n union_schema_variable='qualtrics_union_schemas', \n union_database_variable='qualtrics_union_databases') \n }}\n \n from base\n),\n\nfinal as (\n \n select \n choice_data_export_tag,\n key,\n question_id,\n survey_id,\n text,\n _fivetran_deleted as is_deleted,\n _fivetran_synced,\n source_relation\n \n from fields\n)\n\nselect *\nfrom final", "language": "sql", "refs": [{"name": "stg_qualtrics__sub_question_tmp", "package": null, "version": null}, {"name": "stg_qualtrics__sub_question_tmp", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.qualtrics_source.get_sub_question_columns", "macro.fivetran_utils.fill_staging_columns", "macro.fivetran_utils.source_relation"], "nodes": ["model.qualtrics_source.stg_qualtrics__sub_question_tmp"]}, "compiled_path": "target/compiled/qualtrics_source/models/stg_qualtrics__sub_question.sql", "compiled": true, "compiled_code": "with base as (\n\n select * \n from \"postgres\".\"qualtrics_source_integration_tests_702_qualtrics_source\".\"stg_qualtrics__sub_question_tmp\"\n),\n\nfields as (\n\n select\n \n \n \n _fivetran_deleted\n \n as \n \n _fivetran_deleted\n \n, \n \n \n _fivetran_synced\n \n as \n \n _fivetran_synced\n \n, \n \n \n choice_data_export_tag\n \n as \n \n choice_data_export_tag\n \n, \n \n \n key\n \n as \n \n key\n \n, \n \n \n question_id\n \n as \n \n question_id\n \n, \n \n \n survey_id\n \n as \n \n survey_id\n \n, \n \n \n text\n \n as \n \n text\n \n\n\n\n\n \n\n\n, cast('' as TEXT) as source_relation\n\n\n\n \n from base\n),\n\nfinal as (\n \n select \n choice_data_export_tag,\n key,\n question_id,\n survey_id,\n text,\n _fivetran_deleted as is_deleted,\n _fivetran_synced,\n source_relation\n \n from fields\n)\n\nselect *\nfrom final", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "alias_types": true, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null, "deprecation_date": null}, "model.qualtrics_source.stg_qualtrics__survey_version": {"database": "postgres", "schema": "qualtrics_source_integration_tests_702_qualtrics_source", "name": "stg_qualtrics__survey_version", "resource_type": "model", "package_name": "qualtrics_source", "path": "stg_qualtrics__survey_version.sql", "original_file_path": "models/stg_qualtrics__survey_version.sql", "unique_id": "model.qualtrics_source.stg_qualtrics__survey_version", "fqn": ["qualtrics_source", "stg_qualtrics__survey_version"], "alias": "stg_qualtrics__survey_version", "checksum": {"name": "sha256", "checksum": "8650ea4cc791924e58fefae0f4b52a720456eecf2d2b022b782dc7a8330fa739"}, "config": {"enabled": true, "alias": null, "schema": "qualtrics_source", "database": null, "tags": ["qualtrics", "fivetran_package", "staging"], "meta": {}, "group": null, "materialized": "table", "incremental_strategy": null, "persist_docs": {"relation": true, "columns": true}, "post-hook": [], "pre-hook": [], "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "on_configuration_change": "apply", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false, "alias_types": true}, "access": "protected"}, "tags": ["qualtrics", "fivetran_package", "staging"], "description": "Published and un-published versions of surveys.", "columns": {"is_deleted": {"name": "is_deleted", "description": "Boolean representing whether the record was soft-deleted in Qualtrics.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "_fivetran_synced": {"name": "_fivetran_synced", "description": "The time when a record was last updated by Fivetran.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "created_at": {"name": "created_at", "description": "The creation date and time of the record, expressed as an ISO 8601 value.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "version_description": {"name": "version_description", "description": "A user-provided description of the survey version.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "version_id": {"name": "version_id", "description": "The unique identifier for this survey version.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "is_published": {"name": "is_published", "description": "Boolean that, when true, publishes the version.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "survey_id": {"name": "survey_id", "description": "The unique identifier for this survey. Match pattern = ^SV_[a-zA-Z0-9]{11,15}$", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "publisher_user_id": {"name": "publisher_user_id", "description": "ID of `USER` who published this survey version in your org.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "version_number": {"name": "version_number", "description": "The version number of this survey.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "was_published": {"name": "was_published", "description": "Boolean that is true if the survey version was published.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "source_relation": {"name": "source_relation", "description": "The schema or database this record came from if you are making use of the qualtrics_union_schemas or qualtrics_union_databases variables, respectively. Empty string if you are not using either of these variables to union together multiple Qualtrics connectors.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "qualtrics_source://models/stg_qualtrics.yml", "build_path": null, "deferred": false, "unrendered_config": {"tags": ["qualtrics", "fivetran_package", "staging"], "schema": "qualtrics_source", "materialized": "table", "persist_docs": {"relation": true, "columns": "{{ false if target.type in ['spark','databricks'] else true }}"}}, "created_at": 1714419376.469505, "relation_name": "\"postgres\".\"qualtrics_source_integration_tests_702_qualtrics_source\".\"stg_qualtrics__survey_version\"", "raw_code": "with base as (\n\n select * \n from {{ ref('stg_qualtrics__survey_version_tmp') }}\n),\n\nfields as (\n\n select\n {{\n fivetran_utils.fill_staging_columns(\n source_columns=adapter.get_columns_in_relation(ref('stg_qualtrics__survey_version_tmp')),\n staging_columns=get_survey_version_columns()\n )\n }}\n\n {{ fivetran_utils.source_relation(\n union_schema_variable='qualtrics_union_schemas', \n union_database_variable='qualtrics_union_databases') \n }}\n \n from base\n),\n\nfinal as (\n \n select \n cast(creation_date as {{ dbt.type_timestamp() }}) as created_at,\n description as version_description,\n id as version_id,\n published as is_published,\n survey_id,\n user_id as publisher_user_id,\n version_number,\n was_published,\n _fivetran_deleted as is_deleted,\n _fivetran_synced,\n source_relation\n \n from fields\n)\n\nselect *\nfrom final", "language": "sql", "refs": [{"name": "stg_qualtrics__survey_version_tmp", "package": null, "version": null}, {"name": "stg_qualtrics__survey_version_tmp", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.qualtrics_source.get_survey_version_columns", "macro.fivetran_utils.fill_staging_columns", "macro.fivetran_utils.source_relation", "macro.dbt.type_timestamp"], "nodes": ["model.qualtrics_source.stg_qualtrics__survey_version_tmp"]}, "compiled_path": "target/compiled/qualtrics_source/models/stg_qualtrics__survey_version.sql", "compiled": true, "compiled_code": "with base as (\n\n select * \n from \"postgres\".\"qualtrics_source_integration_tests_702_qualtrics_source\".\"stg_qualtrics__survey_version_tmp\"\n),\n\nfields as (\n\n select\n \n \n \n _fivetran_deleted\n \n as \n \n _fivetran_deleted\n \n, \n \n \n _fivetran_synced\n \n as \n \n _fivetran_synced\n \n, \n \n \n creation_date\n \n as \n \n creation_date\n \n, \n \n \n description\n \n as \n \n description\n \n, \n \n \n id\n \n as \n \n id\n \n, \n \n \n published\n \n as \n \n published\n \n, \n \n \n survey_id\n \n as \n \n survey_id\n \n, \n \n \n user_id\n \n as \n \n user_id\n \n, \n \n \n version_number\n \n as \n \n version_number\n \n, \n \n \n was_published\n \n as \n \n was_published\n \n\n\n\n\n \n\n\n, cast('' as TEXT) as source_relation\n\n\n\n \n from base\n),\n\nfinal as (\n \n select \n cast(creation_date as timestamp) as created_at,\n description as version_description,\n id as version_id,\n published as is_published,\n survey_id,\n user_id as publisher_user_id,\n version_number,\n was_published,\n _fivetran_deleted as is_deleted,\n _fivetran_synced,\n source_relation\n \n from fields\n)\n\nselect *\nfrom final", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "alias_types": true, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null, "deprecation_date": null}, "model.qualtrics_source.stg_qualtrics__directory_mailing_list": {"database": "postgres", "schema": "qualtrics_source_integration_tests_702_qualtrics_source", "name": "stg_qualtrics__directory_mailing_list", "resource_type": "model", "package_name": "qualtrics_source", "path": "stg_qualtrics__directory_mailing_list.sql", "original_file_path": "models/stg_qualtrics__directory_mailing_list.sql", "unique_id": "model.qualtrics_source.stg_qualtrics__directory_mailing_list", "fqn": ["qualtrics_source", "stg_qualtrics__directory_mailing_list"], "alias": "stg_qualtrics__directory_mailing_list", "checksum": {"name": "sha256", "checksum": "bfb018e75c7c0a1ee4783f47591e0c9d7ce0969a47774fe6b361847c28a22ecd"}, "config": {"enabled": true, "alias": null, "schema": "qualtrics_source", "database": null, "tags": ["qualtrics", "fivetran_package", "staging"], "meta": {}, "group": null, "materialized": "table", "incremental_strategy": null, "persist_docs": {"relation": true, "columns": true}, "post-hook": [], "pre-hook": [], "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "on_configuration_change": "apply", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false, "alias_types": true}, "access": "protected"}, "tags": ["qualtrics", "fivetran_package", "staging"], "description": "Mailing lists are lists of contacts that can receive emails and survey invitations. You can create mailing lists either through file upload or manually.", "columns": {"is_deleted": {"name": "is_deleted", "description": "Boolean representing whether the record was soft-deleted in Qualtrics.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "_fivetran_synced": {"name": "_fivetran_synced", "description": "The time when a record was last updated by Fivetran.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "created_at": {"name": "created_at", "description": "The creation date and time of the record, expressed as an ISO 8601 value.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "directory_id": {"name": "directory_id", "description": "The directory ID, also known as a pool ID. Example - POOL_012345678901234", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "mailing_list_id": {"name": "mailing_list_id", "description": "The ID for the mailing list.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "last_modified_at": {"name": "last_modified_at", "description": "The point in time when the record was last modified.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "name": {"name": "name", "description": "Name of the mailing list.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "owner_user_id": {"name": "owner_user_id", "description": "The unique identifier for a specific user who owns this.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "source_relation": {"name": "source_relation", "description": "The schema or database this record came from if you are making use of the qualtrics_union_schemas or qualtrics_union_databases variables, respectively. Empty string if you are not using either of these variables to union together multiple Qualtrics connectors.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": "qualtrics_source://models/stg_qualtrics.yml", "build_path": null, "deferred": false, "unrendered_config": {"tags": ["qualtrics", "fivetran_package", "staging"], "schema": "qualtrics_source", "materialized": "table", "persist_docs": {"relation": true, "columns": "{{ false if target.type in ['spark','databricks'] else true }}"}}, "created_at": 1714419376.4813938, "relation_name": "\"postgres\".\"qualtrics_source_integration_tests_702_qualtrics_source\".\"stg_qualtrics__directory_mailing_list\"", "raw_code": "with base as (\n\n select * \n from {{ ref('stg_qualtrics__directory_mailing_list_tmp') }}\n),\n\nfields as (\n\n select\n {{\n fivetran_utils.fill_staging_columns(\n source_columns=adapter.get_columns_in_relation(ref('stg_qualtrics__directory_mailing_list_tmp')),\n staging_columns=get_directory_mailing_list_columns()\n )\n }}\n\n {{ fivetran_utils.source_relation(\n union_schema_variable='qualtrics_union_schemas', \n union_database_variable='qualtrics_union_databases') \n }}\n \n from base\n),\n\nfinal as (\n \n select \n cast(creation_date as {{ dbt.type_timestamp() }}) as created_at,\n directory_id,\n id as mailing_list_id,\n cast(last_modified_date as {{ dbt.type_timestamp() }}) as last_modified_at,\n name,\n owner_id as owner_user_id,\n _fivetran_deleted as is_deleted,\n _fivetran_synced,\n source_relation\n\n from fields\n)\n\nselect *\nfrom final", "language": "sql", "refs": [{"name": "stg_qualtrics__directory_mailing_list_tmp", "package": null, "version": null}, {"name": "stg_qualtrics__directory_mailing_list_tmp", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.qualtrics_source.get_directory_mailing_list_columns", "macro.fivetran_utils.fill_staging_columns", "macro.fivetran_utils.source_relation", "macro.dbt.type_timestamp"], "nodes": ["model.qualtrics_source.stg_qualtrics__directory_mailing_list_tmp"]}, "compiled_path": "target/compiled/qualtrics_source/models/stg_qualtrics__directory_mailing_list.sql", "compiled": true, "compiled_code": "with base as (\n\n select * \n from \"postgres\".\"qualtrics_source_integration_tests_702_qualtrics_source\".\"stg_qualtrics__directory_mailing_list_tmp\"\n),\n\nfields as (\n\n select\n \n \n \n _fivetran_deleted\n \n as \n \n _fivetran_deleted\n \n, \n \n \n _fivetran_synced\n \n as \n \n _fivetran_synced\n \n, \n \n \n creation_date\n \n as \n \n creation_date\n \n, \n \n \n directory_id\n \n as \n \n directory_id\n \n, \n \n \n id\n \n as \n \n id\n \n, \n \n \n last_modified_date\n \n as \n \n last_modified_date\n \n, \n \n \n name\n \n as \n \n name\n \n, \n \n \n owner_id\n \n as \n \n owner_id\n \n\n\n\n\n \n\n\n, cast('' as TEXT) as source_relation\n\n\n\n \n from base\n),\n\nfinal as (\n \n select \n cast(creation_date as timestamp) as created_at,\n directory_id,\n id as mailing_list_id,\n cast(last_modified_date as timestamp) as last_modified_at,\n name,\n owner_id as owner_user_id,\n _fivetran_deleted as is_deleted,\n _fivetran_synced,\n source_relation\n\n from fields\n)\n\nselect *\nfrom final", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "alias_types": true, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null, "deprecation_date": null}, "model.qualtrics_source.stg_qualtrics__directory_tmp": {"database": "postgres", "schema": "qualtrics_source_integration_tests_702_qualtrics_source", "name": "stg_qualtrics__directory_tmp", "resource_type": "model", "package_name": "qualtrics_source", "path": "tmp/stg_qualtrics__directory_tmp.sql", "original_file_path": "models/tmp/stg_qualtrics__directory_tmp.sql", "unique_id": "model.qualtrics_source.stg_qualtrics__directory_tmp", "fqn": ["qualtrics_source", "tmp", "stg_qualtrics__directory_tmp"], "alias": "stg_qualtrics__directory_tmp", "checksum": {"name": "sha256", "checksum": "4b3ca7ae5e5b4cf6204f4dafaf2218823498901d5d2354deaaf33b77f72e8ef1"}, "config": {"enabled": true, "alias": null, "schema": "qualtrics_source", "database": null, "tags": ["qualtrics", "fivetran_package", "staging"], "meta": {}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {"relation": true, "columns": true}, "post-hook": [], "pre-hook": [], "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "on_configuration_change": "apply", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false, "alias_types": true}, "access": "protected"}, "tags": ["qualtrics", "fivetran_package", "staging"], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"tags": ["qualtrics", "fivetran_package", "staging"], "schema": "qualtrics_source", "materialized": "view", "persist_docs": {"relation": true, "columns": "{{ false if target.type in ['spark','databricks'] else true }}"}}, "created_at": 1714419376.1848571, "relation_name": "\"postgres\".\"qualtrics_source_integration_tests_702_qualtrics_source\".\"stg_qualtrics__directory_tmp\"", "raw_code": "{{\n fivetran_utils.union_data(\n table_identifier='directory', \n database_variable='qualtrics_database', \n schema_variable='qualtrics_schema', \n default_database=target.database,\n default_schema='qualtrics',\n default_variable='directory',\n union_schema_variable='qualtrics_union_schemas',\n union_database_variable='qualtrics_union_databases'\n )\n}}", "language": "sql", "refs": [], "sources": [["qualtrics", "directory"], ["qualtrics", "directory"]], "metrics": [], "depends_on": {"macros": ["macro.fivetran_utils.union_data"], "nodes": ["source.qualtrics_source.qualtrics.directory"]}, "compiled_path": "target/compiled/qualtrics_source/models/tmp/stg_qualtrics__directory_tmp.sql", "compiled": true, "compiled_code": "\n \n \n \n \n \n \n \n select * \n from \"postgres\".\"qualtrics_source_integration_tests_702\".\"directory\"", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "alias_types": true, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null, "deprecation_date": null}, "model.qualtrics_source.stg_qualtrics__question_tmp": {"database": "postgres", "schema": "qualtrics_source_integration_tests_702_qualtrics_source", "name": "stg_qualtrics__question_tmp", "resource_type": "model", "package_name": "qualtrics_source", "path": "tmp/stg_qualtrics__question_tmp.sql", "original_file_path": "models/tmp/stg_qualtrics__question_tmp.sql", "unique_id": "model.qualtrics_source.stg_qualtrics__question_tmp", "fqn": ["qualtrics_source", "tmp", "stg_qualtrics__question_tmp"], "alias": "stg_qualtrics__question_tmp", "checksum": {"name": "sha256", "checksum": "ed11295b4e9d0a28951ddf5a65d957af91c50eef5fc16b8f9f635effb3459fa7"}, "config": {"enabled": true, "alias": null, "schema": "qualtrics_source", "database": null, "tags": ["qualtrics", "fivetran_package", "staging"], "meta": {}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {"relation": true, "columns": true}, "post-hook": [], "pre-hook": [], "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "on_configuration_change": "apply", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false, "alias_types": true}, "access": "protected"}, "tags": ["qualtrics", "fivetran_package", "staging"], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"tags": ["qualtrics", "fivetran_package", "staging"], "schema": "qualtrics_source", "materialized": "view", "persist_docs": {"relation": true, "columns": "{{ false if target.type in ['spark','databricks'] else true }}"}}, "created_at": 1714419376.2077382, "relation_name": "\"postgres\".\"qualtrics_source_integration_tests_702_qualtrics_source\".\"stg_qualtrics__question_tmp\"", "raw_code": "{{\n fivetran_utils.union_data(\n table_identifier='question', \n database_variable='qualtrics_database', \n schema_variable='qualtrics_schema', \n default_database=target.database,\n default_schema='qualtrics',\n default_variable='question',\n union_schema_variable='qualtrics_union_schemas',\n union_database_variable='qualtrics_union_databases'\n )\n}}", "language": "sql", "refs": [], "sources": [["qualtrics", "question"], ["qualtrics", "question"]], "metrics": [], "depends_on": {"macros": ["macro.fivetran_utils.union_data"], "nodes": ["source.qualtrics_source.qualtrics.question"]}, "compiled_path": "target/compiled/qualtrics_source/models/tmp/stg_qualtrics__question_tmp.sql", "compiled": true, "compiled_code": "\n \n \n \n \n \n \n \n select * \n from \"postgres\".\"qualtrics_source_integration_tests_702\".\"question\"", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "alias_types": true, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null, "deprecation_date": null}, "model.qualtrics_source.stg_qualtrics__question_option_tmp": {"database": "postgres", "schema": "qualtrics_source_integration_tests_702_qualtrics_source", "name": "stg_qualtrics__question_option_tmp", "resource_type": "model", "package_name": "qualtrics_source", "path": "tmp/stg_qualtrics__question_option_tmp.sql", "original_file_path": "models/tmp/stg_qualtrics__question_option_tmp.sql", "unique_id": "model.qualtrics_source.stg_qualtrics__question_option_tmp", "fqn": ["qualtrics_source", "tmp", "stg_qualtrics__question_option_tmp"], "alias": "stg_qualtrics__question_option_tmp", "checksum": {"name": "sha256", "checksum": "c61331fb87b4a42e950006a3c7ff7b2e5e138de5f8f572e6bb1af3899160e97b"}, "config": {"enabled": true, "alias": null, "schema": "qualtrics_source", "database": null, "tags": ["qualtrics", "fivetran_package", "staging"], "meta": {}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {"relation": true, "columns": true}, "post-hook": [], "pre-hook": [], "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "on_configuration_change": "apply", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false, "alias_types": true}, "access": "protected"}, "tags": ["qualtrics", "fivetran_package", "staging"], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"tags": ["qualtrics", "fivetran_package", "staging"], "schema": "qualtrics_source", "materialized": "view", "persist_docs": {"relation": true, "columns": "{{ false if target.type in ['spark','databricks'] else true }}"}}, "created_at": 1714419376.2125309, "relation_name": "\"postgres\".\"qualtrics_source_integration_tests_702_qualtrics_source\".\"stg_qualtrics__question_option_tmp\"", "raw_code": "{{\n fivetran_utils.union_data(\n table_identifier='question_option', \n database_variable='qualtrics_database', \n schema_variable='qualtrics_schema', \n default_database=target.database,\n default_schema='qualtrics',\n default_variable='question_option',\n union_schema_variable='qualtrics_union_schemas',\n union_database_variable='qualtrics_union_databases'\n )\n}}", "language": "sql", "refs": [], "sources": [["qualtrics", "question_option"], ["qualtrics", "question_option"]], "metrics": [], "depends_on": {"macros": ["macro.fivetran_utils.union_data"], "nodes": ["source.qualtrics_source.qualtrics.question_option"]}, "compiled_path": "target/compiled/qualtrics_source/models/tmp/stg_qualtrics__question_option_tmp.sql", "compiled": true, "compiled_code": "\n \n \n \n \n \n \n \n select * \n from \"postgres\".\"qualtrics_source_integration_tests_702\".\"question_option\"", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "alias_types": true, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null, "deprecation_date": null}, "model.qualtrics_source.stg_qualtrics__distribution_contact_tmp": {"database": "postgres", "schema": "qualtrics_source_integration_tests_702_qualtrics_source", "name": "stg_qualtrics__distribution_contact_tmp", "resource_type": "model", "package_name": "qualtrics_source", "path": "tmp/stg_qualtrics__distribution_contact_tmp.sql", "original_file_path": "models/tmp/stg_qualtrics__distribution_contact_tmp.sql", "unique_id": "model.qualtrics_source.stg_qualtrics__distribution_contact_tmp", "fqn": ["qualtrics_source", "tmp", "stg_qualtrics__distribution_contact_tmp"], "alias": "stg_qualtrics__distribution_contact_tmp", "checksum": {"name": "sha256", "checksum": "7b4914cb30b388e7eb0fdc4e0c3314306dd19c8103f0fa51250e462f368653c5"}, "config": {"enabled": true, "alias": null, "schema": "qualtrics_source", "database": null, "tags": ["qualtrics", "fivetran_package", "staging"], "meta": {}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {"relation": true, "columns": true}, "post-hook": [], "pre-hook": [], "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "on_configuration_change": "apply", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false, "alias_types": true}, "access": "protected"}, "tags": ["qualtrics", "fivetran_package", "staging"], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"tags": ["qualtrics", "fivetran_package", "staging"], "schema": "qualtrics_source", "materialized": "view", "persist_docs": {"relation": true, "columns": "{{ false if target.type in ['spark','databricks'] else true }}"}}, "created_at": 1714419376.217193, "relation_name": "\"postgres\".\"qualtrics_source_integration_tests_702_qualtrics_source\".\"stg_qualtrics__distribution_contact_tmp\"", "raw_code": "{{\n fivetran_utils.union_data(\n table_identifier='distribution_contact', \n database_variable='qualtrics_database', \n schema_variable='qualtrics_schema', \n default_database=target.database,\n default_schema='qualtrics',\n default_variable='distribution_contact',\n union_schema_variable='qualtrics_union_schemas',\n union_database_variable='qualtrics_union_databases'\n )\n}}", "language": "sql", "refs": [], "sources": [["qualtrics", "distribution_contact"], ["qualtrics", "distribution_contact"]], "metrics": [], "depends_on": {"macros": ["macro.fivetran_utils.union_data"], "nodes": ["source.qualtrics_source.qualtrics.distribution_contact"]}, "compiled_path": "target/compiled/qualtrics_source/models/tmp/stg_qualtrics__distribution_contact_tmp.sql", "compiled": true, "compiled_code": "\n \n \n \n \n \n \n \n select * \n from \"postgres\".\"qualtrics_source_integration_tests_702\".\"distribution_contact\"", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "alias_types": true, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null, "deprecation_date": null}, "model.qualtrics_source.stg_qualtrics__core_mailing_list_tmp": {"database": "postgres", "schema": "qualtrics_source_integration_tests_702_qualtrics_source", "name": "stg_qualtrics__core_mailing_list_tmp", "resource_type": "model", "package_name": "qualtrics_source", "path": "tmp/stg_qualtrics__core_mailing_list_tmp.sql", "original_file_path": "models/tmp/stg_qualtrics__core_mailing_list_tmp.sql", "unique_id": "model.qualtrics_source.stg_qualtrics__core_mailing_list_tmp", "fqn": ["qualtrics_source", "tmp", "stg_qualtrics__core_mailing_list_tmp"], "alias": "stg_qualtrics__core_mailing_list_tmp", "checksum": {"name": "sha256", "checksum": "c8175db977b8eedb2f1ce4e55eacaf9b402b5866227dff4943d4e69f666f57c9"}, "config": {"enabled": true, "alias": null, "schema": "qualtrics_source", "database": null, "tags": ["qualtrics", "fivetran_package", "staging"], "meta": {}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {"relation": true, "columns": true}, "post-hook": [], "pre-hook": [], "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "on_configuration_change": "apply", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false, "alias_types": true}, "access": "protected"}, "tags": ["qualtrics", "fivetran_package", "staging"], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"tags": ["qualtrics", "fivetran_package", "staging"], "schema": "qualtrics_source", "materialized": "view", "enabled": true, "persist_docs": {"relation": true, "columns": "{{ false if target.type in ['spark','databricks'] else true }}"}}, "created_at": 1714419376.221544, "relation_name": "\"postgres\".\"qualtrics_source_integration_tests_702_qualtrics_source\".\"stg_qualtrics__core_mailing_list_tmp\"", "raw_code": "{{ config(enabled=var('qualtrics__using_core_mailing_lists', false)) }}\n-- can disable\n{{\n fivetran_utils.union_data(\n table_identifier='core_mailing_list', \n database_variable='qualtrics_database', \n schema_variable='qualtrics_schema', \n default_database=target.database,\n default_schema='qualtrics',\n default_variable='core_mailing_list',\n union_schema_variable='qualtrics_union_schemas',\n union_database_variable='qualtrics_union_databases'\n )\n}}", "language": "sql", "refs": [], "sources": [["qualtrics", "core_mailing_list"], ["qualtrics", "core_mailing_list"]], "metrics": [], "depends_on": {"macros": ["macro.fivetran_utils.union_data"], "nodes": ["source.qualtrics_source.qualtrics.core_mailing_list"]}, "compiled_path": "target/compiled/qualtrics_source/models/tmp/stg_qualtrics__core_mailing_list_tmp.sql", "compiled": true, "compiled_code": "\n-- can disable\n\n \n \n \n \n \n \n \n select * \n from \"postgres\".\"qualtrics_source_integration_tests_702\".\"core_mailing_list\"", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "alias_types": true, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null, "deprecation_date": null}, "model.qualtrics_source.stg_qualtrics__survey_tmp": {"database": "postgres", "schema": "qualtrics_source_integration_tests_702_qualtrics_source", "name": "stg_qualtrics__survey_tmp", "resource_type": "model", "package_name": "qualtrics_source", "path": "tmp/stg_qualtrics__survey_tmp.sql", "original_file_path": "models/tmp/stg_qualtrics__survey_tmp.sql", "unique_id": "model.qualtrics_source.stg_qualtrics__survey_tmp", "fqn": ["qualtrics_source", "tmp", "stg_qualtrics__survey_tmp"], "alias": "stg_qualtrics__survey_tmp", "checksum": {"name": "sha256", "checksum": "12ed41a2542f0bb532da7e4b1c3f286208d64e8c03b844dd8fd988aba3bc00cb"}, "config": {"enabled": true, "alias": null, "schema": "qualtrics_source", "database": null, "tags": ["qualtrics", "fivetran_package", "staging"], "meta": {}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {"relation": true, "columns": true}, "post-hook": [], "pre-hook": [], "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "on_configuration_change": "apply", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false, "alias_types": true}, "access": "protected"}, "tags": ["qualtrics", "fivetran_package", "staging"], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"tags": ["qualtrics", "fivetran_package", "staging"], "schema": "qualtrics_source", "materialized": "view", "persist_docs": {"relation": true, "columns": "{{ false if target.type in ['spark','databricks'] else true }}"}}, "created_at": 1714419376.226429, "relation_name": "\"postgres\".\"qualtrics_source_integration_tests_702_qualtrics_source\".\"stg_qualtrics__survey_tmp\"", "raw_code": "{{\n fivetran_utils.union_data(\n table_identifier='survey', \n database_variable='qualtrics_database', \n schema_variable='qualtrics_schema', \n default_database=target.database,\n default_schema='qualtrics',\n default_variable='survey',\n union_schema_variable='qualtrics_union_schemas',\n union_database_variable='qualtrics_union_databases'\n )\n}}", "language": "sql", "refs": [], "sources": [["qualtrics", "survey"], ["qualtrics", "survey"]], "metrics": [], "depends_on": {"macros": ["macro.fivetran_utils.union_data"], "nodes": ["source.qualtrics_source.qualtrics.survey"]}, "compiled_path": "target/compiled/qualtrics_source/models/tmp/stg_qualtrics__survey_tmp.sql", "compiled": true, "compiled_code": "\n \n \n \n \n \n \n \n select * \n from \"postgres\".\"qualtrics_source_integration_tests_702\".\"survey\"", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "alias_types": true, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null, "deprecation_date": null}, "model.qualtrics_source.stg_qualtrics__contact_mailing_list_membership_tmp": {"database": "postgres", "schema": "qualtrics_source_integration_tests_702_qualtrics_source", "name": "stg_qualtrics__contact_mailing_list_membership_tmp", "resource_type": "model", "package_name": "qualtrics_source", "path": "tmp/stg_qualtrics__contact_mailing_list_membership_tmp.sql", "original_file_path": "models/tmp/stg_qualtrics__contact_mailing_list_membership_tmp.sql", "unique_id": "model.qualtrics_source.stg_qualtrics__contact_mailing_list_membership_tmp", "fqn": ["qualtrics_source", "tmp", "stg_qualtrics__contact_mailing_list_membership_tmp"], "alias": "stg_qualtrics__contact_mailing_list_membership_tmp", "checksum": {"name": "sha256", "checksum": "a464f668cf8d5bc468086e33aedf9b3b3acf48d3aa1464665853720f10c615f4"}, "config": {"enabled": true, "alias": null, "schema": "qualtrics_source", "database": null, "tags": ["qualtrics", "fivetran_package", "staging"], "meta": {}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {"relation": true, "columns": true}, "post-hook": [], "pre-hook": [], "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "on_configuration_change": "apply", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false, "alias_types": true}, "access": "protected"}, "tags": ["qualtrics", "fivetran_package", "staging"], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"tags": ["qualtrics", "fivetran_package", "staging"], "schema": "qualtrics_source", "materialized": "view", "persist_docs": {"relation": true, "columns": "{{ false if target.type in ['spark','databricks'] else true }}"}}, "created_at": 1714419376.232075, "relation_name": "\"postgres\".\"qualtrics_source_integration_tests_702_qualtrics_source\".\"stg_qualtrics__contact_mailing_list_membership_tmp\"", "raw_code": "{{\n fivetran_utils.union_data(\n table_identifier='contact_mailing_list_membership', \n database_variable='qualtrics_database', \n schema_variable='qualtrics_schema', \n default_database=target.database,\n default_schema='qualtrics',\n default_variable='contact_mailing_list_membership',\n union_schema_variable='qualtrics_union_schemas',\n union_database_variable='qualtrics_union_databases'\n )\n}}", "language": "sql", "refs": [], "sources": [["qualtrics", "contact_mailing_list_membership"], ["qualtrics", "contact_mailing_list_membership"]], "metrics": [], "depends_on": {"macros": ["macro.fivetran_utils.union_data"], "nodes": ["source.qualtrics_source.qualtrics.contact_mailing_list_membership"]}, "compiled_path": "target/compiled/qualtrics_source/models/tmp/stg_qualtrics__contact_mailing_list_membership_tmp.sql", "compiled": true, "compiled_code": "\n \n \n \n \n \n \n \n select * \n from \"postgres\".\"qualtrics_source_integration_tests_702\".\"contact_mailing_list_membership\"", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "alias_types": true, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null, "deprecation_date": null}, "model.qualtrics_source.stg_qualtrics__distribution_tmp": {"database": "postgres", "schema": "qualtrics_source_integration_tests_702_qualtrics_source", "name": "stg_qualtrics__distribution_tmp", "resource_type": "model", "package_name": "qualtrics_source", "path": "tmp/stg_qualtrics__distribution_tmp.sql", "original_file_path": "models/tmp/stg_qualtrics__distribution_tmp.sql", "unique_id": "model.qualtrics_source.stg_qualtrics__distribution_tmp", "fqn": ["qualtrics_source", "tmp", "stg_qualtrics__distribution_tmp"], "alias": "stg_qualtrics__distribution_tmp", "checksum": {"name": "sha256", "checksum": "7166ec5e6cf825ee9daa5783aa236f30a294cd79d614420a921b8fe59c8530b9"}, "config": {"enabled": true, "alias": null, "schema": "qualtrics_source", "database": null, "tags": ["qualtrics", "fivetran_package", "staging"], "meta": {}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {"relation": true, "columns": true}, "post-hook": [], "pre-hook": [], "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "on_configuration_change": "apply", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false, "alias_types": true}, "access": "protected"}, "tags": ["qualtrics", "fivetran_package", "staging"], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"tags": ["qualtrics", "fivetran_package", "staging"], "schema": "qualtrics_source", "materialized": "view", "persist_docs": {"relation": true, "columns": "{{ false if target.type in ['spark','databricks'] else true }}"}}, "created_at": 1714419376.236678, "relation_name": "\"postgres\".\"qualtrics_source_integration_tests_702_qualtrics_source\".\"stg_qualtrics__distribution_tmp\"", "raw_code": "{{\n fivetran_utils.union_data(\n table_identifier='distribution', \n database_variable='qualtrics_database', \n schema_variable='qualtrics_schema', \n default_database=target.database,\n default_schema='qualtrics',\n default_variable='distribution',\n union_schema_variable='qualtrics_union_schemas',\n union_database_variable='qualtrics_union_databases'\n )\n}}", "language": "sql", "refs": [], "sources": [["qualtrics", "distribution"], ["qualtrics", "distribution"]], "metrics": [], "depends_on": {"macros": ["macro.fivetran_utils.union_data"], "nodes": ["source.qualtrics_source.qualtrics.distribution"]}, "compiled_path": "target/compiled/qualtrics_source/models/tmp/stg_qualtrics__distribution_tmp.sql", "compiled": true, "compiled_code": "\n \n \n \n \n \n \n \n select * \n from \"postgres\".\"qualtrics_source_integration_tests_702\".\"distribution\"", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "alias_types": true, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null, "deprecation_date": null}, "model.qualtrics_source.stg_qualtrics__block_question_tmp": {"database": "postgres", "schema": "qualtrics_source_integration_tests_702_qualtrics_source", "name": "stg_qualtrics__block_question_tmp", "resource_type": "model", "package_name": "qualtrics_source", "path": "tmp/stg_qualtrics__block_question_tmp.sql", "original_file_path": "models/tmp/stg_qualtrics__block_question_tmp.sql", "unique_id": "model.qualtrics_source.stg_qualtrics__block_question_tmp", "fqn": ["qualtrics_source", "tmp", "stg_qualtrics__block_question_tmp"], "alias": "stg_qualtrics__block_question_tmp", "checksum": {"name": "sha256", "checksum": "0b9b7b5c2613f28eeef8c4a2825f977b966a129f8d295bac6d5e374aac6d79b5"}, "config": {"enabled": true, "alias": null, "schema": "qualtrics_source", "database": null, "tags": ["qualtrics", "fivetran_package", "staging"], "meta": {}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {"relation": true, "columns": true}, "post-hook": [], "pre-hook": [], "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "on_configuration_change": "apply", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false, "alias_types": true}, "access": "protected"}, "tags": ["qualtrics", "fivetran_package", "staging"], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"tags": ["qualtrics", "fivetran_package", "staging"], "schema": "qualtrics_source", "materialized": "view", "persist_docs": {"relation": true, "columns": "{{ false if target.type in ['spark','databricks'] else true }}"}}, "created_at": 1714419376.241291, "relation_name": "\"postgres\".\"qualtrics_source_integration_tests_702_qualtrics_source\".\"stg_qualtrics__block_question_tmp\"", "raw_code": "{{\n fivetran_utils.union_data(\n table_identifier='block_question', \n database_variable='qualtrics_database', \n schema_variable='qualtrics_schema', \n default_database=target.database,\n default_schema='qualtrics',\n default_variable='block_question',\n union_schema_variable='qualtrics_union_schemas',\n union_database_variable='qualtrics_union_databases'\n )\n}}", "language": "sql", "refs": [], "sources": [["qualtrics", "block_question"], ["qualtrics", "block_question"]], "metrics": [], "depends_on": {"macros": ["macro.fivetran_utils.union_data"], "nodes": ["source.qualtrics_source.qualtrics.block_question"]}, "compiled_path": "target/compiled/qualtrics_source/models/tmp/stg_qualtrics__block_question_tmp.sql", "compiled": true, "compiled_code": "\n \n \n \n \n \n \n \n select * \n from \"postgres\".\"qualtrics_source_integration_tests_702\".\"block_question\"", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "alias_types": true, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null, "deprecation_date": null}, "model.qualtrics_source.stg_qualtrics__survey_response_tmp": {"database": "postgres", "schema": "qualtrics_source_integration_tests_702_qualtrics_source", "name": "stg_qualtrics__survey_response_tmp", "resource_type": "model", "package_name": "qualtrics_source", "path": "tmp/stg_qualtrics__survey_response_tmp.sql", "original_file_path": "models/tmp/stg_qualtrics__survey_response_tmp.sql", "unique_id": "model.qualtrics_source.stg_qualtrics__survey_response_tmp", "fqn": ["qualtrics_source", "tmp", "stg_qualtrics__survey_response_tmp"], "alias": "stg_qualtrics__survey_response_tmp", "checksum": {"name": "sha256", "checksum": "f047d640e7020023f2214578322056d33cebc53a7bee067b398e2195d83d37b4"}, "config": {"enabled": true, "alias": null, "schema": "qualtrics_source", "database": null, "tags": ["qualtrics", "fivetran_package", "staging"], "meta": {}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {"relation": true, "columns": true}, "post-hook": [], "pre-hook": [], "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "on_configuration_change": "apply", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false, "alias_types": true}, "access": "protected"}, "tags": ["qualtrics", "fivetran_package", "staging"], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"tags": ["qualtrics", "fivetran_package", "staging"], "schema": "qualtrics_source", "materialized": "view", "persist_docs": {"relation": true, "columns": "{{ false if target.type in ['spark','databricks'] else true }}"}}, "created_at": 1714419376.245717, "relation_name": "\"postgres\".\"qualtrics_source_integration_tests_702_qualtrics_source\".\"stg_qualtrics__survey_response_tmp\"", "raw_code": "{{\n fivetran_utils.union_data(\n table_identifier='survey_response', \n database_variable='qualtrics_database', \n schema_variable='qualtrics_schema', \n default_database=target.database,\n default_schema='qualtrics',\n default_variable='survey_response',\n union_schema_variable='qualtrics_union_schemas',\n union_database_variable='qualtrics_union_databases'\n )\n}}", "language": "sql", "refs": [], "sources": [["qualtrics", "survey_response"], ["qualtrics", "survey_response"]], "metrics": [], "depends_on": {"macros": ["macro.fivetran_utils.union_data"], "nodes": ["source.qualtrics_source.qualtrics.survey_response"]}, "compiled_path": "target/compiled/qualtrics_source/models/tmp/stg_qualtrics__survey_response_tmp.sql", "compiled": true, "compiled_code": "\n \n \n \n \n \n \n \n select * \n from \"postgres\".\"qualtrics_source_integration_tests_702\".\"survey_response\"", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "alias_types": true, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null, "deprecation_date": null}, "model.qualtrics_source.stg_qualtrics__directory_mailing_list_tmp": {"database": "postgres", "schema": "qualtrics_source_integration_tests_702_qualtrics_source", "name": "stg_qualtrics__directory_mailing_list_tmp", "resource_type": "model", "package_name": "qualtrics_source", "path": "tmp/stg_qualtrics__directory_mailing_list_tmp.sql", "original_file_path": "models/tmp/stg_qualtrics__directory_mailing_list_tmp.sql", "unique_id": "model.qualtrics_source.stg_qualtrics__directory_mailing_list_tmp", "fqn": ["qualtrics_source", "tmp", "stg_qualtrics__directory_mailing_list_tmp"], "alias": "stg_qualtrics__directory_mailing_list_tmp", "checksum": {"name": "sha256", "checksum": "88534ae79c01bf33fa6890ad5e720be4406faab978c6c3a5c3e3205973786c01"}, "config": {"enabled": true, "alias": null, "schema": "qualtrics_source", "database": null, "tags": ["qualtrics", "fivetran_package", "staging"], "meta": {}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {"relation": true, "columns": true}, "post-hook": [], "pre-hook": [], "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "on_configuration_change": "apply", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false, "alias_types": true}, "access": "protected"}, "tags": ["qualtrics", "fivetran_package", "staging"], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"tags": ["qualtrics", "fivetran_package", "staging"], "schema": "qualtrics_source", "materialized": "view", "persist_docs": {"relation": true, "columns": "{{ false if target.type in ['spark','databricks'] else true }}"}}, "created_at": 1714419376.2502642, "relation_name": "\"postgres\".\"qualtrics_source_integration_tests_702_qualtrics_source\".\"stg_qualtrics__directory_mailing_list_tmp\"", "raw_code": "{{\n fivetran_utils.union_data(\n table_identifier='directory_mailing_list', \n database_variable='qualtrics_database', \n schema_variable='qualtrics_schema', \n default_database=target.database,\n default_schema='qualtrics',\n default_variable='directory_mailing_list',\n union_schema_variable='qualtrics_union_schemas',\n union_database_variable='qualtrics_union_databases'\n )\n}}", "language": "sql", "refs": [], "sources": [["qualtrics", "directory_mailing_list"], ["qualtrics", "directory_mailing_list"]], "metrics": [], "depends_on": {"macros": ["macro.fivetran_utils.union_data"], "nodes": ["source.qualtrics_source.qualtrics.directory_mailing_list"]}, "compiled_path": "target/compiled/qualtrics_source/models/tmp/stg_qualtrics__directory_mailing_list_tmp.sql", "compiled": true, "compiled_code": "\n \n \n \n \n \n \n \n select * \n from \"postgres\".\"qualtrics_source_integration_tests_702\".\"directory_mailing_list\"", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "alias_types": true, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null, "deprecation_date": null}, "model.qualtrics_source.stg_qualtrics__directory_contact_tmp": {"database": "postgres", "schema": "qualtrics_source_integration_tests_702_qualtrics_source", "name": "stg_qualtrics__directory_contact_tmp", "resource_type": "model", "package_name": "qualtrics_source", "path": "tmp/stg_qualtrics__directory_contact_tmp.sql", "original_file_path": "models/tmp/stg_qualtrics__directory_contact_tmp.sql", "unique_id": "model.qualtrics_source.stg_qualtrics__directory_contact_tmp", "fqn": ["qualtrics_source", "tmp", "stg_qualtrics__directory_contact_tmp"], "alias": "stg_qualtrics__directory_contact_tmp", "checksum": {"name": "sha256", "checksum": "cd03fb1bde2bfd3e28707465eba10e23984e73cd9d5035e899e1c5e56a98f54b"}, "config": {"enabled": true, "alias": null, "schema": "qualtrics_source", "database": null, "tags": ["qualtrics", "fivetran_package", "staging"], "meta": {}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {"relation": true, "columns": true}, "post-hook": [], "pre-hook": [], "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "on_configuration_change": "apply", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false, "alias_types": true}, "access": "protected"}, "tags": ["qualtrics", "fivetran_package", "staging"], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"tags": ["qualtrics", "fivetran_package", "staging"], "schema": "qualtrics_source", "materialized": "view", "persist_docs": {"relation": true, "columns": "{{ false if target.type in ['spark','databricks'] else true }}"}}, "created_at": 1714419376.255688, "relation_name": "\"postgres\".\"qualtrics_source_integration_tests_702_qualtrics_source\".\"stg_qualtrics__directory_contact_tmp\"", "raw_code": "{{\n fivetran_utils.union_data(\n table_identifier='directory_contact', \n database_variable='qualtrics_database', \n schema_variable='qualtrics_schema', \n default_database=target.database,\n default_schema='qualtrics',\n default_variable='directory_contact',\n union_schema_variable='qualtrics_union_schemas',\n union_database_variable='qualtrics_union_databases'\n )\n}}", "language": "sql", "refs": [], "sources": [["qualtrics", "directory_contact"], ["qualtrics", "directory_contact"]], "metrics": [], "depends_on": {"macros": ["macro.fivetran_utils.union_data"], "nodes": ["source.qualtrics_source.qualtrics.directory_contact"]}, "compiled_path": "target/compiled/qualtrics_source/models/tmp/stg_qualtrics__directory_contact_tmp.sql", "compiled": true, "compiled_code": "\n \n \n \n \n \n \n \n select * \n from \"postgres\".\"qualtrics_source_integration_tests_702\".\"directory_contact\"", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "alias_types": true, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null, "deprecation_date": null}, "model.qualtrics_source.stg_qualtrics__block_tmp": {"database": "postgres", "schema": "qualtrics_source_integration_tests_702_qualtrics_source", "name": "stg_qualtrics__block_tmp", "resource_type": "model", "package_name": "qualtrics_source", "path": "tmp/stg_qualtrics__block_tmp.sql", "original_file_path": "models/tmp/stg_qualtrics__block_tmp.sql", "unique_id": "model.qualtrics_source.stg_qualtrics__block_tmp", "fqn": ["qualtrics_source", "tmp", "stg_qualtrics__block_tmp"], "alias": "stg_qualtrics__block_tmp", "checksum": {"name": "sha256", "checksum": "b4300ff80d5e8628a57e45a6ac0febcecf9ac198880b8296064aede3fbb5456c"}, "config": {"enabled": true, "alias": null, "schema": "qualtrics_source", "database": null, "tags": ["qualtrics", "fivetran_package", "staging"], "meta": {}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {"relation": true, "columns": true}, "post-hook": [], "pre-hook": [], "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "on_configuration_change": "apply", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false, "alias_types": true}, "access": "protected"}, "tags": ["qualtrics", "fivetran_package", "staging"], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"tags": ["qualtrics", "fivetran_package", "staging"], "schema": "qualtrics_source", "materialized": "view", "persist_docs": {"relation": true, "columns": "{{ false if target.type in ['spark','databricks'] else true }}"}}, "created_at": 1714419376.2600892, "relation_name": "\"postgres\".\"qualtrics_source_integration_tests_702_qualtrics_source\".\"stg_qualtrics__block_tmp\"", "raw_code": "{{\n fivetran_utils.union_data(\n table_identifier='block', \n database_variable='qualtrics_database', \n schema_variable='qualtrics_schema', \n default_database=target.database,\n default_schema='qualtrics',\n default_variable='block',\n union_schema_variable='qualtrics_union_schemas',\n union_database_variable='qualtrics_union_databases'\n )\n}}", "language": "sql", "refs": [], "sources": [["qualtrics", "block"], ["qualtrics", "block"]], "metrics": [], "depends_on": {"macros": ["macro.fivetran_utils.union_data"], "nodes": ["source.qualtrics_source.qualtrics.block"]}, "compiled_path": "target/compiled/qualtrics_source/models/tmp/stg_qualtrics__block_tmp.sql", "compiled": true, "compiled_code": "\n \n \n \n \n \n \n \n select * \n from \"postgres\".\"qualtrics_source_integration_tests_702\".\"block\"", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "alias_types": true, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null, "deprecation_date": null}, "model.qualtrics_source.stg_qualtrics__survey_embedded_data_tmp": {"database": "postgres", "schema": "qualtrics_source_integration_tests_702_qualtrics_source", "name": "stg_qualtrics__survey_embedded_data_tmp", "resource_type": "model", "package_name": "qualtrics_source", "path": "tmp/stg_qualtrics__survey_embedded_data_tmp.sql", "original_file_path": "models/tmp/stg_qualtrics__survey_embedded_data_tmp.sql", "unique_id": "model.qualtrics_source.stg_qualtrics__survey_embedded_data_tmp", "fqn": ["qualtrics_source", "tmp", "stg_qualtrics__survey_embedded_data_tmp"], "alias": "stg_qualtrics__survey_embedded_data_tmp", "checksum": {"name": "sha256", "checksum": "b1007ac04a063897a03a96e7648d588d1ec0034d4f1ae0cbcc6c206bff6db3b0"}, "config": {"enabled": true, "alias": null, "schema": "qualtrics_source", "database": null, "tags": ["qualtrics", "fivetran_package", "staging"], "meta": {}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {"relation": true, "columns": true}, "post-hook": [], "pre-hook": [], "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "on_configuration_change": "apply", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false, "alias_types": true}, "access": "protected"}, "tags": ["qualtrics", "fivetran_package", "staging"], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"tags": ["qualtrics", "fivetran_package", "staging"], "schema": "qualtrics_source", "materialized": "view", "persist_docs": {"relation": true, "columns": "{{ false if target.type in ['spark','databricks'] else true }}"}}, "created_at": 1714419376.2644339, "relation_name": "\"postgres\".\"qualtrics_source_integration_tests_702_qualtrics_source\".\"stg_qualtrics__survey_embedded_data_tmp\"", "raw_code": "{{\n fivetran_utils.union_data(\n table_identifier='survey_embedded_data', \n database_variable='qualtrics_database', \n schema_variable='qualtrics_schema', \n default_database=target.database,\n default_schema='qualtrics',\n default_variable='survey_embedded_data',\n union_schema_variable='qualtrics_union_schemas',\n union_database_variable='qualtrics_union_databases'\n )\n}}", "language": "sql", "refs": [], "sources": [["qualtrics", "survey_embedded_data"], ["qualtrics", "survey_embedded_data"]], "metrics": [], "depends_on": {"macros": ["macro.fivetran_utils.union_data"], "nodes": ["source.qualtrics_source.qualtrics.survey_embedded_data"]}, "compiled_path": "target/compiled/qualtrics_source/models/tmp/stg_qualtrics__survey_embedded_data_tmp.sql", "compiled": true, "compiled_code": "\n \n \n \n \n \n \n \n select * \n from \"postgres\".\"qualtrics_source_integration_tests_702\".\"survey_embedded_data\"", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "alias_types": true, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null, "deprecation_date": null}, "model.qualtrics_source.stg_qualtrics__user_tmp": {"database": "postgres", "schema": "qualtrics_source_integration_tests_702_qualtrics_source", "name": "stg_qualtrics__user_tmp", "resource_type": "model", "package_name": "qualtrics_source", "path": "tmp/stg_qualtrics__user_tmp.sql", "original_file_path": "models/tmp/stg_qualtrics__user_tmp.sql", "unique_id": "model.qualtrics_source.stg_qualtrics__user_tmp", "fqn": ["qualtrics_source", "tmp", "stg_qualtrics__user_tmp"], "alias": "stg_qualtrics__user_tmp", "checksum": {"name": "sha256", "checksum": "1520d2da463067fc5857960e55a02f71a05318d4491f70cca4a6e35d86418b73"}, "config": {"enabled": true, "alias": null, "schema": "qualtrics_source", "database": null, "tags": ["qualtrics", "fivetran_package", "staging"], "meta": {}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {"relation": true, "columns": true}, "post-hook": [], "pre-hook": [], "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "on_configuration_change": "apply", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false, "alias_types": true}, "access": "protected"}, "tags": ["qualtrics", "fivetran_package", "staging"], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"tags": ["qualtrics", "fivetran_package", "staging"], "schema": "qualtrics_source", "materialized": "view", "persist_docs": {"relation": true, "columns": "{{ false if target.type in ['spark','databricks'] else true }}"}}, "created_at": 1714419376.2688498, "relation_name": "\"postgres\".\"qualtrics_source_integration_tests_702_qualtrics_source\".\"stg_qualtrics__user_tmp\"", "raw_code": "{{\n fivetran_utils.union_data(\n table_identifier='user', \n database_variable='qualtrics_database', \n schema_variable='qualtrics_schema', \n default_database=target.database,\n default_schema='qualtrics',\n default_variable='user',\n union_schema_variable='qualtrics_union_schemas',\n union_database_variable='qualtrics_union_databases'\n )\n}}", "language": "sql", "refs": [], "sources": [["qualtrics", "user"], ["qualtrics", "user"]], "metrics": [], "depends_on": {"macros": ["macro.fivetran_utils.union_data"], "nodes": ["source.qualtrics_source.qualtrics.user"]}, "compiled_path": "target/compiled/qualtrics_source/models/tmp/stg_qualtrics__user_tmp.sql", "compiled": true, "compiled_code": "\n \n \n \n \n \n \n \n select * \n from \"postgres\".\"qualtrics_source_integration_tests_702\".\"user\"", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "alias_types": true, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null, "deprecation_date": null}, "model.qualtrics_source.stg_qualtrics__question_response_tmp": {"database": "postgres", "schema": "qualtrics_source_integration_tests_702_qualtrics_source", "name": "stg_qualtrics__question_response_tmp", "resource_type": "model", "package_name": "qualtrics_source", "path": "tmp/stg_qualtrics__question_response_tmp.sql", "original_file_path": "models/tmp/stg_qualtrics__question_response_tmp.sql", "unique_id": "model.qualtrics_source.stg_qualtrics__question_response_tmp", "fqn": ["qualtrics_source", "tmp", "stg_qualtrics__question_response_tmp"], "alias": "stg_qualtrics__question_response_tmp", "checksum": {"name": "sha256", "checksum": "4c4e65873dc78879bf922bdb9d12a38f92731ad219328e9100f92e93acd9270c"}, "config": {"enabled": true, "alias": null, "schema": "qualtrics_source", "database": null, "tags": ["qualtrics", "fivetran_package", "staging"], "meta": {}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {"relation": true, "columns": true}, "post-hook": [], "pre-hook": [], "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "on_configuration_change": "apply", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false, "alias_types": true}, "access": "protected"}, "tags": ["qualtrics", "fivetran_package", "staging"], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"tags": ["qualtrics", "fivetran_package", "staging"], "schema": "qualtrics_source", "materialized": "view", "persist_docs": {"relation": true, "columns": "{{ false if target.type in ['spark','databricks'] else true }}"}}, "created_at": 1714419376.273246, "relation_name": "\"postgres\".\"qualtrics_source_integration_tests_702_qualtrics_source\".\"stg_qualtrics__question_response_tmp\"", "raw_code": "{{\n fivetran_utils.union_data(\n table_identifier='question_response', \n database_variable='qualtrics_database', \n schema_variable='qualtrics_schema', \n default_database=target.database,\n default_schema='qualtrics',\n default_variable='question_response',\n union_schema_variable='qualtrics_union_schemas',\n union_database_variable='qualtrics_union_databases'\n )\n}}", "language": "sql", "refs": [], "sources": [["qualtrics", "question_response"], ["qualtrics", "question_response"]], "metrics": [], "depends_on": {"macros": ["macro.fivetran_utils.union_data"], "nodes": ["source.qualtrics_source.qualtrics.question_response"]}, "compiled_path": "target/compiled/qualtrics_source/models/tmp/stg_qualtrics__question_response_tmp.sql", "compiled": true, "compiled_code": "\n \n \n \n \n \n \n \n select * \n from \"postgres\".\"qualtrics_source_integration_tests_702\".\"question_response\"", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "alias_types": true, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null, "deprecation_date": null}, "model.qualtrics_source.stg_qualtrics__core_contact_tmp": {"database": "postgres", "schema": "qualtrics_source_integration_tests_702_qualtrics_source", "name": "stg_qualtrics__core_contact_tmp", "resource_type": "model", "package_name": "qualtrics_source", "path": "tmp/stg_qualtrics__core_contact_tmp.sql", "original_file_path": "models/tmp/stg_qualtrics__core_contact_tmp.sql", "unique_id": "model.qualtrics_source.stg_qualtrics__core_contact_tmp", "fqn": ["qualtrics_source", "tmp", "stg_qualtrics__core_contact_tmp"], "alias": "stg_qualtrics__core_contact_tmp", "checksum": {"name": "sha256", "checksum": "de453d9f869d610f5e3c6b138cf9d1540b26b120ccff6e3d85386c5515eefd91"}, "config": {"enabled": true, "alias": null, "schema": "qualtrics_source", "database": null, "tags": ["qualtrics", "fivetran_package", "staging"], "meta": {}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {"relation": true, "columns": true}, "post-hook": [], "pre-hook": [], "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "on_configuration_change": "apply", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false, "alias_types": true}, "access": "protected"}, "tags": ["qualtrics", "fivetran_package", "staging"], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"tags": ["qualtrics", "fivetran_package", "staging"], "schema": "qualtrics_source", "materialized": "view", "enabled": true, "persist_docs": {"relation": true, "columns": "{{ false if target.type in ['spark','databricks'] else true }}"}}, "created_at": 1714419376.278382, "relation_name": "\"postgres\".\"qualtrics_source_integration_tests_702_qualtrics_source\".\"stg_qualtrics__core_contact_tmp\"", "raw_code": "{{ config(enabled=var('qualtrics__using_core_contacts', false)) }}\n-- can disable \n{{\n fivetran_utils.union_data(\n table_identifier='core_contact', \n database_variable='qualtrics_database', \n schema_variable='qualtrics_schema', \n default_database=target.database,\n default_schema='qualtrics',\n default_variable='core_contact',\n union_schema_variable='qualtrics_union_schemas',\n union_database_variable='qualtrics_union_databases'\n )\n}}", "language": "sql", "refs": [], "sources": [["qualtrics", "core_contact"], ["qualtrics", "core_contact"]], "metrics": [], "depends_on": {"macros": ["macro.fivetran_utils.union_data"], "nodes": ["source.qualtrics_source.qualtrics.core_contact"]}, "compiled_path": "target/compiled/qualtrics_source/models/tmp/stg_qualtrics__core_contact_tmp.sql", "compiled": true, "compiled_code": "\n-- can disable \n\n \n \n \n \n \n \n \n select * \n from \"postgres\".\"qualtrics_source_integration_tests_702\".\"core_contact\"", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "alias_types": true, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null, "deprecation_date": null}, "model.qualtrics_source.stg_qualtrics__survey_version_tmp": {"database": "postgres", "schema": "qualtrics_source_integration_tests_702_qualtrics_source", "name": "stg_qualtrics__survey_version_tmp", "resource_type": "model", "package_name": "qualtrics_source", "path": "tmp/stg_qualtrics__survey_version_tmp.sql", "original_file_path": "models/tmp/stg_qualtrics__survey_version_tmp.sql", "unique_id": "model.qualtrics_source.stg_qualtrics__survey_version_tmp", "fqn": ["qualtrics_source", "tmp", "stg_qualtrics__survey_version_tmp"], "alias": "stg_qualtrics__survey_version_tmp", "checksum": {"name": "sha256", "checksum": "7de6955c25cf9112b7f4812bc1ee82a99adb7bd0596a503a8c3418d99be7b0fc"}, "config": {"enabled": true, "alias": null, "schema": "qualtrics_source", "database": null, "tags": ["qualtrics", "fivetran_package", "staging"], "meta": {}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {"relation": true, "columns": true}, "post-hook": [], "pre-hook": [], "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "on_configuration_change": "apply", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false, "alias_types": true}, "access": "protected"}, "tags": ["qualtrics", "fivetran_package", "staging"], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"tags": ["qualtrics", "fivetran_package", "staging"], "schema": "qualtrics_source", "materialized": "view", "persist_docs": {"relation": true, "columns": "{{ false if target.type in ['spark','databricks'] else true }}"}}, "created_at": 1714419376.2830021, "relation_name": "\"postgres\".\"qualtrics_source_integration_tests_702_qualtrics_source\".\"stg_qualtrics__survey_version_tmp\"", "raw_code": "{{\n fivetran_utils.union_data(\n table_identifier='survey_version', \n database_variable='qualtrics_database', \n schema_variable='qualtrics_schema', \n default_database=target.database,\n default_schema='qualtrics',\n default_variable='survey_version',\n union_schema_variable='qualtrics_union_schemas',\n union_database_variable='qualtrics_union_databases'\n )\n}}", "language": "sql", "refs": [], "sources": [["qualtrics", "survey_version"], ["qualtrics", "survey_version"]], "metrics": [], "depends_on": {"macros": ["macro.fivetran_utils.union_data"], "nodes": ["source.qualtrics_source.qualtrics.survey_version"]}, "compiled_path": "target/compiled/qualtrics_source/models/tmp/stg_qualtrics__survey_version_tmp.sql", "compiled": true, "compiled_code": "\n \n \n \n \n \n \n \n select * \n from \"postgres\".\"qualtrics_source_integration_tests_702\".\"survey_version\"", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "alias_types": true, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null, "deprecation_date": null}, "model.qualtrics_source.stg_qualtrics__sub_question_tmp": {"database": "postgres", "schema": "qualtrics_source_integration_tests_702_qualtrics_source", "name": "stg_qualtrics__sub_question_tmp", "resource_type": "model", "package_name": "qualtrics_source", "path": "tmp/stg_qualtrics__sub_question_tmp.sql", "original_file_path": "models/tmp/stg_qualtrics__sub_question_tmp.sql", "unique_id": "model.qualtrics_source.stg_qualtrics__sub_question_tmp", "fqn": ["qualtrics_source", "tmp", "stg_qualtrics__sub_question_tmp"], "alias": "stg_qualtrics__sub_question_tmp", "checksum": {"name": "sha256", "checksum": "e1c78c3bfc4b8edd62ca16fd5a3f88e9a9eb6dccaf68c1fd07cbea82f7608895"}, "config": {"enabled": true, "alias": null, "schema": "qualtrics_source", "database": null, "tags": ["qualtrics", "fivetran_package", "staging"], "meta": {}, "group": null, "materialized": "view", "incremental_strategy": null, "persist_docs": {"relation": true, "columns": true}, "post-hook": [], "pre-hook": [], "quoting": {}, "column_types": {}, "full_refresh": null, "unique_key": null, "on_schema_change": "ignore", "on_configuration_change": "apply", "grants": {}, "packages": [], "docs": {"show": true, "node_color": null}, "contract": {"enforced": false, "alias_types": true}, "access": "protected"}, "tags": ["qualtrics", "fivetran_package", "staging"], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"tags": ["qualtrics", "fivetran_package", "staging"], "schema": "qualtrics_source", "materialized": "view", "persist_docs": {"relation": true, "columns": "{{ false if target.type in ['spark','databricks'] else true }}"}}, "created_at": 1714419376.286965, "relation_name": "\"postgres\".\"qualtrics_source_integration_tests_702_qualtrics_source\".\"stg_qualtrics__sub_question_tmp\"", "raw_code": "{{\n fivetran_utils.union_data(\n table_identifier='sub_question', \n database_variable='qualtrics_database', \n schema_variable='qualtrics_schema', \n default_database=target.database,\n default_schema='qualtrics',\n default_variable='sub_question',\n union_schema_variable='qualtrics_union_schemas',\n union_database_variable='qualtrics_union_databases'\n )\n}}", "language": "sql", "refs": [], "sources": [["qualtrics", "sub_question"], ["qualtrics", "sub_question"]], "metrics": [], "depends_on": {"macros": ["macro.fivetran_utils.union_data"], "nodes": ["source.qualtrics_source.qualtrics.sub_question"]}, "compiled_path": "target/compiled/qualtrics_source/models/tmp/stg_qualtrics__sub_question_tmp.sql", "compiled": true, "compiled_code": "\n \n \n \n \n \n \n \n select * \n from \"postgres\".\"qualtrics_source_integration_tests_702\".\"sub_question\"", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "alias_types": true, "checksum": null}, "access": "protected", "constraints": [], "version": null, "latest_version": null, "deprecation_date": null}, "test.qualtrics_source.not_null_stg_qualtrics__user_user_id.816e912ff9": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "user_id", "model": "{{ get_where_subquery(ref('stg_qualtrics__user')) }}"}, "namespace": null}, "database": "postgres", "schema": "qualtrics_source_integration_tests_702_dbt_test__audit", "name": "not_null_stg_qualtrics__user_user_id", "resource_type": "test", "package_name": "qualtrics_source", "path": "not_null_stg_qualtrics__user_user_id.sql", "original_file_path": "models/stg_qualtrics.yml", "unique_id": "test.qualtrics_source.not_null_stg_qualtrics__user_user_id.816e912ff9", "fqn": ["qualtrics_source", "not_null_stg_qualtrics__user_user_id"], "alias": "not_null_stg_qualtrics__user_user_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "store_failures_as": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1714419376.538003, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "stg_qualtrics__user", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.qualtrics_source.stg_qualtrics__user"]}, "compiled_path": "target/compiled/qualtrics_source/models/stg_qualtrics.yml/not_null_stg_qualtrics__user_user_id.sql", "compiled": true, "compiled_code": "\n \n \n\n\n\nselect user_id\nfrom \"postgres\".\"qualtrics_source_integration_tests_702_qualtrics_source\".\"stg_qualtrics__user\"\nwhere user_id is null\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "alias_types": true, "checksum": null}, "column_name": "user_id", "file_key_name": "models.stg_qualtrics__user", "attached_node": "model.qualtrics_source.stg_qualtrics__user"}, "test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__user_user_id__source_relation.73c4de157d": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["user_id", "source_relation"], "model": "{{ get_where_subquery(ref('stg_qualtrics__user')) }}"}, "namespace": "dbt_utils"}, "database": "postgres", "schema": "qualtrics_source_integration_tests_702_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_stg_qualtrics__user_user_id__source_relation", "resource_type": "test", "package_name": "qualtrics_source", "path": "dbt_utils_unique_combination_o_18f05248a708f9c9e991884ca8029d67.sql", "original_file_path": "models/stg_qualtrics.yml", "unique_id": "test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__user_user_id__source_relation.73c4de157d", "fqn": ["qualtrics_source", "dbt_utils_unique_combination_of_columns_stg_qualtrics__user_user_id__source_relation"], "alias": "dbt_utils_unique_combination_o_18f05248a708f9c9e991884ca8029d67", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_18f05248a708f9c9e991884ca8029d67", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "store_failures_as": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_18f05248a708f9c9e991884ca8029d67"}, "created_at": 1714419376.541078, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_18f05248a708f9c9e991884ca8029d67\") }}", "language": "sql", "refs": [{"name": "stg_qualtrics__user", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.qualtrics_source.stg_qualtrics__user"]}, "compiled_path": "target/compiled/qualtrics_source/models/stg_qualtrics.yml/dbt_utils_unique_combination_o_18f05248a708f9c9e991884ca8029d67.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n user_id, source_relation\n from \"postgres\".\"qualtrics_source_integration_tests_702_qualtrics_source\".\"stg_qualtrics__user\"\n group by user_id, source_relation\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "alias_types": true, "checksum": null}, "column_name": null, "file_key_name": "models.stg_qualtrics__user", "attached_node": "model.qualtrics_source.stg_qualtrics__user"}, "test.qualtrics_source.not_null_stg_qualtrics__survey_survey_id.2796651e04": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "survey_id", "model": "{{ get_where_subquery(ref('stg_qualtrics__survey')) }}"}, "namespace": null}, "database": "postgres", "schema": "qualtrics_source_integration_tests_702_dbt_test__audit", "name": "not_null_stg_qualtrics__survey_survey_id", "resource_type": "test", "package_name": "qualtrics_source", "path": "not_null_stg_qualtrics__survey_survey_id.sql", "original_file_path": "models/stg_qualtrics.yml", "unique_id": "test.qualtrics_source.not_null_stg_qualtrics__survey_survey_id.2796651e04", "fqn": ["qualtrics_source", "not_null_stg_qualtrics__survey_survey_id"], "alias": "not_null_stg_qualtrics__survey_survey_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "store_failures_as": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1714419376.549352, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "stg_qualtrics__survey", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.qualtrics_source.stg_qualtrics__survey"]}, "compiled_path": "target/compiled/qualtrics_source/models/stg_qualtrics.yml/not_null_stg_qualtrics__survey_survey_id.sql", "compiled": true, "compiled_code": "\n \n \n\n\n\nselect survey_id\nfrom \"postgres\".\"qualtrics_source_integration_tests_702_qualtrics_source\".\"stg_qualtrics__survey\"\nwhere survey_id is null\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "alias_types": true, "checksum": null}, "column_name": "survey_id", "file_key_name": "models.stg_qualtrics__survey", "attached_node": "model.qualtrics_source.stg_qualtrics__survey"}, "test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__survey_survey_id__source_relation.a1fd5a2968": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["survey_id", "source_relation"], "model": "{{ get_where_subquery(ref('stg_qualtrics__survey')) }}"}, "namespace": "dbt_utils"}, "database": "postgres", "schema": "qualtrics_source_integration_tests_702_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_stg_qualtrics__survey_survey_id__source_relation", "resource_type": "test", "package_name": "qualtrics_source", "path": "dbt_utils_unique_combination_o_c19e664fe90b5b53e739e6d011feb36b.sql", "original_file_path": "models/stg_qualtrics.yml", "unique_id": "test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__survey_survey_id__source_relation.a1fd5a2968", "fqn": ["qualtrics_source", "dbt_utils_unique_combination_of_columns_stg_qualtrics__survey_survey_id__source_relation"], "alias": "dbt_utils_unique_combination_o_c19e664fe90b5b53e739e6d011feb36b", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_c19e664fe90b5b53e739e6d011feb36b", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "store_failures_as": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_c19e664fe90b5b53e739e6d011feb36b"}, "created_at": 1714419376.550575, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_c19e664fe90b5b53e739e6d011feb36b\") }}", "language": "sql", "refs": [{"name": "stg_qualtrics__survey", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.qualtrics_source.stg_qualtrics__survey"]}, "compiled_path": "target/compiled/qualtrics_source/models/stg_qualtrics.yml/dbt_utils_unique_combination_o_c19e664fe90b5b53e739e6d011feb36b.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n survey_id, source_relation\n from \"postgres\".\"qualtrics_source_integration_tests_702_qualtrics_source\".\"stg_qualtrics__survey\"\n group by survey_id, source_relation\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "alias_types": true, "checksum": null}, "column_name": null, "file_key_name": "models.stg_qualtrics__survey", "attached_node": "model.qualtrics_source.stg_qualtrics__survey"}, "test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__question_question_id__survey_id__source_relation.1e5f78924a": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["question_id", "survey_id", "source_relation"], "model": "{{ get_where_subquery(ref('stg_qualtrics__question')) }}"}, "namespace": "dbt_utils"}, "database": "postgres", "schema": "qualtrics_source_integration_tests_702_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_stg_qualtrics__question_question_id__survey_id__source_relation", "resource_type": "test", "package_name": "qualtrics_source", "path": "dbt_utils_unique_combination_o_55aafd880719613c53b000b2b858904a.sql", "original_file_path": "models/stg_qualtrics.yml", "unique_id": "test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__question_question_id__survey_id__source_relation.1e5f78924a", "fqn": ["qualtrics_source", "dbt_utils_unique_combination_of_columns_stg_qualtrics__question_question_id__survey_id__source_relation"], "alias": "dbt_utils_unique_combination_o_55aafd880719613c53b000b2b858904a", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_55aafd880719613c53b000b2b858904a", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "store_failures_as": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_55aafd880719613c53b000b2b858904a"}, "created_at": 1714419376.553716, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_55aafd880719613c53b000b2b858904a\") }}", "language": "sql", "refs": [{"name": "stg_qualtrics__question", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.qualtrics_source.stg_qualtrics__question"]}, "compiled_path": "target/compiled/qualtrics_source/models/stg_qualtrics.yml/dbt_utils_unique_combination_o_55aafd880719613c53b000b2b858904a.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n question_id, survey_id, source_relation\n from \"postgres\".\"qualtrics_source_integration_tests_702_qualtrics_source\".\"stg_qualtrics__question\"\n group by question_id, survey_id, source_relation\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "alias_types": true, "checksum": null}, "column_name": null, "file_key_name": "models.stg_qualtrics__question", "attached_node": "model.qualtrics_source.stg_qualtrics__question"}, "test.qualtrics_source.not_null_stg_qualtrics__question_response__fivetran_id.6e47cc53d7": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "_fivetran_id", "model": "{{ get_where_subquery(ref('stg_qualtrics__question_response')) }}"}, "namespace": null}, "database": "postgres", "schema": "qualtrics_source_integration_tests_702_dbt_test__audit", "name": "not_null_stg_qualtrics__question_response__fivetran_id", "resource_type": "test", "package_name": "qualtrics_source", "path": "not_null_stg_qualtrics__question_response__fivetran_id.sql", "original_file_path": "models/stg_qualtrics.yml", "unique_id": "test.qualtrics_source.not_null_stg_qualtrics__question_response__fivetran_id.6e47cc53d7", "fqn": ["qualtrics_source", "not_null_stg_qualtrics__question_response__fivetran_id"], "alias": "not_null_stg_qualtrics__question_response__fivetran_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "store_failures_as": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1714419376.5566669, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "stg_qualtrics__question_response", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.qualtrics_source.stg_qualtrics__question_response"]}, "compiled_path": "target/compiled/qualtrics_source/models/stg_qualtrics.yml/not_null_stg_qualtrics__question_response__fivetran_id.sql", "compiled": true, "compiled_code": "\n \n \n\n\n\nselect _fivetran_id\nfrom \"postgres\".\"qualtrics_source_integration_tests_702_qualtrics_source\".\"stg_qualtrics__question_response\"\nwhere _fivetran_id is null\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "alias_types": true, "checksum": null}, "column_name": "_fivetran_id", "file_key_name": "models.stg_qualtrics__question_response", "attached_node": "model.qualtrics_source.stg_qualtrics__question_response"}, "test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__question_response__fivetran_id__source_relation.2e0556a912": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["_fivetran_id", "source_relation"], "model": "{{ get_where_subquery(ref('stg_qualtrics__question_response')) }}"}, "namespace": "dbt_utils"}, "database": "postgres", "schema": "qualtrics_source_integration_tests_702_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_stg_qualtrics__question_response__fivetran_id__source_relation", "resource_type": "test", "package_name": "qualtrics_source", "path": "dbt_utils_unique_combination_o_ec387233df4eeec30e9bfb035d5442aa.sql", "original_file_path": "models/stg_qualtrics.yml", "unique_id": "test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__question_response__fivetran_id__source_relation.2e0556a912", "fqn": ["qualtrics_source", "dbt_utils_unique_combination_of_columns_stg_qualtrics__question_response__fivetran_id__source_relation"], "alias": "dbt_utils_unique_combination_o_ec387233df4eeec30e9bfb035d5442aa", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_ec387233df4eeec30e9bfb035d5442aa", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "store_failures_as": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_ec387233df4eeec30e9bfb035d5442aa"}, "created_at": 1714419376.5578449, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_ec387233df4eeec30e9bfb035d5442aa\") }}", "language": "sql", "refs": [{"name": "stg_qualtrics__question_response", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.qualtrics_source.stg_qualtrics__question_response"]}, "compiled_path": "target/compiled/qualtrics_source/models/stg_qualtrics.yml/dbt_utils_unique_combination_o_ec387233df4eeec30e9bfb035d5442aa.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n _fivetran_id, source_relation\n from \"postgres\".\"qualtrics_source_integration_tests_702_qualtrics_source\".\"stg_qualtrics__question_response\"\n group by _fivetran_id, source_relation\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "alias_types": true, "checksum": null}, "column_name": null, "file_key_name": "models.stg_qualtrics__question_response", "attached_node": "model.qualtrics_source.stg_qualtrics__question_response"}, "test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__question_option_question_id__survey_id__key__source_relation.af5af3057f": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["question_id", "survey_id", "key", "source_relation"], "model": "{{ get_where_subquery(ref('stg_qualtrics__question_option')) }}"}, "namespace": "dbt_utils"}, "database": "postgres", "schema": "qualtrics_source_integration_tests_702_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_stg_qualtrics__question_option_question_id__survey_id__key__source_relation", "resource_type": "test", "package_name": "qualtrics_source", "path": "dbt_utils_unique_combination_o_da96316b5057751c21638414780b06ad.sql", "original_file_path": "models/stg_qualtrics.yml", "unique_id": "test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__question_option_question_id__survey_id__key__source_relation.af5af3057f", "fqn": ["qualtrics_source", "dbt_utils_unique_combination_of_columns_stg_qualtrics__question_option_question_id__survey_id__key__source_relation"], "alias": "dbt_utils_unique_combination_o_da96316b5057751c21638414780b06ad", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_da96316b5057751c21638414780b06ad", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "store_failures_as": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_da96316b5057751c21638414780b06ad"}, "created_at": 1714419376.560887, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_da96316b5057751c21638414780b06ad\") }}", "language": "sql", "refs": [{"name": "stg_qualtrics__question_option", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.qualtrics_source.stg_qualtrics__question_option"]}, "compiled_path": "target/compiled/qualtrics_source/models/stg_qualtrics.yml/dbt_utils_unique_combination_o_da96316b5057751c21638414780b06ad.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n question_id, survey_id, key, source_relation\n from \"postgres\".\"qualtrics_source_integration_tests_702_qualtrics_source\".\"stg_qualtrics__question_option\"\n group by question_id, survey_id, key, source_relation\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "alias_types": true, "checksum": null}, "column_name": null, "file_key_name": "models.stg_qualtrics__question_option", "attached_node": "model.qualtrics_source.stg_qualtrics__question_option"}, "test.qualtrics_source.not_null_stg_qualtrics__survey_response_response_id.864d3a83e3": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "response_id", "model": "{{ get_where_subquery(ref('stg_qualtrics__survey_response')) }}"}, "namespace": null}, "database": "postgres", "schema": "qualtrics_source_integration_tests_702_dbt_test__audit", "name": "not_null_stg_qualtrics__survey_response_response_id", "resource_type": "test", "package_name": "qualtrics_source", "path": "not_null_stg_qualtrics__survey_response_response_id.sql", "original_file_path": "models/stg_qualtrics.yml", "unique_id": "test.qualtrics_source.not_null_stg_qualtrics__survey_response_response_id.864d3a83e3", "fqn": ["qualtrics_source", "not_null_stg_qualtrics__survey_response_response_id"], "alias": "not_null_stg_qualtrics__survey_response_response_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "store_failures_as": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1714419376.5638819, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "stg_qualtrics__survey_response", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.qualtrics_source.stg_qualtrics__survey_response"]}, "compiled_path": "target/compiled/qualtrics_source/models/stg_qualtrics.yml/not_null_stg_qualtrics__survey_response_response_id.sql", "compiled": true, "compiled_code": "\n \n \n\n\n\nselect response_id\nfrom \"postgres\".\"qualtrics_source_integration_tests_702_qualtrics_source\".\"stg_qualtrics__survey_response\"\nwhere response_id is null\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "alias_types": true, "checksum": null}, "column_name": "response_id", "file_key_name": "models.stg_qualtrics__survey_response", "attached_node": "model.qualtrics_source.stg_qualtrics__survey_response"}, "test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__survey_response_response_id__source_relation.c97ddff72b": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["response_id", "source_relation"], "model": "{{ get_where_subquery(ref('stg_qualtrics__survey_response')) }}"}, "namespace": "dbt_utils"}, "database": "postgres", "schema": "qualtrics_source_integration_tests_702_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_stg_qualtrics__survey_response_response_id__source_relation", "resource_type": "test", "package_name": "qualtrics_source", "path": "dbt_utils_unique_combination_o_4b6d65a8c633cf1cbbf90221fda685c2.sql", "original_file_path": "models/stg_qualtrics.yml", "unique_id": "test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__survey_response_response_id__source_relation.c97ddff72b", "fqn": ["qualtrics_source", "dbt_utils_unique_combination_of_columns_stg_qualtrics__survey_response_response_id__source_relation"], "alias": "dbt_utils_unique_combination_o_4b6d65a8c633cf1cbbf90221fda685c2", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_4b6d65a8c633cf1cbbf90221fda685c2", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "store_failures_as": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_4b6d65a8c633cf1cbbf90221fda685c2"}, "created_at": 1714419376.565378, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_4b6d65a8c633cf1cbbf90221fda685c2\") }}", "language": "sql", "refs": [{"name": "stg_qualtrics__survey_response", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.qualtrics_source.stg_qualtrics__survey_response"]}, "compiled_path": "target/compiled/qualtrics_source/models/stg_qualtrics.yml/dbt_utils_unique_combination_o_4b6d65a8c633cf1cbbf90221fda685c2.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n response_id, source_relation\n from \"postgres\".\"qualtrics_source_integration_tests_702_qualtrics_source\".\"stg_qualtrics__survey_response\"\n group by response_id, source_relation\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "alias_types": true, "checksum": null}, "column_name": null, "file_key_name": "models.stg_qualtrics__survey_response", "attached_node": "model.qualtrics_source.stg_qualtrics__survey_response"}, "test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__sub_question_question_id__survey_id__key__source_relation.12c68e2ef2": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["question_id", "survey_id", "key", "source_relation"], "model": "{{ get_where_subquery(ref('stg_qualtrics__sub_question')) }}"}, "namespace": "dbt_utils"}, "database": "postgres", "schema": "qualtrics_source_integration_tests_702_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_stg_qualtrics__sub_question_question_id__survey_id__key__source_relation", "resource_type": "test", "package_name": "qualtrics_source", "path": "dbt_utils_unique_combination_o_2b9662452e1b0c5e6c3c69d1c14821fd.sql", "original_file_path": "models/stg_qualtrics.yml", "unique_id": "test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__sub_question_question_id__survey_id__key__source_relation.12c68e2ef2", "fqn": ["qualtrics_source", "dbt_utils_unique_combination_of_columns_stg_qualtrics__sub_question_question_id__survey_id__key__source_relation"], "alias": "dbt_utils_unique_combination_o_2b9662452e1b0c5e6c3c69d1c14821fd", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_2b9662452e1b0c5e6c3c69d1c14821fd", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "store_failures_as": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_2b9662452e1b0c5e6c3c69d1c14821fd"}, "created_at": 1714419376.5685601, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_2b9662452e1b0c5e6c3c69d1c14821fd\") }}", "language": "sql", "refs": [{"name": "stg_qualtrics__sub_question", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.qualtrics_source.stg_qualtrics__sub_question"]}, "compiled_path": "target/compiled/qualtrics_source/models/stg_qualtrics.yml/dbt_utils_unique_combination_o_2b9662452e1b0c5e6c3c69d1c14821fd.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n question_id, survey_id, key, source_relation\n from \"postgres\".\"qualtrics_source_integration_tests_702_qualtrics_source\".\"stg_qualtrics__sub_question\"\n group by question_id, survey_id, key, source_relation\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "alias_types": true, "checksum": null}, "column_name": null, "file_key_name": "models.stg_qualtrics__sub_question", "attached_node": "model.qualtrics_source.stg_qualtrics__sub_question"}, "test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__survey_version_version_id__survey_id__source_relation.513ef528c1": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["version_id", "survey_id", "source_relation"], "model": "{{ get_where_subquery(ref('stg_qualtrics__survey_version')) }}"}, "namespace": "dbt_utils"}, "database": "postgres", "schema": "qualtrics_source_integration_tests_702_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_stg_qualtrics__survey_version_version_id__survey_id__source_relation", "resource_type": "test", "package_name": "qualtrics_source", "path": "dbt_utils_unique_combination_o_b063fac05c003d55d85510f91bdee2a4.sql", "original_file_path": "models/stg_qualtrics.yml", "unique_id": "test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__survey_version_version_id__survey_id__source_relation.513ef528c1", "fqn": ["qualtrics_source", "dbt_utils_unique_combination_of_columns_stg_qualtrics__survey_version_version_id__survey_id__source_relation"], "alias": "dbt_utils_unique_combination_o_b063fac05c003d55d85510f91bdee2a4", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_b063fac05c003d55d85510f91bdee2a4", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "store_failures_as": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_b063fac05c003d55d85510f91bdee2a4"}, "created_at": 1714419376.572147, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_b063fac05c003d55d85510f91bdee2a4\") }}", "language": "sql", "refs": [{"name": "stg_qualtrics__survey_version", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.qualtrics_source.stg_qualtrics__survey_version"]}, "compiled_path": "target/compiled/qualtrics_source/models/stg_qualtrics.yml/dbt_utils_unique_combination_o_b063fac05c003d55d85510f91bdee2a4.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n version_id, survey_id, source_relation\n from \"postgres\".\"qualtrics_source_integration_tests_702_qualtrics_source\".\"stg_qualtrics__survey_version\"\n group by version_id, survey_id, source_relation\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "alias_types": true, "checksum": null}, "column_name": null, "file_key_name": "models.stg_qualtrics__survey_version", "attached_node": "model.qualtrics_source.stg_qualtrics__survey_version"}, "test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__survey_embedded_data_import_id__response_id__key__value__source_relation.73ba345920": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["import_id", "response_id", "key", "value", "source_relation"], "model": "{{ get_where_subquery(ref('stg_qualtrics__survey_embedded_data')) }}"}, "namespace": "dbt_utils"}, "database": "postgres", "schema": "qualtrics_source_integration_tests_702_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_stg_qualtrics__survey_embedded_data_import_id__response_id__key__value__source_relation", "resource_type": "test", "package_name": "qualtrics_source", "path": "dbt_utils_unique_combination_o_1c22b6d3b0634406466210bcaa3920a7.sql", "original_file_path": "models/stg_qualtrics.yml", "unique_id": "test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__survey_embedded_data_import_id__response_id__key__value__source_relation.73ba345920", "fqn": ["qualtrics_source", "dbt_utils_unique_combination_of_columns_stg_qualtrics__survey_embedded_data_import_id__response_id__key__value__source_relation"], "alias": "dbt_utils_unique_combination_o_1c22b6d3b0634406466210bcaa3920a7", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_1c22b6d3b0634406466210bcaa3920a7", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "store_failures_as": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_1c22b6d3b0634406466210bcaa3920a7"}, "created_at": 1714419376.575514, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_1c22b6d3b0634406466210bcaa3920a7\") }}", "language": "sql", "refs": [{"name": "stg_qualtrics__survey_embedded_data", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.qualtrics_source.stg_qualtrics__survey_embedded_data"]}, "compiled_path": "target/compiled/qualtrics_source/models/stg_qualtrics.yml/dbt_utils_unique_combination_o_1c22b6d3b0634406466210bcaa3920a7.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n import_id, response_id, key, value, source_relation\n from \"postgres\".\"qualtrics_source_integration_tests_702_qualtrics_source\".\"stg_qualtrics__survey_embedded_data\"\n group by import_id, response_id, key, value, source_relation\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "alias_types": true, "checksum": null}, "column_name": null, "file_key_name": "models.stg_qualtrics__survey_embedded_data", "attached_node": "model.qualtrics_source.stg_qualtrics__survey_embedded_data"}, "test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__block_block_id__survey_id__source_relation.9105cad472": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["block_id", "survey_id", "source_relation"], "model": "{{ get_where_subquery(ref('stg_qualtrics__block')) }}"}, "namespace": "dbt_utils"}, "database": "postgres", "schema": "qualtrics_source_integration_tests_702_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_stg_qualtrics__block_block_id__survey_id__source_relation", "resource_type": "test", "package_name": "qualtrics_source", "path": "dbt_utils_unique_combination_o_ed191aee3da2fff9f522af5cd2bcfb75.sql", "original_file_path": "models/stg_qualtrics.yml", "unique_id": "test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__block_block_id__survey_id__source_relation.9105cad472", "fqn": ["qualtrics_source", "dbt_utils_unique_combination_of_columns_stg_qualtrics__block_block_id__survey_id__source_relation"], "alias": "dbt_utils_unique_combination_o_ed191aee3da2fff9f522af5cd2bcfb75", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_ed191aee3da2fff9f522af5cd2bcfb75", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "store_failures_as": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_ed191aee3da2fff9f522af5cd2bcfb75"}, "created_at": 1714419376.578094, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_ed191aee3da2fff9f522af5cd2bcfb75\") }}", "language": "sql", "refs": [{"name": "stg_qualtrics__block", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.qualtrics_source.stg_qualtrics__block"]}, "compiled_path": "target/compiled/qualtrics_source/models/stg_qualtrics.yml/dbt_utils_unique_combination_o_ed191aee3da2fff9f522af5cd2bcfb75.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n block_id, survey_id, source_relation\n from \"postgres\".\"qualtrics_source_integration_tests_702_qualtrics_source\".\"stg_qualtrics__block\"\n group by block_id, survey_id, source_relation\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "alias_types": true, "checksum": null}, "column_name": null, "file_key_name": "models.stg_qualtrics__block", "attached_node": "model.qualtrics_source.stg_qualtrics__block"}, "test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__block_question_block_id__question_id__survey_id__source_relation.2fd7c420b5": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["block_id", "question_id", "survey_id", "source_relation"], "model": "{{ get_where_subquery(ref('stg_qualtrics__block_question')) }}"}, "namespace": "dbt_utils"}, "database": "postgres", "schema": "qualtrics_source_integration_tests_702_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_stg_qualtrics__block_question_block_id__question_id__survey_id__source_relation", "resource_type": "test", "package_name": "qualtrics_source", "path": "dbt_utils_unique_combination_o_b9e7103461a1f607bb783c24bb35691d.sql", "original_file_path": "models/stg_qualtrics.yml", "unique_id": "test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__block_question_block_id__question_id__survey_id__source_relation.2fd7c420b5", "fqn": ["qualtrics_source", "dbt_utils_unique_combination_of_columns_stg_qualtrics__block_question_block_id__question_id__survey_id__source_relation"], "alias": "dbt_utils_unique_combination_o_b9e7103461a1f607bb783c24bb35691d", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_b9e7103461a1f607bb783c24bb35691d", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "store_failures_as": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_b9e7103461a1f607bb783c24bb35691d"}, "created_at": 1714419376.580669, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_b9e7103461a1f607bb783c24bb35691d\") }}", "language": "sql", "refs": [{"name": "stg_qualtrics__block_question", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.qualtrics_source.stg_qualtrics__block_question"]}, "compiled_path": "target/compiled/qualtrics_source/models/stg_qualtrics.yml/dbt_utils_unique_combination_o_b9e7103461a1f607bb783c24bb35691d.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n block_id, question_id, survey_id, source_relation\n from \"postgres\".\"qualtrics_source_integration_tests_702_qualtrics_source\".\"stg_qualtrics__block_question\"\n group by block_id, question_id, survey_id, source_relation\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "alias_types": true, "checksum": null}, "column_name": null, "file_key_name": "models.stg_qualtrics__block_question", "attached_node": "model.qualtrics_source.stg_qualtrics__block_question"}, "test.qualtrics_source.not_null_stg_qualtrics__directory_directory_id.65413cdcf7": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "directory_id", "model": "{{ get_where_subquery(ref('stg_qualtrics__directory')) }}"}, "namespace": null}, "database": "postgres", "schema": "qualtrics_source_integration_tests_702_dbt_test__audit", "name": "not_null_stg_qualtrics__directory_directory_id", "resource_type": "test", "package_name": "qualtrics_source", "path": "not_null_stg_qualtrics__directory_directory_id.sql", "original_file_path": "models/stg_qualtrics.yml", "unique_id": "test.qualtrics_source.not_null_stg_qualtrics__directory_directory_id.65413cdcf7", "fqn": ["qualtrics_source", "not_null_stg_qualtrics__directory_directory_id"], "alias": "not_null_stg_qualtrics__directory_directory_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "store_failures_as": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1714419376.583445, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "stg_qualtrics__directory", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.qualtrics_source.stg_qualtrics__directory"]}, "compiled_path": "target/compiled/qualtrics_source/models/stg_qualtrics.yml/not_null_stg_qualtrics__directory_directory_id.sql", "compiled": true, "compiled_code": "\n \n \n\n\n\nselect directory_id\nfrom \"postgres\".\"qualtrics_source_integration_tests_702_qualtrics_source\".\"stg_qualtrics__directory\"\nwhere directory_id is null\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "alias_types": true, "checksum": null}, "column_name": "directory_id", "file_key_name": "models.stg_qualtrics__directory", "attached_node": "model.qualtrics_source.stg_qualtrics__directory"}, "test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__directory_directory_id__source_relation.9c637ae3e0": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["directory_id", "source_relation"], "model": "{{ get_where_subquery(ref('stg_qualtrics__directory')) }}"}, "namespace": "dbt_utils"}, "database": "postgres", "schema": "qualtrics_source_integration_tests_702_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_stg_qualtrics__directory_directory_id__source_relation", "resource_type": "test", "package_name": "qualtrics_source", "path": "dbt_utils_unique_combination_o_2dc64be73e308f190fac02f2b18f6553.sql", "original_file_path": "models/stg_qualtrics.yml", "unique_id": "test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__directory_directory_id__source_relation.9c637ae3e0", "fqn": ["qualtrics_source", "dbt_utils_unique_combination_of_columns_stg_qualtrics__directory_directory_id__source_relation"], "alias": "dbt_utils_unique_combination_o_2dc64be73e308f190fac02f2b18f6553", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_2dc64be73e308f190fac02f2b18f6553", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "store_failures_as": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_2dc64be73e308f190fac02f2b18f6553"}, "created_at": 1714419376.584924, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_2dc64be73e308f190fac02f2b18f6553\") }}", "language": "sql", "refs": [{"name": "stg_qualtrics__directory", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.qualtrics_source.stg_qualtrics__directory"]}, "compiled_path": "target/compiled/qualtrics_source/models/stg_qualtrics.yml/dbt_utils_unique_combination_o_2dc64be73e308f190fac02f2b18f6553.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n directory_id, source_relation\n from \"postgres\".\"qualtrics_source_integration_tests_702_qualtrics_source\".\"stg_qualtrics__directory\"\n group by directory_id, source_relation\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "alias_types": true, "checksum": null}, "column_name": null, "file_key_name": "models.stg_qualtrics__directory", "attached_node": "model.qualtrics_source.stg_qualtrics__directory"}, "test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__directory_contact_contact_id__directory_id__source_relation.a3dc488ebf": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["contact_id", "directory_id", "source_relation"], "model": "{{ get_where_subquery(ref('stg_qualtrics__directory_contact')) }}"}, "namespace": "dbt_utils"}, "database": "postgres", "schema": "qualtrics_source_integration_tests_702_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_stg_qualtrics__directory_contact_contact_id__directory_id__source_relation", "resource_type": "test", "package_name": "qualtrics_source", "path": "dbt_utils_unique_combination_o_0685be386dbfe1d71c0859e65260182d.sql", "original_file_path": "models/stg_qualtrics.yml", "unique_id": "test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__directory_contact_contact_id__directory_id__source_relation.a3dc488ebf", "fqn": ["qualtrics_source", "dbt_utils_unique_combination_of_columns_stg_qualtrics__directory_contact_contact_id__directory_id__source_relation"], "alias": "dbt_utils_unique_combination_o_0685be386dbfe1d71c0859e65260182d", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_0685be386dbfe1d71c0859e65260182d", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "store_failures_as": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_0685be386dbfe1d71c0859e65260182d"}, "created_at": 1714419376.589076, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_0685be386dbfe1d71c0859e65260182d\") }}", "language": "sql", "refs": [{"name": "stg_qualtrics__directory_contact", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.qualtrics_source.stg_qualtrics__directory_contact"]}, "compiled_path": "target/compiled/qualtrics_source/models/stg_qualtrics.yml/dbt_utils_unique_combination_o_0685be386dbfe1d71c0859e65260182d.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n contact_id, directory_id, source_relation\n from \"postgres\".\"qualtrics_source_integration_tests_702_qualtrics_source\".\"stg_qualtrics__directory_contact\"\n group by contact_id, directory_id, source_relation\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "alias_types": true, "checksum": null}, "column_name": null, "file_key_name": "models.stg_qualtrics__directory_contact", "attached_node": "model.qualtrics_source.stg_qualtrics__directory_contact"}, "test.qualtrics_source.not_null_stg_qualtrics__distribution_distribution_id.6158e414ed": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "distribution_id", "model": "{{ get_where_subquery(ref('stg_qualtrics__distribution')) }}"}, "namespace": null}, "database": "postgres", "schema": "qualtrics_source_integration_tests_702_dbt_test__audit", "name": "not_null_stg_qualtrics__distribution_distribution_id", "resource_type": "test", "package_name": "qualtrics_source", "path": "not_null_stg_qualtrics__distribution_distribution_id.sql", "original_file_path": "models/stg_qualtrics.yml", "unique_id": "test.qualtrics_source.not_null_stg_qualtrics__distribution_distribution_id.6158e414ed", "fqn": ["qualtrics_source", "not_null_stg_qualtrics__distribution_distribution_id"], "alias": "not_null_stg_qualtrics__distribution_distribution_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "store_failures_as": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1714419376.5923579, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "stg_qualtrics__distribution", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.qualtrics_source.stg_qualtrics__distribution"]}, "compiled_path": "target/compiled/qualtrics_source/models/stg_qualtrics.yml/not_null_stg_qualtrics__distribution_distribution_id.sql", "compiled": true, "compiled_code": "\n \n \n\n\n\nselect distribution_id\nfrom \"postgres\".\"qualtrics_source_integration_tests_702_qualtrics_source\".\"stg_qualtrics__distribution\"\nwhere distribution_id is null\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "alias_types": true, "checksum": null}, "column_name": "distribution_id", "file_key_name": "models.stg_qualtrics__distribution", "attached_node": "model.qualtrics_source.stg_qualtrics__distribution"}, "test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__distribution_distribution_id__source_relation.312f709e9c": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["distribution_id", "source_relation"], "model": "{{ get_where_subquery(ref('stg_qualtrics__distribution')) }}"}, "namespace": "dbt_utils"}, "database": "postgres", "schema": "qualtrics_source_integration_tests_702_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_stg_qualtrics__distribution_distribution_id__source_relation", "resource_type": "test", "package_name": "qualtrics_source", "path": "dbt_utils_unique_combination_o_247e975283f2ebcabafde5f25bd3b2f3.sql", "original_file_path": "models/stg_qualtrics.yml", "unique_id": "test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__distribution_distribution_id__source_relation.312f709e9c", "fqn": ["qualtrics_source", "dbt_utils_unique_combination_of_columns_stg_qualtrics__distribution_distribution_id__source_relation"], "alias": "dbt_utils_unique_combination_o_247e975283f2ebcabafde5f25bd3b2f3", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_247e975283f2ebcabafde5f25bd3b2f3", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "store_failures_as": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_247e975283f2ebcabafde5f25bd3b2f3"}, "created_at": 1714419376.593761, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_247e975283f2ebcabafde5f25bd3b2f3\") }}", "language": "sql", "refs": [{"name": "stg_qualtrics__distribution", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.qualtrics_source.stg_qualtrics__distribution"]}, "compiled_path": "target/compiled/qualtrics_source/models/stg_qualtrics.yml/dbt_utils_unique_combination_o_247e975283f2ebcabafde5f25bd3b2f3.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n distribution_id, source_relation\n from \"postgres\".\"qualtrics_source_integration_tests_702_qualtrics_source\".\"stg_qualtrics__distribution\"\n group by distribution_id, source_relation\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "alias_types": true, "checksum": null}, "column_name": null, "file_key_name": "models.stg_qualtrics__distribution", "attached_node": "model.qualtrics_source.stg_qualtrics__distribution"}, "test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__distribution_contact_contact_id__distribution_id__source_relation.b40826e6b2": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["contact_id", "distribution_id", "source_relation"], "model": "{{ get_where_subquery(ref('stg_qualtrics__distribution_contact')) }}"}, "namespace": "dbt_utils"}, "database": "postgres", "schema": "qualtrics_source_integration_tests_702_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_stg_qualtrics__distribution_contact_contact_id__distribution_id__source_relation", "resource_type": "test", "package_name": "qualtrics_source", "path": "dbt_utils_unique_combination_o_c192fcc0522c3acc88dfab811ca69771.sql", "original_file_path": "models/stg_qualtrics.yml", "unique_id": "test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__distribution_contact_contact_id__distribution_id__source_relation.b40826e6b2", "fqn": ["qualtrics_source", "dbt_utils_unique_combination_of_columns_stg_qualtrics__distribution_contact_contact_id__distribution_id__source_relation"], "alias": "dbt_utils_unique_combination_o_c192fcc0522c3acc88dfab811ca69771", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_c192fcc0522c3acc88dfab811ca69771", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "store_failures_as": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_c192fcc0522c3acc88dfab811ca69771"}, "created_at": 1714419376.59671, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_c192fcc0522c3acc88dfab811ca69771\") }}", "language": "sql", "refs": [{"name": "stg_qualtrics__distribution_contact", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.qualtrics_source.stg_qualtrics__distribution_contact"]}, "compiled_path": "target/compiled/qualtrics_source/models/stg_qualtrics.yml/dbt_utils_unique_combination_o_c192fcc0522c3acc88dfab811ca69771.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n contact_id, distribution_id, source_relation\n from \"postgres\".\"qualtrics_source_integration_tests_702_qualtrics_source\".\"stg_qualtrics__distribution_contact\"\n group by contact_id, distribution_id, source_relation\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "alias_types": true, "checksum": null}, "column_name": null, "file_key_name": "models.stg_qualtrics__distribution_contact", "attached_node": "model.qualtrics_source.stg_qualtrics__distribution_contact"}, "test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__directory_mailing_list_mailing_list_id__directory_id__source_relation.24870adb73": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["mailing_list_id", "directory_id", "source_relation"], "model": "{{ get_where_subquery(ref('stg_qualtrics__directory_mailing_list')) }}"}, "namespace": "dbt_utils"}, "database": "postgres", "schema": "qualtrics_source_integration_tests_702_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_stg_qualtrics__directory_mailing_list_mailing_list_id__directory_id__source_relation", "resource_type": "test", "package_name": "qualtrics_source", "path": "dbt_utils_unique_combination_o_7dbdbf3266311e47107b5e24034a004a.sql", "original_file_path": "models/stg_qualtrics.yml", "unique_id": "test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__directory_mailing_list_mailing_list_id__directory_id__source_relation.24870adb73", "fqn": ["qualtrics_source", "dbt_utils_unique_combination_of_columns_stg_qualtrics__directory_mailing_list_mailing_list_id__directory_id__source_relation"], "alias": "dbt_utils_unique_combination_o_7dbdbf3266311e47107b5e24034a004a", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_7dbdbf3266311e47107b5e24034a004a", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "store_failures_as": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_7dbdbf3266311e47107b5e24034a004a"}, "created_at": 1714419376.602585, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_7dbdbf3266311e47107b5e24034a004a\") }}", "language": "sql", "refs": [{"name": "stg_qualtrics__directory_mailing_list", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.qualtrics_source.stg_qualtrics__directory_mailing_list"]}, "compiled_path": "target/compiled/qualtrics_source/models/stg_qualtrics.yml/dbt_utils_unique_combination_o_7dbdbf3266311e47107b5e24034a004a.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n mailing_list_id, directory_id, source_relation\n from \"postgres\".\"qualtrics_source_integration_tests_702_qualtrics_source\".\"stg_qualtrics__directory_mailing_list\"\n group by mailing_list_id, directory_id, source_relation\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "alias_types": true, "checksum": null}, "column_name": null, "file_key_name": "models.stg_qualtrics__directory_mailing_list", "attached_node": "model.qualtrics_source.stg_qualtrics__directory_mailing_list"}, "test.qualtrics_source.not_null_stg_qualtrics__contact_mailing_list_membership_contact_lookup_id.32d4d7bbf5": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "contact_lookup_id", "model": "{{ get_where_subquery(ref('stg_qualtrics__contact_mailing_list_membership')) }}"}, "namespace": null}, "database": "postgres", "schema": "qualtrics_source_integration_tests_702_dbt_test__audit", "name": "not_null_stg_qualtrics__contact_mailing_list_membership_contact_lookup_id", "resource_type": "test", "package_name": "qualtrics_source", "path": "not_null_stg_qualtrics__contac_a9458d3b5d31ec47b1abf1449a7dba6d.sql", "original_file_path": "models/stg_qualtrics.yml", "unique_id": "test.qualtrics_source.not_null_stg_qualtrics__contact_mailing_list_membership_contact_lookup_id.32d4d7bbf5", "fqn": ["qualtrics_source", "not_null_stg_qualtrics__contact_mailing_list_membership_contact_lookup_id"], "alias": "not_null_stg_qualtrics__contac_a9458d3b5d31ec47b1abf1449a7dba6d", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "not_null_stg_qualtrics__contac_a9458d3b5d31ec47b1abf1449a7dba6d", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "store_failures_as": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "not_null_stg_qualtrics__contac_a9458d3b5d31ec47b1abf1449a7dba6d"}, "created_at": 1714419376.608075, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}{{ config(alias=\"not_null_stg_qualtrics__contac_a9458d3b5d31ec47b1abf1449a7dba6d\") }}", "language": "sql", "refs": [{"name": "stg_qualtrics__contact_mailing_list_membership", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.qualtrics_source.stg_qualtrics__contact_mailing_list_membership"]}, "compiled_path": "target/compiled/qualtrics_source/models/stg_qualtrics.yml/not_null_stg_qualtrics__contac_a9458d3b5d31ec47b1abf1449a7dba6d.sql", "compiled": true, "compiled_code": "\n \n \n\n\n\nselect contact_lookup_id\nfrom \"postgres\".\"qualtrics_source_integration_tests_702_qualtrics_source\".\"stg_qualtrics__contact_mailing_list_membership\"\nwhere contact_lookup_id is null\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "alias_types": true, "checksum": null}, "column_name": "contact_lookup_id", "file_key_name": "models.stg_qualtrics__contact_mailing_list_membership", "attached_node": "model.qualtrics_source.stg_qualtrics__contact_mailing_list_membership"}, "test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__contact_mailing_list_membership_contact_lookup_id__source_relation.943f4b419c": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["contact_lookup_id", "source_relation"], "model": "{{ get_where_subquery(ref('stg_qualtrics__contact_mailing_list_membership')) }}"}, "namespace": "dbt_utils"}, "database": "postgres", "schema": "qualtrics_source_integration_tests_702_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_stg_qualtrics__contact_mailing_list_membership_contact_lookup_id__source_relation", "resource_type": "test", "package_name": "qualtrics_source", "path": "dbt_utils_unique_combination_o_9779d48b4d15e44188b16350e2066a46.sql", "original_file_path": "models/stg_qualtrics.yml", "unique_id": "test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__contact_mailing_list_membership_contact_lookup_id__source_relation.943f4b419c", "fqn": ["qualtrics_source", "dbt_utils_unique_combination_of_columns_stg_qualtrics__contact_mailing_list_membership_contact_lookup_id__source_relation"], "alias": "dbt_utils_unique_combination_o_9779d48b4d15e44188b16350e2066a46", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_9779d48b4d15e44188b16350e2066a46", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "store_failures_as": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_9779d48b4d15e44188b16350e2066a46"}, "created_at": 1714419376.6094, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_9779d48b4d15e44188b16350e2066a46\") }}", "language": "sql", "refs": [{"name": "stg_qualtrics__contact_mailing_list_membership", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.qualtrics_source.stg_qualtrics__contact_mailing_list_membership"]}, "compiled_path": "target/compiled/qualtrics_source/models/stg_qualtrics.yml/dbt_utils_unique_combination_o_9779d48b4d15e44188b16350e2066a46.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n contact_lookup_id, source_relation\n from \"postgres\".\"qualtrics_source_integration_tests_702_qualtrics_source\".\"stg_qualtrics__contact_mailing_list_membership\"\n group by contact_lookup_id, source_relation\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "alias_types": true, "checksum": null}, "column_name": null, "file_key_name": "models.stg_qualtrics__contact_mailing_list_membership", "attached_node": "model.qualtrics_source.stg_qualtrics__contact_mailing_list_membership"}, "test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__core_contact_contact_id__mailing_list_id__source_relation.fbdaf339c9": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["contact_id", "mailing_list_id", "source_relation"], "model": "{{ get_where_subquery(ref('stg_qualtrics__core_contact')) }}"}, "namespace": "dbt_utils"}, "database": "postgres", "schema": "qualtrics_source_integration_tests_702_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_stg_qualtrics__core_contact_contact_id__mailing_list_id__source_relation", "resource_type": "test", "package_name": "qualtrics_source", "path": "dbt_utils_unique_combination_o_3af604bc040871fef099045a6640cb19.sql", "original_file_path": "models/stg_qualtrics.yml", "unique_id": "test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__core_contact_contact_id__mailing_list_id__source_relation.fbdaf339c9", "fqn": ["qualtrics_source", "dbt_utils_unique_combination_of_columns_stg_qualtrics__core_contact_contact_id__mailing_list_id__source_relation"], "alias": "dbt_utils_unique_combination_o_3af604bc040871fef099045a6640cb19", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_3af604bc040871fef099045a6640cb19", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "store_failures_as": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_3af604bc040871fef099045a6640cb19"}, "created_at": 1714419376.6126988, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_3af604bc040871fef099045a6640cb19\") }}", "language": "sql", "refs": [{"name": "stg_qualtrics__core_contact", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.qualtrics_source.stg_qualtrics__core_contact"]}, "compiled_path": "target/compiled/qualtrics_source/models/stg_qualtrics.yml/dbt_utils_unique_combination_o_3af604bc040871fef099045a6640cb19.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n contact_id, mailing_list_id, source_relation\n from \"postgres\".\"qualtrics_source_integration_tests_702_qualtrics_source\".\"stg_qualtrics__core_contact\"\n group by contact_id, mailing_list_id, source_relation\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "alias_types": true, "checksum": null}, "column_name": null, "file_key_name": "models.stg_qualtrics__core_contact", "attached_node": "model.qualtrics_source.stg_qualtrics__core_contact"}, "test.qualtrics_source.not_null_stg_qualtrics__core_mailing_list_mailing_list_id.344fbdd6dc": {"test_metadata": {"name": "not_null", "kwargs": {"column_name": "mailing_list_id", "model": "{{ get_where_subquery(ref('stg_qualtrics__core_mailing_list')) }}"}, "namespace": null}, "database": "postgres", "schema": "qualtrics_source_integration_tests_702_dbt_test__audit", "name": "not_null_stg_qualtrics__core_mailing_list_mailing_list_id", "resource_type": "test", "package_name": "qualtrics_source", "path": "not_null_stg_qualtrics__core_mailing_list_mailing_list_id.sql", "original_file_path": "models/stg_qualtrics.yml", "unique_id": "test.qualtrics_source.not_null_stg_qualtrics__core_mailing_list_mailing_list_id.344fbdd6dc", "fqn": ["qualtrics_source", "not_null_stg_qualtrics__core_mailing_list_mailing_list_id"], "alias": "not_null_stg_qualtrics__core_mailing_list_mailing_list_id", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": null, "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "store_failures_as": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {}, "created_at": 1714419376.615586, "relation_name": null, "raw_code": "{{ test_not_null(**_dbt_generic_test_kwargs) }}", "language": "sql", "refs": [{"name": "stg_qualtrics__core_mailing_list", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt.test_not_null", "macro.dbt.get_where_subquery"], "nodes": ["model.qualtrics_source.stg_qualtrics__core_mailing_list"]}, "compiled_path": "target/compiled/qualtrics_source/models/stg_qualtrics.yml/not_null_stg_qualtrics__core_mailing_list_mailing_list_id.sql", "compiled": true, "compiled_code": "\n \n \n\n\n\nselect mailing_list_id\nfrom \"postgres\".\"qualtrics_source_integration_tests_702_qualtrics_source\".\"stg_qualtrics__core_mailing_list\"\nwhere mailing_list_id is null\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "alias_types": true, "checksum": null}, "column_name": "mailing_list_id", "file_key_name": "models.stg_qualtrics__core_mailing_list", "attached_node": "model.qualtrics_source.stg_qualtrics__core_mailing_list"}, "test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__core_mailing_list_mailing_list_id__source_relation.fcd78a8fd6": {"test_metadata": {"name": "unique_combination_of_columns", "kwargs": {"combination_of_columns": ["mailing_list_id", "source_relation"], "model": "{{ get_where_subquery(ref('stg_qualtrics__core_mailing_list')) }}"}, "namespace": "dbt_utils"}, "database": "postgres", "schema": "qualtrics_source_integration_tests_702_dbt_test__audit", "name": "dbt_utils_unique_combination_of_columns_stg_qualtrics__core_mailing_list_mailing_list_id__source_relation", "resource_type": "test", "package_name": "qualtrics_source", "path": "dbt_utils_unique_combination_o_537fa0b90391c84a079c51c383b210b0.sql", "original_file_path": "models/stg_qualtrics.yml", "unique_id": "test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__core_mailing_list_mailing_list_id__source_relation.fcd78a8fd6", "fqn": ["qualtrics_source", "dbt_utils_unique_combination_of_columns_stg_qualtrics__core_mailing_list_mailing_list_id__source_relation"], "alias": "dbt_utils_unique_combination_o_537fa0b90391c84a079c51c383b210b0", "checksum": {"name": "none", "checksum": ""}, "config": {"enabled": true, "alias": "dbt_utils_unique_combination_o_537fa0b90391c84a079c51c383b210b0", "schema": "dbt_test__audit", "database": null, "tags": [], "meta": {}, "group": null, "materialized": "test", "severity": "ERROR", "store_failures": null, "store_failures_as": null, "where": null, "limit": null, "fail_calc": "count(*)", "warn_if": "!= 0", "error_if": "!= 0"}, "tags": [], "description": "", "columns": {}, "meta": {}, "group": null, "docs": {"show": true, "node_color": null}, "patch_path": null, "build_path": null, "deferred": false, "unrendered_config": {"alias": "dbt_utils_unique_combination_o_537fa0b90391c84a079c51c383b210b0"}, "created_at": 1714419376.616991, "relation_name": null, "raw_code": "{{ dbt_utils.test_unique_combination_of_columns(**_dbt_generic_test_kwargs) }}{{ config(alias=\"dbt_utils_unique_combination_o_537fa0b90391c84a079c51c383b210b0\") }}", "language": "sql", "refs": [{"name": "stg_qualtrics__core_mailing_list", "package": null, "version": null}], "sources": [], "metrics": [], "depends_on": {"macros": ["macro.dbt_utils.test_unique_combination_of_columns", "macro.dbt.get_where_subquery"], "nodes": ["model.qualtrics_source.stg_qualtrics__core_mailing_list"]}, "compiled_path": "target/compiled/qualtrics_source/models/stg_qualtrics.yml/dbt_utils_unique_combination_o_537fa0b90391c84a079c51c383b210b0.sql", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n mailing_list_id, source_relation\n from \"postgres\".\"qualtrics_source_integration_tests_702_qualtrics_source\".\"stg_qualtrics__core_mailing_list\"\n group by mailing_list_id, source_relation\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "extra_ctes_injected": true, "extra_ctes": [], "contract": {"enforced": false, "alias_types": true, "checksum": null}, "column_name": null, "file_key_name": "models.stg_qualtrics__core_mailing_list", "attached_node": "model.qualtrics_source.stg_qualtrics__core_mailing_list"}}, "sources": {"source.qualtrics_source.qualtrics.user": {"database": "postgres", "schema": "qualtrics_source_integration_tests_702", "name": "user", "resource_type": "source", "package_name": "qualtrics_source", "path": "models/src_qualtrics.yml", "original_file_path": "models/src_qualtrics.yml", "unique_id": "source.qualtrics_source.qualtrics.user", "fqn": ["qualtrics_source", "qualtrics", "user"], "source_name": "qualtrics", "source_description": "", "loader": "", "identifier": "user", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "These are the users in your organizations, not the contacts for whom you are building content like surveys and messages.", "columns": {"_fivetran_deleted": {"name": "_fivetran_deleted", "description": "Boolean representing whether the record was soft-deleted in Qualtrics.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "_fivetran_synced": {"name": "_fivetran_synced", "description": "The time when a record was last updated by Fivetran.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "account_creation_date": {"name": "account_creation_date", "description": "The date and time that the account was created. Dates and times are expressed in ISO 8601 format.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "account_expiration_date": {"name": "account_expiration_date", "description": "The date the account expires. Dates and times are expressed in ISO 8601 format.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "account_status": {"name": "account_status", "description": "Either `active`, `disabled`, or `notVerified`.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "division_id": {"name": "division_id", "description": "The unique identifier for the Division ID. Match pattern = ^DV_[0-9a-zA-Z]{11,15}$", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "email": {"name": "email", "description": "The user's email address.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "first_name": {"name": "first_name", "description": "The user's first name or given name.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "id": {"name": "id", "description": "Unique ID of the user. Match pattern = ^((UR)|(URH))_[0-9a-zA-Z]{11,15}$", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "language": {"name": "language", "description": "The user's default language.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "last_login_date": {"name": "last_login_date", "description": "The date and time the user last logged into the user interface. Dates and times are expressed in ISO 8601 format.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "last_name": {"name": "last_name", "description": "User's surname.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "organization_id": {"name": "organization_id", "description": "ID of the organization/brand this record belongs to.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "password_expiration_date": {"name": "password_expiration_date", "description": "The date the account password expires. Dates and times are expressed in ISO 8601 format.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "password_last_changed_date": {"name": "password_last_changed_date", "description": "The date the account password was last changed. Dates and times are expressed in ISO 8601 format.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "response_count_auditable": {"name": "response_count_auditable", "description": "The count of auditable responses.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "response_count_deleted": {"name": "response_count_deleted", "description": "The count of deleted responses.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "response_count_generated": {"name": "response_count_generated", "description": "The count of generated responses.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "time_zone": {"name": "time_zone", "description": "The IANA time zone setting for the user.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "unsubscribed": {"name": "unsubscribed", "description": "Boolean indicating if the user unsubscribed.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "user_type": {"name": "user_type", "description": "ID of the user type. See mappings of user types to their type IDs [here](https://api.qualtrics.com/dc2be1c61af61-user-type).", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "username": {"name": "username", "description": "UI-facing username for the account.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true}, "patch_path": null, "unrendered_config": {}, "relation_name": "\"postgres\".\"qualtrics_source_integration_tests_702\".\"user\"", "created_at": 1714419376.684334}, "source.qualtrics_source.qualtrics.survey": {"database": "postgres", "schema": "qualtrics_source_integration_tests_702", "name": "survey", "resource_type": "source", "package_name": "qualtrics_source", "path": "models/src_qualtrics.yml", "original_file_path": "models/src_qualtrics.yml", "unique_id": "source.qualtrics_source.qualtrics.survey", "fqn": ["qualtrics_source", "qualtrics", "survey"], "source_name": "qualtrics", "source_description": "", "loader": "", "identifier": "survey", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "Qualtrics survey.", "columns": {"_fivetran_deleted": {"name": "_fivetran_deleted", "description": "Boolean representing whether the record was soft-deleted in Qualtrics.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "_fivetran_synced": {"name": "_fivetran_synced", "description": "The time when a record was last updated by Fivetran.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "auto_scoring_category": {"name": "auto_scoring_category", "description": "The automated scoring category.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "brand_base_url": {"name": "brand_base_url", "description": "Base url for the organization/brand.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "brand_id": {"name": "brand_id", "description": "Unique ID of the organization/brand.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "bundle_short_name": {"name": "bundle_short_name", "description": "Short name for the content bundle that the survey is from.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "composition_type": {"name": "composition_type", "description": "Survey composition type.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "creator_id": {"name": "creator_id", "description": "The unique identifier for a specific `USER` who created the survey.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "default_scoring_category": {"name": "default_scoring_category", "description": "The default scoring category.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "division_id": {"name": "division_id", "description": "The unique identifier for the Division ID. Match pattern = ^DV_[0-9a-zA-Z]{11,15}$", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "id": {"name": "id", "description": "The unique identifier for this survey. Match pattern = ^SV_[a-zA-Z0-9]{11,15}$", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "is_active": {"name": "is_active", "description": "DEPRECATED. Use `survey_status = 'active'` instead.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "last_accessed": {"name": "last_accessed", "description": "The date the survey was last accessed.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "last_activated": {"name": "last_activated", "description": "The date the survey was last activated.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "last_modified": {"name": "last_modified", "description": "The point in time when the record was last modified.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "owner_id": {"name": "owner_id", "description": "The unique identifier for a specific user who owns this.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "project_category": {"name": "project_category", "description": "Project category of the survey.\n\nAllowed values - `CORE`, `CX`, `EX`, `BX`, `PX`", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "project_type": {"name": "project_type", "description": "Type of [Qualtrics project](https://www.qualtrics.com/support/survey-platform/my-projects/my-projects-overview/#SelectingProjectType). Match pattern = ^[a-zA-Z]+$", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "registry_sha": {"name": "registry_sha", "description": "The survey registry SHA.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "registry_version": {"name": "registry_version", "description": "The survey registry version.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "schema_version": {"name": "schema_version", "description": "Qualtrics schema version.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "scoring_summary_after_questions": {"name": "scoring_summary_after_questions", "description": "Boolean representing whether the scoring summary is after questions.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "scoring_summary_after_survey": {"name": "scoring_summary_after_survey", "description": "Boolean representing whether the scoring summary is after the survey.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "scoring_summary_category": {"name": "scoring_summary_category", "description": "The unique identifier for the scoring.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "survey_name": {"name": "survey_name", "description": "Name of the survey.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "survey_status": {"name": "survey_status", "description": "The distribution status of the survey, or a flag indicating that it's a library block\n\nAllowed values - `Inactive`, `Active`, `Pending`, `LibBlock`, `Deactive`, `Temporary`", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true}, "patch_path": null, "unrendered_config": {}, "relation_name": "\"postgres\".\"qualtrics_source_integration_tests_702\".\"survey\"", "created_at": 1714419376.684509}, "source.qualtrics_source.qualtrics.question": {"database": "postgres", "schema": "qualtrics_source_integration_tests_702", "name": "question", "resource_type": "source", "package_name": "qualtrics_source", "path": "models/src_qualtrics.yml", "original_file_path": "models/src_qualtrics.yml", "unique_id": "source.qualtrics_source.qualtrics.question", "fqn": ["qualtrics_source", "qualtrics", "question"], "source_name": "qualtrics", "source_description": "", "loader": "", "identifier": "question", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "Questions within a survey.", "columns": {"_fivetran_deleted": {"name": "_fivetran_deleted", "description": "Boolean representing whether the record was soft-deleted in Qualtrics.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "_fivetran_synced": {"name": "_fivetran_synced", "description": "The time when a record was last updated by Fivetran.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "data_export_tag": {"name": "data_export_tag", "description": "The tag to identify the question in exported data.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "data_visibility_hidden": {"name": "data_visibility_hidden", "description": "Boolean that represents whether the embedded data is hidden.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "data_visibility_private": {"name": "data_visibility_private", "description": "Boolean that represents whether the embedded data is private.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "id": {"name": "id", "description": "The unique identifier for the question. Match pattern = ^QID[a-zA-Z0-9]+$", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "next_answer_id": {"name": "next_answer_id", "description": "For Matrix questions, the vertical options are denoted as \"Answers\" in the question's structure. \nID of the next answer for this question. ?", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "next_choice_id": {"name": "next_choice_id", "description": "For Matrix questions, the horizontal options are denoted as \"Choices\" in the question's structure. \n\nID of the next choice for this question. ?", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "question_description": {"name": "question_description", "description": "Label to identify the question.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "question_description_option": {"name": "question_description_option", "description": "An optional user-provided field for question descriptions. Accepted values = `UseText`, `SpecifyLabel`", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "question_text": {"name": "question_text", "description": "Text for the question.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "question_text_unsafe": {"name": "question_text_unsafe", "description": "Un-paresed version of the question text.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "question_type": {"name": "question_type", "description": "The type of question. Can be -\n`MC`,`Matrix`,`Captcha`,`CS`,`DB`,`DD`,`Draw`,`DynamicMatrix`,`FileUpload`,`GAP`,`HeatMap`,`HL`,`HotSpot`,`Meta`,`PGR`,`RO`,`SBS`,`Slider`,`SS`,`TE`,`Timing`,`TreeSelect`", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "selector": {"name": "selector", "description": "How answers are selected such as single answer, multiple answer, etc. Accepted values - \n- `Bipolar`\n- `Browser`\n- `Captcha`\n- `CompactView`\n- `CS`\n- `D`\n- `DL`\n- `DND`\n- `DragAndDrop`\n- `ESTB`\n- `FORM`\n- `FileUpload`\n- `GRB`\n- `HBAR`\n- `HR`\n- `HSLIDER`\n- `I`\n- `Image`\n- `LikeDislike`\n- `Likert`\n- `MACOL`\n- `MAHR`\n- `MAVR`\n- `ML`\n- `MSB`\n- `MaxDiff`\n- `NPS`\n- `OH`\n- `OnOff`\n- `POS`\n- `PTB`\n- `PW`\n- `PageTimer`\n- `Profile`\n- `RB`\n- `RO`\n- `SACOL`\n- `SAHR`\n- `SAVR`\n- `SB`\n- `SBSMatrix`\n- `SL`\n- `STAR`\n- `ScreenCapture`\n- `SearchOnly`\n- `Signature`\n- `TA`\n- `TB`\n- `TBelow`\n- `TE`\n- `TL`\n- `TRight`\n- `Text`\n- `V1`\n- `V2`\n- `VR`\n- `VRTL`\n- `WTXB`", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "sub_selector": {"name": "sub_selector", "description": "How subquestion answers are selected. Allowed values - SingleAnswer, DL, GR, DND, Long, Medium, MultipleAnswer, Columns, NoColumns, Short, TX, TXOT, WOTXB, WOTB, WTB, WTXB, WVTB.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "survey_id": {"name": "survey_id", "description": "The unique identifier for this survey. Match pattern = ^SV_[a-zA-Z0-9]{11,15}$", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "validation_setting_force_response": {"name": "validation_setting_force_response", "description": "The response from forcing respondents to answer a question or request that they consider answering the question before leaving the page", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "validation_setting_force_response_type": {"name": "validation_setting_force_response_type", "description": "The type of response from forcing respondents to answer a question or request that they consider answering the question before leaving the page", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "validation_setting_type": {"name": "validation_setting_type", "description": "The type of forced response validation that is set.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true}, "patch_path": null, "unrendered_config": {}, "relation_name": "\"postgres\".\"qualtrics_source_integration_tests_702\".\"question\"", "created_at": 1714419376.684628}, "source.qualtrics_source.qualtrics.question_response": {"database": "postgres", "schema": "qualtrics_source_integration_tests_702", "name": "question_response", "resource_type": "source", "package_name": "qualtrics_source", "path": "models/src_qualtrics.yml", "original_file_path": "models/src_qualtrics.yml", "unique_id": "source.qualtrics_source.qualtrics.question_response", "fqn": ["qualtrics_source", "qualtrics", "question_response"], "source_name": "qualtrics", "source_description": "", "loader": "", "identifier": "question_response", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "Responses to individual questions (and their sub-questions).", "columns": {"_fivetran_id": {"name": "_fivetran_id", "description": "Fivetran-generated unique key hashed on `response_id`, `question_id`, `sub_question_key`, `sub_question_text` , `question_option_key` , `loop_id` and `importId`.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "_fivetran_synced": {"name": "_fivetran_synced", "description": "The time when a record was last updated by Fivetran.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "loop_id": {"name": "loop_id", "description": "ID of the [Loop and Merge](https://www.qualtrics.com/support/survey-platform/survey-module/block-options/loop-and-merge/) object this response is associated with.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "question": {"name": "question", "description": "Question text.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "question_id": {"name": "question_id", "description": "The unique identifier for the question. Match pattern = ^QID[a-zA-Z0-9]+$", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "question_option_key": {"name": "question_option_key", "description": "The key of the `QUESTION_OPTION` that was chosen.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "response_id": {"name": "response_id", "description": "The unique ID for the `SURVEY_RESPONSE`.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "sub_question_key": {"name": "sub_question_key", "description": "Key of the sub question.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "sub_question_text": {"name": "sub_question_text", "description": "Sub question text.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "value": {"name": "value", "description": "Value of the question response.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true}, "patch_path": null, "unrendered_config": {}, "relation_name": "\"postgres\".\"qualtrics_source_integration_tests_702\".\"question_response\"", "created_at": 1714419376.6847339}, "source.qualtrics_source.qualtrics.question_option": {"database": "postgres", "schema": "qualtrics_source_integration_tests_702", "name": "question_option", "resource_type": "source", "package_name": "qualtrics_source", "path": "models/src_qualtrics.yml", "original_file_path": "models/src_qualtrics.yml", "unique_id": "source.qualtrics_source.qualtrics.question_option", "fqn": ["qualtrics_source", "qualtrics", "question_option"], "source_name": "qualtrics", "source_description": "", "loader": "", "identifier": "question_option", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "Choice options for survey questions.", "columns": {"_fivetran_deleted": {"name": "_fivetran_deleted", "description": "Boolean representing whether the record was soft-deleted in Qualtrics.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "_fivetran_synced": {"name": "_fivetran_synced", "description": "The time when a record was last updated by Fivetran.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "key": {"name": "key", "description": "The key of the `QUESTION_OPTION` that was chosen.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "question_id": {"name": "question_id", "description": "The unique identifier for the question. Match pattern = ^QID[a-zA-Z0-9]+$", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "recode_value": {"name": "recode_value", "description": "Recode/mapping value for the option.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "survey_id": {"name": "survey_id", "description": "The unique identifier for this survey. Match pattern = ^SV_[a-zA-Z0-9]{11,15}$", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "text": {"name": "text", "description": "Question option text.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true}, "patch_path": null, "unrendered_config": {}, "relation_name": "\"postgres\".\"qualtrics_source_integration_tests_702\".\"question_option\"", "created_at": 1714419376.68483}, "source.qualtrics_source.qualtrics.survey_response": {"database": "postgres", "schema": "qualtrics_source_integration_tests_702", "name": "survey_response", "resource_type": "source", "package_name": "qualtrics_source", "path": "models/src_qualtrics.yml", "original_file_path": "models/src_qualtrics.yml", "unique_id": "source.qualtrics_source.qualtrics.survey_response", "fqn": ["qualtrics_source", "qualtrics", "survey_response"], "source_name": "qualtrics", "source_description": "", "loader": "", "identifier": "survey_response", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "Individual responses to surveys. A response becomes \"recorded\" when a respondent submits a survey, a survey is manually closed from the Responses in Progress page, or a survey session expires.\n", "columns": {"_fivetran_synced": {"name": "_fivetran_synced", "description": "The time when a record was last updated by Fivetran.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "distribution_channel": {"name": "distribution_channel", "description": "The method by which the survey was distributed to respondents.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "duration_in_seconds": {"name": "duration_in_seconds", "description": "How long it took for the respondent to finish the survey in seconds.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "end_date": {"name": "end_date", "description": "The point in time when the survey response was finished.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "finished": {"name": "finished", "description": "Boolean (stored as int) indicating if the respondent finished and submitted the survey, the value will be 1, otherwise it will be 0.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "id": {"name": "id", "description": "The unique ID for the `SURVEY_RESPONSE`.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "ip_address": {"name": "ip_address", "description": "IP address of the recipient.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "last_modified_date": {"name": "last_modified_date", "description": "The point in time when the record was last modified.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "location_latitude": {"name": "location_latitude", "description": "The approximate location of the respondent at the time the survey was taken.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "location_longitude": {"name": "location_longitude", "description": "The approximate location of the respondent at the time the survey was taken.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "progress": {"name": "progress", "description": "How far the respondent has progressed through the survey as a percentage out of 100.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "recipient_email": {"name": "recipient_email", "description": "Email of the [recipient](https://api.qualtrics.com/ZG9jOjg3NzY2OQ-getting-information-about-distributions#the-recipients-object) if they are a single recipient (not a mailing list or sample).", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "recipient_first_name": {"name": "recipient_first_name", "description": "First name of the [recipient](https://api.qualtrics.com/ZG9jOjg3NzY2OQ-getting-information-about-distributions#the-recipients-object) if they are a single recipient (not a mailing list or sample).", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "recipient_last_name": {"name": "recipient_last_name", "description": "Last name of the [recipient](https://api.qualtrics.com/ZG9jOjg3NzY2OQ-getting-information-about-distributions#the-recipients-object) if they are a single recipient (not a mailing list or sample).", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "recorded_date": {"name": "recorded_date", "description": "The point in time when the survey response was recorded.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "start_date": {"name": "start_date", "description": "The point in time when the survey response was recorded.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "status": {"name": "status", "description": "The type of response.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "survey_id": {"name": "survey_id", "description": "The unique identifier for this survey. Match pattern = ^SV_[a-zA-Z0-9]{11,15}$", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "user_language": {"name": "user_language", "description": "The language of the respondent.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true}, "patch_path": null, "unrendered_config": {}, "relation_name": "\"postgres\".\"qualtrics_source_integration_tests_702\".\"survey_response\"", "created_at": 1714419376.684941}, "source.qualtrics_source.qualtrics.sub_question": {"database": "postgres", "schema": "qualtrics_source_integration_tests_702", "name": "sub_question", "resource_type": "source", "package_name": "qualtrics_source", "path": "models/src_qualtrics.yml", "original_file_path": "models/src_qualtrics.yml", "unique_id": "source.qualtrics_source.qualtrics.sub_question", "fqn": ["qualtrics_source", "qualtrics", "sub_question"], "source_name": "qualtrics", "source_description": "", "loader": "", "identifier": "sub_question", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "Sub-questions of questions.", "columns": {"_fivetran_deleted": {"name": "_fivetran_deleted", "description": "Boolean representing whether the record was soft-deleted in Qualtrics.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "_fivetran_synced": {"name": "_fivetran_synced", "description": "The time when a record was last updated by Fivetran.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "choice_data_export_tag": {"name": "choice_data_export_tag", "description": "The tag to identify the question choice in exported data.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "key": {"name": "key", "description": "Key of the sub question.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "question_id": {"name": "question_id", "description": "The unique identifier for the question. Match pattern = ^QID[a-zA-Z0-9]+$", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "survey_id": {"name": "survey_id", "description": "The unique identifier for this survey. Match pattern = ^SV_[a-zA-Z0-9]{11,15}$", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "text": {"name": "text", "description": "Sub question text.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true}, "patch_path": null, "unrendered_config": {}, "relation_name": "\"postgres\".\"qualtrics_source_integration_tests_702\".\"sub_question\"", "created_at": 1714419376.6850371}, "source.qualtrics_source.qualtrics.survey_version": {"database": "postgres", "schema": "qualtrics_source_integration_tests_702", "name": "survey_version", "resource_type": "source", "package_name": "qualtrics_source", "path": "models/src_qualtrics.yml", "original_file_path": "models/src_qualtrics.yml", "unique_id": "source.qualtrics_source.qualtrics.survey_version", "fqn": ["qualtrics_source", "qualtrics", "survey_version"], "source_name": "qualtrics", "source_description": "", "loader": "", "identifier": "survey_version", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "Published and un-published versions of surveys.", "columns": {"_fivetran_deleted": {"name": "_fivetran_deleted", "description": "Boolean representing whether the record was soft-deleted in Qualtrics.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "_fivetran_synced": {"name": "_fivetran_synced", "description": "The time when a record was last updated by Fivetran.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "creation_date": {"name": "creation_date", "description": "The creation date and time of the record, expressed as an ISO 8601 value.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "description": {"name": "description", "description": "A user-provided description of the survey version.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "id": {"name": "id", "description": "The unique identifier for this survey version.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "published": {"name": "published", "description": "Boolean that, when true, publishes the version.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "survey_id": {"name": "survey_id", "description": "The unique identifier for this survey. Match pattern = ^SV_[a-zA-Z0-9]{11,15}$", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "user_id": {"name": "user_id", "description": "ID of `USER` who published this survey version in your org.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "version_number": {"name": "version_number", "description": "The version number of this survey.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "was_published": {"name": "was_published", "description": "Boolean that is true if the survey version was published.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true}, "patch_path": null, "unrendered_config": {}, "relation_name": "\"postgres\".\"qualtrics_source_integration_tests_702\".\"survey_version\"", "created_at": 1714419376.6851342}, "source.qualtrics_source.qualtrics.survey_embedded_data": {"database": "postgres", "schema": "qualtrics_source_integration_tests_702", "name": "survey_embedded_data", "resource_type": "source", "package_name": "qualtrics_source", "path": "models/src_qualtrics.yml", "original_file_path": "models/src_qualtrics.yml", "unique_id": "source.qualtrics_source.qualtrics.survey_embedded_data", "fqn": ["qualtrics_source", "qualtrics", "survey_embedded_data"], "source_name": "qualtrics", "source_description": "", "loader": "", "identifier": "survey_embedded_data", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "Any extra information you would like recorded in addition to the question responses.", "columns": {"_fivetran_synced": {"name": "_fivetran_synced", "description": "The time when a record was last updated by Fivetran.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "import_id": {"name": "import_id", "description": "A unique identifier to recognize this import job of embedded survey data.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "key": {"name": "key", "description": "Key of the embedded survey data element.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "response_id": {"name": "response_id", "description": "The unique ID for the `SURVEY_RESPONSE`.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "value": {"name": "value", "description": "Key of the embedded survey data element.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true}, "patch_path": null, "unrendered_config": {}, "relation_name": "\"postgres\".\"qualtrics_source_integration_tests_702\".\"survey_embedded_data\"", "created_at": 1714419376.6852229}, "source.qualtrics_source.qualtrics.block": {"database": "postgres", "schema": "qualtrics_source_integration_tests_702", "name": "block", "resource_type": "source", "package_name": "qualtrics_source", "path": "models/src_qualtrics.yml", "original_file_path": "models/src_qualtrics.yml", "unique_id": "source.qualtrics_source.qualtrics.block", "fqn": ["qualtrics_source", "qualtrics", "block"], "source_name": "qualtrics", "source_description": "", "loader": "", "identifier": "block", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "Groups of questions, used to organize longer surveys and conditionally display sets of questions.", "columns": {"_fivetran_deleted": {"name": "_fivetran_deleted", "description": "Boolean representing whether the record was soft-deleted in Qualtrics.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "_fivetran_synced": {"name": "_fivetran_synced", "description": "The time when a record was last updated by Fivetran.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "block_locking": {"name": "block_locking", "description": "Boolean representing whether modification of the block and its contents is prevented.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "block_visibility": {"name": "block_visibility", "description": "Whether the questions in the block are 'collapsed' or 'expanded' by default.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "description": {"name": "description", "description": "Description given to the block.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "id": {"name": "id", "description": "The ID of the survey block. Match pattern = ^BL_[a-zA-Z0-9]{11,15}$", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "randomize_questions": {"name": "randomize_questions", "description": "If/how the block questions are randomized. Can be - `false` (no randomization), `RandomWithXPerPage` (randomize all and place X questions in each block), `RandomWithOnlyX` (randomly present only X out of the total questions), or `Advanced` (custom configuration)", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "survey_id": {"name": "survey_id", "description": "The unique identifier for this survey. Match pattern = ^SV_[a-zA-Z0-9]{11,15}$", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "type": {"name": "type", "description": "Type of block. Can be `Trash`, `Default`, or `Standard`", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true}, "patch_path": null, "unrendered_config": {}, "relation_name": "\"postgres\".\"qualtrics_source_integration_tests_702\".\"block\"", "created_at": 1714419376.6853209}, "source.qualtrics_source.qualtrics.block_question": {"database": "postgres", "schema": "qualtrics_source_integration_tests_702", "name": "block_question", "resource_type": "source", "package_name": "qualtrics_source", "path": "models/src_qualtrics.yml", "original_file_path": "models/src_qualtrics.yml", "unique_id": "source.qualtrics_source.qualtrics.block_question", "fqn": ["qualtrics_source", "qualtrics", "block_question"], "source_name": "qualtrics", "source_description": "", "loader": "", "identifier": "block_question", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "Table relating questions and blocks together.", "columns": {"_fivetran_deleted": {"name": "_fivetran_deleted", "description": "Boolean representing whether the record was soft-deleted in Qualtrics.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "_fivetran_synced": {"name": "_fivetran_synced", "description": "The time when a record was last updated by Fivetran.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "block_id": {"name": "block_id", "description": "The ID of the survey block. Match pattern = ^BL_[a-zA-Z0-9]{11,15}$", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "question_id": {"name": "question_id", "description": "The unique identifier for the question. Match pattern = ^QID[a-zA-Z0-9]+$", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "survey_id": {"name": "survey_id", "description": "The unique identifier for this survey. Match pattern = ^SV_[a-zA-Z0-9]{11,15}$", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true}, "patch_path": null, "unrendered_config": {}, "relation_name": "\"postgres\".\"qualtrics_source_integration_tests_702\".\"block_question\"", "created_at": 1714419376.6854641}, "source.qualtrics_source.qualtrics.directory": {"database": "postgres", "schema": "qualtrics_source_integration_tests_702", "name": "directory", "resource_type": "source", "package_name": "qualtrics_source", "path": "models/src_qualtrics.yml", "original_file_path": "models/src_qualtrics.yml", "unique_id": "source.qualtrics_source.qualtrics.directory", "fqn": ["qualtrics_source", "qualtrics", "directory"], "source_name": "qualtrics", "source_description": "", "loader": "", "identifier": "directory", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "A directory is an address book for the entire brand and contains all of the contacts that have been added by your users.", "columns": {"_fivetran_deleted": {"name": "_fivetran_deleted", "description": "Boolean representing whether the record was soft-deleted in Qualtrics.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "_fivetran_synced": {"name": "_fivetran_synced", "description": "The time when a record was last updated by Fivetran.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "deduplication_criteria_email": {"name": "deduplication_criteria_email", "description": "Boolean representing if directory contacts are deduped based on email.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "deduplication_criteria_external_data_reference": {"name": "deduplication_criteria_external_data_reference", "description": "Boolean representing if directory contacts are deduped based on an external data reference.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "deduplication_criteria_first_name": {"name": "deduplication_criteria_first_name", "description": "Boolean representing if directory contacts are deduped based on first name.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "deduplication_criteria_last_name": {"name": "deduplication_criteria_last_name", "description": "Boolean representing if directory contacts are deduped based on last name.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "deduplication_criteria_phone": {"name": "deduplication_criteria_phone", "description": "Boolean representing if directory contacts are deduped based on phone number.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "id": {"name": "id", "description": "The directory ID, also known as a pool ID. Example - POOL_012345678901234", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "is_default": {"name": "is_default", "description": "Boolean representing if this directory is the default one for your brand. \n\nThe default directory will be the first directory listed in the dropdown menu in Qualtrics.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "name": {"name": "name", "description": "Name of the directory.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true}, "patch_path": null, "unrendered_config": {}, "relation_name": "\"postgres\".\"qualtrics_source_integration_tests_702\".\"directory\"", "created_at": 1714419376.685566}, "source.qualtrics_source.qualtrics.directory_contact": {"database": "postgres", "schema": "qualtrics_source_integration_tests_702", "name": "directory_contact", "resource_type": "source", "package_name": "qualtrics_source", "path": "models/src_qualtrics.yml", "original_file_path": "models/src_qualtrics.yml", "unique_id": "source.qualtrics_source.qualtrics.directory_contact", "fqn": ["qualtrics_source", "qualtrics", "directory_contact"], "source_name": "qualtrics", "source_description": "", "loader": "", "identifier": "directory_contact", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "Tablle relating contacts to the XM directories they are a part of.", "columns": {"_fivetran_synced": {"name": "_fivetran_synced", "description": "The time when a record was last updated by Fivetran.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "creation_date": {"name": "creation_date", "description": "The creation date and time of the record, expressed as an ISO 8601 value.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "directory_id": {"name": "directory_id", "description": "The directory ID, also known as a pool ID. Example - POOL_012345678901234", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "directory_unsubscribe_date": {"name": "directory_unsubscribe_date", "description": "Date and time the user opted out of the directory.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "directory_unsubscribed": {"name": "directory_unsubscribed", "description": "Boolean indicating whether the contact unsubscribed from all contact from the Directory.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "email": {"name": "email", "description": "Contact's email address. Must be in proper email format.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "email_domain": {"name": "email_domain", "description": "Domain of the contact's email address.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "ext_ref": {"name": "ext_ref", "description": "The external reference for the contact.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "first_name": {"name": "first_name", "description": "Contact's first name.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "id": {"name": "id", "description": "The ID for the contact. Example - CID_012345678901234", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "language": {"name": "language", "description": "The user's default language.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "last_modified": {"name": "last_modified", "description": "The point in time when the record was last modified.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "last_name": {"name": "last_name", "description": "Contact's surname.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "phone": {"name": "phone", "description": "Contact's phone number.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "write_blanks": {"name": "write_blanks", "description": "Boolean of whether to write blanks(?) or not.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true}, "patch_path": null, "unrendered_config": {}, "relation_name": "\"postgres\".\"qualtrics_source_integration_tests_702\".\"directory_contact\"", "created_at": 1714419376.685674}, "source.qualtrics_source.qualtrics.distribution": {"database": "postgres", "schema": "qualtrics_source_integration_tests_702", "name": "distribution", "resource_type": "source", "package_name": "qualtrics_source", "path": "models/src_qualtrics.yml", "original_file_path": "models/src_qualtrics.yml", "unique_id": "source.qualtrics_source.qualtrics.distribution", "fqn": ["qualtrics_source", "qualtrics", "distribution"], "source_name": "qualtrics", "source_description": "", "loader": "", "identifier": "distribution", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "Use distributions to reach out to contacts in the XM Directory platform, with or without a survey attached.", "columns": {"_fivetran_deleted": {"name": "_fivetran_deleted", "description": "Boolean representing whether the record was soft-deleted in Qualtrics.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "_fivetran_synced": {"name": "_fivetran_synced", "description": "The time when a record was last updated by Fivetran.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "created_date": {"name": "created_date", "description": "The creation date and time of the record, expressed as an ISO 8601 value.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "header_from_email": {"name": "header_from_email", "description": "Email from address.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "header_from_name": {"name": "header_from_name", "description": "Email from name.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "header_reply_to_email": {"name": "header_reply_to_email", "description": "Email reply-to address.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "header_subject": {"name": "header_subject", "description": "Email subject; text or message id (MS_).", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "id": {"name": "id", "description": "The unique Distribution ID.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "message_library_id": {"name": "message_library_id", "description": "Library ID of the message.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "message_message_id": {"name": "message_message_id", "description": "The ID for the desired library message.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "message_message_text": {"name": "message_message_text", "description": "Text of the message to send.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "modified_date": {"name": "modified_date", "description": "The point in time when the record was last modified.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "organization_id": {"name": "organization_id", "description": "ID of the organization/brand this record belongs to.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "owner_id": {"name": "owner_id", "description": "The unique identifier for a specific user who owns this.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "parent_distribution_id": {"name": "parent_distribution_id", "description": "The unique ID of the parent distribution.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "recipient_contact_id": {"name": "recipient_contact_id", "description": "The contact ID of the recipient. Can point to `directory_contact` or `core_contact`.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "recipient_library_id": {"name": "recipient_library_id", "description": "Library ID of the message.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "recipient_mailing_list_id": {"name": "recipient_mailing_list_id", "description": "The mailing list or contact group associated with the distribution(s). Can point to `directory_mailing_list` or `core_mailing_list`.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "recipient_sample_id": {"name": "recipient_sample_id", "description": "The ID for the desired sample. Can point to `directory_sample` or `core_sample` (not included in package).", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "request_status": {"name": "request_status", "description": "The distribution's status. States include `Pending` and `Done`. The Pending state is for email that is scheduled to be sent at a later time.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "request_type": {"name": "request_type", "description": "The distribution's type. Types include `Invite`, `Reminder`, and `ThankYou`.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "send_date": {"name": "send_date", "description": "The date and time the request will be or was sent (in ISO 8601 format). Note that this date and time could be in the future if the email distribution is scheduled to send after a delay.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "survey_link_expiration_date": {"name": "survey_link_expiration_date", "description": "The expiration date for the link associated with the survey distribution. Null if `request_type` != `Invite`.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "survey_link_link_type": {"name": "survey_link_link_type", "description": "The link type (`Individual`, `Anonymous`, or `Multiple`) for the link associated with the survey distribution. Null if `request_type` != `Invite`.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "survey_link_survey_id": {"name": "survey_link_survey_id", "description": "The unique survey ID. Will be non-null even if `request_type` != `Invite`.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true}, "patch_path": null, "unrendered_config": {}, "relation_name": "\"postgres\".\"qualtrics_source_integration_tests_702\".\"distribution\"", "created_at": 1714419376.685796}, "source.qualtrics_source.qualtrics.distribution_contact": {"database": "postgres", "schema": "qualtrics_source_integration_tests_702", "name": "distribution_contact", "resource_type": "source", "package_name": "qualtrics_source", "path": "models/src_qualtrics.yml", "original_file_path": "models/src_qualtrics.yml", "unique_id": "source.qualtrics_source.qualtrics.distribution_contact", "fqn": ["qualtrics_source", "qualtrics", "distribution_contact"], "source_name": "qualtrics", "source_description": "", "loader": "", "identifier": "distribution_contact", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "Table relating contacts to distributiins they've been a part of.", "columns": {"_fivetran_synced": {"name": "_fivetran_synced", "description": "The time when a record was last updated by Fivetran.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "contact_frequency_rule_id": {"name": "contact_frequency_rule_id", "description": "The contact frequency Rule ID. Ex - FQ_AAB234234", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "contact_id": {"name": "contact_id", "description": "The ID for the contact. Example - CID_012345678901234", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "contact_lookup_id": {"name": "contact_lookup_id", "description": "Optional contact lookup ID for individual distribution.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "distribution_id": {"name": "distribution_id", "description": "The unique Distribution ID.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "opened_at": {"name": "opened_at", "description": "The time a survey was opened by the respondent, will be null if the survey has not been opened.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "response_completed_at": {"name": "response_completed_at", "description": "The time a response was completed, will be null for uncompleted surveys.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "response_id": {"name": "response_id", "description": "The ID of the survey response submitted by this contact. If no survey response has been submitted, this value will be null. If the survey was setup to anonymize responses, then this value will be `Anonymous`.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "response_started_at": {"name": "response_started_at", "description": "The time a response was started by the respondent, will be null if survey has not been started.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "sent_at": {"name": "sent_at", "description": "The time a survey was sent to the respondent.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "status": {"name": "status", "description": "One of ([full descriptions](https://api.qualtrics.com/fc8017650d0b9-distribution-status)):\n- `Pending`\n- `Success`\n- `Error`\n- `Opened`\n- `Complaint`\n- `Skipped`\n- `Blocked`\n- `Failure`\n- `Unknown`\n- `SoftBounce`\n- `HardBounce`\n- `SurveyStarted`\n- `SurveyPartiallyFinished`\n- `SurveyFinished`\n- `SurveyScreenedOut`\n- `SessionExpired`", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "survey_link": {"name": "survey_link", "description": "The survey link sent with the distribution. This is null when no link was sent.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "survey_session_id": {"name": "survey_session_id", "description": "An identifier that represents the session in which the respondent interacted with the survey", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true}, "patch_path": null, "unrendered_config": {}, "relation_name": "\"postgres\".\"qualtrics_source_integration_tests_702\".\"distribution_contact\"", "created_at": 1714419376.6859}, "source.qualtrics_source.qualtrics.directory_mailing_list": {"database": "postgres", "schema": "qualtrics_source_integration_tests_702", "name": "directory_mailing_list", "resource_type": "source", "package_name": "qualtrics_source", "path": "models/src_qualtrics.yml", "original_file_path": "models/src_qualtrics.yml", "unique_id": "source.qualtrics_source.qualtrics.directory_mailing_list", "fqn": ["qualtrics_source", "qualtrics", "directory_mailing_list"], "source_name": "qualtrics", "source_description": "", "loader": "", "identifier": "directory_mailing_list", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "Mailing lists are lists of contacts that can receive emails and survey invitations. You can create mailing lists either through file upload or manually.", "columns": {"_fivetran_deleted": {"name": "_fivetran_deleted", "description": "Boolean representing whether the record was soft-deleted in Qualtrics.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "_fivetran_synced": {"name": "_fivetran_synced", "description": "The time when a record was last updated by Fivetran.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "creation_date": {"name": "creation_date", "description": "The creation date and time of the record, expressed as an ISO 8601 value.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "directory_id": {"name": "directory_id", "description": "The directory ID, also known as a pool ID. Example - POOL_012345678901234", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "id": {"name": "id", "description": "The ID for the mailing list.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "last_modified_date": {"name": "last_modified_date", "description": "The point in time when the record was last modified.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "name": {"name": "name", "description": "Name of the mailing list.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "owner_id": {"name": "owner_id", "description": "The unique identifier for a specific user who owns this.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true}, "patch_path": null, "unrendered_config": {}, "relation_name": "\"postgres\".\"qualtrics_source_integration_tests_702\".\"directory_mailing_list\"", "created_at": 1714419376.685994}, "source.qualtrics_source.qualtrics.contact_mailing_list_membership": {"database": "postgres", "schema": "qualtrics_source_integration_tests_702", "name": "contact_mailing_list_membership", "resource_type": "source", "package_name": "qualtrics_source", "path": "models/src_qualtrics.yml", "original_file_path": "models/src_qualtrics.yml", "unique_id": "source.qualtrics_source.qualtrics.contact_mailing_list_membership", "fqn": ["qualtrics_source", "qualtrics", "contact_mailing_list_membership"], "source_name": "qualtrics", "source_description": "", "loader": "", "identifier": "contact_mailing_list_membership", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "Table relating contacts to mailing lists they are a part of.", "columns": {"_fivetran_synced": {"name": "_fivetran_synced", "description": "The time when a record was last updated by Fivetran.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "contact_id": {"name": "contact_id", "description": "The ID for the contact. Example - CID_012345678901234", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "contact_lookup_id": {"name": "contact_lookup_id", "description": "Optional contact lookup ID for individual distribution.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "directory_id": {"name": "directory_id", "description": "The directory ID, also known as a pool ID. Example - POOL_012345678901234", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "mailing_list_id": {"name": "mailing_list_id", "description": "The ID for the mailing list.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "name": {"name": "name", "description": "Name of the mailing list.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "owner_id": {"name": "owner_id", "description": "The unique identifier for a specific user who owns this.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "unsubscribe_date": {"name": "unsubscribe_date", "description": "Date and time the user opted out of this mailing list.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "unsubscribed": {"name": "unsubscribed", "description": "Boolean indicating whether the contact has opted out of receiving email through this mailing list.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true}, "patch_path": null, "unrendered_config": {}, "relation_name": "\"postgres\".\"qualtrics_source_integration_tests_702\".\"contact_mailing_list_membership\"", "created_at": 1714419376.686095}, "source.qualtrics_source.qualtrics.core_contact": {"database": "postgres", "schema": "qualtrics_source_integration_tests_702", "name": "core_contact", "resource_type": "source", "package_name": "qualtrics_source", "path": "models/src_qualtrics.yml", "original_file_path": "models/src_qualtrics.yml", "unique_id": "source.qualtrics_source.qualtrics.core_contact", "fqn": ["qualtrics_source", "qualtrics", "core_contact"], "source_name": "qualtrics", "source_description": "", "loader": "", "identifier": "core_contact", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "Research Core contacts (non-XM directory).", "columns": {"_fivetran_synced": {"name": "_fivetran_synced", "description": "The time when a record was last updated by Fivetran.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "id": {"name": "id", "description": "Mailing List Contact ID (different from `contact_id`). ex: `MLRP_*`", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "mailing_list_id": {"name": "mailing_list_id", "description": "The ID for the mailing list.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "first_name": {"name": "first_name", "description": "Contact's first name.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "last_name": {"name": "last_name", "description": "Contact's surname.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "email": {"name": "email", "description": "Contact's email address. Must be in proper email format.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "external_data_reference": {"name": "external_data_reference", "description": "The external reference for the contact.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "language": {"name": "language", "description": "The user's default language.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "unsubscribed": {"name": "unsubscribed", "description": "Boolean indicating if the user unsubscribed.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "_fivetran_deleted": {"name": "_fivetran_deleted", "description": "Boolean representing whether the record was soft-deleted in Qualtrics.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true}, "patch_path": null, "unrendered_config": {"enabled": true}, "relation_name": "\"postgres\".\"qualtrics_source_integration_tests_702\".\"core_contact\"", "created_at": 1714419376.686209}, "source.qualtrics_source.qualtrics.core_mailing_list": {"database": "postgres", "schema": "qualtrics_source_integration_tests_702", "name": "core_mailing_list", "resource_type": "source", "package_name": "qualtrics_source", "path": "models/src_qualtrics.yml", "original_file_path": "models/src_qualtrics.yml", "unique_id": "source.qualtrics_source.qualtrics.core_mailing_list", "fqn": ["qualtrics_source", "qualtrics", "core_mailing_list"], "source_name": "qualtrics", "source_description": "", "loader": "", "identifier": "core_mailing_list", "quoting": {"database": null, "schema": null, "identifier": null, "column": null}, "loaded_at_field": null, "freshness": {"warn_after": {"count": null, "period": null}, "error_after": {"count": null, "period": null}, "filter": null}, "external": null, "description": "Research Core mailing list (non xm-directory).", "columns": {"_fivetran_deleted": {"name": "_fivetran_deleted", "description": "Boolean representing whether the record was soft-deleted in Qualtrics.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "_fivetran_synced": {"name": "_fivetran_synced", "description": "The time when a record was last updated by Fivetran.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "id": {"name": "id", "description": "The ID for the mailing list.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "library_id": {"name": "library_id", "description": "The library ID. Example: `UR_1234567890AbCdE`", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "name": {"name": "name", "description": "Name of the mailing list.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "category": {"name": "category", "description": "The library ID. Example: `UR_1234567890AbCdE`", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}, "folder": {"name": "folder", "description": "The folder this is placed in.", "meta": {}, "data_type": null, "constraints": [], "quote": null, "tags": []}}, "meta": {}, "source_meta": {}, "tags": [], "config": {"enabled": true}, "patch_path": null, "unrendered_config": {"enabled": true}, "relation_name": "\"postgres\".\"qualtrics_source_integration_tests_702\".\"core_mailing_list\"", "created_at": 1714419376.686311}}, "macros": {"macro.dbt_postgres.postgres__current_timestamp": {"name": "postgres__current_timestamp", "resource_type": "macro", "package_name": "dbt_postgres", "path": "macros/timestamps.sql", "original_file_path": "macros/timestamps.sql", "unique_id": "macro.dbt_postgres.postgres__current_timestamp", "macro_sql": "{% macro postgres__current_timestamp() -%}\n now()\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.1062899, "supported_languages": null}, "macro.dbt_postgres.postgres__snapshot_string_as_time": {"name": "postgres__snapshot_string_as_time", "resource_type": "macro", "package_name": "dbt_postgres", "path": "macros/timestamps.sql", "original_file_path": "macros/timestamps.sql", "unique_id": "macro.dbt_postgres.postgres__snapshot_string_as_time", "macro_sql": "{% macro postgres__snapshot_string_as_time(timestamp) -%}\n {%- set result = \"'\" ~ timestamp ~ \"'::timestamp without time zone\" -%}\n {{ return(result) }}\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.1065211, "supported_languages": null}, "macro.dbt_postgres.postgres__snapshot_get_time": {"name": "postgres__snapshot_get_time", "resource_type": "macro", "package_name": "dbt_postgres", "path": "macros/timestamps.sql", "original_file_path": "macros/timestamps.sql", "unique_id": "macro.dbt_postgres.postgres__snapshot_get_time", "macro_sql": "{% macro postgres__snapshot_get_time() -%}\n {{ current_timestamp() }}::timestamp without time zone\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt.current_timestamp"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.106637, "supported_languages": null}, "macro.dbt_postgres.postgres__current_timestamp_backcompat": {"name": "postgres__current_timestamp_backcompat", "resource_type": "macro", "package_name": "dbt_postgres", "path": "macros/timestamps.sql", "original_file_path": "macros/timestamps.sql", "unique_id": "macro.dbt_postgres.postgres__current_timestamp_backcompat", "macro_sql": "{% macro postgres__current_timestamp_backcompat() %}\n current_timestamp::{{ type_timestamp() }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.type_timestamp"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.106752, "supported_languages": null}, "macro.dbt_postgres.postgres__current_timestamp_in_utc_backcompat": {"name": "postgres__current_timestamp_in_utc_backcompat", "resource_type": "macro", "package_name": "dbt_postgres", "path": "macros/timestamps.sql", "original_file_path": "macros/timestamps.sql", "unique_id": "macro.dbt_postgres.postgres__current_timestamp_in_utc_backcompat", "macro_sql": "{% macro postgres__current_timestamp_in_utc_backcompat() %}\n (current_timestamp at time zone 'utc')::{{ type_timestamp() }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.type_timestamp"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.1068668, "supported_languages": null}, "macro.dbt_postgres.postgres__get_catalog_relations": {"name": "postgres__get_catalog_relations", "resource_type": "macro", "package_name": "dbt_postgres", "path": "macros/catalog.sql", "original_file_path": "macros/catalog.sql", "unique_id": "macro.dbt_postgres.postgres__get_catalog_relations", "macro_sql": "{% macro postgres__get_catalog_relations(information_schema, relations) -%}\n {%- call statement('catalog', fetch_result=True) -%}\n\n {#\n If the user has multiple databases set and the first one is wrong, this will fail.\n But we won't fail in the case where there are multiple quoting-difference-only dbs, which is better.\n #}\n {% set database = information_schema.database %}\n {{ adapter.verify_database(database) }}\n\n select\n '{{ database }}' as table_database,\n sch.nspname as table_schema,\n tbl.relname as table_name,\n case tbl.relkind\n when 'v' then 'VIEW'\n when 'm' then 'MATERIALIZED VIEW'\n else 'BASE TABLE'\n end as table_type,\n tbl_desc.description as table_comment,\n col.attname as column_name,\n col.attnum as column_index,\n pg_catalog.format_type(col.atttypid, col.atttypmod) as column_type,\n col_desc.description as column_comment,\n pg_get_userbyid(tbl.relowner) as table_owner\n\n from pg_catalog.pg_namespace sch\n join pg_catalog.pg_class tbl on tbl.relnamespace = sch.oid\n join pg_catalog.pg_attribute col on col.attrelid = tbl.oid\n left outer join pg_catalog.pg_description tbl_desc on (tbl_desc.objoid = tbl.oid and tbl_desc.objsubid = 0)\n left outer join pg_catalog.pg_description col_desc on (col_desc.objoid = tbl.oid and col_desc.objsubid = col.attnum)\n where (\n {%- for relation in relations -%}\n {%- if relation.identifier -%}\n (upper(sch.nspname) = upper('{{ relation.schema }}') and\n upper(tbl.relname) = upper('{{ relation.identifier }}'))\n {%- else-%}\n upper(sch.nspname) = upper('{{ relation.schema }}')\n {%- endif -%}\n {%- if not loop.last %} or {% endif -%}\n {%- endfor -%}\n )\n and not pg_is_other_temp_schema(sch.oid) -- not a temporary schema belonging to another session\n and tbl.relpersistence in ('p', 'u') -- [p]ermanent table or [u]nlogged table. Exclude [t]emporary tables\n and tbl.relkind in ('r', 'v', 'f', 'p', 'm') -- o[r]dinary table, [v]iew, [f]oreign table, [p]artitioned table, [m]aterialized view. Other values are [i]ndex, [S]equence, [c]omposite type, [t]OAST table\n and col.attnum > 0 -- negative numbers are used for system columns such as oid\n and not col.attisdropped -- column as not been dropped\n\n order by\n sch.nspname,\n tbl.relname,\n col.attnum\n\n {%- endcall -%}\n\n {{ return(load_result('catalog').table) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt.statement"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.1084669, "supported_languages": null}, "macro.dbt_postgres.postgres__get_catalog": {"name": "postgres__get_catalog", "resource_type": "macro", "package_name": "dbt_postgres", "path": "macros/catalog.sql", "original_file_path": "macros/catalog.sql", "unique_id": "macro.dbt_postgres.postgres__get_catalog", "macro_sql": "{% macro postgres__get_catalog(information_schema, schemas) -%}\n {%- set relations = [] -%}\n {%- for schema in schemas -%}\n {%- set dummy = relations.append({'schema': schema}) -%}\n {%- endfor -%}\n {{ return(postgres__get_catalog_relations(information_schema, relations)) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt_postgres.postgres__get_catalog_relations"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.108862, "supported_languages": null}, "macro.dbt_postgres.postgres__get_relations": {"name": "postgres__get_relations", "resource_type": "macro", "package_name": "dbt_postgres", "path": "macros/relations.sql", "original_file_path": "macros/relations.sql", "unique_id": "macro.dbt_postgres.postgres__get_relations", "macro_sql": "{% macro postgres__get_relations() -%}\n\n {#\n -- in pg_depend, objid is the dependent, refobjid is the referenced object\n -- > a pg_depend entry indicates that the referenced object cannot be\n -- > dropped without also dropping the dependent object.\n #}\n\n {%- call statement('relations', fetch_result=True) -%}\n with relation as (\n select\n pg_rewrite.ev_class as class,\n pg_rewrite.oid as id\n from pg_rewrite\n ),\n class as (\n select\n oid as id,\n relname as name,\n relnamespace as schema,\n relkind as kind\n from pg_class\n ),\n dependency as (\n select distinct\n pg_depend.objid as id,\n pg_depend.refobjid as ref\n from pg_depend\n ),\n schema as (\n select\n pg_namespace.oid as id,\n pg_namespace.nspname as name\n from pg_namespace\n where nspname != 'information_schema' and nspname not like 'pg\\_%'\n ),\n referenced as (\n select\n relation.id AS id,\n referenced_class.name ,\n referenced_class.schema ,\n referenced_class.kind\n from relation\n join class as referenced_class on relation.class=referenced_class.id\n where referenced_class.kind in ('r', 'v', 'm')\n ),\n relationships as (\n select\n referenced.name as referenced_name,\n referenced.schema as referenced_schema_id,\n dependent_class.name as dependent_name,\n dependent_class.schema as dependent_schema_id,\n referenced.kind as kind\n from referenced\n join dependency on referenced.id=dependency.id\n join class as dependent_class on dependency.ref=dependent_class.id\n where\n (referenced.name != dependent_class.name or\n referenced.schema != dependent_class.schema)\n )\n\n select\n referenced_schema.name as referenced_schema,\n relationships.referenced_name as referenced_name,\n dependent_schema.name as dependent_schema,\n relationships.dependent_name as dependent_name\n from relationships\n join schema as dependent_schema on relationships.dependent_schema_id=dependent_schema.id\n join schema as referenced_schema on relationships.referenced_schema_id=referenced_schema.id\n group by referenced_schema, referenced_name, dependent_schema, dependent_name\n order by referenced_schema, referenced_name, dependent_schema, dependent_name;\n\n {%- endcall -%}\n\n {{ return(load_result('relations').table) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.statement"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.109565, "supported_languages": null}, "macro.dbt_postgres.postgres_get_relations": {"name": "postgres_get_relations", "resource_type": "macro", "package_name": "dbt_postgres", "path": "macros/relations.sql", "original_file_path": "macros/relations.sql", "unique_id": "macro.dbt_postgres.postgres_get_relations", "macro_sql": "{% macro postgres_get_relations() %}\n {{ return(postgres__get_relations()) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_postgres.postgres__get_relations"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.109699, "supported_languages": null}, "macro.dbt_postgres.postgres__create_table_as": {"name": "postgres__create_table_as", "resource_type": "macro", "package_name": "dbt_postgres", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "unique_id": "macro.dbt_postgres.postgres__create_table_as", "macro_sql": "{% macro postgres__create_table_as(temporary, relation, sql) -%}\n {%- set unlogged = config.get('unlogged', default=false) -%}\n {%- set sql_header = config.get('sql_header', none) -%}\n\n {{ sql_header if sql_header is not none }}\n\n create {% if temporary -%}\n temporary\n {%- elif unlogged -%}\n unlogged\n {%- endif %} table {{ relation }}\n {% set contract_config = config.get('contract') %}\n {% if contract_config.enforced %}\n {{ get_assert_columns_equivalent(sql) }}\n {% endif -%}\n {% if contract_config.enforced and (not temporary) -%}\n {{ get_table_columns_and_constraints() }} ;\n insert into {{ relation }} (\n {{ adapter.dispatch('get_column_names', 'dbt')() }}\n )\n {%- set sql = get_select_subquery(sql) %}\n {% else %}\n as\n {% endif %}\n (\n {{ sql }}\n );\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt.get_assert_columns_equivalent", "macro.dbt.get_table_columns_and_constraints", "macro.dbt.default__get_column_names", "macro.dbt.get_select_subquery"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.118742, "supported_languages": null}, "macro.dbt_postgres.postgres__get_create_index_sql": {"name": "postgres__get_create_index_sql", "resource_type": "macro", "package_name": "dbt_postgres", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "unique_id": "macro.dbt_postgres.postgres__get_create_index_sql", "macro_sql": "{% macro postgres__get_create_index_sql(relation, index_dict) -%}\n {%- set index_config = adapter.parse_index(index_dict) -%}\n {%- set comma_separated_columns = \", \".join(index_config.columns) -%}\n {%- set index_name = index_config.render(relation) -%}\n\n create {% if index_config.unique -%}\n unique\n {%- endif %} index if not exists\n \"{{ index_name }}\"\n on {{ relation }} {% if index_config.type -%}\n using {{ index_config.type }}\n {%- endif %}\n ({{ comma_separated_columns }});\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.119264, "supported_languages": null}, "macro.dbt_postgres.postgres__create_schema": {"name": "postgres__create_schema", "resource_type": "macro", "package_name": "dbt_postgres", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "unique_id": "macro.dbt_postgres.postgres__create_schema", "macro_sql": "{% macro postgres__create_schema(relation) -%}\n {% if relation.database -%}\n {{ adapter.verify_database(relation.database) }}\n {%- endif -%}\n {%- call statement('create_schema') -%}\n create schema if not exists {{ relation.without_identifier().include(database=False) }}\n {%- endcall -%}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.statement"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.1195898, "supported_languages": null}, "macro.dbt_postgres.postgres__drop_schema": {"name": "postgres__drop_schema", "resource_type": "macro", "package_name": "dbt_postgres", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "unique_id": "macro.dbt_postgres.postgres__drop_schema", "macro_sql": "{% macro postgres__drop_schema(relation) -%}\n {% if relation.database -%}\n {{ adapter.verify_database(relation.database) }}\n {%- endif -%}\n {%- call statement('drop_schema') -%}\n drop schema if exists {{ relation.without_identifier().include(database=False) }} cascade\n {%- endcall -%}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.statement"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.1199172, "supported_languages": null}, "macro.dbt_postgres.postgres__get_columns_in_relation": {"name": "postgres__get_columns_in_relation", "resource_type": "macro", "package_name": "dbt_postgres", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "unique_id": "macro.dbt_postgres.postgres__get_columns_in_relation", "macro_sql": "{% macro postgres__get_columns_in_relation(relation) -%}\n {% call statement('get_columns_in_relation', fetch_result=True) %}\n select\n column_name,\n data_type,\n character_maximum_length,\n numeric_precision,\n numeric_scale\n\n from {{ relation.information_schema('columns') }}\n where table_name = '{{ relation.identifier }}'\n {% if relation.schema %}\n and table_schema = '{{ relation.schema }}'\n {% endif %}\n order by ordinal_position\n\n {% endcall %}\n {% set table = load_result('get_columns_in_relation').table %}\n {{ return(sql_convert_columns_in_relation(table)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.statement", "macro.dbt.sql_convert_columns_in_relation"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.120406, "supported_languages": null}, "macro.dbt_postgres.postgres__list_relations_without_caching": {"name": "postgres__list_relations_without_caching", "resource_type": "macro", "package_name": "dbt_postgres", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "unique_id": "macro.dbt_postgres.postgres__list_relations_without_caching", "macro_sql": "{% macro postgres__list_relations_without_caching(schema_relation) %}\n {% call statement('list_relations_without_caching', fetch_result=True) -%}\n select\n '{{ schema_relation.database }}' as database,\n tablename as name,\n schemaname as schema,\n 'table' as type\n from pg_tables\n where schemaname ilike '{{ schema_relation.schema }}'\n union all\n select\n '{{ schema_relation.database }}' as database,\n viewname as name,\n schemaname as schema,\n 'view' as type\n from pg_views\n where schemaname ilike '{{ schema_relation.schema }}'\n union all\n select\n '{{ schema_relation.database }}' as database,\n matviewname as name,\n schemaname as schema,\n 'materialized_view' as type\n from pg_matviews\n where schemaname ilike '{{ schema_relation.schema }}'\n {% endcall %}\n {{ return(load_result('list_relations_without_caching').table) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.statement"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.120947, "supported_languages": null}, "macro.dbt_postgres.postgres__information_schema_name": {"name": "postgres__information_schema_name", "resource_type": "macro", "package_name": "dbt_postgres", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "unique_id": "macro.dbt_postgres.postgres__information_schema_name", "macro_sql": "{% macro postgres__information_schema_name(database) -%}\n {% if database_name -%}\n {{ adapter.verify_database(database_name) }}\n {%- endif -%}\n information_schema\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.121127, "supported_languages": null}, "macro.dbt_postgres.postgres__list_schemas": {"name": "postgres__list_schemas", "resource_type": "macro", "package_name": "dbt_postgres", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "unique_id": "macro.dbt_postgres.postgres__list_schemas", "macro_sql": "{% macro postgres__list_schemas(database) %}\n {% if database -%}\n {{ adapter.verify_database(database) }}\n {%- endif -%}\n {% call statement('list_schemas', fetch_result=True, auto_begin=False) %}\n select distinct nspname from pg_namespace\n {% endcall %}\n {{ return(load_result('list_schemas').table) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.statement"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.121502, "supported_languages": null}, "macro.dbt_postgres.postgres__check_schema_exists": {"name": "postgres__check_schema_exists", "resource_type": "macro", "package_name": "dbt_postgres", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "unique_id": "macro.dbt_postgres.postgres__check_schema_exists", "macro_sql": "{% macro postgres__check_schema_exists(information_schema, schema) -%}\n {% if information_schema.database -%}\n {{ adapter.verify_database(information_schema.database) }}\n {%- endif -%}\n {% call statement('check_schema_exists', fetch_result=True, auto_begin=False) %}\n select count(*) from pg_namespace where nspname = '{{ schema }}'\n {% endcall %}\n {{ return(load_result('check_schema_exists').table) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.statement"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.12191, "supported_languages": null}, "macro.dbt_postgres.postgres__make_relation_with_suffix": {"name": "postgres__make_relation_with_suffix", "resource_type": "macro", "package_name": "dbt_postgres", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "unique_id": "macro.dbt_postgres.postgres__make_relation_with_suffix", "macro_sql": "{% macro postgres__make_relation_with_suffix(base_relation, suffix, dstring) %}\n {% if dstring %}\n {% set dt = modules.datetime.datetime.now() %}\n {% set dtstring = dt.strftime(\"%H%M%S%f\") %}\n {% set suffix = suffix ~ dtstring %}\n {% endif %}\n {% set suffix_length = suffix|length %}\n {% set relation_max_name_length = base_relation.relation_max_name_length() %}\n {% if suffix_length > relation_max_name_length %}\n {% do exceptions.raise_compiler_error('Relation suffix is too long (' ~ suffix_length ~ ' characters). Maximum length is ' ~ relation_max_name_length ~ ' characters.') %}\n {% endif %}\n {% set identifier = base_relation.identifier[:relation_max_name_length - suffix_length] ~ suffix %}\n\n {{ return(base_relation.incorporate(path={\"identifier\": identifier })) }}\n\n {% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.1228302, "supported_languages": null}, "macro.dbt_postgres.postgres__make_intermediate_relation": {"name": "postgres__make_intermediate_relation", "resource_type": "macro", "package_name": "dbt_postgres", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "unique_id": "macro.dbt_postgres.postgres__make_intermediate_relation", "macro_sql": "{% macro postgres__make_intermediate_relation(base_relation, suffix) %}\n {{ return(postgres__make_relation_with_suffix(base_relation, suffix, dstring=False)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_postgres.postgres__make_relation_with_suffix"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.123046, "supported_languages": null}, "macro.dbt_postgres.postgres__make_temp_relation": {"name": "postgres__make_temp_relation", "resource_type": "macro", "package_name": "dbt_postgres", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "unique_id": "macro.dbt_postgres.postgres__make_temp_relation", "macro_sql": "{% macro postgres__make_temp_relation(base_relation, suffix) %}\n {% set temp_relation = postgres__make_relation_with_suffix(base_relation, suffix, dstring=True) %}\n {{ return(temp_relation.incorporate(path={\"schema\": none,\n \"database\": none})) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_postgres.postgres__make_relation_with_suffix"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.123405, "supported_languages": null}, "macro.dbt_postgres.postgres__make_backup_relation": {"name": "postgres__make_backup_relation", "resource_type": "macro", "package_name": "dbt_postgres", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "unique_id": "macro.dbt_postgres.postgres__make_backup_relation", "macro_sql": "{% macro postgres__make_backup_relation(base_relation, backup_relation_type, suffix) %}\n {% set backup_relation = postgres__make_relation_with_suffix(base_relation, suffix, dstring=False) %}\n {{ return(backup_relation.incorporate(type=backup_relation_type)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_postgres.postgres__make_relation_with_suffix"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.1236968, "supported_languages": null}, "macro.dbt_postgres.postgres_escape_comment": {"name": "postgres_escape_comment", "resource_type": "macro", "package_name": "dbt_postgres", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "unique_id": "macro.dbt_postgres.postgres_escape_comment", "macro_sql": "{% macro postgres_escape_comment(comment) -%}\n {% if comment is not string %}\n {% do exceptions.raise_compiler_error('cannot escape a non-string: ' ~ comment) %}\n {% endif %}\n {%- set magic = '$dbt_comment_literal_block$' -%}\n {%- if magic in comment -%}\n {%- do exceptions.raise_compiler_error('The string ' ~ magic ~ ' is not allowed in comments.') -%}\n {%- endif -%}\n {{ magic }}{{ comment }}{{ magic }}\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.124136, "supported_languages": null}, "macro.dbt_postgres.postgres__alter_relation_comment": {"name": "postgres__alter_relation_comment", "resource_type": "macro", "package_name": "dbt_postgres", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "unique_id": "macro.dbt_postgres.postgres__alter_relation_comment", "macro_sql": "{% macro postgres__alter_relation_comment(relation, comment) %}\n {% set escaped_comment = postgres_escape_comment(comment) %}\n comment on {{ relation.type }} {{ relation }} is {{ escaped_comment }};\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_postgres.postgres_escape_comment"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.124366, "supported_languages": null}, "macro.dbt_postgres.postgres__alter_column_comment": {"name": "postgres__alter_column_comment", "resource_type": "macro", "package_name": "dbt_postgres", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "unique_id": "macro.dbt_postgres.postgres__alter_column_comment", "macro_sql": "{% macro postgres__alter_column_comment(relation, column_dict) %}\n {% set existing_columns = adapter.get_columns_in_relation(relation) | map(attribute=\"name\") | list %}\n {% for column_name in column_dict if (column_name in existing_columns) %}\n {% set comment = column_dict[column_name]['description'] %}\n {% set escaped_comment = postgres_escape_comment(comment) %}\n comment on column {{ relation }}.{{ adapter.quote(column_name) if column_dict[column_name]['quote'] else column_name }} is {{ escaped_comment }};\n {% endfor %}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_postgres.postgres_escape_comment"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.12499, "supported_languages": null}, "macro.dbt_postgres.postgres__get_show_grant_sql": {"name": "postgres__get_show_grant_sql", "resource_type": "macro", "package_name": "dbt_postgres", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "unique_id": "macro.dbt_postgres.postgres__get_show_grant_sql", "macro_sql": "\n\n{%- macro postgres__get_show_grant_sql(relation) -%}\n select grantee, privilege_type\n from {{ relation.information_schema('role_table_grants') }}\n where grantor = current_role\n and grantee != current_role\n and table_schema = '{{ relation.schema }}'\n and table_name = '{{ relation.identifier }}'\n{%- endmacro -%}\n\n", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.125203, "supported_languages": null}, "macro.dbt_postgres.postgres__copy_grants": {"name": "postgres__copy_grants", "resource_type": "macro", "package_name": "dbt_postgres", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "unique_id": "macro.dbt_postgres.postgres__copy_grants", "macro_sql": "{% macro postgres__copy_grants() %}\n {{ return(False) }}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.125323, "supported_languages": null}, "macro.dbt_postgres.postgres__get_show_indexes_sql": {"name": "postgres__get_show_indexes_sql", "resource_type": "macro", "package_name": "dbt_postgres", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "unique_id": "macro.dbt_postgres.postgres__get_show_indexes_sql", "macro_sql": "{% macro postgres__get_show_indexes_sql(relation) %}\n select\n i.relname as name,\n m.amname as method,\n ix.indisunique as \"unique\",\n array_to_string(array_agg(a.attname), ',') as column_names\n from pg_index ix\n join pg_class i\n on i.oid = ix.indexrelid\n join pg_am m\n on m.oid=i.relam\n join pg_class t\n on t.oid = ix.indrelid\n join pg_namespace n\n on n.oid = t.relnamespace\n join pg_attribute a\n on a.attrelid = t.oid\n and a.attnum = ANY(ix.indkey)\n where t.relname = '{{ relation.identifier }}'\n and n.nspname = '{{ relation.schema }}'\n and t.relkind in ('r', 'm')\n group by 1, 2, 3\n order by 1, 2, 3\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.1255062, "supported_languages": null}, "macro.dbt_postgres.postgres__get_drop_index_sql": {"name": "postgres__get_drop_index_sql", "resource_type": "macro", "package_name": "dbt_postgres", "path": "macros/adapters.sql", "original_file_path": "macros/adapters.sql", "unique_id": "macro.dbt_postgres.postgres__get_drop_index_sql", "macro_sql": "\n\n\n{%- macro postgres__get_drop_index_sql(relation, index_name) -%}\n drop index if exists \"{{ relation.schema }}\".\"{{ index_name }}\"\n{%- endmacro -%}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.125652, "supported_languages": null}, "macro.dbt_postgres.postgres__get_incremental_default_sql": {"name": "postgres__get_incremental_default_sql", "resource_type": "macro", "package_name": "dbt_postgres", "path": "macros/materializations/incremental_strategies.sql", "original_file_path": "macros/materializations/incremental_strategies.sql", "unique_id": "macro.dbt_postgres.postgres__get_incremental_default_sql", "macro_sql": "{% macro postgres__get_incremental_default_sql(arg_dict) %}\n\n {% if arg_dict[\"unique_key\"] %}\n {% do return(get_incremental_delete_insert_sql(arg_dict)) %}\n {% else %}\n {% do return(get_incremental_append_sql(arg_dict)) %}\n {% endif %}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.get_incremental_delete_insert_sql", "macro.dbt.get_incremental_append_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.126053, "supported_languages": null}, "macro.dbt_postgres.postgres__snapshot_merge_sql": {"name": "postgres__snapshot_merge_sql", "resource_type": "macro", "package_name": "dbt_postgres", "path": "macros/materializations/snapshot_merge.sql", "original_file_path": "macros/materializations/snapshot_merge.sql", "unique_id": "macro.dbt_postgres.postgres__snapshot_merge_sql", "macro_sql": "{% macro postgres__snapshot_merge_sql(target, source, insert_cols) -%}\n {%- set insert_cols_csv = insert_cols | join(', ') -%}\n\n update {{ target }}\n set dbt_valid_to = DBT_INTERNAL_SOURCE.dbt_valid_to\n from {{ source }} as DBT_INTERNAL_SOURCE\n where DBT_INTERNAL_SOURCE.dbt_scd_id::text = {{ target }}.dbt_scd_id::text\n and DBT_INTERNAL_SOURCE.dbt_change_type::text in ('update'::text, 'delete'::text)\n and {{ target }}.dbt_valid_to is null;\n\n insert into {{ target }} ({{ insert_cols_csv }})\n select {% for column in insert_cols -%}\n DBT_INTERNAL_SOURCE.{{ column }} {%- if not loop.last %}, {%- endif %}\n {%- endfor %}\n from {{ source }} as DBT_INTERNAL_SOURCE\n where DBT_INTERNAL_SOURCE.dbt_change_type::text = 'insert'::text;\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.126783, "supported_languages": null}, "macro.dbt_postgres.postgres__drop_materialized_view": {"name": "postgres__drop_materialized_view", "resource_type": "macro", "package_name": "dbt_postgres", "path": "macros/relations/materialized_view/drop.sql", "original_file_path": "macros/relations/materialized_view/drop.sql", "unique_id": "macro.dbt_postgres.postgres__drop_materialized_view", "macro_sql": "{% macro postgres__drop_materialized_view(relation) -%}\n drop materialized view if exists {{ relation }} cascade\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.1269288, "supported_languages": null}, "macro.dbt_postgres.postgres__describe_materialized_view": {"name": "postgres__describe_materialized_view", "resource_type": "macro", "package_name": "dbt_postgres", "path": "macros/relations/materialized_view/describe.sql", "original_file_path": "macros/relations/materialized_view/describe.sql", "unique_id": "macro.dbt_postgres.postgres__describe_materialized_view", "macro_sql": "{% macro postgres__describe_materialized_view(relation) %}\n -- for now just get the indexes, we don't need the name or the query yet\n {% set _indexes = run_query(get_show_indexes_sql(relation)) %}\n {% do return({'indexes': _indexes}) %}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.run_query", "macro.dbt.get_show_indexes_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.127226, "supported_languages": null}, "macro.dbt_postgres.postgres__refresh_materialized_view": {"name": "postgres__refresh_materialized_view", "resource_type": "macro", "package_name": "dbt_postgres", "path": "macros/relations/materialized_view/refresh.sql", "original_file_path": "macros/relations/materialized_view/refresh.sql", "unique_id": "macro.dbt_postgres.postgres__refresh_materialized_view", "macro_sql": "{% macro postgres__refresh_materialized_view(relation) %}\n refresh materialized view {{ relation }}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.1273699, "supported_languages": null}, "macro.dbt_postgres.postgres__get_rename_materialized_view_sql": {"name": "postgres__get_rename_materialized_view_sql", "resource_type": "macro", "package_name": "dbt_postgres", "path": "macros/relations/materialized_view/rename.sql", "original_file_path": "macros/relations/materialized_view/rename.sql", "unique_id": "macro.dbt_postgres.postgres__get_rename_materialized_view_sql", "macro_sql": "{% macro postgres__get_rename_materialized_view_sql(relation, new_name) %}\n alter materialized view {{ relation }} rename to {{ new_name }}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.1275442, "supported_languages": null}, "macro.dbt_postgres.postgres__get_alter_materialized_view_as_sql": {"name": "postgres__get_alter_materialized_view_as_sql", "resource_type": "macro", "package_name": "dbt_postgres", "path": "macros/relations/materialized_view/alter.sql", "original_file_path": "macros/relations/materialized_view/alter.sql", "unique_id": "macro.dbt_postgres.postgres__get_alter_materialized_view_as_sql", "macro_sql": "{% macro postgres__get_alter_materialized_view_as_sql(\n relation,\n configuration_changes,\n sql,\n existing_relation,\n backup_relation,\n intermediate_relation\n) %}\n\n -- apply a full refresh immediately if needed\n {% if configuration_changes.requires_full_refresh %}\n\n {{ get_replace_sql(existing_relation, relation, sql) }}\n\n -- otherwise apply individual changes as needed\n {% else %}\n\n {{ postgres__update_indexes_on_materialized_view(relation, configuration_changes.indexes) }}\n\n {%- endif -%}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.get_replace_sql", "macro.dbt_postgres.postgres__update_indexes_on_materialized_view"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.128408, "supported_languages": null}, "macro.dbt_postgres.postgres__update_indexes_on_materialized_view": {"name": "postgres__update_indexes_on_materialized_view", "resource_type": "macro", "package_name": "dbt_postgres", "path": "macros/relations/materialized_view/alter.sql", "original_file_path": "macros/relations/materialized_view/alter.sql", "unique_id": "macro.dbt_postgres.postgres__update_indexes_on_materialized_view", "macro_sql": "\n\n\n{%- macro postgres__update_indexes_on_materialized_view(relation, index_changes) -%}\n {{- log(\"Applying UPDATE INDEXES to: \" ~ relation) -}}\n\n {%- for _index_change in index_changes -%}\n {%- set _index = _index_change.context -%}\n\n {%- if _index_change.action == \"drop\" -%}\n\n {{ postgres__get_drop_index_sql(relation, _index.name) }};\n\n {%- elif _index_change.action == \"create\" -%}\n\n {{ postgres__get_create_index_sql(relation, _index.as_node_config) }}\n\n {%- endif -%}\n\n {%- endfor -%}\n\n{%- endmacro -%}\n\n\n", "depends_on": {"macros": ["macro.dbt_postgres.postgres__get_drop_index_sql", "macro.dbt_postgres.postgres__get_create_index_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.128968, "supported_languages": null}, "macro.dbt_postgres.postgres__get_materialized_view_configuration_changes": {"name": "postgres__get_materialized_view_configuration_changes", "resource_type": "macro", "package_name": "dbt_postgres", "path": "macros/relations/materialized_view/alter.sql", "original_file_path": "macros/relations/materialized_view/alter.sql", "unique_id": "macro.dbt_postgres.postgres__get_materialized_view_configuration_changes", "macro_sql": "{% macro postgres__get_materialized_view_configuration_changes(existing_relation, new_config) %}\n {% set _existing_materialized_view = postgres__describe_materialized_view(existing_relation) %}\n {% set _configuration_changes = existing_relation.get_materialized_view_config_change_collection(_existing_materialized_view, new_config) %}\n {% do return(_configuration_changes) %}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_postgres.postgres__describe_materialized_view"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.12927, "supported_languages": null}, "macro.dbt_postgres.postgres__get_create_materialized_view_as_sql": {"name": "postgres__get_create_materialized_view_as_sql", "resource_type": "macro", "package_name": "dbt_postgres", "path": "macros/relations/materialized_view/create.sql", "original_file_path": "macros/relations/materialized_view/create.sql", "unique_id": "macro.dbt_postgres.postgres__get_create_materialized_view_as_sql", "macro_sql": "{% macro postgres__get_create_materialized_view_as_sql(relation, sql) %}\n create materialized view if not exists {{ relation }} as {{ sql }};\n\n {% for _index_dict in config.get('indexes', []) -%}\n {{- get_create_index_sql(relation, _index_dict) -}}\n {%- endfor -%}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.get_create_index_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.129652, "supported_languages": null}, "macro.dbt_postgres.postgres__drop_table": {"name": "postgres__drop_table", "resource_type": "macro", "package_name": "dbt_postgres", "path": "macros/relations/table/drop.sql", "original_file_path": "macros/relations/table/drop.sql", "unique_id": "macro.dbt_postgres.postgres__drop_table", "macro_sql": "{% macro postgres__drop_table(relation) -%}\n drop table if exists {{ relation }} cascade\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.129793, "supported_languages": null}, "macro.dbt_postgres.postgres__get_replace_table_sql": {"name": "postgres__get_replace_table_sql", "resource_type": "macro", "package_name": "dbt_postgres", "path": "macros/relations/table/replace.sql", "original_file_path": "macros/relations/table/replace.sql", "unique_id": "macro.dbt_postgres.postgres__get_replace_table_sql", "macro_sql": "{% macro postgres__get_replace_table_sql(relation, sql) -%}\n\n {%- set sql_header = config.get('sql_header', none) -%}\n {{ sql_header if sql_header is not none }}\n\n create or replace table {{ relation }}\n {% set contract_config = config.get('contract') %}\n {% if contract_config.enforced %}\n {{ get_assert_columns_equivalent(sql) }}\n {{ get_table_columns_and_constraints() }}\n {%- set sql = get_select_subquery(sql) %}\n {% endif %}\n as (\n {{ sql }}\n );\n\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt.get_assert_columns_equivalent", "macro.dbt.get_table_columns_and_constraints", "macro.dbt.get_select_subquery"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.130498, "supported_languages": null}, "macro.dbt_postgres.postgres__get_rename_table_sql": {"name": "postgres__get_rename_table_sql", "resource_type": "macro", "package_name": "dbt_postgres", "path": "macros/relations/table/rename.sql", "original_file_path": "macros/relations/table/rename.sql", "unique_id": "macro.dbt_postgres.postgres__get_rename_table_sql", "macro_sql": "{% macro postgres__get_rename_table_sql(relation, new_name) %}\n alter table {{ relation }} rename to {{ new_name }}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.130673, "supported_languages": null}, "macro.dbt_postgres.postgres__drop_view": {"name": "postgres__drop_view", "resource_type": "macro", "package_name": "dbt_postgres", "path": "macros/relations/view/drop.sql", "original_file_path": "macros/relations/view/drop.sql", "unique_id": "macro.dbt_postgres.postgres__drop_view", "macro_sql": "{% macro postgres__drop_view(relation) -%}\n drop view if exists {{ relation }} cascade\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.130807, "supported_languages": null}, "macro.dbt_postgres.postgres__get_replace_view_sql": {"name": "postgres__get_replace_view_sql", "resource_type": "macro", "package_name": "dbt_postgres", "path": "macros/relations/view/replace.sql", "original_file_path": "macros/relations/view/replace.sql", "unique_id": "macro.dbt_postgres.postgres__get_replace_view_sql", "macro_sql": "{% macro postgres__get_replace_view_sql(relation, sql) -%}\n\n {%- set sql_header = config.get('sql_header', none) -%}\n {{ sql_header if sql_header is not none }}\n\n create or replace view {{ relation }}\n {% set contract_config = config.get('contract') %}\n {% if contract_config.enforced %}\n {{ get_assert_columns_equivalent(sql) }}\n {%- endif %}\n as (\n {{ sql }}\n );\n\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt.get_assert_columns_equivalent"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.13137, "supported_languages": null}, "macro.dbt_postgres.postgres__get_rename_view_sql": {"name": "postgres__get_rename_view_sql", "resource_type": "macro", "package_name": "dbt_postgres", "path": "macros/relations/view/rename.sql", "original_file_path": "macros/relations/view/rename.sql", "unique_id": "macro.dbt_postgres.postgres__get_rename_view_sql", "macro_sql": "{% macro postgres__get_rename_view_sql(relation, new_name) %}\n alter view {{ relation }} rename to {{ new_name }}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.1315498, "supported_languages": null}, "macro.dbt_postgres.postgres__dateadd": {"name": "postgres__dateadd", "resource_type": "macro", "package_name": "dbt_postgres", "path": "macros/utils/dateadd.sql", "original_file_path": "macros/utils/dateadd.sql", "unique_id": "macro.dbt_postgres.postgres__dateadd", "macro_sql": "{% macro postgres__dateadd(datepart, interval, from_date_or_timestamp) %}\n\n {{ from_date_or_timestamp }} + ((interval '1 {{ datepart }}') * ({{ interval }}))\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.131766, "supported_languages": null}, "macro.dbt_postgres.postgres__listagg": {"name": "postgres__listagg", "resource_type": "macro", "package_name": "dbt_postgres", "path": "macros/utils/listagg.sql", "original_file_path": "macros/utils/listagg.sql", "unique_id": "macro.dbt_postgres.postgres__listagg", "macro_sql": "{% macro postgres__listagg(measure, delimiter_text, order_by_clause, limit_num) -%}\n\n {% if limit_num -%}\n array_to_string(\n (array_agg(\n {{ measure }}\n {% if order_by_clause -%}\n {{ order_by_clause }}\n {%- endif %}\n ))[1:{{ limit_num }}],\n {{ delimiter_text }}\n )\n {%- else %}\n string_agg(\n {{ measure }},\n {{ delimiter_text }}\n {% if order_by_clause -%}\n {{ order_by_clause }}\n {%- endif %}\n )\n {%- endif %}\n\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.132392, "supported_languages": null}, "macro.dbt_postgres.postgres__datediff": {"name": "postgres__datediff", "resource_type": "macro", "package_name": "dbt_postgres", "path": "macros/utils/datediff.sql", "original_file_path": "macros/utils/datediff.sql", "unique_id": "macro.dbt_postgres.postgres__datediff", "macro_sql": "{% macro postgres__datediff(first_date, second_date, datepart) -%}\n\n {% if datepart == 'year' %}\n (date_part('year', ({{second_date}})::date) - date_part('year', ({{first_date}})::date))\n {% elif datepart == 'quarter' %}\n ({{ datediff(first_date, second_date, 'year') }} * 4 + date_part('quarter', ({{second_date}})::date) - date_part('quarter', ({{first_date}})::date))\n {% elif datepart == 'month' %}\n ({{ datediff(first_date, second_date, 'year') }} * 12 + date_part('month', ({{second_date}})::date) - date_part('month', ({{first_date}})::date))\n {% elif datepart == 'day' %}\n (({{second_date}})::date - ({{first_date}})::date)\n {% elif datepart == 'week' %}\n ({{ datediff(first_date, second_date, 'day') }} / 7 + case\n when date_part('dow', ({{first_date}})::timestamp) <= date_part('dow', ({{second_date}})::timestamp) then\n case when {{first_date}} <= {{second_date}} then 0 else -1 end\n else\n case when {{first_date}} <= {{second_date}} then 1 else 0 end\n end)\n {% elif datepart == 'hour' %}\n ({{ datediff(first_date, second_date, 'day') }} * 24 + date_part('hour', ({{second_date}})::timestamp) - date_part('hour', ({{first_date}})::timestamp))\n {% elif datepart == 'minute' %}\n ({{ datediff(first_date, second_date, 'hour') }} * 60 + date_part('minute', ({{second_date}})::timestamp) - date_part('minute', ({{first_date}})::timestamp))\n {% elif datepart == 'second' %}\n ({{ datediff(first_date, second_date, 'minute') }} * 60 + floor(date_part('second', ({{second_date}})::timestamp)) - floor(date_part('second', ({{first_date}})::timestamp)))\n {% elif datepart == 'millisecond' %}\n ({{ datediff(first_date, second_date, 'minute') }} * 60000 + floor(date_part('millisecond', ({{second_date}})::timestamp)) - floor(date_part('millisecond', ({{first_date}})::timestamp)))\n {% elif datepart == 'microsecond' %}\n ({{ datediff(first_date, second_date, 'minute') }} * 60000000 + floor(date_part('microsecond', ({{second_date}})::timestamp)) - floor(date_part('microsecond', ({{first_date}})::timestamp)))\n {% else %}\n {{ exceptions.raise_compiler_error(\"Unsupported datepart for macro datediff in postgres: {!r}\".format(datepart)) }}\n {% endif %}\n\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt.datediff"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.1356642, "supported_languages": null}, "macro.dbt_postgres.postgres__any_value": {"name": "postgres__any_value", "resource_type": "macro", "package_name": "dbt_postgres", "path": "macros/utils/any_value.sql", "original_file_path": "macros/utils/any_value.sql", "unique_id": "macro.dbt_postgres.postgres__any_value", "macro_sql": "{% macro postgres__any_value(expression) -%}\n\n min({{ expression }})\n\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.135822, "supported_languages": null}, "macro.dbt_postgres.postgres__last_day": {"name": "postgres__last_day", "resource_type": "macro", "package_name": "dbt_postgres", "path": "macros/utils/last_day.sql", "original_file_path": "macros/utils/last_day.sql", "unique_id": "macro.dbt_postgres.postgres__last_day", "macro_sql": "{% macro postgres__last_day(date, datepart) -%}\n\n {%- if datepart == 'quarter' -%}\n -- postgres dateadd does not support quarter interval.\n cast(\n {{dbt.dateadd('day', '-1',\n dbt.dateadd('month', '3', dbt.date_trunc(datepart, date))\n )}}\n as date)\n {%- else -%}\n {{dbt.default_last_day(date, datepart)}}\n {%- endif -%}\n\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt.dateadd", "macro.dbt.date_trunc", "macro.dbt.default_last_day"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.136333, "supported_languages": null}, "macro.dbt_postgres.postgres__split_part": {"name": "postgres__split_part", "resource_type": "macro", "package_name": "dbt_postgres", "path": "macros/utils/split_part.sql", "original_file_path": "macros/utils/split_part.sql", "unique_id": "macro.dbt_postgres.postgres__split_part", "macro_sql": "{% macro postgres__split_part(string_text, delimiter_text, part_number) %}\n\n {% if part_number >= 0 %}\n {{ dbt.default__split_part(string_text, delimiter_text, part_number) }}\n {% else %}\n {{ dbt._split_part_negative(string_text, delimiter_text, part_number) }}\n {% endif %}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__split_part", "macro.dbt._split_part_negative"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.136748, "supported_languages": null}, "macro.dbt.run_hooks": {"name": "run_hooks", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/hooks.sql", "original_file_path": "macros/materializations/hooks.sql", "unique_id": "macro.dbt.run_hooks", "macro_sql": "{% macro run_hooks(hooks, inside_transaction=True) %}\n {% for hook in hooks | selectattr('transaction', 'equalto', inside_transaction) %}\n {% if not inside_transaction and loop.first %}\n {% call statement(auto_begin=inside_transaction) %}\n commit;\n {% endcall %}\n {% endif %}\n {% set rendered = render(hook.get('sql')) | trim %}\n {% if (rendered | length) > 0 %}\n {% call statement(auto_begin=inside_transaction) %}\n {{ rendered }}\n {% endcall %}\n {% endif %}\n {% endfor %}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.statement"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.1378748, "supported_languages": null}, "macro.dbt.make_hook_config": {"name": "make_hook_config", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/hooks.sql", "original_file_path": "macros/materializations/hooks.sql", "unique_id": "macro.dbt.make_hook_config", "macro_sql": "{% macro make_hook_config(sql, inside_transaction) %}\n {{ tojson({\"sql\": sql, \"transaction\": inside_transaction}) }}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.1380758, "supported_languages": null}, "macro.dbt.before_begin": {"name": "before_begin", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/hooks.sql", "original_file_path": "macros/materializations/hooks.sql", "unique_id": "macro.dbt.before_begin", "macro_sql": "{% macro before_begin(sql) %}\n {{ make_hook_config(sql, inside_transaction=False) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.make_hook_config"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.138228, "supported_languages": null}, "macro.dbt.in_transaction": {"name": "in_transaction", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/hooks.sql", "original_file_path": "macros/materializations/hooks.sql", "unique_id": "macro.dbt.in_transaction", "macro_sql": "{% macro in_transaction(sql) %}\n {{ make_hook_config(sql, inside_transaction=True) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.make_hook_config"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.1383722, "supported_languages": null}, "macro.dbt.after_commit": {"name": "after_commit", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/hooks.sql", "original_file_path": "macros/materializations/hooks.sql", "unique_id": "macro.dbt.after_commit", "macro_sql": "{% macro after_commit(sql) %}\n {{ make_hook_config(sql, inside_transaction=False) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.make_hook_config"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.138525, "supported_languages": null}, "macro.dbt.set_sql_header": {"name": "set_sql_header", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/configs.sql", "original_file_path": "macros/materializations/configs.sql", "unique_id": "macro.dbt.set_sql_header", "macro_sql": "{% macro set_sql_header(config) -%}\n {{ config.set('sql_header', caller()) }}\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.1388931, "supported_languages": null}, "macro.dbt.should_full_refresh": {"name": "should_full_refresh", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/configs.sql", "original_file_path": "macros/materializations/configs.sql", "unique_id": "macro.dbt.should_full_refresh", "macro_sql": "{% macro should_full_refresh() %}\n {% set config_full_refresh = config.get('full_refresh') %}\n {% if config_full_refresh is none %}\n {% set config_full_refresh = flags.FULL_REFRESH %}\n {% endif %}\n {% do return(config_full_refresh) %}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.139266, "supported_languages": null}, "macro.dbt.should_store_failures": {"name": "should_store_failures", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/configs.sql", "original_file_path": "macros/materializations/configs.sql", "unique_id": "macro.dbt.should_store_failures", "macro_sql": "{% macro should_store_failures() %}\n {% set config_store_failures = config.get('store_failures') %}\n {% if config_store_failures is none %}\n {% set config_store_failures = flags.STORE_FAILURES %}\n {% endif %}\n {% do return(config_store_failures) %}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.13957, "supported_languages": null}, "macro.dbt.snapshot_merge_sql": {"name": "snapshot_merge_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/snapshots/snapshot_merge.sql", "original_file_path": "macros/materializations/snapshots/snapshot_merge.sql", "unique_id": "macro.dbt.snapshot_merge_sql", "macro_sql": "{% macro snapshot_merge_sql(target, source, insert_cols) -%}\n {{ adapter.dispatch('snapshot_merge_sql', 'dbt')(target, source, insert_cols) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt_postgres.postgres__snapshot_merge_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.1400142, "supported_languages": null}, "macro.dbt.default__snapshot_merge_sql": {"name": "default__snapshot_merge_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/snapshots/snapshot_merge.sql", "original_file_path": "macros/materializations/snapshots/snapshot_merge.sql", "unique_id": "macro.dbt.default__snapshot_merge_sql", "macro_sql": "{% macro default__snapshot_merge_sql(target, source, insert_cols) -%}\n {%- set insert_cols_csv = insert_cols | join(', ') -%}\n\n merge into {{ target }} as DBT_INTERNAL_DEST\n using {{ source }} as DBT_INTERNAL_SOURCE\n on DBT_INTERNAL_SOURCE.dbt_scd_id = DBT_INTERNAL_DEST.dbt_scd_id\n\n when matched\n and DBT_INTERNAL_DEST.dbt_valid_to is null\n and DBT_INTERNAL_SOURCE.dbt_change_type in ('update', 'delete')\n then update\n set dbt_valid_to = DBT_INTERNAL_SOURCE.dbt_valid_to\n\n when not matched\n and DBT_INTERNAL_SOURCE.dbt_change_type = 'insert'\n then insert ({{ insert_cols_csv }})\n values ({{ insert_cols_csv }})\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.14029, "supported_languages": null}, "macro.dbt.strategy_dispatch": {"name": "strategy_dispatch", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/snapshots/strategies.sql", "original_file_path": "macros/materializations/snapshots/strategies.sql", "unique_id": "macro.dbt.strategy_dispatch", "macro_sql": "{% macro strategy_dispatch(name) -%}\n{% set original_name = name %}\n {% if '.' in name %}\n {% set package_name, name = name.split(\".\", 1) %}\n {% else %}\n {% set package_name = none %}\n {% endif %}\n\n {% if package_name is none %}\n {% set package_context = context %}\n {% elif package_name in context %}\n {% set package_context = context[package_name] %}\n {% else %}\n {% set error_msg %}\n Could not find package '{{package_name}}', called with '{{original_name}}'\n {% endset %}\n {{ exceptions.raise_compiler_error(error_msg | trim) }}\n {% endif %}\n\n {%- set search_name = 'snapshot_' ~ name ~ '_strategy' -%}\n\n {% if search_name not in package_context %}\n {% set error_msg %}\n The specified strategy macro '{{name}}' was not found in package '{{ package_name }}'\n {% endset %}\n {{ exceptions.raise_compiler_error(error_msg | trim) }}\n {% endif %}\n {{ return(package_context[search_name]) }}\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.143836, "supported_languages": null}, "macro.dbt.snapshot_hash_arguments": {"name": "snapshot_hash_arguments", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/snapshots/strategies.sql", "original_file_path": "macros/materializations/snapshots/strategies.sql", "unique_id": "macro.dbt.snapshot_hash_arguments", "macro_sql": "{% macro snapshot_hash_arguments(args) -%}\n {{ adapter.dispatch('snapshot_hash_arguments', 'dbt')(args) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt.default__snapshot_hash_arguments"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.1440141, "supported_languages": null}, "macro.dbt.default__snapshot_hash_arguments": {"name": "default__snapshot_hash_arguments", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/snapshots/strategies.sql", "original_file_path": "macros/materializations/snapshots/strategies.sql", "unique_id": "macro.dbt.default__snapshot_hash_arguments", "macro_sql": "{% macro default__snapshot_hash_arguments(args) -%}\n md5({%- for arg in args -%}\n coalesce(cast({{ arg }} as varchar ), '')\n {% if not loop.last %} || '|' || {% endif %}\n {%- endfor -%})\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.144237, "supported_languages": null}, "macro.dbt.snapshot_timestamp_strategy": {"name": "snapshot_timestamp_strategy", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/snapshots/strategies.sql", "original_file_path": "macros/materializations/snapshots/strategies.sql", "unique_id": "macro.dbt.snapshot_timestamp_strategy", "macro_sql": "{% macro snapshot_timestamp_strategy(node, snapshotted_rel, current_rel, config, target_exists) %}\n {% set primary_key = config['unique_key'] %}\n {% set updated_at = config['updated_at'] %}\n {% set invalidate_hard_deletes = config.get('invalidate_hard_deletes', false) %}\n\n {#/*\n The snapshot relation might not have an {{ updated_at }} value if the\n snapshot strategy is changed from `check` to `timestamp`. We\n should use a dbt-created column for the comparison in the snapshot\n table instead of assuming that the user-supplied {{ updated_at }}\n will be present in the historical data.\n\n See https://github.com/dbt-labs/dbt-core/issues/2350\n */ #}\n {% set row_changed_expr -%}\n ({{ snapshotted_rel }}.dbt_valid_from < {{ current_rel }}.{{ updated_at }})\n {%- endset %}\n\n {% set scd_id_expr = snapshot_hash_arguments([primary_key, updated_at]) %}\n\n {% do return({\n \"unique_key\": primary_key,\n \"updated_at\": updated_at,\n \"row_changed\": row_changed_expr,\n \"scd_id\": scd_id_expr,\n \"invalidate_hard_deletes\": invalidate_hard_deletes\n }) %}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.snapshot_hash_arguments"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.144979, "supported_languages": null}, "macro.dbt.snapshot_string_as_time": {"name": "snapshot_string_as_time", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/snapshots/strategies.sql", "original_file_path": "macros/materializations/snapshots/strategies.sql", "unique_id": "macro.dbt.snapshot_string_as_time", "macro_sql": "{% macro snapshot_string_as_time(timestamp) -%}\n {{ adapter.dispatch('snapshot_string_as_time', 'dbt')(timestamp) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt_postgres.postgres__snapshot_string_as_time"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.1451468, "supported_languages": null}, "macro.dbt.default__snapshot_string_as_time": {"name": "default__snapshot_string_as_time", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/snapshots/strategies.sql", "original_file_path": "macros/materializations/snapshots/strategies.sql", "unique_id": "macro.dbt.default__snapshot_string_as_time", "macro_sql": "{% macro default__snapshot_string_as_time(timestamp) %}\n {% do exceptions.raise_not_implemented(\n 'snapshot_string_as_time macro not implemented for adapter '+adapter.type()\n ) %}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.14532, "supported_languages": null}, "macro.dbt.snapshot_check_all_get_existing_columns": {"name": "snapshot_check_all_get_existing_columns", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/snapshots/strategies.sql", "original_file_path": "macros/materializations/snapshots/strategies.sql", "unique_id": "macro.dbt.snapshot_check_all_get_existing_columns", "macro_sql": "{% macro snapshot_check_all_get_existing_columns(node, target_exists, check_cols_config) -%}\n {%- if not target_exists -%}\n {#-- no table yet -> return whatever the query does --#}\n {{ return((false, query_columns)) }}\n {%- endif -%}\n\n {#-- handle any schema changes --#}\n {%- set target_relation = adapter.get_relation(database=node.database, schema=node.schema, identifier=node.alias) -%}\n\n {% if check_cols_config == 'all' %}\n {%- set query_columns = get_columns_in_query(node['compiled_code']) -%}\n\n {% elif check_cols_config is iterable and (check_cols_config | length) > 0 %}\n {#-- query for proper casing/quoting, to support comparison below --#}\n {%- set select_check_cols_from_target -%}\n {#-- N.B. The whitespace below is necessary to avoid edge case issue with comments --#}\n {#-- See: https://github.com/dbt-labs/dbt-core/issues/6781 --#}\n select {{ check_cols_config | join(', ') }} from (\n {{ node['compiled_code'] }}\n ) subq\n {%- endset -%}\n {% set query_columns = get_columns_in_query(select_check_cols_from_target) %}\n\n {% else %}\n {% do exceptions.raise_compiler_error(\"Invalid value for 'check_cols': \" ~ check_cols_config) %}\n {% endif %}\n\n {%- set existing_cols = adapter.get_columns_in_relation(target_relation) | map(attribute = 'name') | list -%}\n {%- set ns = namespace() -%} {#-- handle for-loop scoping with a namespace --#}\n {%- set ns.column_added = false -%}\n\n {%- set intersection = [] -%}\n {%- for col in query_columns -%}\n {%- if col in existing_cols -%}\n {%- do intersection.append(adapter.quote(col)) -%}\n {%- else -%}\n {% set ns.column_added = true %}\n {%- endif -%}\n {%- endfor -%}\n {{ return((ns.column_added, intersection)) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt.get_columns_in_query"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.1467452, "supported_languages": null}, "macro.dbt.snapshot_check_strategy": {"name": "snapshot_check_strategy", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/snapshots/strategies.sql", "original_file_path": "macros/materializations/snapshots/strategies.sql", "unique_id": "macro.dbt.snapshot_check_strategy", "macro_sql": "{% macro snapshot_check_strategy(node, snapshotted_rel, current_rel, config, target_exists) %}\n {% set check_cols_config = config['check_cols'] %}\n {% set primary_key = config['unique_key'] %}\n {% set invalidate_hard_deletes = config.get('invalidate_hard_deletes', false) %}\n {% set updated_at = config.get('updated_at', snapshot_get_time()) %}\n\n {% set column_added = false %}\n\n {% set column_added, check_cols = snapshot_check_all_get_existing_columns(node, target_exists, check_cols_config) %}\n\n {%- set row_changed_expr -%}\n (\n {%- if column_added -%}\n {{ get_true_sql() }}\n {%- else -%}\n {%- for col in check_cols -%}\n {{ snapshotted_rel }}.{{ col }} != {{ current_rel }}.{{ col }}\n or\n (\n (({{ snapshotted_rel }}.{{ col }} is null) and not ({{ current_rel }}.{{ col }} is null))\n or\n ((not {{ snapshotted_rel }}.{{ col }} is null) and ({{ current_rel }}.{{ col }} is null))\n )\n {%- if not loop.last %} or {% endif -%}\n {%- endfor -%}\n {%- endif -%}\n )\n {%- endset %}\n\n {% set scd_id_expr = snapshot_hash_arguments([primary_key, updated_at]) %}\n\n {% do return({\n \"unique_key\": primary_key,\n \"updated_at\": updated_at,\n \"row_changed\": row_changed_expr,\n \"scd_id\": scd_id_expr,\n \"invalidate_hard_deletes\": invalidate_hard_deletes\n }) %}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.snapshot_get_time", "macro.dbt.snapshot_check_all_get_existing_columns", "macro.dbt.get_true_sql", "macro.dbt.snapshot_hash_arguments"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.1481862, "supported_languages": null}, "macro.dbt.create_columns": {"name": "create_columns", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/snapshots/helpers.sql", "original_file_path": "macros/materializations/snapshots/helpers.sql", "unique_id": "macro.dbt.create_columns", "macro_sql": "{% macro create_columns(relation, columns) %}\n {{ adapter.dispatch('create_columns', 'dbt')(relation, columns) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__create_columns"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.152331, "supported_languages": null}, "macro.dbt.default__create_columns": {"name": "default__create_columns", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/snapshots/helpers.sql", "original_file_path": "macros/materializations/snapshots/helpers.sql", "unique_id": "macro.dbt.default__create_columns", "macro_sql": "{% macro default__create_columns(relation, columns) %}\n {% for column in columns %}\n {% call statement() %}\n alter table {{ relation }} add column \"{{ column.name }}\" {{ column.data_type }};\n {% endcall %}\n {% endfor %}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.statement"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.152616, "supported_languages": null}, "macro.dbt.post_snapshot": {"name": "post_snapshot", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/snapshots/helpers.sql", "original_file_path": "macros/materializations/snapshots/helpers.sql", "unique_id": "macro.dbt.post_snapshot", "macro_sql": "{% macro post_snapshot(staging_relation) %}\n {{ adapter.dispatch('post_snapshot', 'dbt')(staging_relation) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__post_snapshot"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.1527832, "supported_languages": null}, "macro.dbt.default__post_snapshot": {"name": "default__post_snapshot", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/snapshots/helpers.sql", "original_file_path": "macros/materializations/snapshots/helpers.sql", "unique_id": "macro.dbt.default__post_snapshot", "macro_sql": "{% macro default__post_snapshot(staging_relation) %}\n {# no-op #}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.152873, "supported_languages": null}, "macro.dbt.get_true_sql": {"name": "get_true_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/snapshots/helpers.sql", "original_file_path": "macros/materializations/snapshots/helpers.sql", "unique_id": "macro.dbt.get_true_sql", "macro_sql": "{% macro get_true_sql() %}\n {{ adapter.dispatch('get_true_sql', 'dbt')() }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__get_true_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.1530209, "supported_languages": null}, "macro.dbt.default__get_true_sql": {"name": "default__get_true_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/snapshots/helpers.sql", "original_file_path": "macros/materializations/snapshots/helpers.sql", "unique_id": "macro.dbt.default__get_true_sql", "macro_sql": "{% macro default__get_true_sql() %}\n {{ return('TRUE') }}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.153137, "supported_languages": null}, "macro.dbt.snapshot_staging_table": {"name": "snapshot_staging_table", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/snapshots/helpers.sql", "original_file_path": "macros/materializations/snapshots/helpers.sql", "unique_id": "macro.dbt.snapshot_staging_table", "macro_sql": "{% macro snapshot_staging_table(strategy, source_sql, target_relation) -%}\n {{ adapter.dispatch('snapshot_staging_table', 'dbt')(strategy, source_sql, target_relation) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__snapshot_staging_table"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.153344, "supported_languages": null}, "macro.dbt.default__snapshot_staging_table": {"name": "default__snapshot_staging_table", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/snapshots/helpers.sql", "original_file_path": "macros/materializations/snapshots/helpers.sql", "unique_id": "macro.dbt.default__snapshot_staging_table", "macro_sql": "{% macro default__snapshot_staging_table(strategy, source_sql, target_relation) -%}\n\n with snapshot_query as (\n\n {{ source_sql }}\n\n ),\n\n snapshotted_data as (\n\n select *,\n {{ strategy.unique_key }} as dbt_unique_key\n\n from {{ target_relation }}\n where dbt_valid_to is null\n\n ),\n\n insertions_source_data as (\n\n select\n *,\n {{ strategy.unique_key }} as dbt_unique_key,\n {{ strategy.updated_at }} as dbt_updated_at,\n {{ strategy.updated_at }} as dbt_valid_from,\n nullif({{ strategy.updated_at }}, {{ strategy.updated_at }}) as dbt_valid_to,\n {{ strategy.scd_id }} as dbt_scd_id\n\n from snapshot_query\n ),\n\n updates_source_data as (\n\n select\n *,\n {{ strategy.unique_key }} as dbt_unique_key,\n {{ strategy.updated_at }} as dbt_updated_at,\n {{ strategy.updated_at }} as dbt_valid_from,\n {{ strategy.updated_at }} as dbt_valid_to\n\n from snapshot_query\n ),\n\n {%- if strategy.invalidate_hard_deletes %}\n\n deletes_source_data as (\n\n select\n *,\n {{ strategy.unique_key }} as dbt_unique_key\n from snapshot_query\n ),\n {% endif %}\n\n insertions as (\n\n select\n 'insert' as dbt_change_type,\n source_data.*\n\n from insertions_source_data as source_data\n left outer join snapshotted_data on snapshotted_data.dbt_unique_key = source_data.dbt_unique_key\n where snapshotted_data.dbt_unique_key is null\n or (\n snapshotted_data.dbt_unique_key is not null\n and (\n {{ strategy.row_changed }}\n )\n )\n\n ),\n\n updates as (\n\n select\n 'update' as dbt_change_type,\n source_data.*,\n snapshotted_data.dbt_scd_id\n\n from updates_source_data as source_data\n join snapshotted_data on snapshotted_data.dbt_unique_key = source_data.dbt_unique_key\n where (\n {{ strategy.row_changed }}\n )\n )\n\n {%- if strategy.invalidate_hard_deletes -%}\n ,\n\n deletes as (\n\n select\n 'delete' as dbt_change_type,\n source_data.*,\n {{ snapshot_get_time() }} as dbt_valid_from,\n {{ snapshot_get_time() }} as dbt_updated_at,\n {{ snapshot_get_time() }} as dbt_valid_to,\n snapshotted_data.dbt_scd_id\n\n from snapshotted_data\n left join deletes_source_data as source_data on snapshotted_data.dbt_unique_key = source_data.dbt_unique_key\n where source_data.dbt_unique_key is null\n )\n {%- endif %}\n\n select * from insertions\n union all\n select * from updates\n {%- if strategy.invalidate_hard_deletes %}\n union all\n select * from deletes\n {%- endif %}\n\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt.snapshot_get_time"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.1542668, "supported_languages": null}, "macro.dbt.build_snapshot_table": {"name": "build_snapshot_table", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/snapshots/helpers.sql", "original_file_path": "macros/materializations/snapshots/helpers.sql", "unique_id": "macro.dbt.build_snapshot_table", "macro_sql": "{% macro build_snapshot_table(strategy, sql) -%}\n {{ adapter.dispatch('build_snapshot_table', 'dbt')(strategy, sql) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__build_snapshot_table"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.1544619, "supported_languages": null}, "macro.dbt.default__build_snapshot_table": {"name": "default__build_snapshot_table", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/snapshots/helpers.sql", "original_file_path": "macros/materializations/snapshots/helpers.sql", "unique_id": "macro.dbt.default__build_snapshot_table", "macro_sql": "{% macro default__build_snapshot_table(strategy, sql) %}\n\n select *,\n {{ strategy.scd_id }} as dbt_scd_id,\n {{ strategy.updated_at }} as dbt_updated_at,\n {{ strategy.updated_at }} as dbt_valid_from,\n nullif({{ strategy.updated_at }}, {{ strategy.updated_at }}) as dbt_valid_to\n from (\n {{ sql }}\n ) sbq\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.154717, "supported_languages": null}, "macro.dbt.build_snapshot_staging_table": {"name": "build_snapshot_staging_table", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/snapshots/helpers.sql", "original_file_path": "macros/materializations/snapshots/helpers.sql", "unique_id": "macro.dbt.build_snapshot_staging_table", "macro_sql": "{% macro build_snapshot_staging_table(strategy, sql, target_relation) %}\n {% set temp_relation = make_temp_relation(target_relation) %}\n\n {% set select = snapshot_staging_table(strategy, sql, target_relation) %}\n\n {% call statement('build_snapshot_staging_relation') %}\n {{ create_table_as(True, temp_relation, select) }}\n {% endcall %}\n\n {% do return(temp_relation) %}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.make_temp_relation", "macro.dbt.snapshot_staging_table", "macro.dbt.statement", "macro.dbt.create_table_as"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.155154, "supported_languages": null}, "macro.dbt.materialization_snapshot_default": {"name": "materialization_snapshot_default", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/snapshots/snapshot.sql", "original_file_path": "macros/materializations/snapshots/snapshot.sql", "unique_id": "macro.dbt.materialization_snapshot_default", "macro_sql": "{% materialization snapshot, default %}\n {%- set config = model['config'] -%}\n\n {%- set target_table = model.get('alias', model.get('name')) -%}\n\n {%- set strategy_name = config.get('strategy') -%}\n {%- set unique_key = config.get('unique_key') %}\n -- grab current tables grants config for comparision later on\n {%- set grant_config = config.get('grants') -%}\n\n {% set target_relation_exists, target_relation = get_or_create_relation(\n database=model.database,\n schema=model.schema,\n identifier=target_table,\n type='table') -%}\n\n {%- if not target_relation.is_table -%}\n {% do exceptions.relation_wrong_type(target_relation, 'table') %}\n {%- endif -%}\n\n\n {{ run_hooks(pre_hooks, inside_transaction=False) }}\n\n {{ run_hooks(pre_hooks, inside_transaction=True) }}\n\n {% set strategy_macro = strategy_dispatch(strategy_name) %}\n {% set strategy = strategy_macro(model, \"snapshotted_data\", \"source_data\", config, target_relation_exists) %}\n\n {% if not target_relation_exists %}\n\n {% set build_sql = build_snapshot_table(strategy, model['compiled_code']) %}\n {% set final_sql = create_table_as(False, target_relation, build_sql) %}\n\n {% else %}\n\n {{ adapter.valid_snapshot_target(target_relation) }}\n\n {% set staging_table = build_snapshot_staging_table(strategy, sql, target_relation) %}\n\n -- this may no-op if the database does not require column expansion\n {% do adapter.expand_target_column_types(from_relation=staging_table,\n to_relation=target_relation) %}\n\n {% set missing_columns = adapter.get_missing_columns(staging_table, target_relation)\n | rejectattr('name', 'equalto', 'dbt_change_type')\n | rejectattr('name', 'equalto', 'DBT_CHANGE_TYPE')\n | rejectattr('name', 'equalto', 'dbt_unique_key')\n | rejectattr('name', 'equalto', 'DBT_UNIQUE_KEY')\n | list %}\n\n {% do create_columns(target_relation, missing_columns) %}\n\n {% set source_columns = adapter.get_columns_in_relation(staging_table)\n | rejectattr('name', 'equalto', 'dbt_change_type')\n | rejectattr('name', 'equalto', 'DBT_CHANGE_TYPE')\n | rejectattr('name', 'equalto', 'dbt_unique_key')\n | rejectattr('name', 'equalto', 'DBT_UNIQUE_KEY')\n | list %}\n\n {% set quoted_source_columns = [] %}\n {% for column in source_columns %}\n {% do quoted_source_columns.append(adapter.quote(column.name)) %}\n {% endfor %}\n\n {% set final_sql = snapshot_merge_sql(\n target = target_relation,\n source = staging_table,\n insert_cols = quoted_source_columns\n )\n %}\n\n {% endif %}\n\n {% call statement('main') %}\n {{ final_sql }}\n {% endcall %}\n\n {% set should_revoke = should_revoke(target_relation_exists, full_refresh_mode=False) %}\n {% do apply_grants(target_relation, grant_config, should_revoke=should_revoke) %}\n\n {% do persist_docs(target_relation, model) %}\n\n {% if not target_relation_exists %}\n {% do create_indexes(target_relation) %}\n {% endif %}\n\n {{ run_hooks(post_hooks, inside_transaction=True) }}\n\n {{ adapter.commit() }}\n\n {% if staging_table is defined %}\n {% do post_snapshot(staging_table) %}\n {% endif %}\n\n {{ run_hooks(post_hooks, inside_transaction=False) }}\n\n {{ return({'relations': [target_relation]}) }}\n\n{% endmaterialization %}", "depends_on": {"macros": ["macro.dbt.get_or_create_relation", "macro.dbt.run_hooks", "macro.dbt.strategy_dispatch", "macro.dbt.build_snapshot_table", "macro.dbt.create_table_as", "macro.dbt.build_snapshot_staging_table", "macro.dbt.create_columns", "macro.dbt.snapshot_merge_sql", "macro.dbt.statement", "macro.dbt.should_revoke", "macro.dbt.apply_grants", "macro.dbt.persist_docs", "macro.dbt.create_indexes", "macro.dbt.post_snapshot"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.161365, "supported_languages": ["sql"]}, "macro.dbt.materialization_test_default": {"name": "materialization_test_default", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/tests/test.sql", "original_file_path": "macros/materializations/tests/test.sql", "unique_id": "macro.dbt.materialization_test_default", "macro_sql": "{%- materialization test, default -%}\n\n {% set relations = [] %}\n\n {% if should_store_failures() %}\n\n {% set identifier = model['alias'] %}\n {% set old_relation = adapter.get_relation(database=database, schema=schema, identifier=identifier) %}\n\n {% set store_failures_as = config.get('store_failures_as') %}\n -- if `--store-failures` is invoked via command line and `store_failures_as` is not set,\n -- config.get('store_failures_as', 'table') returns None, not 'table'\n {% if store_failures_as == none %}{% set store_failures_as = 'table' %}{% endif %}\n {% if store_failures_as not in ['table', 'view'] %}\n {{ exceptions.raise_compiler_error(\n \"'\" ~ store_failures_as ~ \"' is not a valid value for `store_failures_as`. \"\n \"Accepted values are: ['ephemeral', 'table', 'view']\"\n ) }}\n {% endif %}\n\n {% set target_relation = api.Relation.create(\n identifier=identifier, schema=schema, database=database, type=store_failures_as) -%} %}\n\n {% if old_relation %}\n {% do adapter.drop_relation(old_relation) %}\n {% endif %}\n\n {% call statement(auto_begin=True) %}\n {{ get_create_sql(target_relation, sql) }}\n {% endcall %}\n\n {% do relations.append(target_relation) %}\n\n {% set main_sql %}\n select *\n from {{ target_relation }}\n {% endset %}\n\n {{ adapter.commit() }}\n\n {% else %}\n\n {% set main_sql = sql %}\n\n {% endif %}\n\n {% set limit = config.get('limit') %}\n {% set fail_calc = config.get('fail_calc') %}\n {% set warn_if = config.get('warn_if') %}\n {% set error_if = config.get('error_if') %}\n\n {% call statement('main', fetch_result=True) -%}\n\n {{ get_test_sql(main_sql, fail_calc, warn_if, error_if, limit)}}\n\n {%- endcall %}\n\n {{ return({'relations': relations}) }}\n\n{%- endmaterialization -%}", "depends_on": {"macros": ["macro.dbt.should_store_failures", "macro.dbt.statement", "macro.dbt.get_create_sql", "macro.dbt.get_test_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.164202, "supported_languages": ["sql"]}, "macro.dbt.get_test_sql": {"name": "get_test_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/tests/helpers.sql", "original_file_path": "macros/materializations/tests/helpers.sql", "unique_id": "macro.dbt.get_test_sql", "macro_sql": "{% macro get_test_sql(main_sql, fail_calc, warn_if, error_if, limit) -%}\n {{ adapter.dispatch('get_test_sql', 'dbt')(main_sql, fail_calc, warn_if, error_if, limit) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt.default__get_test_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.164703, "supported_languages": null}, "macro.dbt.default__get_test_sql": {"name": "default__get_test_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/tests/helpers.sql", "original_file_path": "macros/materializations/tests/helpers.sql", "unique_id": "macro.dbt.default__get_test_sql", "macro_sql": "{% macro default__get_test_sql(main_sql, fail_calc, warn_if, error_if, limit) -%}\n select\n {{ fail_calc }} as failures,\n {{ fail_calc }} {{ warn_if }} as should_warn,\n {{ fail_calc }} {{ error_if }} as should_error\n from (\n {{ main_sql }}\n {{ \"limit \" ~ limit if limit != none }}\n ) dbt_internal_test\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.165024, "supported_languages": null}, "macro.dbt.get_where_subquery": {"name": "get_where_subquery", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/tests/where_subquery.sql", "original_file_path": "macros/materializations/tests/where_subquery.sql", "unique_id": "macro.dbt.get_where_subquery", "macro_sql": "{% macro get_where_subquery(relation) -%}\n {% do return(adapter.dispatch('get_where_subquery', 'dbt')(relation)) %}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt.default__get_where_subquery"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.1654332, "supported_languages": null}, "macro.dbt.default__get_where_subquery": {"name": "default__get_where_subquery", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/tests/where_subquery.sql", "original_file_path": "macros/materializations/tests/where_subquery.sql", "unique_id": "macro.dbt.default__get_where_subquery", "macro_sql": "{% macro default__get_where_subquery(relation) -%}\n {% set where = config.get('where', '') %}\n {% if where %}\n {%- set filtered -%}\n (select * from {{ relation }} where {{ where }}) dbt_subquery\n {%- endset -%}\n {% do return(filtered) %}\n {%- else -%}\n {% do return(relation) %}\n {%- endif -%}\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.165824, "supported_languages": null}, "macro.dbt.materialization_materialized_view_default": {"name": "materialization_materialized_view_default", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/materialized_view.sql", "original_file_path": "macros/materializations/models/materialized_view.sql", "unique_id": "macro.dbt.materialization_materialized_view_default", "macro_sql": "{% materialization materialized_view, default %}\n {% set existing_relation = load_cached_relation(this) %}\n {% set target_relation = this.incorporate(type=this.MaterializedView) %}\n {% set intermediate_relation = make_intermediate_relation(target_relation) %}\n {% set backup_relation_type = target_relation.MaterializedView if existing_relation is none else existing_relation.type %}\n {% set backup_relation = make_backup_relation(target_relation, backup_relation_type) %}\n\n {{ materialized_view_setup(backup_relation, intermediate_relation, pre_hooks) }}\n\n {% set build_sql = materialized_view_get_build_sql(existing_relation, target_relation, backup_relation, intermediate_relation) %}\n\n {% if build_sql == '' %}\n {{ materialized_view_execute_no_op(target_relation) }}\n {% else %}\n {{ materialized_view_execute_build_sql(build_sql, existing_relation, target_relation, post_hooks) }}\n {% endif %}\n\n {{ materialized_view_teardown(backup_relation, intermediate_relation, post_hooks) }}\n\n {{ return({'relations': [target_relation]}) }}\n\n{% endmaterialization %}", "depends_on": {"macros": ["macro.dbt.load_cached_relation", "macro.dbt.make_intermediate_relation", "macro.dbt.make_backup_relation", "macro.dbt.materialized_view_setup", "macro.dbt.materialized_view_get_build_sql", "macro.dbt.materialized_view_execute_no_op", "macro.dbt.materialized_view_execute_build_sql", "macro.dbt.materialized_view_teardown"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.170772, "supported_languages": ["sql"]}, "macro.dbt.materialized_view_setup": {"name": "materialized_view_setup", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/materialized_view.sql", "original_file_path": "macros/materializations/models/materialized_view.sql", "unique_id": "macro.dbt.materialized_view_setup", "macro_sql": "{% macro materialized_view_setup(backup_relation, intermediate_relation, pre_hooks) %}\n\n -- backup_relation and intermediate_relation should not already exist in the database\n -- it's possible these exist because of a previous run that exited unexpectedly\n {% set preexisting_backup_relation = load_cached_relation(backup_relation) %}\n {% set preexisting_intermediate_relation = load_cached_relation(intermediate_relation) %}\n\n -- drop the temp relations if they exist already in the database\n {{ drop_relation_if_exists(preexisting_backup_relation) }}\n {{ drop_relation_if_exists(preexisting_intermediate_relation) }}\n\n {{ run_hooks(pre_hooks, inside_transaction=False) }}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.load_cached_relation", "macro.dbt.drop_relation_if_exists", "macro.dbt.run_hooks"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.171181, "supported_languages": null}, "macro.dbt.materialized_view_teardown": {"name": "materialized_view_teardown", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/materialized_view.sql", "original_file_path": "macros/materializations/models/materialized_view.sql", "unique_id": "macro.dbt.materialized_view_teardown", "macro_sql": "{% macro materialized_view_teardown(backup_relation, intermediate_relation, post_hooks) %}\n\n -- drop the temp relations if they exist to leave the database clean for the next run\n {{ drop_relation_if_exists(backup_relation) }}\n {{ drop_relation_if_exists(intermediate_relation) }}\n\n {{ run_hooks(post_hooks, inside_transaction=False) }}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.drop_relation_if_exists", "macro.dbt.run_hooks"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.1714401, "supported_languages": null}, "macro.dbt.materialized_view_get_build_sql": {"name": "materialized_view_get_build_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/materialized_view.sql", "original_file_path": "macros/materializations/models/materialized_view.sql", "unique_id": "macro.dbt.materialized_view_get_build_sql", "macro_sql": "{% macro materialized_view_get_build_sql(existing_relation, target_relation, backup_relation, intermediate_relation) %}\n\n {% set full_refresh_mode = should_full_refresh() %}\n\n -- determine the scenario we're in: create, full_refresh, alter, refresh data\n {% if existing_relation is none %}\n {% set build_sql = get_create_materialized_view_as_sql(target_relation, sql) %}\n {% elif full_refresh_mode or not existing_relation.is_materialized_view %}\n {% set build_sql = get_replace_sql(existing_relation, target_relation, sql) %}\n {% else %}\n\n -- get config options\n {% set on_configuration_change = config.get('on_configuration_change') %}\n {% set configuration_changes = get_materialized_view_configuration_changes(existing_relation, config) %}\n\n {% if configuration_changes is none %}\n {% set build_sql = refresh_materialized_view(target_relation) %}\n\n {% elif on_configuration_change == 'apply' %}\n {% set build_sql = get_alter_materialized_view_as_sql(target_relation, configuration_changes, sql, existing_relation, backup_relation, intermediate_relation) %}\n {% elif on_configuration_change == 'continue' %}\n {% set build_sql = '' %}\n {{ exceptions.warn(\"Configuration changes were identified and `on_configuration_change` was set to `continue` for `\" ~ target_relation ~ \"`\") }}\n {% elif on_configuration_change == 'fail' %}\n {{ exceptions.raise_fail_fast_error(\"Configuration changes were identified and `on_configuration_change` was set to `fail` for `\" ~ target_relation ~ \"`\") }}\n\n {% else %}\n -- this only happens if the user provides a value other than `apply`, 'skip', 'fail'\n {{ exceptions.raise_compiler_error(\"Unexpected configuration scenario\") }}\n\n {% endif %}\n\n {% endif %}\n\n {% do return(build_sql) %}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.should_full_refresh", "macro.dbt.get_create_materialized_view_as_sql", "macro.dbt.get_replace_sql", "macro.dbt.get_materialized_view_configuration_changes", "macro.dbt.refresh_materialized_view", "macro.dbt.get_alter_materialized_view_as_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.172758, "supported_languages": null}, "macro.dbt.materialized_view_execute_no_op": {"name": "materialized_view_execute_no_op", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/materialized_view.sql", "original_file_path": "macros/materializations/models/materialized_view.sql", "unique_id": "macro.dbt.materialized_view_execute_no_op", "macro_sql": "{% macro materialized_view_execute_no_op(target_relation) %}\n {% do store_raw_result(\n name=\"main\",\n message=\"skip \" ~ target_relation,\n code=\"skip\",\n rows_affected=\"-1\"\n ) %}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.172993, "supported_languages": null}, "macro.dbt.materialized_view_execute_build_sql": {"name": "materialized_view_execute_build_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/materialized_view.sql", "original_file_path": "macros/materializations/models/materialized_view.sql", "unique_id": "macro.dbt.materialized_view_execute_build_sql", "macro_sql": "{% macro materialized_view_execute_build_sql(build_sql, existing_relation, target_relation, post_hooks) %}\n\n -- `BEGIN` happens here:\n {{ run_hooks(pre_hooks, inside_transaction=True) }}\n\n {% set grant_config = config.get('grants') %}\n\n {% call statement(name=\"main\") %}\n {{ build_sql }}\n {% endcall %}\n\n {% set should_revoke = should_revoke(existing_relation, full_refresh_mode=True) %}\n {% do apply_grants(target_relation, grant_config, should_revoke=should_revoke) %}\n\n {% do persist_docs(target_relation, model) %}\n\n {{ run_hooks(post_hooks, inside_transaction=True) }}\n\n {{ adapter.commit() }}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.run_hooks", "macro.dbt.statement", "macro.dbt.should_revoke", "macro.dbt.apply_grants", "macro.dbt.persist_docs"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.173661, "supported_languages": null}, "macro.dbt.materialization_view_default": {"name": "materialization_view_default", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/view.sql", "original_file_path": "macros/materializations/models/view.sql", "unique_id": "macro.dbt.materialization_view_default", "macro_sql": "{%- materialization view, default -%}\n\n {%- set existing_relation = load_cached_relation(this) -%}\n {%- set target_relation = this.incorporate(type='view') -%}\n {%- set intermediate_relation = make_intermediate_relation(target_relation) -%}\n\n -- the intermediate_relation should not already exist in the database; get_relation\n -- will return None in that case. Otherwise, we get a relation that we can drop\n -- later, before we try to use this name for the current operation\n {%- set preexisting_intermediate_relation = load_cached_relation(intermediate_relation) -%}\n /*\n This relation (probably) doesn't exist yet. If it does exist, it's a leftover from\n a previous run, and we're going to try to drop it immediately. At the end of this\n materialization, we're going to rename the \"existing_relation\" to this identifier,\n and then we're going to drop it. In order to make sure we run the correct one of:\n - drop view ...\n - drop table ...\n\n We need to set the type of this relation to be the type of the existing_relation, if it exists,\n or else \"view\" as a sane default if it does not. Note that if the existing_relation does not\n exist, then there is nothing to move out of the way and subsequentally drop. In that case,\n this relation will be effectively unused.\n */\n {%- set backup_relation_type = 'view' if existing_relation is none else existing_relation.type -%}\n {%- set backup_relation = make_backup_relation(target_relation, backup_relation_type) -%}\n -- as above, the backup_relation should not already exist\n {%- set preexisting_backup_relation = load_cached_relation(backup_relation) -%}\n -- grab current tables grants config for comparision later on\n {% set grant_config = config.get('grants') %}\n\n {{ run_hooks(pre_hooks, inside_transaction=False) }}\n\n -- drop the temp relations if they exist already in the database\n {{ drop_relation_if_exists(preexisting_intermediate_relation) }}\n {{ drop_relation_if_exists(preexisting_backup_relation) }}\n\n -- `BEGIN` happens here:\n {{ run_hooks(pre_hooks, inside_transaction=True) }}\n\n -- build model\n {% call statement('main') -%}\n {{ get_create_view_as_sql(intermediate_relation, sql) }}\n {%- endcall %}\n\n -- cleanup\n -- move the existing view out of the way\n {% if existing_relation is not none %}\n /* Do the equivalent of rename_if_exists. 'existing_relation' could have been dropped\n since the variable was first set. */\n {% set existing_relation = load_cached_relation(existing_relation) %}\n {% if existing_relation is not none %}\n {{ adapter.rename_relation(existing_relation, backup_relation) }}\n {% endif %}\n {% endif %}\n {{ adapter.rename_relation(intermediate_relation, target_relation) }}\n\n {% set should_revoke = should_revoke(existing_relation, full_refresh_mode=True) %}\n {% do apply_grants(target_relation, grant_config, should_revoke=should_revoke) %}\n\n {% do persist_docs(target_relation, model) %}\n\n {{ run_hooks(post_hooks, inside_transaction=True) }}\n\n {{ adapter.commit() }}\n\n {{ drop_relation_if_exists(backup_relation) }}\n\n {{ run_hooks(post_hooks, inside_transaction=False) }}\n\n {{ return({'relations': [target_relation]}) }}\n\n{%- endmaterialization -%}", "depends_on": {"macros": ["macro.dbt.load_cached_relation", "macro.dbt.make_intermediate_relation", "macro.dbt.make_backup_relation", "macro.dbt.run_hooks", "macro.dbt.drop_relation_if_exists", "macro.dbt.statement", "macro.dbt.get_create_view_as_sql", "macro.dbt.should_revoke", "macro.dbt.apply_grants", "macro.dbt.persist_docs"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.176631, "supported_languages": ["sql"]}, "macro.dbt.materialization_table_default": {"name": "materialization_table_default", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/table.sql", "original_file_path": "macros/materializations/models/table.sql", "unique_id": "macro.dbt.materialization_table_default", "macro_sql": "{% materialization table, default %}\n\n {%- set existing_relation = load_cached_relation(this) -%}\n {%- set target_relation = this.incorporate(type='table') %}\n {%- set intermediate_relation = make_intermediate_relation(target_relation) -%}\n -- the intermediate_relation should not already exist in the database; get_relation\n -- will return None in that case. Otherwise, we get a relation that we can drop\n -- later, before we try to use this name for the current operation\n {%- set preexisting_intermediate_relation = load_cached_relation(intermediate_relation) -%}\n /*\n See ../view/view.sql for more information about this relation.\n */\n {%- set backup_relation_type = 'table' if existing_relation is none else existing_relation.type -%}\n {%- set backup_relation = make_backup_relation(target_relation, backup_relation_type) -%}\n -- as above, the backup_relation should not already exist\n {%- set preexisting_backup_relation = load_cached_relation(backup_relation) -%}\n -- grab current tables grants config for comparision later on\n {% set grant_config = config.get('grants') %}\n\n -- drop the temp relations if they exist already in the database\n {{ drop_relation_if_exists(preexisting_intermediate_relation) }}\n {{ drop_relation_if_exists(preexisting_backup_relation) }}\n\n {{ run_hooks(pre_hooks, inside_transaction=False) }}\n\n -- `BEGIN` happens here:\n {{ run_hooks(pre_hooks, inside_transaction=True) }}\n\n -- build model\n {% call statement('main') -%}\n {{ get_create_table_as_sql(False, intermediate_relation, sql) }}\n {%- endcall %}\n\n -- cleanup\n {% if existing_relation is not none %}\n /* Do the equivalent of rename_if_exists. 'existing_relation' could have been dropped\n since the variable was first set. */\n {% set existing_relation = load_cached_relation(existing_relation) %}\n {% if existing_relation is not none %}\n {{ adapter.rename_relation(existing_relation, backup_relation) }}\n {% endif %}\n {% endif %}\n\n {{ adapter.rename_relation(intermediate_relation, target_relation) }}\n\n {% do create_indexes(target_relation) %}\n\n {{ run_hooks(post_hooks, inside_transaction=True) }}\n\n {% set should_revoke = should_revoke(existing_relation, full_refresh_mode=True) %}\n {% do apply_grants(target_relation, grant_config, should_revoke=should_revoke) %}\n\n {% do persist_docs(target_relation, model) %}\n\n -- `COMMIT` happens here\n {{ adapter.commit() }}\n\n -- finally, drop the existing/backup relation after the commit\n {{ drop_relation_if_exists(backup_relation) }}\n\n {{ run_hooks(post_hooks, inside_transaction=False) }}\n\n {{ return({'relations': [target_relation]}) }}\n{% endmaterialization %}", "depends_on": {"macros": ["macro.dbt.load_cached_relation", "macro.dbt.make_intermediate_relation", "macro.dbt.make_backup_relation", "macro.dbt.drop_relation_if_exists", "macro.dbt.run_hooks", "macro.dbt.statement", "macro.dbt.get_create_table_as_sql", "macro.dbt.create_indexes", "macro.dbt.should_revoke", "macro.dbt.apply_grants", "macro.dbt.persist_docs"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.17955, "supported_languages": ["sql"]}, "macro.dbt.get_quoted_csv": {"name": "get_quoted_csv", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/incremental/column_helpers.sql", "original_file_path": "macros/materializations/models/incremental/column_helpers.sql", "unique_id": "macro.dbt.get_quoted_csv", "macro_sql": "{% macro get_quoted_csv(column_names) %}\n\n {% set quoted = [] %}\n {% for col in column_names -%}\n {%- do quoted.append(adapter.quote(col)) -%}\n {%- endfor %}\n\n {%- set dest_cols_csv = quoted | join(', ') -%}\n {{ return(dest_cols_csv) }}\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.1811771, "supported_languages": null}, "macro.dbt.diff_columns": {"name": "diff_columns", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/incremental/column_helpers.sql", "original_file_path": "macros/materializations/models/incremental/column_helpers.sql", "unique_id": "macro.dbt.diff_columns", "macro_sql": "{% macro diff_columns(source_columns, target_columns) %}\n\n {% set result = [] %}\n {% set source_names = source_columns | map(attribute = 'column') | list %}\n {% set target_names = target_columns | map(attribute = 'column') | list %}\n\n {# --check whether the name attribute exists in the target - this does not perform a data type check #}\n {% for sc in source_columns %}\n {% if sc.name not in target_names %}\n {{ result.append(sc) }}\n {% endif %}\n {% endfor %}\n\n {{ return(result) }}\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.1817348, "supported_languages": null}, "macro.dbt.diff_column_data_types": {"name": "diff_column_data_types", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/incremental/column_helpers.sql", "original_file_path": "macros/materializations/models/incremental/column_helpers.sql", "unique_id": "macro.dbt.diff_column_data_types", "macro_sql": "{% macro diff_column_data_types(source_columns, target_columns) %}\n\n {% set result = [] %}\n {% for sc in source_columns %}\n {% set tc = target_columns | selectattr(\"name\", \"equalto\", sc.name) | list | first %}\n {% if tc %}\n {% if sc.data_type != tc.data_type and not sc.can_expand_to(other_column=tc) %}\n {{ result.append( { 'column_name': tc.name, 'new_type': sc.data_type } ) }}\n {% endif %}\n {% endif %}\n {% endfor %}\n\n {{ return(result) }}\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.182411, "supported_languages": null}, "macro.dbt.get_merge_update_columns": {"name": "get_merge_update_columns", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/incremental/column_helpers.sql", "original_file_path": "macros/materializations/models/incremental/column_helpers.sql", "unique_id": "macro.dbt.get_merge_update_columns", "macro_sql": "{% macro get_merge_update_columns(merge_update_columns, merge_exclude_columns, dest_columns) %}\n {{ return(adapter.dispatch('get_merge_update_columns', 'dbt')(merge_update_columns, merge_exclude_columns, dest_columns)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__get_merge_update_columns"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.182653, "supported_languages": null}, "macro.dbt.default__get_merge_update_columns": {"name": "default__get_merge_update_columns", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/incremental/column_helpers.sql", "original_file_path": "macros/materializations/models/incremental/column_helpers.sql", "unique_id": "macro.dbt.default__get_merge_update_columns", "macro_sql": "{% macro default__get_merge_update_columns(merge_update_columns, merge_exclude_columns, dest_columns) %}\n {%- set default_cols = dest_columns | map(attribute=\"quoted\") | list -%}\n\n {%- if merge_update_columns and merge_exclude_columns -%}\n {{ exceptions.raise_compiler_error(\n 'Model cannot specify merge_update_columns and merge_exclude_columns. Please update model to use only one config'\n )}}\n {%- elif merge_update_columns -%}\n {%- set update_columns = merge_update_columns -%}\n {%- elif merge_exclude_columns -%}\n {%- set update_columns = [] -%}\n {%- for column in dest_columns -%}\n {% if column.column | lower not in merge_exclude_columns | map(\"lower\") | list %}\n {%- do update_columns.append(column.quoted) -%}\n {% endif %}\n {%- endfor -%}\n {%- else -%}\n {%- set update_columns = default_cols -%}\n {%- endif -%}\n\n {{ return(update_columns) }}\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.183391, "supported_languages": null}, "macro.dbt.get_merge_sql": {"name": "get_merge_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/incremental/merge.sql", "original_file_path": "macros/materializations/models/incremental/merge.sql", "unique_id": "macro.dbt.get_merge_sql", "macro_sql": "{% macro get_merge_sql(target, source, unique_key, dest_columns, incremental_predicates=none) -%}\n -- back compat for old kwarg name\n {% set incremental_predicates = kwargs.get('predicates', incremental_predicates) %}\n {{ adapter.dispatch('get_merge_sql', 'dbt')(target, source, unique_key, dest_columns, incremental_predicates) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt.default__get_merge_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.18987, "supported_languages": null}, "macro.dbt.default__get_merge_sql": {"name": "default__get_merge_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/incremental/merge.sql", "original_file_path": "macros/materializations/models/incremental/merge.sql", "unique_id": "macro.dbt.default__get_merge_sql", "macro_sql": "{% macro default__get_merge_sql(target, source, unique_key, dest_columns, incremental_predicates=none) -%}\n {%- set predicates = [] if incremental_predicates is none else [] + incremental_predicates -%}\n {%- set dest_cols_csv = get_quoted_csv(dest_columns | map(attribute=\"name\")) -%}\n {%- set merge_update_columns = config.get('merge_update_columns') -%}\n {%- set merge_exclude_columns = config.get('merge_exclude_columns') -%}\n {%- set update_columns = get_merge_update_columns(merge_update_columns, merge_exclude_columns, dest_columns) -%}\n {%- set sql_header = config.get('sql_header', none) -%}\n\n {% if unique_key %}\n {% if unique_key is sequence and unique_key is not mapping and unique_key is not string %}\n {% for key in unique_key %}\n {% set this_key_match %}\n DBT_INTERNAL_SOURCE.{{ key }} = DBT_INTERNAL_DEST.{{ key }}\n {% endset %}\n {% do predicates.append(this_key_match) %}\n {% endfor %}\n {% else %}\n {% set unique_key_match %}\n DBT_INTERNAL_SOURCE.{{ unique_key }} = DBT_INTERNAL_DEST.{{ unique_key }}\n {% endset %}\n {% do predicates.append(unique_key_match) %}\n {% endif %}\n {% else %}\n {% do predicates.append('FALSE') %}\n {% endif %}\n\n {{ sql_header if sql_header is not none }}\n\n merge into {{ target }} as DBT_INTERNAL_DEST\n using {{ source }} as DBT_INTERNAL_SOURCE\n on {{\"(\" ~ predicates | join(\") and (\") ~ \")\"}}\n\n {% if unique_key %}\n when matched then update set\n {% for column_name in update_columns -%}\n {{ column_name }} = DBT_INTERNAL_SOURCE.{{ column_name }}\n {%- if not loop.last %}, {%- endif %}\n {%- endfor %}\n {% endif %}\n\n when not matched then insert\n ({{ dest_cols_csv }})\n values\n ({{ dest_cols_csv }})\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.get_quoted_csv", "macro.dbt.get_merge_update_columns"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.1915252, "supported_languages": null}, "macro.dbt.get_delete_insert_merge_sql": {"name": "get_delete_insert_merge_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/incremental/merge.sql", "original_file_path": "macros/materializations/models/incremental/merge.sql", "unique_id": "macro.dbt.get_delete_insert_merge_sql", "macro_sql": "{% macro get_delete_insert_merge_sql(target, source, unique_key, dest_columns, incremental_predicates) -%}\n {{ adapter.dispatch('get_delete_insert_merge_sql', 'dbt')(target, source, unique_key, dest_columns, incremental_predicates) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt.default__get_delete_insert_merge_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.1918, "supported_languages": null}, "macro.dbt.default__get_delete_insert_merge_sql": {"name": "default__get_delete_insert_merge_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/incremental/merge.sql", "original_file_path": "macros/materializations/models/incremental/merge.sql", "unique_id": "macro.dbt.default__get_delete_insert_merge_sql", "macro_sql": "{% macro default__get_delete_insert_merge_sql(target, source, unique_key, dest_columns, incremental_predicates) -%}\n\n {%- set dest_cols_csv = get_quoted_csv(dest_columns | map(attribute=\"name\")) -%}\n\n {% if unique_key %}\n {% if unique_key is sequence and unique_key is not string %}\n delete from {{target }}\n using {{ source }}\n where (\n {% for key in unique_key %}\n {{ source }}.{{ key }} = {{ target }}.{{ key }}\n {{ \"and \" if not loop.last}}\n {% endfor %}\n {% if incremental_predicates %}\n {% for predicate in incremental_predicates %}\n and {{ predicate }}\n {% endfor %}\n {% endif %}\n );\n {% else %}\n delete from {{ target }}\n where (\n {{ unique_key }}) in (\n select ({{ unique_key }})\n from {{ source }}\n )\n {%- if incremental_predicates %}\n {% for predicate in incremental_predicates %}\n and {{ predicate }}\n {% endfor %}\n {%- endif -%};\n\n {% endif %}\n {% endif %}\n\n insert into {{ target }} ({{ dest_cols_csv }})\n (\n select {{ dest_cols_csv }}\n from {{ source }}\n )\n\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt.get_quoted_csv"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.192825, "supported_languages": null}, "macro.dbt.get_insert_overwrite_merge_sql": {"name": "get_insert_overwrite_merge_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/incremental/merge.sql", "original_file_path": "macros/materializations/models/incremental/merge.sql", "unique_id": "macro.dbt.get_insert_overwrite_merge_sql", "macro_sql": "{% macro get_insert_overwrite_merge_sql(target, source, dest_columns, predicates, include_sql_header=false) -%}\n {{ adapter.dispatch('get_insert_overwrite_merge_sql', 'dbt')(target, source, dest_columns, predicates, include_sql_header) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt.default__get_insert_overwrite_merge_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.1931, "supported_languages": null}, "macro.dbt.default__get_insert_overwrite_merge_sql": {"name": "default__get_insert_overwrite_merge_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/incremental/merge.sql", "original_file_path": "macros/materializations/models/incremental/merge.sql", "unique_id": "macro.dbt.default__get_insert_overwrite_merge_sql", "macro_sql": "{% macro default__get_insert_overwrite_merge_sql(target, source, dest_columns, predicates, include_sql_header) -%}\n {#-- The only time include_sql_header is True: --#}\n {#-- BigQuery + insert_overwrite strategy + \"static\" partitions config --#}\n {#-- We should consider including the sql header at the materialization level instead --#}\n\n {%- set predicates = [] if predicates is none else [] + predicates -%}\n {%- set dest_cols_csv = get_quoted_csv(dest_columns | map(attribute=\"name\")) -%}\n {%- set sql_header = config.get('sql_header', none) -%}\n\n {{ sql_header if sql_header is not none and include_sql_header }}\n\n merge into {{ target }} as DBT_INTERNAL_DEST\n using {{ source }} as DBT_INTERNAL_SOURCE\n on FALSE\n\n when not matched by source\n {% if predicates %} and {{ predicates | join(' and ') }} {% endif %}\n then delete\n\n when not matched then insert\n ({{ dest_cols_csv }})\n values\n ({{ dest_cols_csv }})\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.get_quoted_csv"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.193761, "supported_languages": null}, "macro.dbt.is_incremental": {"name": "is_incremental", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/incremental/is_incremental.sql", "original_file_path": "macros/materializations/models/incremental/is_incremental.sql", "unique_id": "macro.dbt.is_incremental", "macro_sql": "{% macro is_incremental() %}\n {#-- do not run introspective queries in parsing #}\n {% if not execute %}\n {{ return(False) }}\n {% else %}\n {% set relation = adapter.get_relation(this.database, this.schema, this.table) %}\n {{ return(relation is not none\n and relation.type == 'table'\n and model.config.materialized == 'incremental'\n and not should_full_refresh()) }}\n {% endif %}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.should_full_refresh"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.194402, "supported_languages": null}, "macro.dbt.get_incremental_append_sql": {"name": "get_incremental_append_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/incremental/strategies.sql", "original_file_path": "macros/materializations/models/incremental/strategies.sql", "unique_id": "macro.dbt.get_incremental_append_sql", "macro_sql": "{% macro get_incremental_append_sql(arg_dict) %}\n\n {{ return(adapter.dispatch('get_incremental_append_sql', 'dbt')(arg_dict)) }}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__get_incremental_append_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.1952908, "supported_languages": null}, "macro.dbt.default__get_incremental_append_sql": {"name": "default__get_incremental_append_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/incremental/strategies.sql", "original_file_path": "macros/materializations/models/incremental/strategies.sql", "unique_id": "macro.dbt.default__get_incremental_append_sql", "macro_sql": "{% macro default__get_incremental_append_sql(arg_dict) %}\n\n {% do return(get_insert_into_sql(arg_dict[\"target_relation\"], arg_dict[\"temp_relation\"], arg_dict[\"dest_columns\"])) %}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.get_insert_into_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.195532, "supported_languages": null}, "macro.dbt.get_incremental_delete_insert_sql": {"name": "get_incremental_delete_insert_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/incremental/strategies.sql", "original_file_path": "macros/materializations/models/incremental/strategies.sql", "unique_id": "macro.dbt.get_incremental_delete_insert_sql", "macro_sql": "{% macro get_incremental_delete_insert_sql(arg_dict) %}\n\n {{ return(adapter.dispatch('get_incremental_delete_insert_sql', 'dbt')(arg_dict)) }}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__get_incremental_delete_insert_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.19572, "supported_languages": null}, "macro.dbt.default__get_incremental_delete_insert_sql": {"name": "default__get_incremental_delete_insert_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/incremental/strategies.sql", "original_file_path": "macros/materializations/models/incremental/strategies.sql", "unique_id": "macro.dbt.default__get_incremental_delete_insert_sql", "macro_sql": "{% macro default__get_incremental_delete_insert_sql(arg_dict) %}\n\n {% do return(get_delete_insert_merge_sql(arg_dict[\"target_relation\"], arg_dict[\"temp_relation\"], arg_dict[\"unique_key\"], arg_dict[\"dest_columns\"], arg_dict[\"incremental_predicates\"])) %}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.get_delete_insert_merge_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.196043, "supported_languages": null}, "macro.dbt.get_incremental_merge_sql": {"name": "get_incremental_merge_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/incremental/strategies.sql", "original_file_path": "macros/materializations/models/incremental/strategies.sql", "unique_id": "macro.dbt.get_incremental_merge_sql", "macro_sql": "{% macro get_incremental_merge_sql(arg_dict) %}\n\n {{ return(adapter.dispatch('get_incremental_merge_sql', 'dbt')(arg_dict)) }}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__get_incremental_merge_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.196307, "supported_languages": null}, "macro.dbt.default__get_incremental_merge_sql": {"name": "default__get_incremental_merge_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/incremental/strategies.sql", "original_file_path": "macros/materializations/models/incremental/strategies.sql", "unique_id": "macro.dbt.default__get_incremental_merge_sql", "macro_sql": "{% macro default__get_incremental_merge_sql(arg_dict) %}\n\n {% do return(get_merge_sql(arg_dict[\"target_relation\"], arg_dict[\"temp_relation\"], arg_dict[\"unique_key\"], arg_dict[\"dest_columns\"], arg_dict[\"incremental_predicates\"])) %}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.get_merge_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.196613, "supported_languages": null}, "macro.dbt.get_incremental_insert_overwrite_sql": {"name": "get_incremental_insert_overwrite_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/incremental/strategies.sql", "original_file_path": "macros/materializations/models/incremental/strategies.sql", "unique_id": "macro.dbt.get_incremental_insert_overwrite_sql", "macro_sql": "{% macro get_incremental_insert_overwrite_sql(arg_dict) %}\n\n {{ return(adapter.dispatch('get_incremental_insert_overwrite_sql', 'dbt')(arg_dict)) }}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__get_incremental_insert_overwrite_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.196801, "supported_languages": null}, "macro.dbt.default__get_incremental_insert_overwrite_sql": {"name": "default__get_incremental_insert_overwrite_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/incremental/strategies.sql", "original_file_path": "macros/materializations/models/incremental/strategies.sql", "unique_id": "macro.dbt.default__get_incremental_insert_overwrite_sql", "macro_sql": "{% macro default__get_incremental_insert_overwrite_sql(arg_dict) %}\n\n {% do return(get_insert_overwrite_merge_sql(arg_dict[\"target_relation\"], arg_dict[\"temp_relation\"], arg_dict[\"dest_columns\"], arg_dict[\"incremental_predicates\"])) %}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.get_insert_overwrite_merge_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.197075, "supported_languages": null}, "macro.dbt.get_incremental_default_sql": {"name": "get_incremental_default_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/incremental/strategies.sql", "original_file_path": "macros/materializations/models/incremental/strategies.sql", "unique_id": "macro.dbt.get_incremental_default_sql", "macro_sql": "{% macro get_incremental_default_sql(arg_dict) %}\n\n {{ return(adapter.dispatch('get_incremental_default_sql', 'dbt')(arg_dict)) }}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_postgres.postgres__get_incremental_default_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.1972659, "supported_languages": null}, "macro.dbt.default__get_incremental_default_sql": {"name": "default__get_incremental_default_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/incremental/strategies.sql", "original_file_path": "macros/materializations/models/incremental/strategies.sql", "unique_id": "macro.dbt.default__get_incremental_default_sql", "macro_sql": "{% macro default__get_incremental_default_sql(arg_dict) %}\n\n {% do return(get_incremental_append_sql(arg_dict)) %}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.get_incremental_append_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.197417, "supported_languages": null}, "macro.dbt.get_insert_into_sql": {"name": "get_insert_into_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/incremental/strategies.sql", "original_file_path": "macros/materializations/models/incremental/strategies.sql", "unique_id": "macro.dbt.get_insert_into_sql", "macro_sql": "{% macro get_insert_into_sql(target_relation, temp_relation, dest_columns) %}\n\n {%- set dest_cols_csv = get_quoted_csv(dest_columns | map(attribute=\"name\")) -%}\n\n insert into {{ target_relation }} ({{ dest_cols_csv }})\n (\n select {{ dest_cols_csv }}\n from {{ temp_relation }}\n )\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.get_quoted_csv"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.1977081, "supported_languages": null}, "macro.dbt.materialization_incremental_default": {"name": "materialization_incremental_default", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/incremental/incremental.sql", "original_file_path": "macros/materializations/models/incremental/incremental.sql", "unique_id": "macro.dbt.materialization_incremental_default", "macro_sql": "{% materialization incremental, default -%}\n\n -- relations\n {%- set existing_relation = load_cached_relation(this) -%}\n {%- set target_relation = this.incorporate(type='table') -%}\n {%- set temp_relation = make_temp_relation(target_relation)-%}\n {%- set intermediate_relation = make_intermediate_relation(target_relation)-%}\n {%- set backup_relation_type = 'table' if existing_relation is none else existing_relation.type -%}\n {%- set backup_relation = make_backup_relation(target_relation, backup_relation_type) -%}\n\n -- configs\n {%- set unique_key = config.get('unique_key') -%}\n {%- set full_refresh_mode = (should_full_refresh() or existing_relation.is_view) -%}\n {%- set on_schema_change = incremental_validate_on_schema_change(config.get('on_schema_change'), default='ignore') -%}\n\n -- the temp_ and backup_ relations should not already exist in the database; get_relation\n -- will return None in that case. Otherwise, we get a relation that we can drop\n -- later, before we try to use this name for the current operation. This has to happen before\n -- BEGIN, in a separate transaction\n {%- set preexisting_intermediate_relation = load_cached_relation(intermediate_relation)-%}\n {%- set preexisting_backup_relation = load_cached_relation(backup_relation) -%}\n -- grab current tables grants config for comparision later on\n {% set grant_config = config.get('grants') %}\n {{ drop_relation_if_exists(preexisting_intermediate_relation) }}\n {{ drop_relation_if_exists(preexisting_backup_relation) }}\n\n {{ run_hooks(pre_hooks, inside_transaction=False) }}\n\n -- `BEGIN` happens here:\n {{ run_hooks(pre_hooks, inside_transaction=True) }}\n\n {% set to_drop = [] %}\n\n {% if existing_relation is none %}\n {% set build_sql = get_create_table_as_sql(False, target_relation, sql) %}\n {% elif full_refresh_mode %}\n {% set build_sql = get_create_table_as_sql(False, intermediate_relation, sql) %}\n {% set need_swap = true %}\n {% else %}\n {% do run_query(get_create_table_as_sql(True, temp_relation, sql)) %}\n {% do adapter.expand_target_column_types(\n from_relation=temp_relation,\n to_relation=target_relation) %}\n {#-- Process schema changes. Returns dict of changes if successful. Use source columns for upserting/merging --#}\n {% set dest_columns = process_schema_changes(on_schema_change, temp_relation, existing_relation) %}\n {% if not dest_columns %}\n {% set dest_columns = adapter.get_columns_in_relation(existing_relation) %}\n {% endif %}\n\n {#-- Get the incremental_strategy, the macro to use for the strategy, and build the sql --#}\n {% set incremental_strategy = config.get('incremental_strategy') or 'default' %}\n {% set incremental_predicates = config.get('predicates', none) or config.get('incremental_predicates', none) %}\n {% set strategy_sql_macro_func = adapter.get_incremental_strategy_macro(context, incremental_strategy) %}\n {% set strategy_arg_dict = ({'target_relation': target_relation, 'temp_relation': temp_relation, 'unique_key': unique_key, 'dest_columns': dest_columns, 'incremental_predicates': incremental_predicates }) %}\n {% set build_sql = strategy_sql_macro_func(strategy_arg_dict) %}\n\n {% endif %}\n\n {% call statement(\"main\") %}\n {{ build_sql }}\n {% endcall %}\n\n {% if need_swap %}\n {% do adapter.rename_relation(target_relation, backup_relation) %}\n {% do adapter.rename_relation(intermediate_relation, target_relation) %}\n {% do to_drop.append(backup_relation) %}\n {% endif %}\n\n {% set should_revoke = should_revoke(existing_relation, full_refresh_mode) %}\n {% do apply_grants(target_relation, grant_config, should_revoke=should_revoke) %}\n\n {% do persist_docs(target_relation, model) %}\n\n {% if existing_relation is none or existing_relation.is_view or should_full_refresh() %}\n {% do create_indexes(target_relation) %}\n {% endif %}\n\n {{ run_hooks(post_hooks, inside_transaction=True) }}\n\n -- `COMMIT` happens here\n {% do adapter.commit() %}\n\n {% for rel in to_drop %}\n {% do adapter.drop_relation(rel) %}\n {% endfor %}\n\n {{ run_hooks(post_hooks, inside_transaction=False) }}\n\n {{ return({'relations': [target_relation]}) }}\n\n{%- endmaterialization %}", "depends_on": {"macros": ["macro.dbt.load_cached_relation", "macro.dbt.make_temp_relation", "macro.dbt.make_intermediate_relation", "macro.dbt.make_backup_relation", "macro.dbt.should_full_refresh", "macro.dbt.incremental_validate_on_schema_change", "macro.dbt.drop_relation_if_exists", "macro.dbt.run_hooks", "macro.dbt.get_create_table_as_sql", "macro.dbt.run_query", "macro.dbt.process_schema_changes", "macro.dbt.statement", "macro.dbt.should_revoke", "macro.dbt.apply_grants", "macro.dbt.persist_docs", "macro.dbt.create_indexes"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.202771, "supported_languages": ["sql"]}, "macro.dbt.incremental_validate_on_schema_change": {"name": "incremental_validate_on_schema_change", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/incremental/on_schema_change.sql", "original_file_path": "macros/materializations/models/incremental/on_schema_change.sql", "unique_id": "macro.dbt.incremental_validate_on_schema_change", "macro_sql": "{% macro incremental_validate_on_schema_change(on_schema_change, default='ignore') %}\n\n {% if on_schema_change not in ['sync_all_columns', 'append_new_columns', 'fail', 'ignore'] %}\n\n {% set log_message = 'Invalid value for on_schema_change (%s) specified. Setting default value of %s.' % (on_schema_change, default) %}\n {% do log(log_message) %}\n\n {{ return(default) }}\n\n {% else %}\n\n {{ return(on_schema_change) }}\n\n {% endif %}\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.208419, "supported_languages": null}, "macro.dbt.check_for_schema_changes": {"name": "check_for_schema_changes", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/incremental/on_schema_change.sql", "original_file_path": "macros/materializations/models/incremental/on_schema_change.sql", "unique_id": "macro.dbt.check_for_schema_changes", "macro_sql": "{% macro check_for_schema_changes(source_relation, target_relation) %}\n\n {% set schema_changed = False %}\n\n {%- set source_columns = adapter.get_columns_in_relation(source_relation) -%}\n {%- set target_columns = adapter.get_columns_in_relation(target_relation) -%}\n {%- set source_not_in_target = diff_columns(source_columns, target_columns) -%}\n {%- set target_not_in_source = diff_columns(target_columns, source_columns) -%}\n\n {% set new_target_types = diff_column_data_types(source_columns, target_columns) %}\n\n {% if source_not_in_target != [] %}\n {% set schema_changed = True %}\n {% elif target_not_in_source != [] or new_target_types != [] %}\n {% set schema_changed = True %}\n {% elif new_target_types != [] %}\n {% set schema_changed = True %}\n {% endif %}\n\n {% set changes_dict = {\n 'schema_changed': schema_changed,\n 'source_not_in_target': source_not_in_target,\n 'target_not_in_source': target_not_in_source,\n 'source_columns': source_columns,\n 'target_columns': target_columns,\n 'new_target_types': new_target_types\n } %}\n\n {% set msg %}\n In {{ target_relation }}:\n Schema changed: {{ schema_changed }}\n Source columns not in target: {{ source_not_in_target }}\n Target columns not in source: {{ target_not_in_source }}\n New column types: {{ new_target_types }}\n {% endset %}\n\n {% do log(msg) %}\n\n {{ return(changes_dict) }}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.diff_columns", "macro.dbt.diff_column_data_types"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.209661, "supported_languages": null}, "macro.dbt.sync_column_schemas": {"name": "sync_column_schemas", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/incremental/on_schema_change.sql", "original_file_path": "macros/materializations/models/incremental/on_schema_change.sql", "unique_id": "macro.dbt.sync_column_schemas", "macro_sql": "{% macro sync_column_schemas(on_schema_change, target_relation, schema_changes_dict) %}\n\n {%- set add_to_target_arr = schema_changes_dict['source_not_in_target'] -%}\n\n {%- if on_schema_change == 'append_new_columns'-%}\n {%- if add_to_target_arr | length > 0 -%}\n {%- do alter_relation_add_remove_columns(target_relation, add_to_target_arr, none) -%}\n {%- endif -%}\n\n {% elif on_schema_change == 'sync_all_columns' %}\n {%- set remove_from_target_arr = schema_changes_dict['target_not_in_source'] -%}\n {%- set new_target_types = schema_changes_dict['new_target_types'] -%}\n\n {% if add_to_target_arr | length > 0 or remove_from_target_arr | length > 0 %}\n {%- do alter_relation_add_remove_columns(target_relation, add_to_target_arr, remove_from_target_arr) -%}\n {% endif %}\n\n {% if new_target_types != [] %}\n {% for ntt in new_target_types %}\n {% set column_name = ntt['column_name'] %}\n {% set new_type = ntt['new_type'] %}\n {% do alter_column_type(target_relation, column_name, new_type) %}\n {% endfor %}\n {% endif %}\n\n {% endif %}\n\n {% set schema_change_message %}\n In {{ target_relation }}:\n Schema change approach: {{ on_schema_change }}\n Columns added: {{ add_to_target_arr }}\n Columns removed: {{ remove_from_target_arr }}\n Data types changed: {{ new_target_types }}\n {% endset %}\n\n {% do log(schema_change_message) %}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.alter_relation_add_remove_columns", "macro.dbt.alter_column_type"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.210879, "supported_languages": null}, "macro.dbt.process_schema_changes": {"name": "process_schema_changes", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/incremental/on_schema_change.sql", "original_file_path": "macros/materializations/models/incremental/on_schema_change.sql", "unique_id": "macro.dbt.process_schema_changes", "macro_sql": "{% macro process_schema_changes(on_schema_change, source_relation, target_relation) %}\n\n {% if on_schema_change == 'ignore' %}\n\n {{ return({}) }}\n\n {% else %}\n\n {% set schema_changes_dict = check_for_schema_changes(source_relation, target_relation) %}\n\n {% if schema_changes_dict['schema_changed'] %}\n\n {% if on_schema_change == 'fail' %}\n\n {% set fail_msg %}\n The source and target schemas on this incremental model are out of sync!\n They can be reconciled in several ways:\n - set the `on_schema_change` config to either append_new_columns or sync_all_columns, depending on your situation.\n - Re-run the incremental model with `full_refresh: True` to update the target schema.\n - update the schema manually and re-run the process.\n\n Additional troubleshooting context:\n Source columns not in target: {{ schema_changes_dict['source_not_in_target'] }}\n Target columns not in source: {{ schema_changes_dict['target_not_in_source'] }}\n New column types: {{ schema_changes_dict['new_target_types'] }}\n {% endset %}\n\n {% do exceptions.raise_compiler_error(fail_msg) %}\n\n {# -- unless we ignore, run the sync operation per the config #}\n {% else %}\n\n {% do sync_column_schemas(on_schema_change, target_relation, schema_changes_dict) %}\n\n {% endif %}\n\n {% endif %}\n\n {{ return(schema_changes_dict['source_columns']) }}\n\n {% endif %}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.check_for_schema_changes", "macro.dbt.sync_column_schemas"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.2117472, "supported_languages": null}, "macro.dbt.can_clone_table": {"name": "can_clone_table", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/clone/can_clone_table.sql", "original_file_path": "macros/materializations/models/clone/can_clone_table.sql", "unique_id": "macro.dbt.can_clone_table", "macro_sql": "{% macro can_clone_table() %}\n {{ return(adapter.dispatch('can_clone_table', 'dbt')()) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__can_clone_table"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.211991, "supported_languages": null}, "macro.dbt.default__can_clone_table": {"name": "default__can_clone_table", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/clone/can_clone_table.sql", "original_file_path": "macros/materializations/models/clone/can_clone_table.sql", "unique_id": "macro.dbt.default__can_clone_table", "macro_sql": "{% macro default__can_clone_table() %}\n {{ return(False) }}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.21211, "supported_languages": null}, "macro.dbt.create_or_replace_clone": {"name": "create_or_replace_clone", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/clone/create_or_replace_clone.sql", "original_file_path": "macros/materializations/models/clone/create_or_replace_clone.sql", "unique_id": "macro.dbt.create_or_replace_clone", "macro_sql": "{% macro create_or_replace_clone(this_relation, defer_relation) %}\n {{ return(adapter.dispatch('create_or_replace_clone', 'dbt')(this_relation, defer_relation)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__create_or_replace_clone"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.212407, "supported_languages": null}, "macro.dbt.default__create_or_replace_clone": {"name": "default__create_or_replace_clone", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/clone/create_or_replace_clone.sql", "original_file_path": "macros/materializations/models/clone/create_or_replace_clone.sql", "unique_id": "macro.dbt.default__create_or_replace_clone", "macro_sql": "{% macro default__create_or_replace_clone(this_relation, defer_relation) %}\n create or replace table {{ this_relation }} clone {{ defer_relation }}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.212546, "supported_languages": null}, "macro.dbt.materialization_clone_default": {"name": "materialization_clone_default", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/models/clone/clone.sql", "original_file_path": "macros/materializations/models/clone/clone.sql", "unique_id": "macro.dbt.materialization_clone_default", "macro_sql": "{%- materialization clone, default -%}\n\n {%- set relations = {'relations': []} -%}\n\n {%- if not defer_relation -%}\n -- nothing to do\n {{ log(\"No relation found in state manifest for \" ~ model.unique_id, info=True) }}\n {{ return(relations) }}\n {%- endif -%}\n\n {%- set existing_relation = load_cached_relation(this) -%}\n\n {%- if existing_relation and not flags.FULL_REFRESH -%}\n -- noop!\n {{ log(\"Relation \" ~ existing_relation ~ \" already exists\", info=True) }}\n {{ return(relations) }}\n {%- endif -%}\n\n {%- set other_existing_relation = load_cached_relation(defer_relation) -%}\n\n -- If this is a database that can do zero-copy cloning of tables, and the other relation is a table, then this will be a table\n -- Otherwise, this will be a view\n\n {% set can_clone_table = can_clone_table() %}\n\n {%- if other_existing_relation and other_existing_relation.type == 'table' and can_clone_table -%}\n\n {%- set target_relation = this.incorporate(type='table') -%}\n {% if existing_relation is not none and not existing_relation.is_table %}\n {{ log(\"Dropping relation \" ~ existing_relation ~ \" because it is of type \" ~ existing_relation.type) }}\n {{ drop_relation_if_exists(existing_relation) }}\n {% endif %}\n\n -- as a general rule, data platforms that can clone tables can also do atomic 'create or replace'\n {% call statement('main') %}\n {% if target_relation and defer_relation and target_relation == defer_relation %}\n {{ log(\"Target relation and defer relation are the same, skipping clone for relation: \" ~ target_relation) }}\n {% else %}\n {{ create_or_replace_clone(target_relation, defer_relation) }}\n {% endif %}\n\n {% endcall %}\n\n {% set should_revoke = should_revoke(existing_relation, full_refresh_mode=True) %}\n {% do apply_grants(target_relation, grant_config, should_revoke=should_revoke) %}\n {% do persist_docs(target_relation, model) %}\n\n {{ return({'relations': [target_relation]}) }}\n\n {%- else -%}\n\n {%- set target_relation = this.incorporate(type='view') -%}\n\n -- reuse the view materialization\n -- TODO: support actual dispatch for materialization macros\n -- Tracking ticket: https://github.com/dbt-labs/dbt-core/issues/7799\n {% set search_name = \"materialization_view_\" ~ adapter.type() %}\n {% if not search_name in context %}\n {% set search_name = \"materialization_view_default\" %}\n {% endif %}\n {% set materialization_macro = context[search_name] %}\n {% set relations = materialization_macro() %}\n {{ return(relations) }}\n\n {%- endif -%}\n\n{%- endmaterialization -%}", "depends_on": {"macros": ["macro.dbt.load_cached_relation", "macro.dbt.can_clone_table", "macro.dbt.drop_relation_if_exists", "macro.dbt.statement", "macro.dbt.create_or_replace_clone", "macro.dbt.should_revoke", "macro.dbt.apply_grants", "macro.dbt.persist_docs"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.2162402, "supported_languages": ["sql"]}, "macro.dbt.materialization_seed_default": {"name": "materialization_seed_default", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/seeds/seed.sql", "original_file_path": "macros/materializations/seeds/seed.sql", "unique_id": "macro.dbt.materialization_seed_default", "macro_sql": "{% materialization seed, default %}\n\n {%- set identifier = model['alias'] -%}\n {%- set full_refresh_mode = (should_full_refresh()) -%}\n\n {%- set old_relation = adapter.get_relation(database=database, schema=schema, identifier=identifier) -%}\n\n {%- set exists_as_table = (old_relation is not none and old_relation.is_table) -%}\n {%- set exists_as_view = (old_relation is not none and old_relation.is_view) -%}\n\n {%- set grant_config = config.get('grants') -%}\n {%- set agate_table = load_agate_table() -%}\n -- grab current tables grants config for comparison later on\n\n {%- do store_result('agate_table', response='OK', agate_table=agate_table) -%}\n\n {{ run_hooks(pre_hooks, inside_transaction=False) }}\n\n -- `BEGIN` happens here:\n {{ run_hooks(pre_hooks, inside_transaction=True) }}\n\n -- build model\n {% set create_table_sql = \"\" %}\n {% if exists_as_view %}\n {{ exceptions.raise_compiler_error(\"Cannot seed to '{}', it is a view\".format(old_relation)) }}\n {% elif exists_as_table %}\n {% set create_table_sql = reset_csv_table(model, full_refresh_mode, old_relation, agate_table) %}\n {% else %}\n {% set create_table_sql = create_csv_table(model, agate_table) %}\n {% endif %}\n\n {% set code = 'CREATE' if full_refresh_mode else 'INSERT' %}\n {% set rows_affected = (agate_table.rows | length) %}\n {% set sql = load_csv_rows(model, agate_table) %}\n\n {% call noop_statement('main', code ~ ' ' ~ rows_affected, code, rows_affected) %}\n {{ get_csv_sql(create_table_sql, sql) }};\n {% endcall %}\n\n {% set target_relation = this.incorporate(type='table') %}\n\n {% set should_revoke = should_revoke(old_relation, full_refresh_mode) %}\n {% do apply_grants(target_relation, grant_config, should_revoke=should_revoke) %}\n\n {% do persist_docs(target_relation, model) %}\n\n {% if full_refresh_mode or not exists_as_table %}\n {% do create_indexes(target_relation) %}\n {% endif %}\n\n {{ run_hooks(post_hooks, inside_transaction=True) }}\n\n -- `COMMIT` happens here\n {{ adapter.commit() }}\n\n {{ run_hooks(post_hooks, inside_transaction=False) }}\n\n {{ return({'relations': [target_relation]}) }}\n\n{% endmaterialization %}", "depends_on": {"macros": ["macro.dbt.should_full_refresh", "macro.dbt.run_hooks", "macro.dbt.reset_csv_table", "macro.dbt.create_csv_table", "macro.dbt.load_csv_rows", "macro.dbt.noop_statement", "macro.dbt.get_csv_sql", "macro.dbt.should_revoke", "macro.dbt.apply_grants", "macro.dbt.persist_docs", "macro.dbt.create_indexes"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.219496, "supported_languages": ["sql"]}, "macro.dbt.create_csv_table": {"name": "create_csv_table", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/seeds/helpers.sql", "original_file_path": "macros/materializations/seeds/helpers.sql", "unique_id": "macro.dbt.create_csv_table", "macro_sql": "{% macro create_csv_table(model, agate_table) -%}\n {{ adapter.dispatch('create_csv_table', 'dbt')(model, agate_table) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt.default__create_csv_table"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.224685, "supported_languages": null}, "macro.dbt.default__create_csv_table": {"name": "default__create_csv_table", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/seeds/helpers.sql", "original_file_path": "macros/materializations/seeds/helpers.sql", "unique_id": "macro.dbt.default__create_csv_table", "macro_sql": "{% macro default__create_csv_table(model, agate_table) %}\n {%- set column_override = model['config'].get('column_types', {}) -%}\n {%- set quote_seed_column = model['config'].get('quote_columns', None) -%}\n\n {% set sql %}\n create table {{ this.render() }} (\n {%- for col_name in agate_table.column_names -%}\n {%- set inferred_type = adapter.convert_type(agate_table, loop.index0) -%}\n {%- set type = column_override.get(col_name, inferred_type) -%}\n {%- set column_name = (col_name | string) -%}\n {{ adapter.quote_seed_column(column_name, quote_seed_column) }} {{ type }} {%- if not loop.last -%}, {%- endif -%}\n {%- endfor -%}\n )\n {% endset %}\n\n {% call statement('_') -%}\n {{ sql }}\n {%- endcall %}\n\n {{ return(sql) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.statement"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.225607, "supported_languages": null}, "macro.dbt.reset_csv_table": {"name": "reset_csv_table", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/seeds/helpers.sql", "original_file_path": "macros/materializations/seeds/helpers.sql", "unique_id": "macro.dbt.reset_csv_table", "macro_sql": "{% macro reset_csv_table(model, full_refresh, old_relation, agate_table) -%}\n {{ adapter.dispatch('reset_csv_table', 'dbt')(model, full_refresh, old_relation, agate_table) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt.default__reset_csv_table"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.225847, "supported_languages": null}, "macro.dbt.default__reset_csv_table": {"name": "default__reset_csv_table", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/seeds/helpers.sql", "original_file_path": "macros/materializations/seeds/helpers.sql", "unique_id": "macro.dbt.default__reset_csv_table", "macro_sql": "{% macro default__reset_csv_table(model, full_refresh, old_relation, agate_table) %}\n {% set sql = \"\" %}\n {% if full_refresh %}\n {{ adapter.drop_relation(old_relation) }}\n {% set sql = create_csv_table(model, agate_table) %}\n {% else %}\n {{ adapter.truncate_relation(old_relation) }}\n {% set sql = \"truncate table \" ~ old_relation %}\n {% endif %}\n\n {{ return(sql) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.create_csv_table"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.226332, "supported_languages": null}, "macro.dbt.get_csv_sql": {"name": "get_csv_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/seeds/helpers.sql", "original_file_path": "macros/materializations/seeds/helpers.sql", "unique_id": "macro.dbt.get_csv_sql", "macro_sql": "{% macro get_csv_sql(create_or_truncate_sql, insert_sql) %}\n {{ adapter.dispatch('get_csv_sql', 'dbt')(create_or_truncate_sql, insert_sql) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__get_csv_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.226526, "supported_languages": null}, "macro.dbt.default__get_csv_sql": {"name": "default__get_csv_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/seeds/helpers.sql", "original_file_path": "macros/materializations/seeds/helpers.sql", "unique_id": "macro.dbt.default__get_csv_sql", "macro_sql": "{% macro default__get_csv_sql(create_or_truncate_sql, insert_sql) %}\n {{ create_or_truncate_sql }};\n -- dbt seed --\n {{ insert_sql }}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.2266612, "supported_languages": null}, "macro.dbt.get_binding_char": {"name": "get_binding_char", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/seeds/helpers.sql", "original_file_path": "macros/materializations/seeds/helpers.sql", "unique_id": "macro.dbt.get_binding_char", "macro_sql": "{% macro get_binding_char() -%}\n {{ adapter.dispatch('get_binding_char', 'dbt')() }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt.default__get_binding_char"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.2268019, "supported_languages": null}, "macro.dbt.default__get_binding_char": {"name": "default__get_binding_char", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/seeds/helpers.sql", "original_file_path": "macros/materializations/seeds/helpers.sql", "unique_id": "macro.dbt.default__get_binding_char", "macro_sql": "{% macro default__get_binding_char() %}\n {{ return('%s') }}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.226922, "supported_languages": null}, "macro.dbt.get_batch_size": {"name": "get_batch_size", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/seeds/helpers.sql", "original_file_path": "macros/materializations/seeds/helpers.sql", "unique_id": "macro.dbt.get_batch_size", "macro_sql": "{% macro get_batch_size() -%}\n {{ return(adapter.dispatch('get_batch_size', 'dbt')()) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt.default__get_batch_size"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.227084, "supported_languages": null}, "macro.dbt.default__get_batch_size": {"name": "default__get_batch_size", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/seeds/helpers.sql", "original_file_path": "macros/materializations/seeds/helpers.sql", "unique_id": "macro.dbt.default__get_batch_size", "macro_sql": "{% macro default__get_batch_size() %}\n {{ return(10000) }}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.227202, "supported_languages": null}, "macro.dbt.get_seed_column_quoted_csv": {"name": "get_seed_column_quoted_csv", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/seeds/helpers.sql", "original_file_path": "macros/materializations/seeds/helpers.sql", "unique_id": "macro.dbt.get_seed_column_quoted_csv", "macro_sql": "{% macro get_seed_column_quoted_csv(model, column_names) %}\n {%- set quote_seed_column = model['config'].get('quote_columns', None) -%}\n {% set quoted = [] %}\n {% for col in column_names -%}\n {%- do quoted.append(adapter.quote_seed_column(col, quote_seed_column)) -%}\n {%- endfor %}\n\n {%- set dest_cols_csv = quoted | join(', ') -%}\n {{ return(dest_cols_csv) }}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.227689, "supported_languages": null}, "macro.dbt.load_csv_rows": {"name": "load_csv_rows", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/seeds/helpers.sql", "original_file_path": "macros/materializations/seeds/helpers.sql", "unique_id": "macro.dbt.load_csv_rows", "macro_sql": "{% macro load_csv_rows(model, agate_table) -%}\n {{ adapter.dispatch('load_csv_rows', 'dbt')(model, agate_table) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt.default__load_csv_rows"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.2278762, "supported_languages": null}, "macro.dbt.default__load_csv_rows": {"name": "default__load_csv_rows", "resource_type": "macro", "package_name": "dbt", "path": "macros/materializations/seeds/helpers.sql", "original_file_path": "macros/materializations/seeds/helpers.sql", "unique_id": "macro.dbt.default__load_csv_rows", "macro_sql": "{% macro default__load_csv_rows(model, agate_table) %}\n\n {% set batch_size = get_batch_size() %}\n\n {% set cols_sql = get_seed_column_quoted_csv(model, agate_table.column_names) %}\n {% set bindings = [] %}\n\n {% set statements = [] %}\n\n {% for chunk in agate_table.rows | batch(batch_size) %}\n {% set bindings = [] %}\n\n {% for row in chunk %}\n {% do bindings.extend(row) %}\n {% endfor %}\n\n {% set sql %}\n insert into {{ this.render() }} ({{ cols_sql }}) values\n {% for row in chunk -%}\n ({%- for column in agate_table.column_names -%}\n {{ get_binding_char() }}\n {%- if not loop.last%},{%- endif %}\n {%- endfor -%})\n {%- if not loop.last%},{%- endif %}\n {%- endfor %}\n {% endset %}\n\n {% do adapter.add_query(sql, bindings=bindings, abridge_sql_log=True) %}\n\n {% if loop.index0 == 0 %}\n {% do statements.append(sql) %}\n {% endif %}\n {% endfor %}\n\n {# Return SQL so we can render it out into the compiled files #}\n {{ return(statements[0]) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.get_batch_size", "macro.dbt.get_seed_column_quoted_csv", "macro.dbt.get_binding_char"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.2291899, "supported_languages": null}, "macro.dbt.generate_alias_name": {"name": "generate_alias_name", "resource_type": "macro", "package_name": "dbt", "path": "macros/get_custom_name/get_custom_alias.sql", "original_file_path": "macros/get_custom_name/get_custom_alias.sql", "unique_id": "macro.dbt.generate_alias_name", "macro_sql": "{% macro generate_alias_name(custom_alias_name=none, node=none) -%}\n {% do return(adapter.dispatch('generate_alias_name', 'dbt')(custom_alias_name, node)) %}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt.default__generate_alias_name"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.2296379, "supported_languages": null}, "macro.dbt.default__generate_alias_name": {"name": "default__generate_alias_name", "resource_type": "macro", "package_name": "dbt", "path": "macros/get_custom_name/get_custom_alias.sql", "original_file_path": "macros/get_custom_name/get_custom_alias.sql", "unique_id": "macro.dbt.default__generate_alias_name", "macro_sql": "{% macro default__generate_alias_name(custom_alias_name=none, node=none) -%}\n\n {%- if custom_alias_name -%}\n\n {{ custom_alias_name | trim }}\n\n {%- elif node.version -%}\n\n {{ return(node.name ~ \"_v\" ~ (node.version | replace(\".\", \"_\"))) }}\n\n {%- else -%}\n\n {{ node.name }}\n\n {%- endif -%}\n\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.230025, "supported_languages": null}, "macro.dbt.generate_schema_name": {"name": "generate_schema_name", "resource_type": "macro", "package_name": "dbt", "path": "macros/get_custom_name/get_custom_schema.sql", "original_file_path": "macros/get_custom_name/get_custom_schema.sql", "unique_id": "macro.dbt.generate_schema_name", "macro_sql": "{% macro generate_schema_name(custom_schema_name=none, node=none) -%}\n {{ return(adapter.dispatch('generate_schema_name', 'dbt')(custom_schema_name, node)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__generate_schema_name"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.230547, "supported_languages": null}, "macro.dbt.default__generate_schema_name": {"name": "default__generate_schema_name", "resource_type": "macro", "package_name": "dbt", "path": "macros/get_custom_name/get_custom_schema.sql", "original_file_path": "macros/get_custom_name/get_custom_schema.sql", "unique_id": "macro.dbt.default__generate_schema_name", "macro_sql": "{% macro default__generate_schema_name(custom_schema_name, node) -%}\n\n {%- set default_schema = target.schema -%}\n {%- if custom_schema_name is none -%}\n\n {{ default_schema }}\n\n {%- else -%}\n\n {{ default_schema }}_{{ custom_schema_name | trim }}\n\n {%- endif -%}\n\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.230813, "supported_languages": null}, "macro.dbt.generate_schema_name_for_env": {"name": "generate_schema_name_for_env", "resource_type": "macro", "package_name": "dbt", "path": "macros/get_custom_name/get_custom_schema.sql", "original_file_path": "macros/get_custom_name/get_custom_schema.sql", "unique_id": "macro.dbt.generate_schema_name_for_env", "macro_sql": "{% macro generate_schema_name_for_env(custom_schema_name, node) -%}\n\n {%- set default_schema = target.schema -%}\n {%- if target.name == 'prod' and custom_schema_name is not none -%}\n\n {{ custom_schema_name | trim }}\n\n {%- else -%}\n\n {{ default_schema }}\n\n {%- endif -%}\n\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.231099, "supported_languages": null}, "macro.dbt.generate_database_name": {"name": "generate_database_name", "resource_type": "macro", "package_name": "dbt", "path": "macros/get_custom_name/get_custom_database.sql", "original_file_path": "macros/get_custom_name/get_custom_database.sql", "unique_id": "macro.dbt.generate_database_name", "macro_sql": "{% macro generate_database_name(custom_database_name=none, node=none) -%}\n {% do return(adapter.dispatch('generate_database_name', 'dbt')(custom_database_name, node)) %}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt.default__generate_database_name"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.231501, "supported_languages": null}, "macro.dbt.default__generate_database_name": {"name": "default__generate_database_name", "resource_type": "macro", "package_name": "dbt", "path": "macros/get_custom_name/get_custom_database.sql", "original_file_path": "macros/get_custom_name/get_custom_database.sql", "unique_id": "macro.dbt.default__generate_database_name", "macro_sql": "{% macro default__generate_database_name(custom_database_name=none, node=none) -%}\n {%- set default_database = target.database -%}\n {%- if custom_database_name is none -%}\n\n {{ default_database }}\n\n {%- else -%}\n\n {{ custom_database_name }}\n\n {%- endif -%}\n\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.231754, "supported_languages": null}, "macro.dbt.get_drop_sql": {"name": "get_drop_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/relations/drop.sql", "original_file_path": "macros/relations/drop.sql", "unique_id": "macro.dbt.get_drop_sql", "macro_sql": "{%- macro get_drop_sql(relation) -%}\n {{- log('Applying DROP to: ' ~ relation) -}}\n {{- adapter.dispatch('get_drop_sql', 'dbt')(relation) -}}\n{%- endmacro -%}\n\n\n", "depends_on": {"macros": ["macro.dbt.default__get_drop_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.2324648, "supported_languages": null}, "macro.dbt.default__get_drop_sql": {"name": "default__get_drop_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/relations/drop.sql", "original_file_path": "macros/relations/drop.sql", "unique_id": "macro.dbt.default__get_drop_sql", "macro_sql": "{%- macro default__get_drop_sql(relation) -%}\n\n {%- if relation.is_view -%}\n {{ drop_view(relation) }}\n\n {%- elif relation.is_table -%}\n {{ drop_table(relation) }}\n\n {%- elif relation.is_materialized_view -%}\n {{ drop_materialized_view(relation) }}\n\n {%- else -%}\n drop {{ relation.type }} if exists {{ relation }} cascade\n\n {%- endif -%}\n\n{%- endmacro -%}\n\n\n", "depends_on": {"macros": ["macro.dbt.drop_view", "macro.dbt.drop_table", "macro.dbt.drop_materialized_view"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.232842, "supported_languages": null}, "macro.dbt.drop_relation": {"name": "drop_relation", "resource_type": "macro", "package_name": "dbt", "path": "macros/relations/drop.sql", "original_file_path": "macros/relations/drop.sql", "unique_id": "macro.dbt.drop_relation", "macro_sql": "{% macro drop_relation(relation) -%}\n {{ return(adapter.dispatch('drop_relation', 'dbt')(relation)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__drop_relation"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.2330298, "supported_languages": null}, "macro.dbt.default__drop_relation": {"name": "default__drop_relation", "resource_type": "macro", "package_name": "dbt", "path": "macros/relations/drop.sql", "original_file_path": "macros/relations/drop.sql", "unique_id": "macro.dbt.default__drop_relation", "macro_sql": "{% macro default__drop_relation(relation) -%}\n {% call statement('drop_relation', auto_begin=False) -%}\n {{ get_drop_sql(relation) }}\n {%- endcall %}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.statement", "macro.dbt.get_drop_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.233231, "supported_languages": null}, "macro.dbt.drop_relation_if_exists": {"name": "drop_relation_if_exists", "resource_type": "macro", "package_name": "dbt", "path": "macros/relations/drop.sql", "original_file_path": "macros/relations/drop.sql", "unique_id": "macro.dbt.drop_relation_if_exists", "macro_sql": "{% macro drop_relation_if_exists(relation) %}\n {% if relation is not none %}\n {{ adapter.drop_relation(relation) }}\n {% endif %}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.2334342, "supported_languages": null}, "macro.dbt.get_replace_sql": {"name": "get_replace_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/relations/replace.sql", "original_file_path": "macros/relations/replace.sql", "unique_id": "macro.dbt.get_replace_sql", "macro_sql": "{% macro get_replace_sql(existing_relation, target_relation, sql) %}\n {{- log('Applying REPLACE to: ' ~ existing_relation) -}}\n {{- adapter.dispatch('get_replace_sql', 'dbt')(existing_relation, target_relation, sql) -}}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__get_replace_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.234221, "supported_languages": null}, "macro.dbt.default__get_replace_sql": {"name": "default__get_replace_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/relations/replace.sql", "original_file_path": "macros/relations/replace.sql", "unique_id": "macro.dbt.default__get_replace_sql", "macro_sql": "{% macro default__get_replace_sql(existing_relation, target_relation, sql) %}\n\n {# /* use a create or replace statement if possible */ #}\n\n {% set is_replaceable = existing_relation.type == target_relation_type and existing_relation.can_be_replaced %}\n\n {% if is_replaceable and existing_relation.is_view %}\n {{ get_replace_view_sql(target_relation, sql) }}\n\n {% elif is_replaceable and existing_relation.is_table %}\n {{ get_replace_table_sql(target_relation, sql) }}\n\n {% elif is_replaceable and existing_relation.is_materialized_view %}\n {{ get_replace_materialized_view_sql(target_relation, sql) }}\n\n {# /* a create or replace statement is not possible, so try to stage and/or backup to be safe */ #}\n\n {# /* create target_relation as an intermediate relation, then swap it out with the existing one using a backup */ #}\n {%- elif target_relation.can_be_renamed and existing_relation.can_be_renamed -%}\n {{ get_create_intermediate_sql(target_relation, sql) }};\n {{ get_create_backup_sql(existing_relation) }};\n {{ get_rename_intermediate_sql(target_relation) }};\n {{ get_drop_backup_sql(existing_relation) }}\n\n {# /* create target_relation as an intermediate relation, then swap it out with the existing one without using a backup */ #}\n {%- elif target_relation.can_be_renamed -%}\n {{ get_create_intermediate_sql(target_relation, sql) }};\n {{ get_drop_sql(existing_relation) }};\n {{ get_rename_intermediate_sql(target_relation) }}\n\n {# /* create target_relation in place by first backing up the existing relation */ #}\n {%- elif existing_relation.can_be_renamed -%}\n {{ get_create_backup_sql(existing_relation) }};\n {{ get_create_sql(target_relation, sql) }};\n {{ get_drop_backup_sql(existing_relation) }}\n\n {# /* no renaming is allowed, so just drop and create */ #}\n {%- else -%}\n {{ get_drop_sql(existing_relation) }};\n {{ get_create_sql(target_relation, sql) }}\n\n {%- endif -%}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.get_replace_view_sql", "macro.dbt.get_replace_table_sql", "macro.dbt.get_replace_materialized_view_sql", "macro.dbt.get_create_intermediate_sql", "macro.dbt.get_create_backup_sql", "macro.dbt.get_rename_intermediate_sql", "macro.dbt.get_drop_backup_sql", "macro.dbt.get_drop_sql", "macro.dbt.get_create_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.2355359, "supported_languages": null}, "macro.dbt.get_create_intermediate_sql": {"name": "get_create_intermediate_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/relations/create_intermediate.sql", "original_file_path": "macros/relations/create_intermediate.sql", "unique_id": "macro.dbt.get_create_intermediate_sql", "macro_sql": "{%- macro get_create_intermediate_sql(relation, sql) -%}\n {{- log('Applying CREATE INTERMEDIATE to: ' ~ relation) -}}\n {{- adapter.dispatch('get_create_intermediate_sql', 'dbt')(relation, sql) -}}\n{%- endmacro -%}\n\n\n", "depends_on": {"macros": ["macro.dbt.default__get_create_intermediate_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.23592, "supported_languages": null}, "macro.dbt.default__get_create_intermediate_sql": {"name": "default__get_create_intermediate_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/relations/create_intermediate.sql", "original_file_path": "macros/relations/create_intermediate.sql", "unique_id": "macro.dbt.default__get_create_intermediate_sql", "macro_sql": "{%- macro default__get_create_intermediate_sql(relation, sql) -%}\n\n -- get the standard intermediate name\n {% set intermediate_relation = make_intermediate_relation(relation) %}\n\n -- drop any pre-existing intermediate\n {{ get_drop_sql(intermediate_relation) }};\n\n {{ get_create_sql(intermediate_relation, sql) }}\n\n{%- endmacro -%}", "depends_on": {"macros": ["macro.dbt.make_intermediate_relation", "macro.dbt.get_drop_sql", "macro.dbt.get_create_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.2361758, "supported_languages": null}, "macro.dbt.get_drop_backup_sql": {"name": "get_drop_backup_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/relations/drop_backup.sql", "original_file_path": "macros/relations/drop_backup.sql", "unique_id": "macro.dbt.get_drop_backup_sql", "macro_sql": "{%- macro get_drop_backup_sql(relation) -%}\n {{- log('Applying DROP BACKUP to: ' ~ relation) -}}\n {{- adapter.dispatch('get_drop_backup_sql', 'dbt')(relation) -}}\n{%- endmacro -%}\n\n\n", "depends_on": {"macros": ["macro.dbt.default__get_drop_backup_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.2364979, "supported_languages": null}, "macro.dbt.default__get_drop_backup_sql": {"name": "default__get_drop_backup_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/relations/drop_backup.sql", "original_file_path": "macros/relations/drop_backup.sql", "unique_id": "macro.dbt.default__get_drop_backup_sql", "macro_sql": "{%- macro default__get_drop_backup_sql(relation) -%}\n\n -- get the standard backup name\n {% set backup_relation = make_backup_relation(relation, relation.type) %}\n\n {{ get_drop_sql(backup_relation) }}\n\n{%- endmacro -%}", "depends_on": {"macros": ["macro.dbt.make_backup_relation", "macro.dbt.get_drop_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.236706, "supported_languages": null}, "macro.dbt.get_rename_sql": {"name": "get_rename_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/relations/rename.sql", "original_file_path": "macros/relations/rename.sql", "unique_id": "macro.dbt.get_rename_sql", "macro_sql": "{%- macro get_rename_sql(relation, new_name) -%}\n {{- log('Applying RENAME to: ' ~ relation) -}}\n {{- adapter.dispatch('get_rename_sql', 'dbt')(relation, new_name) -}}\n{%- endmacro -%}\n\n\n", "depends_on": {"macros": ["macro.dbt.default__get_rename_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.237411, "supported_languages": null}, "macro.dbt.default__get_rename_sql": {"name": "default__get_rename_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/relations/rename.sql", "original_file_path": "macros/relations/rename.sql", "unique_id": "macro.dbt.default__get_rename_sql", "macro_sql": "{%- macro default__get_rename_sql(relation, new_name) -%}\n\n {%- if relation.is_view -%}\n {{ get_rename_view_sql(relation, new_name) }}\n\n {%- elif relation.is_table -%}\n {{ get_rename_table_sql(relation, new_name) }}\n\n {%- elif relation.is_materialized_view -%}\n {{ get_rename_materialized_view_sql(relation, new_name) }}\n\n {%- else -%}\n {{- exceptions.raise_compiler_error(\"`get_rename_sql` has not been implemented for: \" ~ relation.type ) -}}\n\n {%- endif -%}\n\n{%- endmacro -%}\n\n\n", "depends_on": {"macros": ["macro.dbt.get_rename_view_sql", "macro.dbt.get_rename_table_sql", "macro.dbt.get_rename_materialized_view_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.237855, "supported_languages": null}, "macro.dbt.rename_relation": {"name": "rename_relation", "resource_type": "macro", "package_name": "dbt", "path": "macros/relations/rename.sql", "original_file_path": "macros/relations/rename.sql", "unique_id": "macro.dbt.rename_relation", "macro_sql": "{% macro rename_relation(from_relation, to_relation) -%}\n {{ return(adapter.dispatch('rename_relation', 'dbt')(from_relation, to_relation)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__rename_relation"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.238066, "supported_languages": null}, "macro.dbt.default__rename_relation": {"name": "default__rename_relation", "resource_type": "macro", "package_name": "dbt", "path": "macros/relations/rename.sql", "original_file_path": "macros/relations/rename.sql", "unique_id": "macro.dbt.default__rename_relation", "macro_sql": "{% macro default__rename_relation(from_relation, to_relation) -%}\n {% set target_name = adapter.quote_as_configured(to_relation.identifier, 'identifier') %}\n {% call statement('rename_relation') -%}\n alter table {{ from_relation }} rename to {{ target_name }}\n {%- endcall %}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.statement"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.238354, "supported_languages": null}, "macro.dbt.get_create_backup_sql": {"name": "get_create_backup_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/relations/create_backup.sql", "original_file_path": "macros/relations/create_backup.sql", "unique_id": "macro.dbt.get_create_backup_sql", "macro_sql": "{%- macro get_create_backup_sql(relation) -%}\n {{- log('Applying CREATE BACKUP to: ' ~ relation) -}}\n {{- adapter.dispatch('get_create_backup_sql', 'dbt')(relation) -}}\n{%- endmacro -%}\n\n\n", "depends_on": {"macros": ["macro.dbt.default__get_create_backup_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.2387068, "supported_languages": null}, "macro.dbt.default__get_create_backup_sql": {"name": "default__get_create_backup_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/relations/create_backup.sql", "original_file_path": "macros/relations/create_backup.sql", "unique_id": "macro.dbt.default__get_create_backup_sql", "macro_sql": "{%- macro default__get_create_backup_sql(relation) -%}\n\n -- get the standard backup name\n {% set backup_relation = make_backup_relation(relation, relation.type) %}\n\n -- drop any pre-existing backup\n {{ get_drop_sql(backup_relation) }};\n\n {{ get_rename_sql(relation, backup_relation.identifier) }}\n\n{%- endmacro -%}", "depends_on": {"macros": ["macro.dbt.make_backup_relation", "macro.dbt.get_drop_sql", "macro.dbt.get_rename_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.238985, "supported_languages": null}, "macro.dbt.get_create_sql": {"name": "get_create_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/relations/create.sql", "original_file_path": "macros/relations/create.sql", "unique_id": "macro.dbt.get_create_sql", "macro_sql": "{%- macro get_create_sql(relation, sql) -%}\n {{- log('Applying CREATE to: ' ~ relation) -}}\n {{- adapter.dispatch('get_create_sql', 'dbt')(relation, sql) -}}\n{%- endmacro -%}\n\n\n", "depends_on": {"macros": ["macro.dbt.default__get_create_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.239465, "supported_languages": null}, "macro.dbt.default__get_create_sql": {"name": "default__get_create_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/relations/create.sql", "original_file_path": "macros/relations/create.sql", "unique_id": "macro.dbt.default__get_create_sql", "macro_sql": "{%- macro default__get_create_sql(relation, sql) -%}\n\n {%- if relation.is_view -%}\n {{ get_create_view_as_sql(relation, sql) }}\n\n {%- elif relation.is_table -%}\n {{ get_create_table_as_sql(False, relation, sql) }}\n\n {%- elif relation.is_materialized_view -%}\n {{ get_create_materialized_view_as_sql(relation, sql) }}\n\n {%- else -%}\n {{- exceptions.raise_compiler_error(\"`get_create_sql` has not been implemented for: \" ~ relation.type ) -}}\n\n {%- endif -%}\n\n{%- endmacro -%}", "depends_on": {"macros": ["macro.dbt.get_create_view_as_sql", "macro.dbt.get_create_table_as_sql", "macro.dbt.get_create_materialized_view_as_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.2399201, "supported_languages": null}, "macro.dbt.get_rename_intermediate_sql": {"name": "get_rename_intermediate_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/relations/rename_intermediate.sql", "original_file_path": "macros/relations/rename_intermediate.sql", "unique_id": "macro.dbt.get_rename_intermediate_sql", "macro_sql": "{%- macro get_rename_intermediate_sql(relation) -%}\n {{- log('Applying RENAME INTERMEDIATE to: ' ~ relation) -}}\n {{- adapter.dispatch('get_rename_intermediate_sql', 'dbt')(relation) -}}\n{%- endmacro -%}\n\n\n", "depends_on": {"macros": ["macro.dbt.default__get_rename_intermediate_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.2402508, "supported_languages": null}, "macro.dbt.default__get_rename_intermediate_sql": {"name": "default__get_rename_intermediate_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/relations/rename_intermediate.sql", "original_file_path": "macros/relations/rename_intermediate.sql", "unique_id": "macro.dbt.default__get_rename_intermediate_sql", "macro_sql": "{%- macro default__get_rename_intermediate_sql(relation) -%}\n\n -- get the standard intermediate name\n {% set intermediate_relation = make_intermediate_relation(relation) %}\n\n {{ get_rename_sql(intermediate_relation, relation.identifier) }}\n\n{%- endmacro -%}", "depends_on": {"macros": ["macro.dbt.make_intermediate_relation", "macro.dbt.get_rename_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.240464, "supported_languages": null}, "macro.dbt.drop_materialized_view": {"name": "drop_materialized_view", "resource_type": "macro", "package_name": "dbt", "path": "macros/relations/materialized_view/drop.sql", "original_file_path": "macros/relations/materialized_view/drop.sql", "unique_id": "macro.dbt.drop_materialized_view", "macro_sql": "{% macro drop_materialized_view(relation) -%}\n {{ return(adapter.dispatch('drop_materialized_view', 'dbt')(relation)) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt_postgres.postgres__drop_materialized_view"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.240735, "supported_languages": null}, "macro.dbt.default__drop_materialized_view": {"name": "default__drop_materialized_view", "resource_type": "macro", "package_name": "dbt", "path": "macros/relations/materialized_view/drop.sql", "original_file_path": "macros/relations/materialized_view/drop.sql", "unique_id": "macro.dbt.default__drop_materialized_view", "macro_sql": "{% macro default__drop_materialized_view(relation) -%}\n drop materialized view if exists {{ relation }} cascade\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.2408462, "supported_languages": null}, "macro.dbt.get_replace_materialized_view_sql": {"name": "get_replace_materialized_view_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/relations/materialized_view/replace.sql", "original_file_path": "macros/relations/materialized_view/replace.sql", "unique_id": "macro.dbt.get_replace_materialized_view_sql", "macro_sql": "{% macro get_replace_materialized_view_sql(relation, sql) %}\n {{- adapter.dispatch('get_replace_materialized_view_sql', 'dbt')(relation, sql) -}}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__get_replace_materialized_view_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.241121, "supported_languages": null}, "macro.dbt.default__get_replace_materialized_view_sql": {"name": "default__get_replace_materialized_view_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/relations/materialized_view/replace.sql", "original_file_path": "macros/relations/materialized_view/replace.sql", "unique_id": "macro.dbt.default__get_replace_materialized_view_sql", "macro_sql": "{% macro default__get_replace_materialized_view_sql(relation, sql) %}\n {{ exceptions.raise_compiler_error(\n \"`get_replace_materialized_view_sql` has not been implemented for this adapter.\"\n ) }}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.241268, "supported_languages": null}, "macro.dbt.refresh_materialized_view": {"name": "refresh_materialized_view", "resource_type": "macro", "package_name": "dbt", "path": "macros/relations/materialized_view/refresh.sql", "original_file_path": "macros/relations/materialized_view/refresh.sql", "unique_id": "macro.dbt.refresh_materialized_view", "macro_sql": "{% macro refresh_materialized_view(relation) %}\n {{- log('Applying REFRESH to: ' ~ relation) -}}\n {{- adapter.dispatch('refresh_materialized_view', 'dbt')(relation) -}}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_postgres.postgres__refresh_materialized_view"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.241584, "supported_languages": null}, "macro.dbt.default__refresh_materialized_view": {"name": "default__refresh_materialized_view", "resource_type": "macro", "package_name": "dbt", "path": "macros/relations/materialized_view/refresh.sql", "original_file_path": "macros/relations/materialized_view/refresh.sql", "unique_id": "macro.dbt.default__refresh_materialized_view", "macro_sql": "{% macro default__refresh_materialized_view(relation) %}\n {{ exceptions.raise_compiler_error(\"`refresh_materialized_view` has not been implemented for this adapter.\") }}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.241791, "supported_languages": null}, "macro.dbt.get_rename_materialized_view_sql": {"name": "get_rename_materialized_view_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/relations/materialized_view/rename.sql", "original_file_path": "macros/relations/materialized_view/rename.sql", "unique_id": "macro.dbt.get_rename_materialized_view_sql", "macro_sql": "{% macro get_rename_materialized_view_sql(relation, new_name) %}\n {{- adapter.dispatch('get_rename_materialized_view_sql', 'dbt')(relation, new_name) -}}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_postgres.postgres__get_rename_materialized_view_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.242066, "supported_languages": null}, "macro.dbt.default__get_rename_materialized_view_sql": {"name": "default__get_rename_materialized_view_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/relations/materialized_view/rename.sql", "original_file_path": "macros/relations/materialized_view/rename.sql", "unique_id": "macro.dbt.default__get_rename_materialized_view_sql", "macro_sql": "{% macro default__get_rename_materialized_view_sql(relation, new_name) %}\n {{ exceptions.raise_compiler_error(\n \"`get_rename_materialized_view_sql` has not been implemented for this adapter.\"\n ) }}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.242212, "supported_languages": null}, "macro.dbt.get_alter_materialized_view_as_sql": {"name": "get_alter_materialized_view_as_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/relations/materialized_view/alter.sql", "original_file_path": "macros/relations/materialized_view/alter.sql", "unique_id": "macro.dbt.get_alter_materialized_view_as_sql", "macro_sql": "{% macro get_alter_materialized_view_as_sql(\n relation,\n configuration_changes,\n sql,\n existing_relation,\n backup_relation,\n intermediate_relation\n) %}\n {{- log('Applying ALTER to: ' ~ relation) -}}\n {{- adapter.dispatch('get_alter_materialized_view_as_sql', 'dbt')(\n relation,\n configuration_changes,\n sql,\n existing_relation,\n backup_relation,\n intermediate_relation\n ) -}}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_postgres.postgres__get_alter_materialized_view_as_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.242831, "supported_languages": null}, "macro.dbt.default__get_alter_materialized_view_as_sql": {"name": "default__get_alter_materialized_view_as_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/relations/materialized_view/alter.sql", "original_file_path": "macros/relations/materialized_view/alter.sql", "unique_id": "macro.dbt.default__get_alter_materialized_view_as_sql", "macro_sql": "{% macro default__get_alter_materialized_view_as_sql(\n relation,\n configuration_changes,\n sql,\n existing_relation,\n backup_relation,\n intermediate_relation\n) %}\n {{ exceptions.raise_compiler_error(\"Materialized views have not been implemented for this adapter.\") }}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.243021, "supported_languages": null}, "macro.dbt.get_materialized_view_configuration_changes": {"name": "get_materialized_view_configuration_changes", "resource_type": "macro", "package_name": "dbt", "path": "macros/relations/materialized_view/alter.sql", "original_file_path": "macros/relations/materialized_view/alter.sql", "unique_id": "macro.dbt.get_materialized_view_configuration_changes", "macro_sql": "{% macro get_materialized_view_configuration_changes(existing_relation, new_config) %}\n /* {#\n It's recommended that configuration changes be formatted as follows:\n {\"\": [{\"action\": \"\", \"context\": ...}]}\n\n For example:\n {\n \"indexes\": [\n {\"action\": \"drop\", \"context\": \"index_abc\"},\n {\"action\": \"create\", \"context\": {\"columns\": [\"column_1\", \"column_2\"], \"type\": \"hash\", \"unique\": True}},\n ],\n }\n\n Either way, `get_materialized_view_configuration_changes` needs to align with `get_alter_materialized_view_as_sql`.\n #} */\n {{- log('Determining configuration changes on: ' ~ existing_relation) -}}\n {%- do return(adapter.dispatch('get_materialized_view_configuration_changes', 'dbt')(existing_relation, new_config)) -%}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_postgres.postgres__get_materialized_view_configuration_changes"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.243315, "supported_languages": null}, "macro.dbt.default__get_materialized_view_configuration_changes": {"name": "default__get_materialized_view_configuration_changes", "resource_type": "macro", "package_name": "dbt", "path": "macros/relations/materialized_view/alter.sql", "original_file_path": "macros/relations/materialized_view/alter.sql", "unique_id": "macro.dbt.default__get_materialized_view_configuration_changes", "macro_sql": "{% macro default__get_materialized_view_configuration_changes(existing_relation, new_config) %}\n {{ exceptions.raise_compiler_error(\"Materialized views have not been implemented for this adapter.\") }}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.2434618, "supported_languages": null}, "macro.dbt.get_create_materialized_view_as_sql": {"name": "get_create_materialized_view_as_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/relations/materialized_view/create.sql", "original_file_path": "macros/relations/materialized_view/create.sql", "unique_id": "macro.dbt.get_create_materialized_view_as_sql", "macro_sql": "{% macro get_create_materialized_view_as_sql(relation, sql) -%}\n {{- adapter.dispatch('get_create_materialized_view_as_sql', 'dbt')(relation, sql) -}}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt_postgres.postgres__get_create_materialized_view_as_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.243741, "supported_languages": null}, "macro.dbt.default__get_create_materialized_view_as_sql": {"name": "default__get_create_materialized_view_as_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/relations/materialized_view/create.sql", "original_file_path": "macros/relations/materialized_view/create.sql", "unique_id": "macro.dbt.default__get_create_materialized_view_as_sql", "macro_sql": "{% macro default__get_create_materialized_view_as_sql(relation, sql) -%}\n {{ exceptions.raise_compiler_error(\n \"`get_create_materialized_view_as_sql` has not been implemented for this adapter.\"\n ) }}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.2438872, "supported_languages": null}, "macro.dbt.get_table_columns_and_constraints": {"name": "get_table_columns_and_constraints", "resource_type": "macro", "package_name": "dbt", "path": "macros/relations/column/columns_spec_ddl.sql", "original_file_path": "macros/relations/column/columns_spec_ddl.sql", "unique_id": "macro.dbt.get_table_columns_and_constraints", "macro_sql": "{%- macro get_table_columns_and_constraints() -%}\n {{ adapter.dispatch('get_table_columns_and_constraints', 'dbt')() }}\n{%- endmacro -%}\n\n", "depends_on": {"macros": ["macro.dbt.default__get_table_columns_and_constraints"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.244894, "supported_languages": null}, "macro.dbt.default__get_table_columns_and_constraints": {"name": "default__get_table_columns_and_constraints", "resource_type": "macro", "package_name": "dbt", "path": "macros/relations/column/columns_spec_ddl.sql", "original_file_path": "macros/relations/column/columns_spec_ddl.sql", "unique_id": "macro.dbt.default__get_table_columns_and_constraints", "macro_sql": "{% macro default__get_table_columns_and_constraints() -%}\n {{ return(table_columns_and_constraints()) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt.table_columns_and_constraints"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.245016, "supported_languages": null}, "macro.dbt.table_columns_and_constraints": {"name": "table_columns_and_constraints", "resource_type": "macro", "package_name": "dbt", "path": "macros/relations/column/columns_spec_ddl.sql", "original_file_path": "macros/relations/column/columns_spec_ddl.sql", "unique_id": "macro.dbt.table_columns_and_constraints", "macro_sql": "{% macro table_columns_and_constraints() %}\n {# loop through user_provided_columns to create DDL with data types and constraints #}\n {%- set raw_column_constraints = adapter.render_raw_columns_constraints(raw_columns=model['columns']) -%}\n {%- set raw_model_constraints = adapter.render_raw_model_constraints(raw_constraints=model['constraints']) -%}\n (\n {% for c in raw_column_constraints -%}\n {{ c }}{{ \",\" if not loop.last or raw_model_constraints }}\n {% endfor %}\n {% for c in raw_model_constraints -%}\n {{ c }}{{ \",\" if not loop.last }}\n {% endfor -%}\n )\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.245557, "supported_languages": null}, "macro.dbt.get_assert_columns_equivalent": {"name": "get_assert_columns_equivalent", "resource_type": "macro", "package_name": "dbt", "path": "macros/relations/column/columns_spec_ddl.sql", "original_file_path": "macros/relations/column/columns_spec_ddl.sql", "unique_id": "macro.dbt.get_assert_columns_equivalent", "macro_sql": "\n\n{%- macro get_assert_columns_equivalent(sql) -%}\n {{ adapter.dispatch('get_assert_columns_equivalent', 'dbt')(sql) }}\n{%- endmacro -%}\n\n", "depends_on": {"macros": ["macro.dbt.default__get_assert_columns_equivalent"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.2457259, "supported_languages": null}, "macro.dbt.default__get_assert_columns_equivalent": {"name": "default__get_assert_columns_equivalent", "resource_type": "macro", "package_name": "dbt", "path": "macros/relations/column/columns_spec_ddl.sql", "original_file_path": "macros/relations/column/columns_spec_ddl.sql", "unique_id": "macro.dbt.default__get_assert_columns_equivalent", "macro_sql": "{% macro default__get_assert_columns_equivalent(sql) -%}\n {{ return(assert_columns_equivalent(sql)) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt.assert_columns_equivalent"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.245895, "supported_languages": null}, "macro.dbt.assert_columns_equivalent": {"name": "assert_columns_equivalent", "resource_type": "macro", "package_name": "dbt", "path": "macros/relations/column/columns_spec_ddl.sql", "original_file_path": "macros/relations/column/columns_spec_ddl.sql", "unique_id": "macro.dbt.assert_columns_equivalent", "macro_sql": "{% macro assert_columns_equivalent(sql) %}\n\n {#-- First ensure the user has defined 'columns' in yaml specification --#}\n {%- set user_defined_columns = model['columns'] -%}\n {%- if not user_defined_columns -%}\n {{ exceptions.raise_contract_error([], []) }}\n {%- endif -%}\n\n {#-- Obtain the column schema provided by sql file. #}\n {%- set sql_file_provided_columns = get_column_schema_from_query(sql, config.get('sql_header', none)) -%}\n {#--Obtain the column schema provided by the schema file by generating an 'empty schema' query from the model's columns. #}\n {%- set schema_file_provided_columns = get_column_schema_from_query(get_empty_schema_sql(user_defined_columns)) -%}\n\n {#-- create dictionaries with name and formatted data type and strings for exception #}\n {%- set sql_columns = format_columns(sql_file_provided_columns) -%}\n {%- set yaml_columns = format_columns(schema_file_provided_columns) -%}\n\n {%- if sql_columns|length != yaml_columns|length -%}\n {%- do exceptions.raise_contract_error(yaml_columns, sql_columns) -%}\n {%- endif -%}\n\n {%- for sql_col in sql_columns -%}\n {%- set yaml_col = [] -%}\n {%- for this_col in yaml_columns -%}\n {%- if this_col['name'] == sql_col['name'] -%}\n {%- do yaml_col.append(this_col) -%}\n {%- break -%}\n {%- endif -%}\n {%- endfor -%}\n {%- if not yaml_col -%}\n {#-- Column with name not found in yaml #}\n {%- do exceptions.raise_contract_error(yaml_columns, sql_columns) -%}\n {%- endif -%}\n {%- if sql_col['formatted'] != yaml_col[0]['formatted'] -%}\n {#-- Column data types don't match #}\n {%- do exceptions.raise_contract_error(yaml_columns, sql_columns) -%}\n {%- endif -%}\n {%- endfor -%}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.get_column_schema_from_query", "macro.dbt.get_empty_schema_sql", "macro.dbt.format_columns"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.247316, "supported_languages": null}, "macro.dbt.format_columns": {"name": "format_columns", "resource_type": "macro", "package_name": "dbt", "path": "macros/relations/column/columns_spec_ddl.sql", "original_file_path": "macros/relations/column/columns_spec_ddl.sql", "unique_id": "macro.dbt.format_columns", "macro_sql": "{% macro format_columns(columns) %}\n {% set formatted_columns = [] %}\n {% for column in columns %}\n {%- set formatted_column = adapter.dispatch('format_column', 'dbt')(column) -%}\n {%- do formatted_columns.append(formatted_column) -%}\n {% endfor %}\n {{ return(formatted_columns) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__format_column"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.247788, "supported_languages": null}, "macro.dbt.default__format_column": {"name": "default__format_column", "resource_type": "macro", "package_name": "dbt", "path": "macros/relations/column/columns_spec_ddl.sql", "original_file_path": "macros/relations/column/columns_spec_ddl.sql", "unique_id": "macro.dbt.default__format_column", "macro_sql": "{% macro default__format_column(column) -%}\n {% set data_type = column.dtype %}\n {% set formatted = column.column.lower() ~ \" \" ~ data_type %}\n {{ return({'name': column.name, 'data_type': data_type, 'formatted': formatted}) }}\n{%- endmacro -%}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.248158, "supported_languages": null}, "macro.dbt.drop_table": {"name": "drop_table", "resource_type": "macro", "package_name": "dbt", "path": "macros/relations/table/drop.sql", "original_file_path": "macros/relations/table/drop.sql", "unique_id": "macro.dbt.drop_table", "macro_sql": "{% macro drop_table(relation) -%}\n {{ return(adapter.dispatch('drop_table', 'dbt')(relation)) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt_postgres.postgres__drop_table"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.24846, "supported_languages": null}, "macro.dbt.default__drop_table": {"name": "default__drop_table", "resource_type": "macro", "package_name": "dbt", "path": "macros/relations/table/drop.sql", "original_file_path": "macros/relations/table/drop.sql", "unique_id": "macro.dbt.default__drop_table", "macro_sql": "{% macro default__drop_table(relation) -%}\n drop table if exists {{ relation }} cascade\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.248569, "supported_languages": null}, "macro.dbt.get_replace_table_sql": {"name": "get_replace_table_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/relations/table/replace.sql", "original_file_path": "macros/relations/table/replace.sql", "unique_id": "macro.dbt.get_replace_table_sql", "macro_sql": "{% macro get_replace_table_sql(relation, sql) %}\n {{- adapter.dispatch('get_replace_table_sql', 'dbt')(relation, sql) -}}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_postgres.postgres__get_replace_table_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.248855, "supported_languages": null}, "macro.dbt.default__get_replace_table_sql": {"name": "default__get_replace_table_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/relations/table/replace.sql", "original_file_path": "macros/relations/table/replace.sql", "unique_id": "macro.dbt.default__get_replace_table_sql", "macro_sql": "{% macro default__get_replace_table_sql(relation, sql) %}\n {{ exceptions.raise_compiler_error(\n \"`get_replace_table_sql` has not been implemented for this adapter.\"\n ) }}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.249006, "supported_languages": null}, "macro.dbt.get_rename_table_sql": {"name": "get_rename_table_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/relations/table/rename.sql", "original_file_path": "macros/relations/table/rename.sql", "unique_id": "macro.dbt.get_rename_table_sql", "macro_sql": "{% macro get_rename_table_sql(relation, new_name) %}\n {{- adapter.dispatch('get_rename_table_sql', 'dbt')(relation, new_name) -}}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_postgres.postgres__get_rename_table_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.249283, "supported_languages": null}, "macro.dbt.default__get_rename_table_sql": {"name": "default__get_rename_table_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/relations/table/rename.sql", "original_file_path": "macros/relations/table/rename.sql", "unique_id": "macro.dbt.default__get_rename_table_sql", "macro_sql": "{% macro default__get_rename_table_sql(relation, new_name) %}\n {{ exceptions.raise_compiler_error(\n \"`get_rename_table_sql` has not been implemented for this adapter.\"\n ) }}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.249432, "supported_languages": null}, "macro.dbt.get_create_table_as_sql": {"name": "get_create_table_as_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/relations/table/create.sql", "original_file_path": "macros/relations/table/create.sql", "unique_id": "macro.dbt.get_create_table_as_sql", "macro_sql": "{% macro get_create_table_as_sql(temporary, relation, sql) -%}\n {{ adapter.dispatch('get_create_table_as_sql', 'dbt')(temporary, relation, sql) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt.default__get_create_table_as_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.25032, "supported_languages": null}, "macro.dbt.default__get_create_table_as_sql": {"name": "default__get_create_table_as_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/relations/table/create.sql", "original_file_path": "macros/relations/table/create.sql", "unique_id": "macro.dbt.default__get_create_table_as_sql", "macro_sql": "{% macro default__get_create_table_as_sql(temporary, relation, sql) -%}\n {{ return(create_table_as(temporary, relation, sql)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.create_table_as"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.250514, "supported_languages": null}, "macro.dbt.create_table_as": {"name": "create_table_as", "resource_type": "macro", "package_name": "dbt", "path": "macros/relations/table/create.sql", "original_file_path": "macros/relations/table/create.sql", "unique_id": "macro.dbt.create_table_as", "macro_sql": "{% macro create_table_as(temporary, relation, compiled_code, language='sql') -%}\n {# backward compatibility for create_table_as that does not support language #}\n {% if language == \"sql\" %}\n {{ adapter.dispatch('create_table_as', 'dbt')(temporary, relation, compiled_code)}}\n {% else %}\n {{ adapter.dispatch('create_table_as', 'dbt')(temporary, relation, compiled_code, language) }}\n {% endif %}\n\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt_postgres.postgres__create_table_as"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.2509608, "supported_languages": null}, "macro.dbt.default__create_table_as": {"name": "default__create_table_as", "resource_type": "macro", "package_name": "dbt", "path": "macros/relations/table/create.sql", "original_file_path": "macros/relations/table/create.sql", "unique_id": "macro.dbt.default__create_table_as", "macro_sql": "{% macro default__create_table_as(temporary, relation, sql) -%}\n {%- set sql_header = config.get('sql_header', none) -%}\n\n {{ sql_header if sql_header is not none }}\n\n create {% if temporary: -%}temporary{%- endif %} table\n {{ relation.include(database=(not temporary), schema=(not temporary)) }}\n {% set contract_config = config.get('contract') %}\n {% if contract_config.enforced and (not temporary) %}\n {{ get_assert_columns_equivalent(sql) }}\n {{ get_table_columns_and_constraints() }}\n {%- set sql = get_select_subquery(sql) %}\n {% endif %}\n as (\n {{ sql }}\n );\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt.get_assert_columns_equivalent", "macro.dbt.get_table_columns_and_constraints", "macro.dbt.get_select_subquery"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.251672, "supported_languages": null}, "macro.dbt.default__get_column_names": {"name": "default__get_column_names", "resource_type": "macro", "package_name": "dbt", "path": "macros/relations/table/create.sql", "original_file_path": "macros/relations/table/create.sql", "unique_id": "macro.dbt.default__get_column_names", "macro_sql": "{% macro default__get_column_names() %}\n {#- loop through user_provided_columns to get column names -#}\n {%- set user_provided_columns = model['columns'] -%}\n {%- for i in user_provided_columns %}\n {%- set col = user_provided_columns[i] -%}\n {%- set col_name = adapter.quote(col['name']) if col.get('quote') else col['name'] -%}\n {{ col_name }}{{ \", \" if not loop.last }}\n {%- endfor -%}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.252151, "supported_languages": null}, "macro.dbt.get_select_subquery": {"name": "get_select_subquery", "resource_type": "macro", "package_name": "dbt", "path": "macros/relations/table/create.sql", "original_file_path": "macros/relations/table/create.sql", "unique_id": "macro.dbt.get_select_subquery", "macro_sql": "{% macro get_select_subquery(sql) %}\n {{ return(adapter.dispatch('get_select_subquery', 'dbt')(sql)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__get_select_subquery"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.2523441, "supported_languages": null}, "macro.dbt.default__get_select_subquery": {"name": "default__get_select_subquery", "resource_type": "macro", "package_name": "dbt", "path": "macros/relations/table/create.sql", "original_file_path": "macros/relations/table/create.sql", "unique_id": "macro.dbt.default__get_select_subquery", "macro_sql": "{% macro default__get_select_subquery(sql) %}\n select {{ adapter.dispatch('get_column_names', 'dbt')() }}\n from (\n {{ sql }}\n ) as model_subq\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt.default__get_column_names"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.252525, "supported_languages": null}, "macro.dbt.drop_view": {"name": "drop_view", "resource_type": "macro", "package_name": "dbt", "path": "macros/relations/view/drop.sql", "original_file_path": "macros/relations/view/drop.sql", "unique_id": "macro.dbt.drop_view", "macro_sql": "{% macro drop_view(relation) -%}\n {{ return(adapter.dispatch('drop_view', 'dbt')(relation)) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt_postgres.postgres__drop_view"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.2528, "supported_languages": null}, "macro.dbt.default__drop_view": {"name": "default__drop_view", "resource_type": "macro", "package_name": "dbt", "path": "macros/relations/view/drop.sql", "original_file_path": "macros/relations/view/drop.sql", "unique_id": "macro.dbt.default__drop_view", "macro_sql": "{% macro default__drop_view(relation) -%}\n drop view if exists {{ relation }} cascade\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.252905, "supported_languages": null}, "macro.dbt.get_replace_view_sql": {"name": "get_replace_view_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/relations/view/replace.sql", "original_file_path": "macros/relations/view/replace.sql", "unique_id": "macro.dbt.get_replace_view_sql", "macro_sql": "{% macro get_replace_view_sql(relation, sql) %}\n {{- adapter.dispatch('get_replace_view_sql', 'dbt')(relation, sql) -}}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_postgres.postgres__get_replace_view_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.253769, "supported_languages": null}, "macro.dbt.default__get_replace_view_sql": {"name": "default__get_replace_view_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/relations/view/replace.sql", "original_file_path": "macros/relations/view/replace.sql", "unique_id": "macro.dbt.default__get_replace_view_sql", "macro_sql": "{% macro default__get_replace_view_sql(relation, sql) %}\n {{ exceptions.raise_compiler_error(\n \"`get_replace_view_sql` has not been implemented for this adapter.\"\n ) }}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.253921, "supported_languages": null}, "macro.dbt.create_or_replace_view": {"name": "create_or_replace_view", "resource_type": "macro", "package_name": "dbt", "path": "macros/relations/view/replace.sql", "original_file_path": "macros/relations/view/replace.sql", "unique_id": "macro.dbt.create_or_replace_view", "macro_sql": "{% macro create_or_replace_view() %}\n {%- set identifier = model['alias'] -%}\n\n {%- set old_relation = adapter.get_relation(database=database, schema=schema, identifier=identifier) -%}\n {%- set exists_as_view = (old_relation is not none and old_relation.is_view) -%}\n\n {%- set target_relation = api.Relation.create(\n identifier=identifier, schema=schema, database=database,\n type='view') -%}\n {% set grant_config = config.get('grants') %}\n\n {{ run_hooks(pre_hooks) }}\n\n -- If there's a table with the same name and we weren't told to full refresh,\n -- that's an error. If we were told to full refresh, drop it. This behavior differs\n -- for Snowflake and BigQuery, so multiple dispatch is used.\n {%- if old_relation is not none and old_relation.is_table -%}\n {{ handle_existing_table(should_full_refresh(), old_relation) }}\n {%- endif -%}\n\n -- build model\n {% call statement('main') -%}\n {{ get_create_view_as_sql(target_relation, sql) }}\n {%- endcall %}\n\n {% set should_revoke = should_revoke(exists_as_view, full_refresh_mode=True) %}\n {% do apply_grants(target_relation, grant_config, should_revoke=should_revoke) %}\n\n {{ run_hooks(post_hooks) }}\n\n {{ return({'relations': [target_relation]}) }}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.run_hooks", "macro.dbt.handle_existing_table", "macro.dbt.should_full_refresh", "macro.dbt.statement", "macro.dbt.get_create_view_as_sql", "macro.dbt.should_revoke", "macro.dbt.apply_grants"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.25516, "supported_languages": null}, "macro.dbt.handle_existing_table": {"name": "handle_existing_table", "resource_type": "macro", "package_name": "dbt", "path": "macros/relations/view/replace.sql", "original_file_path": "macros/relations/view/replace.sql", "unique_id": "macro.dbt.handle_existing_table", "macro_sql": "{% macro handle_existing_table(full_refresh, old_relation) %}\n {{ adapter.dispatch('handle_existing_table', 'dbt')(full_refresh, old_relation) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__handle_existing_table"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.2553658, "supported_languages": null}, "macro.dbt.default__handle_existing_table": {"name": "default__handle_existing_table", "resource_type": "macro", "package_name": "dbt", "path": "macros/relations/view/replace.sql", "original_file_path": "macros/relations/view/replace.sql", "unique_id": "macro.dbt.default__handle_existing_table", "macro_sql": "{% macro default__handle_existing_table(full_refresh, old_relation) %}\n {{ log(\"Dropping relation \" ~ old_relation ~ \" because it is of type \" ~ old_relation.type) }}\n {{ adapter.drop_relation(old_relation) }}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.255594, "supported_languages": null}, "macro.dbt.get_rename_view_sql": {"name": "get_rename_view_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/relations/view/rename.sql", "original_file_path": "macros/relations/view/rename.sql", "unique_id": "macro.dbt.get_rename_view_sql", "macro_sql": "{% macro get_rename_view_sql(relation, new_name) %}\n {{- adapter.dispatch('get_rename_view_sql', 'dbt')(relation, new_name) -}}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_postgres.postgres__get_rename_view_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.255871, "supported_languages": null}, "macro.dbt.default__get_rename_view_sql": {"name": "default__get_rename_view_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/relations/view/rename.sql", "original_file_path": "macros/relations/view/rename.sql", "unique_id": "macro.dbt.default__get_rename_view_sql", "macro_sql": "{% macro default__get_rename_view_sql(relation, new_name) %}\n {{ exceptions.raise_compiler_error(\n \"`get_rename_view_sql` has not been implemented for this adapter.\"\n ) }}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.2560189, "supported_languages": null}, "macro.dbt.get_create_view_as_sql": {"name": "get_create_view_as_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/relations/view/create.sql", "original_file_path": "macros/relations/view/create.sql", "unique_id": "macro.dbt.get_create_view_as_sql", "macro_sql": "{% macro get_create_view_as_sql(relation, sql) -%}\n {{ adapter.dispatch('get_create_view_as_sql', 'dbt')(relation, sql) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt.default__get_create_view_as_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.256437, "supported_languages": null}, "macro.dbt.default__get_create_view_as_sql": {"name": "default__get_create_view_as_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/relations/view/create.sql", "original_file_path": "macros/relations/view/create.sql", "unique_id": "macro.dbt.default__get_create_view_as_sql", "macro_sql": "{% macro default__get_create_view_as_sql(relation, sql) -%}\n {{ return(create_view_as(relation, sql)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.create_view_as"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.2566028, "supported_languages": null}, "macro.dbt.create_view_as": {"name": "create_view_as", "resource_type": "macro", "package_name": "dbt", "path": "macros/relations/view/create.sql", "original_file_path": "macros/relations/view/create.sql", "unique_id": "macro.dbt.create_view_as", "macro_sql": "{% macro create_view_as(relation, sql) -%}\n {{ adapter.dispatch('create_view_as', 'dbt')(relation, sql) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt.default__create_view_as"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.256789, "supported_languages": null}, "macro.dbt.default__create_view_as": {"name": "default__create_view_as", "resource_type": "macro", "package_name": "dbt", "path": "macros/relations/view/create.sql", "original_file_path": "macros/relations/view/create.sql", "unique_id": "macro.dbt.default__create_view_as", "macro_sql": "{% macro default__create_view_as(relation, sql) -%}\n {%- set sql_header = config.get('sql_header', none) -%}\n\n {{ sql_header if sql_header is not none }}\n create view {{ relation }}\n {% set contract_config = config.get('contract') %}\n {% if contract_config.enforced %}\n {{ get_assert_columns_equivalent(sql) }}\n {%- endif %}\n as (\n {{ sql }}\n );\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt.get_assert_columns_equivalent"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.257225, "supported_languages": null}, "macro.dbt.default__test_relationships": {"name": "default__test_relationships", "resource_type": "macro", "package_name": "dbt", "path": "macros/generic_test_sql/relationships.sql", "original_file_path": "macros/generic_test_sql/relationships.sql", "unique_id": "macro.dbt.default__test_relationships", "macro_sql": "{% macro default__test_relationships(model, column_name, to, field) %}\n\nwith child as (\n select {{ column_name }} as from_field\n from {{ model }}\n where {{ column_name }} is not null\n),\n\nparent as (\n select {{ field }} as to_field\n from {{ to }}\n)\n\nselect\n from_field\n\nfrom child\nleft join parent\n on child.from_field = parent.to_field\n\nwhere parent.to_field is null\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.2575848, "supported_languages": null}, "macro.dbt.default__test_not_null": {"name": "default__test_not_null", "resource_type": "macro", "package_name": "dbt", "path": "macros/generic_test_sql/not_null.sql", "original_file_path": "macros/generic_test_sql/not_null.sql", "unique_id": "macro.dbt.default__test_not_null", "macro_sql": "{% macro default__test_not_null(model, column_name) %}\n\n{% set column_list = '*' if should_store_failures() else column_name %}\n\nselect {{ column_list }}\nfrom {{ model }}\nwhere {{ column_name }} is null\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.should_store_failures"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.257886, "supported_languages": null}, "macro.dbt.default__test_unique": {"name": "default__test_unique", "resource_type": "macro", "package_name": "dbt", "path": "macros/generic_test_sql/unique.sql", "original_file_path": "macros/generic_test_sql/unique.sql", "unique_id": "macro.dbt.default__test_unique", "macro_sql": "{% macro default__test_unique(model, column_name) %}\n\nselect\n {{ column_name }} as unique_field,\n count(*) as n_records\n\nfrom {{ model }}\nwhere {{ column_name }} is not null\ngroup by {{ column_name }}\nhaving count(*) > 1\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.2581398, "supported_languages": null}, "macro.dbt.default__test_accepted_values": {"name": "default__test_accepted_values", "resource_type": "macro", "package_name": "dbt", "path": "macros/generic_test_sql/accepted_values.sql", "original_file_path": "macros/generic_test_sql/accepted_values.sql", "unique_id": "macro.dbt.default__test_accepted_values", "macro_sql": "{% macro default__test_accepted_values(model, column_name, values, quote=True) %}\n\nwith all_values as (\n\n select\n {{ column_name }} as value_field,\n count(*) as n_records\n\n from {{ model }}\n group by {{ column_name }}\n\n)\n\nselect *\nfrom all_values\nwhere value_field not in (\n {% for value in values -%}\n {% if quote -%}\n '{{ value }}'\n {%- else -%}\n {{ value }}\n {%- endif -%}\n {%- if not loop.last -%},{%- endif %}\n {%- endfor %}\n)\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.258719, "supported_languages": null}, "macro.dbt.statement": {"name": "statement", "resource_type": "macro", "package_name": "dbt", "path": "macros/etc/statement.sql", "original_file_path": "macros/etc/statement.sql", "unique_id": "macro.dbt.statement", "macro_sql": "\n{%- macro statement(name=None, fetch_result=False, auto_begin=True, language='sql') -%}\n {%- if execute: -%}\n {%- set compiled_code = caller() -%}\n\n {%- if name == 'main' -%}\n {{ log('Writing runtime {} for node \"{}\"'.format(language, model['unique_id'])) }}\n {{ write(compiled_code) }}\n {%- endif -%}\n {%- if language == 'sql'-%}\n {%- set res, table = adapter.execute(compiled_code, auto_begin=auto_begin, fetch=fetch_result) -%}\n {%- elif language == 'python' -%}\n {%- set res = submit_python_job(model, compiled_code) -%}\n {#-- TODO: What should table be for python models? --#}\n {%- set table = None -%}\n {%- else -%}\n {% do exceptions.raise_compiler_error(\"statement macro didn't get supported language\") %}\n {%- endif -%}\n\n {%- if name is not none -%}\n {{ store_result(name, response=res, agate_table=table) }}\n {%- endif -%}\n\n {%- endif -%}\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.260206, "supported_languages": null}, "macro.dbt.noop_statement": {"name": "noop_statement", "resource_type": "macro", "package_name": "dbt", "path": "macros/etc/statement.sql", "original_file_path": "macros/etc/statement.sql", "unique_id": "macro.dbt.noop_statement", "macro_sql": "{% macro noop_statement(name=None, message=None, code=None, rows_affected=None, res=None) -%}\n {%- set sql = caller() -%}\n\n {%- if name == 'main' -%}\n {{ log('Writing runtime SQL for node \"{}\"'.format(model['unique_id'])) }}\n {{ write(sql) }}\n {%- endif -%}\n\n {%- if name is not none -%}\n {{ store_raw_result(name, message=message, code=code, rows_affected=rows_affected, agate_table=res) }}\n {%- endif -%}\n\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.2607942, "supported_languages": null}, "macro.dbt.run_query": {"name": "run_query", "resource_type": "macro", "package_name": "dbt", "path": "macros/etc/statement.sql", "original_file_path": "macros/etc/statement.sql", "unique_id": "macro.dbt.run_query", "macro_sql": "{% macro run_query(sql) %}\n {% call statement(\"run_query_statement\", fetch_result=true, auto_begin=false) %}\n {{ sql }}\n {% endcall %}\n\n {% do return(load_result(\"run_query_statement\").table) %}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.statement"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.26109, "supported_languages": null}, "macro.dbt.convert_datetime": {"name": "convert_datetime", "resource_type": "macro", "package_name": "dbt", "path": "macros/etc/datetime.sql", "original_file_path": "macros/etc/datetime.sql", "unique_id": "macro.dbt.convert_datetime", "macro_sql": "{% macro convert_datetime(date_str, date_fmt) %}\n\n {% set error_msg -%}\n The provided partition date '{{ date_str }}' does not match the expected format '{{ date_fmt }}'\n {%- endset %}\n\n {% set res = try_or_compiler_error(error_msg, modules.datetime.datetime.strptime, date_str.strip(), date_fmt) %}\n {{ return(res) }}\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.262934, "supported_languages": null}, "macro.dbt.dates_in_range": {"name": "dates_in_range", "resource_type": "macro", "package_name": "dbt", "path": "macros/etc/datetime.sql", "original_file_path": "macros/etc/datetime.sql", "unique_id": "macro.dbt.dates_in_range", "macro_sql": "{% macro dates_in_range(start_date_str, end_date_str=none, in_fmt=\"%Y%m%d\", out_fmt=\"%Y%m%d\") %}\n {% set end_date_str = start_date_str if end_date_str is none else end_date_str %}\n\n {% set start_date = convert_datetime(start_date_str, in_fmt) %}\n {% set end_date = convert_datetime(end_date_str, in_fmt) %}\n\n {% set day_count = (end_date - start_date).days %}\n {% if day_count < 0 %}\n {% set msg -%}\n Partition start date is after the end date ({{ start_date }}, {{ end_date }})\n {%- endset %}\n\n {{ exceptions.raise_compiler_error(msg, model) }}\n {% endif %}\n\n {% set date_list = [] %}\n {% for i in range(0, day_count + 1) %}\n {% set the_date = (modules.datetime.timedelta(days=i) + start_date) %}\n {% if not out_fmt %}\n {% set _ = date_list.append(the_date) %}\n {% else %}\n {% set _ = date_list.append(the_date.strftime(out_fmt)) %}\n {% endif %}\n {% endfor %}\n\n {{ return(date_list) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.convert_datetime"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.2642171, "supported_languages": null}, "macro.dbt.partition_range": {"name": "partition_range", "resource_type": "macro", "package_name": "dbt", "path": "macros/etc/datetime.sql", "original_file_path": "macros/etc/datetime.sql", "unique_id": "macro.dbt.partition_range", "macro_sql": "{% macro partition_range(raw_partition_date, date_fmt='%Y%m%d') %}\n {% set partition_range = (raw_partition_date | string).split(\",\") %}\n\n {% if (partition_range | length) == 1 %}\n {% set start_date = partition_range[0] %}\n {% set end_date = none %}\n {% elif (partition_range | length) == 2 %}\n {% set start_date = partition_range[0] %}\n {% set end_date = partition_range[1] %}\n {% else %}\n {{ exceptions.raise_compiler_error(\"Invalid partition time. Expected format: {Start Date}[,{End Date}]. Got: \" ~ raw_partition_date) }}\n {% endif %}\n\n {{ return(dates_in_range(start_date, end_date, in_fmt=date_fmt)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.dates_in_range"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.2649758, "supported_languages": null}, "macro.dbt.py_current_timestring": {"name": "py_current_timestring", "resource_type": "macro", "package_name": "dbt", "path": "macros/etc/datetime.sql", "original_file_path": "macros/etc/datetime.sql", "unique_id": "macro.dbt.py_current_timestring", "macro_sql": "{% macro py_current_timestring() %}\n {% set dt = modules.datetime.datetime.now() %}\n {% do return(dt.strftime(\"%Y%m%d%H%M%S%f\")) %}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.265215, "supported_languages": null}, "macro.dbt.except": {"name": "except", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/except.sql", "original_file_path": "macros/utils/except.sql", "unique_id": "macro.dbt.except", "macro_sql": "{% macro except() %}\n {{ return(adapter.dispatch('except', 'dbt')()) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__except"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.265447, "supported_languages": null}, "macro.dbt.default__except": {"name": "default__except", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/except.sql", "original_file_path": "macros/utils/except.sql", "unique_id": "macro.dbt.default__except", "macro_sql": "{% macro default__except() %}\n\n except\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.265525, "supported_languages": null}, "macro.dbt.get_intervals_between": {"name": "get_intervals_between", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/date_spine.sql", "original_file_path": "macros/utils/date_spine.sql", "unique_id": "macro.dbt.get_intervals_between", "macro_sql": "{% macro get_intervals_between(start_date, end_date, datepart) -%}\n {{ return(adapter.dispatch('get_intervals_between', 'dbt')(start_date, end_date, datepart)) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt.default__get_intervals_between"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.2662778, "supported_languages": null}, "macro.dbt.default__get_intervals_between": {"name": "default__get_intervals_between", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/date_spine.sql", "original_file_path": "macros/utils/date_spine.sql", "unique_id": "macro.dbt.default__get_intervals_between", "macro_sql": "{% macro default__get_intervals_between(start_date, end_date, datepart) -%}\n {%- call statement('get_intervals_between', fetch_result=True) %}\n\n select {{ dbt.datediff(start_date, end_date, datepart) }}\n\n {%- endcall -%}\n\n {%- set value_list = load_result('get_intervals_between') -%}\n\n {%- if value_list and value_list['data'] -%}\n {%- set values = value_list['data'] | map(attribute=0) | list %}\n {{ return(values[0]) }}\n {%- else -%}\n {{ return(1) }}\n {%- endif -%}\n\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt.statement", "macro.dbt.datediff"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.266884, "supported_languages": null}, "macro.dbt.date_spine": {"name": "date_spine", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/date_spine.sql", "original_file_path": "macros/utils/date_spine.sql", "unique_id": "macro.dbt.date_spine", "macro_sql": "{% macro date_spine(datepart, start_date, end_date) %}\n {{ return(adapter.dispatch('date_spine', 'dbt')(datepart, start_date, end_date)) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt.default__date_spine"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.267128, "supported_languages": null}, "macro.dbt.default__date_spine": {"name": "default__date_spine", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/date_spine.sql", "original_file_path": "macros/utils/date_spine.sql", "unique_id": "macro.dbt.default__date_spine", "macro_sql": "{% macro default__date_spine(datepart, start_date, end_date) %}\n\n\n {# call as follows:\n\n date_spine(\n \"day\",\n \"to_date('01/01/2016', 'mm/dd/yyyy')\",\n \"dbt.dateadd(week, 1, current_date)\"\n ) #}\n\n\n with rawdata as (\n\n {{dbt.generate_series(\n dbt.get_intervals_between(start_date, end_date, datepart)\n )}}\n\n ),\n\n all_periods as (\n\n select (\n {{\n dbt.dateadd(\n datepart,\n \"row_number() over (order by 1) - 1\",\n start_date\n )\n }}\n ) as date_{{datepart}}\n from rawdata\n\n ),\n\n filtered as (\n\n select *\n from all_periods\n where date_{{datepart}} <= {{ end_date }}\n\n )\n\n select * from filtered\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.generate_series", "macro.dbt.get_intervals_between", "macro.dbt.dateadd"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.267503, "supported_languages": null}, "macro.dbt.replace": {"name": "replace", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/replace.sql", "original_file_path": "macros/utils/replace.sql", "unique_id": "macro.dbt.replace", "macro_sql": "{% macro replace(field, old_chars, new_chars) -%}\n {{ return(adapter.dispatch('replace', 'dbt') (field, old_chars, new_chars)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__replace"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.267835, "supported_languages": null}, "macro.dbt.default__replace": {"name": "default__replace", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/replace.sql", "original_file_path": "macros/utils/replace.sql", "unique_id": "macro.dbt.default__replace", "macro_sql": "{% macro default__replace(field, old_chars, new_chars) %}\n\n replace(\n {{ field }},\n {{ old_chars }},\n {{ new_chars }}\n )\n\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.268001, "supported_languages": null}, "macro.dbt.concat": {"name": "concat", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/concat.sql", "original_file_path": "macros/utils/concat.sql", "unique_id": "macro.dbt.concat", "macro_sql": "{% macro concat(fields) -%}\n {{ return(adapter.dispatch('concat', 'dbt')(fields)) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt.default__concat"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.268248, "supported_languages": null}, "macro.dbt.default__concat": {"name": "default__concat", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/concat.sql", "original_file_path": "macros/utils/concat.sql", "unique_id": "macro.dbt.default__concat", "macro_sql": "{% macro default__concat(fields) -%}\n {{ fields|join(' || ') }}\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.2683752, "supported_languages": null}, "macro.dbt.get_powers_of_two": {"name": "get_powers_of_two", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/generate_series.sql", "original_file_path": "macros/utils/generate_series.sql", "unique_id": "macro.dbt.get_powers_of_two", "macro_sql": "{% macro get_powers_of_two(upper_bound) %}\n {{ return(adapter.dispatch('get_powers_of_two', 'dbt')(upper_bound)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__get_powers_of_two"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.269205, "supported_languages": null}, "macro.dbt.default__get_powers_of_two": {"name": "default__get_powers_of_two", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/generate_series.sql", "original_file_path": "macros/utils/generate_series.sql", "unique_id": "macro.dbt.default__get_powers_of_two", "macro_sql": "{% macro default__get_powers_of_two(upper_bound) %}\n\n {% if upper_bound <= 0 %}\n {{ exceptions.raise_compiler_error(\"upper bound must be positive\") }}\n {% endif %}\n\n {% for _ in range(1, 100) %}\n {% if upper_bound <= 2 ** loop.index %}{{ return(loop.index) }}{% endif %}\n {% endfor %}\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.2696278, "supported_languages": null}, "macro.dbt.generate_series": {"name": "generate_series", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/generate_series.sql", "original_file_path": "macros/utils/generate_series.sql", "unique_id": "macro.dbt.generate_series", "macro_sql": "{% macro generate_series(upper_bound) %}\n {{ return(adapter.dispatch('generate_series', 'dbt')(upper_bound)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__generate_series"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.269818, "supported_languages": null}, "macro.dbt.default__generate_series": {"name": "default__generate_series", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/generate_series.sql", "original_file_path": "macros/utils/generate_series.sql", "unique_id": "macro.dbt.default__generate_series", "macro_sql": "{% macro default__generate_series(upper_bound) %}\n\n {% set n = dbt.get_powers_of_two(upper_bound) %}\n\n with p as (\n select 0 as generated_number union all select 1\n ), unioned as (\n\n select\n\n {% for i in range(n) %}\n p{{i}}.generated_number * power(2, {{i}})\n {% if not loop.last %} + {% endif %}\n {% endfor %}\n + 1\n as generated_number\n\n from\n\n {% for i in range(n) %}\n p as p{{i}}\n {% if not loop.last %} cross join {% endif %}\n {% endfor %}\n\n )\n\n select *\n from unioned\n where generated_number <= {{upper_bound}}\n order by generated_number\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.get_powers_of_two"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.270349, "supported_languages": null}, "macro.dbt.length": {"name": "length", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/length.sql", "original_file_path": "macros/utils/length.sql", "unique_id": "macro.dbt.length", "macro_sql": "{% macro length(expression) -%}\n {{ return(adapter.dispatch('length', 'dbt') (expression)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__length"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.270611, "supported_languages": null}, "macro.dbt.default__length": {"name": "default__length", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/length.sql", "original_file_path": "macros/utils/length.sql", "unique_id": "macro.dbt.default__length", "macro_sql": "{% macro default__length(expression) %}\n\n length(\n {{ expression }}\n )\n\n{%- endmacro -%}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.270723, "supported_languages": null}, "macro.dbt.dateadd": {"name": "dateadd", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/dateadd.sql", "original_file_path": "macros/utils/dateadd.sql", "unique_id": "macro.dbt.dateadd", "macro_sql": "{% macro dateadd(datepart, interval, from_date_or_timestamp) %}\n {{ return(adapter.dispatch('dateadd', 'dbt')(datepart, interval, from_date_or_timestamp)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_postgres.postgres__dateadd"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.2710779, "supported_languages": null}, "macro.dbt.default__dateadd": {"name": "default__dateadd", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/dateadd.sql", "original_file_path": "macros/utils/dateadd.sql", "unique_id": "macro.dbt.default__dateadd", "macro_sql": "{% macro default__dateadd(datepart, interval, from_date_or_timestamp) %}\n\n dateadd(\n {{ datepart }},\n {{ interval }},\n {{ from_date_or_timestamp }}\n )\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.271245, "supported_languages": null}, "macro.dbt.intersect": {"name": "intersect", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/intersect.sql", "original_file_path": "macros/utils/intersect.sql", "unique_id": "macro.dbt.intersect", "macro_sql": "{% macro intersect() %}\n {{ return(adapter.dispatch('intersect', 'dbt')()) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__intersect"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.271478, "supported_languages": null}, "macro.dbt.default__intersect": {"name": "default__intersect", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/intersect.sql", "original_file_path": "macros/utils/intersect.sql", "unique_id": "macro.dbt.default__intersect", "macro_sql": "{% macro default__intersect() %}\n\n intersect\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.271777, "supported_languages": null}, "macro.dbt.escape_single_quotes": {"name": "escape_single_quotes", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/escape_single_quotes.sql", "original_file_path": "macros/utils/escape_single_quotes.sql", "unique_id": "macro.dbt.escape_single_quotes", "macro_sql": "{% macro escape_single_quotes(expression) %}\n {{ return(adapter.dispatch('escape_single_quotes', 'dbt') (expression)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__escape_single_quotes"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.272054, "supported_languages": null}, "macro.dbt.default__escape_single_quotes": {"name": "default__escape_single_quotes", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/escape_single_quotes.sql", "original_file_path": "macros/utils/escape_single_quotes.sql", "unique_id": "macro.dbt.default__escape_single_quotes", "macro_sql": "{% macro default__escape_single_quotes(expression) -%}\n{{ expression | replace(\"'\",\"''\") }}\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.272205, "supported_languages": null}, "macro.dbt.right": {"name": "right", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/right.sql", "original_file_path": "macros/utils/right.sql", "unique_id": "macro.dbt.right", "macro_sql": "{% macro right(string_text, length_expression) -%}\n {{ return(adapter.dispatch('right', 'dbt') (string_text, length_expression)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__right"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.272522, "supported_languages": null}, "macro.dbt.default__right": {"name": "default__right", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/right.sql", "original_file_path": "macros/utils/right.sql", "unique_id": "macro.dbt.default__right", "macro_sql": "{% macro default__right(string_text, length_expression) %}\n\n right(\n {{ string_text }},\n {{ length_expression }}\n )\n\n{%- endmacro -%}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.272682, "supported_languages": null}, "macro.dbt.listagg": {"name": "listagg", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/listagg.sql", "original_file_path": "macros/utils/listagg.sql", "unique_id": "macro.dbt.listagg", "macro_sql": "{% macro listagg(measure, delimiter_text=\"','\", order_by_clause=none, limit_num=none) -%}\n {{ return(adapter.dispatch('listagg', 'dbt') (measure, delimiter_text, order_by_clause, limit_num)) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt_postgres.postgres__listagg"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.27335, "supported_languages": null}, "macro.dbt.default__listagg": {"name": "default__listagg", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/listagg.sql", "original_file_path": "macros/utils/listagg.sql", "unique_id": "macro.dbt.default__listagg", "macro_sql": "{% macro default__listagg(measure, delimiter_text, order_by_clause, limit_num) -%}\n\n {% if limit_num -%}\n array_to_string(\n array_slice(\n array_agg(\n {{ measure }}\n ){% if order_by_clause -%}\n within group ({{ order_by_clause }})\n {%- endif %}\n ,0\n ,{{ limit_num }}\n ),\n {{ delimiter_text }}\n )\n {%- else %}\n listagg(\n {{ measure }},\n {{ delimiter_text }}\n )\n {% if order_by_clause -%}\n within group ({{ order_by_clause }})\n {%- endif %}\n {%- endif %}\n\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.273773, "supported_languages": null}, "macro.dbt.datediff": {"name": "datediff", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/datediff.sql", "original_file_path": "macros/utils/datediff.sql", "unique_id": "macro.dbt.datediff", "macro_sql": "{% macro datediff(first_date, second_date, datepart) %}\n {{ return(adapter.dispatch('datediff', 'dbt')(first_date, second_date, datepart)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_postgres.postgres__datediff"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.274119, "supported_languages": null}, "macro.dbt.default__datediff": {"name": "default__datediff", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/datediff.sql", "original_file_path": "macros/utils/datediff.sql", "unique_id": "macro.dbt.default__datediff", "macro_sql": "{% macro default__datediff(first_date, second_date, datepart) -%}\n\n datediff(\n {{ datepart }},\n {{ first_date }},\n {{ second_date }}\n )\n\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.274282, "supported_languages": null}, "macro.dbt.safe_cast": {"name": "safe_cast", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/safe_cast.sql", "original_file_path": "macros/utils/safe_cast.sql", "unique_id": "macro.dbt.safe_cast", "macro_sql": "{% macro safe_cast(field, type) %}\n {{ return(adapter.dispatch('safe_cast', 'dbt') (field, type)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__safe_cast"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.274569, "supported_languages": null}, "macro.dbt.default__safe_cast": {"name": "default__safe_cast", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/safe_cast.sql", "original_file_path": "macros/utils/safe_cast.sql", "unique_id": "macro.dbt.default__safe_cast", "macro_sql": "{% macro default__safe_cast(field, type) %}\n {# most databases don't support this function yet\n so we just need to use cast #}\n cast({{field}} as {{type}})\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.274708, "supported_languages": null}, "macro.dbt.hash": {"name": "hash", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/hash.sql", "original_file_path": "macros/utils/hash.sql", "unique_id": "macro.dbt.hash", "macro_sql": "{% macro hash(field) -%}\n {{ return(adapter.dispatch('hash', 'dbt') (field)) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt.default__hash"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.2749681, "supported_languages": null}, "macro.dbt.default__hash": {"name": "default__hash", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/hash.sql", "original_file_path": "macros/utils/hash.sql", "unique_id": "macro.dbt.default__hash", "macro_sql": "{% macro default__hash(field) -%}\n md5(cast({{ field }} as {{ api.Column.translate_type('string') }}))\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.275139, "supported_languages": null}, "macro.dbt.cast_bool_to_text": {"name": "cast_bool_to_text", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/cast_bool_to_text.sql", "original_file_path": "macros/utils/cast_bool_to_text.sql", "unique_id": "macro.dbt.cast_bool_to_text", "macro_sql": "{% macro cast_bool_to_text(field) %}\n {{ adapter.dispatch('cast_bool_to_text', 'dbt') (field) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__cast_bool_to_text"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.2753851, "supported_languages": null}, "macro.dbt.default__cast_bool_to_text": {"name": "default__cast_bool_to_text", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/cast_bool_to_text.sql", "original_file_path": "macros/utils/cast_bool_to_text.sql", "unique_id": "macro.dbt.default__cast_bool_to_text", "macro_sql": "{% macro default__cast_bool_to_text(field) %}\n cast({{ field }} as {{ api.Column.translate_type('string') }})\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.2755451, "supported_languages": null}, "macro.dbt.any_value": {"name": "any_value", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/any_value.sql", "original_file_path": "macros/utils/any_value.sql", "unique_id": "macro.dbt.any_value", "macro_sql": "{% macro any_value(expression) -%}\n {{ return(adapter.dispatch('any_value', 'dbt') (expression)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_postgres.postgres__any_value"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.2757928, "supported_languages": null}, "macro.dbt.default__any_value": {"name": "default__any_value", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/any_value.sql", "original_file_path": "macros/utils/any_value.sql", "unique_id": "macro.dbt.default__any_value", "macro_sql": "{% macro default__any_value(expression) -%}\n\n any_value({{ expression }})\n\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.275899, "supported_languages": null}, "macro.dbt.position": {"name": "position", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/position.sql", "original_file_path": "macros/utils/position.sql", "unique_id": "macro.dbt.position", "macro_sql": "{% macro position(substring_text, string_text) -%}\n {{ return(adapter.dispatch('position', 'dbt') (substring_text, string_text)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__position"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.276188, "supported_languages": null}, "macro.dbt.default__position": {"name": "default__position", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/position.sql", "original_file_path": "macros/utils/position.sql", "unique_id": "macro.dbt.default__position", "macro_sql": "{% macro default__position(substring_text, string_text) %}\n\n position(\n {{ substring_text }} in {{ string_text }}\n )\n\n{%- endmacro -%}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.276327, "supported_languages": null}, "macro.dbt.string_literal": {"name": "string_literal", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/literal.sql", "original_file_path": "macros/utils/literal.sql", "unique_id": "macro.dbt.string_literal", "macro_sql": "{%- macro string_literal(value) -%}\n {{ return(adapter.dispatch('string_literal', 'dbt') (value)) }}\n{%- endmacro -%}\n\n", "depends_on": {"macros": ["macro.dbt.default__string_literal"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.2765708, "supported_languages": null}, "macro.dbt.default__string_literal": {"name": "default__string_literal", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/literal.sql", "original_file_path": "macros/utils/literal.sql", "unique_id": "macro.dbt.default__string_literal", "macro_sql": "{% macro default__string_literal(value) -%}\n '{{ value }}'\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.2767382, "supported_languages": null}, "macro.dbt.type_string": {"name": "type_string", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/data_types.sql", "original_file_path": "macros/utils/data_types.sql", "unique_id": "macro.dbt.type_string", "macro_sql": "\n\n{%- macro type_string() -%}\n {{ return(adapter.dispatch('type_string', 'dbt')()) }}\n{%- endmacro -%}\n\n", "depends_on": {"macros": ["macro.dbt.default__type_string"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.277699, "supported_languages": null}, "macro.dbt.default__type_string": {"name": "default__type_string", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/data_types.sql", "original_file_path": "macros/utils/data_types.sql", "unique_id": "macro.dbt.default__type_string", "macro_sql": "{% macro default__type_string() %}\n {{ return(api.Column.translate_type(\"string\")) }}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.277858, "supported_languages": null}, "macro.dbt.type_timestamp": {"name": "type_timestamp", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/data_types.sql", "original_file_path": "macros/utils/data_types.sql", "unique_id": "macro.dbt.type_timestamp", "macro_sql": "\n\n{%- macro type_timestamp() -%}\n {{ return(adapter.dispatch('type_timestamp', 'dbt')()) }}\n{%- endmacro -%}\n\n", "depends_on": {"macros": ["macro.dbt.default__type_timestamp"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.2780259, "supported_languages": null}, "macro.dbt.default__type_timestamp": {"name": "default__type_timestamp", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/data_types.sql", "original_file_path": "macros/utils/data_types.sql", "unique_id": "macro.dbt.default__type_timestamp", "macro_sql": "{% macro default__type_timestamp() %}\n {{ return(api.Column.translate_type(\"timestamp\")) }}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.2781792, "supported_languages": null}, "macro.dbt.type_float": {"name": "type_float", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/data_types.sql", "original_file_path": "macros/utils/data_types.sql", "unique_id": "macro.dbt.type_float", "macro_sql": "\n\n{%- macro type_float() -%}\n {{ return(adapter.dispatch('type_float', 'dbt')()) }}\n{%- endmacro -%}\n\n", "depends_on": {"macros": ["macro.dbt.default__type_float"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.278341, "supported_languages": null}, "macro.dbt.default__type_float": {"name": "default__type_float", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/data_types.sql", "original_file_path": "macros/utils/data_types.sql", "unique_id": "macro.dbt.default__type_float", "macro_sql": "{% macro default__type_float() %}\n {{ return(api.Column.translate_type(\"float\")) }}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.278496, "supported_languages": null}, "macro.dbt.type_numeric": {"name": "type_numeric", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/data_types.sql", "original_file_path": "macros/utils/data_types.sql", "unique_id": "macro.dbt.type_numeric", "macro_sql": "\n\n{%- macro type_numeric() -%}\n {{ return(adapter.dispatch('type_numeric', 'dbt')()) }}\n{%- endmacro -%}\n\n", "depends_on": {"macros": ["macro.dbt.default__type_numeric"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.278659, "supported_languages": null}, "macro.dbt.default__type_numeric": {"name": "default__type_numeric", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/data_types.sql", "original_file_path": "macros/utils/data_types.sql", "unique_id": "macro.dbt.default__type_numeric", "macro_sql": "{% macro default__type_numeric() %}\n {{ return(api.Column.numeric_type(\"numeric\", 28, 6)) }}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.278836, "supported_languages": null}, "macro.dbt.type_bigint": {"name": "type_bigint", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/data_types.sql", "original_file_path": "macros/utils/data_types.sql", "unique_id": "macro.dbt.type_bigint", "macro_sql": "\n\n{%- macro type_bigint() -%}\n {{ return(adapter.dispatch('type_bigint', 'dbt')()) }}\n{%- endmacro -%}\n\n", "depends_on": {"macros": ["macro.dbt.default__type_bigint"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.279003, "supported_languages": null}, "macro.dbt.default__type_bigint": {"name": "default__type_bigint", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/data_types.sql", "original_file_path": "macros/utils/data_types.sql", "unique_id": "macro.dbt.default__type_bigint", "macro_sql": "{% macro default__type_bigint() %}\n {{ return(api.Column.translate_type(\"bigint\")) }}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.279157, "supported_languages": null}, "macro.dbt.type_int": {"name": "type_int", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/data_types.sql", "original_file_path": "macros/utils/data_types.sql", "unique_id": "macro.dbt.type_int", "macro_sql": "\n\n{%- macro type_int() -%}\n {{ return(adapter.dispatch('type_int', 'dbt')()) }}\n{%- endmacro -%}\n\n", "depends_on": {"macros": ["macro.dbt.default__type_int"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.279333, "supported_languages": null}, "macro.dbt.default__type_int": {"name": "default__type_int", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/data_types.sql", "original_file_path": "macros/utils/data_types.sql", "unique_id": "macro.dbt.default__type_int", "macro_sql": "{%- macro default__type_int() -%}\n {{ return(api.Column.translate_type(\"integer\")) }}\n{%- endmacro -%}\n\n", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.279485, "supported_languages": null}, "macro.dbt.type_boolean": {"name": "type_boolean", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/data_types.sql", "original_file_path": "macros/utils/data_types.sql", "unique_id": "macro.dbt.type_boolean", "macro_sql": "\n\n{%- macro type_boolean() -%}\n {{ return(adapter.dispatch('type_boolean', 'dbt')()) }}\n{%- endmacro -%}\n\n", "depends_on": {"macros": ["macro.dbt.default__type_boolean"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.279648, "supported_languages": null}, "macro.dbt.default__type_boolean": {"name": "default__type_boolean", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/data_types.sql", "original_file_path": "macros/utils/data_types.sql", "unique_id": "macro.dbt.default__type_boolean", "macro_sql": "{%- macro default__type_boolean() -%}\n {{ return(api.Column.translate_type(\"boolean\")) }}\n{%- endmacro -%}\n\n", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.279798, "supported_languages": null}, "macro.dbt.array_concat": {"name": "array_concat", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/array_concat.sql", "original_file_path": "macros/utils/array_concat.sql", "unique_id": "macro.dbt.array_concat", "macro_sql": "{% macro array_concat(array_1, array_2) -%}\n {{ return(adapter.dispatch('array_concat', 'dbt')(array_1, array_2)) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt.default__array_concat"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.2800791, "supported_languages": null}, "macro.dbt.default__array_concat": {"name": "default__array_concat", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/array_concat.sql", "original_file_path": "macros/utils/array_concat.sql", "unique_id": "macro.dbt.default__array_concat", "macro_sql": "{% macro default__array_concat(array_1, array_2) -%}\n array_cat({{ array_1 }}, {{ array_2 }})\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.280214, "supported_languages": null}, "macro.dbt.bool_or": {"name": "bool_or", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/bool_or.sql", "original_file_path": "macros/utils/bool_or.sql", "unique_id": "macro.dbt.bool_or", "macro_sql": "{% macro bool_or(expression) -%}\n {{ return(adapter.dispatch('bool_or', 'dbt') (expression)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__bool_or"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.2804632, "supported_languages": null}, "macro.dbt.default__bool_or": {"name": "default__bool_or", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/bool_or.sql", "original_file_path": "macros/utils/bool_or.sql", "unique_id": "macro.dbt.default__bool_or", "macro_sql": "{% macro default__bool_or(expression) -%}\n\n bool_or({{ expression }})\n\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.280569, "supported_languages": null}, "macro.dbt.last_day": {"name": "last_day", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/last_day.sql", "original_file_path": "macros/utils/last_day.sql", "unique_id": "macro.dbt.last_day", "macro_sql": "{% macro last_day(date, datepart) %}\n {{ return(adapter.dispatch('last_day', 'dbt') (date, datepart)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_postgres.postgres__last_day"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.2809129, "supported_languages": null}, "macro.dbt.default_last_day": {"name": "default_last_day", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/last_day.sql", "original_file_path": "macros/utils/last_day.sql", "unique_id": "macro.dbt.default_last_day", "macro_sql": "\n\n{%- macro default_last_day(date, datepart) -%}\n cast(\n {{dbt.dateadd('day', '-1',\n dbt.dateadd(datepart, '1', dbt.date_trunc(datepart, date))\n )}}\n as date)\n{%- endmacro -%}\n\n", "depends_on": {"macros": ["macro.dbt.dateadd", "macro.dbt.date_trunc"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.281253, "supported_languages": null}, "macro.dbt.default__last_day": {"name": "default__last_day", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/last_day.sql", "original_file_path": "macros/utils/last_day.sql", "unique_id": "macro.dbt.default__last_day", "macro_sql": "{% macro default__last_day(date, datepart) -%}\n {{dbt.default_last_day(date, datepart)}}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt.default_last_day"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.281405, "supported_languages": null}, "macro.dbt.split_part": {"name": "split_part", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/split_part.sql", "original_file_path": "macros/utils/split_part.sql", "unique_id": "macro.dbt.split_part", "macro_sql": "{% macro split_part(string_text, delimiter_text, part_number) %}\n {{ return(adapter.dispatch('split_part', 'dbt') (string_text, delimiter_text, part_number)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_postgres.postgres__split_part"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.281941, "supported_languages": null}, "macro.dbt.default__split_part": {"name": "default__split_part", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/split_part.sql", "original_file_path": "macros/utils/split_part.sql", "unique_id": "macro.dbt.default__split_part", "macro_sql": "{% macro default__split_part(string_text, delimiter_text, part_number) %}\n\n split_part(\n {{ string_text }},\n {{ delimiter_text }},\n {{ part_number }}\n )\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.2821078, "supported_languages": null}, "macro.dbt._split_part_negative": {"name": "_split_part_negative", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/split_part.sql", "original_file_path": "macros/utils/split_part.sql", "unique_id": "macro.dbt._split_part_negative", "macro_sql": "{% macro _split_part_negative(string_text, delimiter_text, part_number) %}\n\n split_part(\n {{ string_text }},\n {{ delimiter_text }},\n length({{ string_text }})\n - length(\n replace({{ string_text }}, {{ delimiter_text }}, '')\n ) + 2 + {{ part_number }}\n )\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.282337, "supported_languages": null}, "macro.dbt.date_trunc": {"name": "date_trunc", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/date_trunc.sql", "original_file_path": "macros/utils/date_trunc.sql", "unique_id": "macro.dbt.date_trunc", "macro_sql": "{% macro date_trunc(datepart, date) -%}\n {{ return(adapter.dispatch('date_trunc', 'dbt') (datepart, date)) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt.default__date_trunc"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.282617, "supported_languages": null}, "macro.dbt.default__date_trunc": {"name": "default__date_trunc", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/date_trunc.sql", "original_file_path": "macros/utils/date_trunc.sql", "unique_id": "macro.dbt.default__date_trunc", "macro_sql": "{% macro default__date_trunc(datepart, date) -%}\n date_trunc('{{datepart}}', {{date}})\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.282748, "supported_languages": null}, "macro.dbt.array_construct": {"name": "array_construct", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/array_construct.sql", "original_file_path": "macros/utils/array_construct.sql", "unique_id": "macro.dbt.array_construct", "macro_sql": "{% macro array_construct(inputs=[], data_type=api.Column.translate_type('integer')) -%}\n {{ return(adapter.dispatch('array_construct', 'dbt')(inputs, data_type)) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt.default__array_construct"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.283123, "supported_languages": null}, "macro.dbt.default__array_construct": {"name": "default__array_construct", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/array_construct.sql", "original_file_path": "macros/utils/array_construct.sql", "unique_id": "macro.dbt.default__array_construct", "macro_sql": "{% macro default__array_construct(inputs, data_type) -%}\n {% if inputs|length > 0 %}\n array[ {{ inputs|join(' , ') }} ]\n {% else %}\n array[]::{{data_type}}[]\n {% endif %}\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.283374, "supported_languages": null}, "macro.dbt.array_append": {"name": "array_append", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/array_append.sql", "original_file_path": "macros/utils/array_append.sql", "unique_id": "macro.dbt.array_append", "macro_sql": "{% macro array_append(array, new_element) -%}\n {{ return(adapter.dispatch('array_append', 'dbt')(array, new_element)) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt.default__array_append"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.283659, "supported_languages": null}, "macro.dbt.default__array_append": {"name": "default__array_append", "resource_type": "macro", "package_name": "dbt", "path": "macros/utils/array_append.sql", "original_file_path": "macros/utils/array_append.sql", "unique_id": "macro.dbt.default__array_append", "macro_sql": "{% macro default__array_append(array, new_element) -%}\n array_append({{ array }}, {{ new_element }})\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.283797, "supported_languages": null}, "macro.dbt.create_schema": {"name": "create_schema", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/schema.sql", "original_file_path": "macros/adapters/schema.sql", "unique_id": "macro.dbt.create_schema", "macro_sql": "{% macro create_schema(relation) -%}\n {{ adapter.dispatch('create_schema', 'dbt')(relation) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_postgres.postgres__create_schema"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.284169, "supported_languages": null}, "macro.dbt.default__create_schema": {"name": "default__create_schema", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/schema.sql", "original_file_path": "macros/adapters/schema.sql", "unique_id": "macro.dbt.default__create_schema", "macro_sql": "{% macro default__create_schema(relation) -%}\n {%- call statement('create_schema') -%}\n create schema if not exists {{ relation.without_identifier() }}\n {% endcall %}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.statement"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.284357, "supported_languages": null}, "macro.dbt.drop_schema": {"name": "drop_schema", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/schema.sql", "original_file_path": "macros/adapters/schema.sql", "unique_id": "macro.dbt.drop_schema", "macro_sql": "{% macro drop_schema(relation) -%}\n {{ adapter.dispatch('drop_schema', 'dbt')(relation) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_postgres.postgres__drop_schema"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.284526, "supported_languages": null}, "macro.dbt.default__drop_schema": {"name": "default__drop_schema", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/schema.sql", "original_file_path": "macros/adapters/schema.sql", "unique_id": "macro.dbt.default__drop_schema", "macro_sql": "{% macro default__drop_schema(relation) -%}\n {%- call statement('drop_schema') -%}\n drop schema if exists {{ relation.without_identifier() }} cascade\n {% endcall %}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.statement"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.2847118, "supported_languages": null}, "macro.dbt.current_timestamp": {"name": "current_timestamp", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/timestamps.sql", "original_file_path": "macros/adapters/timestamps.sql", "unique_id": "macro.dbt.current_timestamp", "macro_sql": "{%- macro current_timestamp() -%}\n {{ adapter.dispatch('current_timestamp', 'dbt')() }}\n{%- endmacro -%}\n\n", "depends_on": {"macros": ["macro.dbt_postgres.postgres__current_timestamp"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.2851999, "supported_languages": null}, "macro.dbt.default__current_timestamp": {"name": "default__current_timestamp", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/timestamps.sql", "original_file_path": "macros/adapters/timestamps.sql", "unique_id": "macro.dbt.default__current_timestamp", "macro_sql": "{% macro default__current_timestamp() -%}\n {{ exceptions.raise_not_implemented(\n 'current_timestamp macro not implemented for adapter ' + adapter.type()) }}\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.285353, "supported_languages": null}, "macro.dbt.snapshot_get_time": {"name": "snapshot_get_time", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/timestamps.sql", "original_file_path": "macros/adapters/timestamps.sql", "unique_id": "macro.dbt.snapshot_get_time", "macro_sql": "\n\n{%- macro snapshot_get_time() -%}\n {{ adapter.dispatch('snapshot_get_time', 'dbt')() }}\n{%- endmacro -%}\n\n", "depends_on": {"macros": ["macro.dbt_postgres.postgres__snapshot_get_time"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.2854998, "supported_languages": null}, "macro.dbt.default__snapshot_get_time": {"name": "default__snapshot_get_time", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/timestamps.sql", "original_file_path": "macros/adapters/timestamps.sql", "unique_id": "macro.dbt.default__snapshot_get_time", "macro_sql": "{% macro default__snapshot_get_time() %}\n {{ current_timestamp() }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.current_timestamp"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.285604, "supported_languages": null}, "macro.dbt.current_timestamp_backcompat": {"name": "current_timestamp_backcompat", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/timestamps.sql", "original_file_path": "macros/adapters/timestamps.sql", "unique_id": "macro.dbt.current_timestamp_backcompat", "macro_sql": "{% macro current_timestamp_backcompat() %}\n {{ return(adapter.dispatch('current_timestamp_backcompat', 'dbt')()) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_postgres.postgres__current_timestamp_backcompat"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.285773, "supported_languages": null}, "macro.dbt.default__current_timestamp_backcompat": {"name": "default__current_timestamp_backcompat", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/timestamps.sql", "original_file_path": "macros/adapters/timestamps.sql", "unique_id": "macro.dbt.default__current_timestamp_backcompat", "macro_sql": "{% macro default__current_timestamp_backcompat() %}\n current_timestamp::timestamp\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.2858508, "supported_languages": null}, "macro.dbt.current_timestamp_in_utc_backcompat": {"name": "current_timestamp_in_utc_backcompat", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/timestamps.sql", "original_file_path": "macros/adapters/timestamps.sql", "unique_id": "macro.dbt.current_timestamp_in_utc_backcompat", "macro_sql": "{% macro current_timestamp_in_utc_backcompat() %}\n {{ return(adapter.dispatch('current_timestamp_in_utc_backcompat', 'dbt')()) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_postgres.postgres__current_timestamp_in_utc_backcompat"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.286089, "supported_languages": null}, "macro.dbt.default__current_timestamp_in_utc_backcompat": {"name": "default__current_timestamp_in_utc_backcompat", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/timestamps.sql", "original_file_path": "macros/adapters/timestamps.sql", "unique_id": "macro.dbt.default__current_timestamp_in_utc_backcompat", "macro_sql": "{% macro default__current_timestamp_in_utc_backcompat() %}\n {{ return(adapter.dispatch('current_timestamp_backcompat', 'dbt')()) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.current_timestamp_backcompat", "macro.dbt_postgres.postgres__current_timestamp_backcompat"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.28626, "supported_languages": null}, "macro.dbt.get_create_index_sql": {"name": "get_create_index_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/indexes.sql", "original_file_path": "macros/adapters/indexes.sql", "unique_id": "macro.dbt.get_create_index_sql", "macro_sql": "{% macro get_create_index_sql(relation, index_dict) -%}\n {{ return(adapter.dispatch('get_create_index_sql', 'dbt')(relation, index_dict)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_postgres.postgres__get_create_index_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.287102, "supported_languages": null}, "macro.dbt.default__get_create_index_sql": {"name": "default__get_create_index_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/indexes.sql", "original_file_path": "macros/adapters/indexes.sql", "unique_id": "macro.dbt.default__get_create_index_sql", "macro_sql": "{% macro default__get_create_index_sql(relation, index_dict) -%}\n {% do return(None) %}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.287242, "supported_languages": null}, "macro.dbt.create_indexes": {"name": "create_indexes", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/indexes.sql", "original_file_path": "macros/adapters/indexes.sql", "unique_id": "macro.dbt.create_indexes", "macro_sql": "{% macro create_indexes(relation) -%}\n {{ adapter.dispatch('create_indexes', 'dbt')(relation) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt.default__create_indexes"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.287402, "supported_languages": null}, "macro.dbt.default__create_indexes": {"name": "default__create_indexes", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/indexes.sql", "original_file_path": "macros/adapters/indexes.sql", "unique_id": "macro.dbt.default__create_indexes", "macro_sql": "{% macro default__create_indexes(relation) -%}\n {%- set _indexes = config.get('indexes', default=[]) -%}\n\n {% for _index_dict in _indexes %}\n {% set create_index_sql = get_create_index_sql(relation, _index_dict) %}\n {% if create_index_sql %}\n {% do run_query(create_index_sql) %}\n {% endif %}\n {% endfor %}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.get_create_index_sql", "macro.dbt.run_query"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.287827, "supported_languages": null}, "macro.dbt.get_drop_index_sql": {"name": "get_drop_index_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/indexes.sql", "original_file_path": "macros/adapters/indexes.sql", "unique_id": "macro.dbt.get_drop_index_sql", "macro_sql": "{% macro get_drop_index_sql(relation, index_name) -%}\n {{ adapter.dispatch('get_drop_index_sql', 'dbt')(relation, index_name) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt_postgres.postgres__get_drop_index_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.2880142, "supported_languages": null}, "macro.dbt.default__get_drop_index_sql": {"name": "default__get_drop_index_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/indexes.sql", "original_file_path": "macros/adapters/indexes.sql", "unique_id": "macro.dbt.default__get_drop_index_sql", "macro_sql": "{% macro default__get_drop_index_sql(relation, index_name) -%}\n {{ exceptions.raise_compiler_error(\"`get_drop_index_sql has not been implemented for this adapter.\") }}\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.2881532, "supported_languages": null}, "macro.dbt.get_show_indexes_sql": {"name": "get_show_indexes_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/indexes.sql", "original_file_path": "macros/adapters/indexes.sql", "unique_id": "macro.dbt.get_show_indexes_sql", "macro_sql": "{% macro get_show_indexes_sql(relation) -%}\n {{ adapter.dispatch('get_show_indexes_sql', 'dbt')(relation) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt_postgres.postgres__get_show_indexes_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.288314, "supported_languages": null}, "macro.dbt.default__get_show_indexes_sql": {"name": "default__get_show_indexes_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/indexes.sql", "original_file_path": "macros/adapters/indexes.sql", "unique_id": "macro.dbt.default__get_show_indexes_sql", "macro_sql": "{% macro default__get_show_indexes_sql(relation) -%}\n {{ exceptions.raise_compiler_error(\"`get_show_indexes_sql has not been implemented for this adapter.\") }}\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.2884412, "supported_languages": null}, "macro.dbt.make_intermediate_relation": {"name": "make_intermediate_relation", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/relation.sql", "original_file_path": "macros/adapters/relation.sql", "unique_id": "macro.dbt.make_intermediate_relation", "macro_sql": "{% macro make_intermediate_relation(base_relation, suffix='__dbt_tmp') %}\n {{ return(adapter.dispatch('make_intermediate_relation', 'dbt')(base_relation, suffix)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_postgres.postgres__make_intermediate_relation"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.290451, "supported_languages": null}, "macro.dbt.default__make_intermediate_relation": {"name": "default__make_intermediate_relation", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/relation.sql", "original_file_path": "macros/adapters/relation.sql", "unique_id": "macro.dbt.default__make_intermediate_relation", "macro_sql": "{% macro default__make_intermediate_relation(base_relation, suffix) %}\n {{ return(default__make_temp_relation(base_relation, suffix)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__make_temp_relation"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.290621, "supported_languages": null}, "macro.dbt.make_temp_relation": {"name": "make_temp_relation", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/relation.sql", "original_file_path": "macros/adapters/relation.sql", "unique_id": "macro.dbt.make_temp_relation", "macro_sql": "{% macro make_temp_relation(base_relation, suffix='__dbt_tmp') %}\n {{ return(adapter.dispatch('make_temp_relation', 'dbt')(base_relation, suffix)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_postgres.postgres__make_temp_relation"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.290848, "supported_languages": null}, "macro.dbt.default__make_temp_relation": {"name": "default__make_temp_relation", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/relation.sql", "original_file_path": "macros/adapters/relation.sql", "unique_id": "macro.dbt.default__make_temp_relation", "macro_sql": "{% macro default__make_temp_relation(base_relation, suffix) %}\n {%- set temp_identifier = base_relation.identifier ~ suffix -%}\n {%- set temp_relation = base_relation.incorporate(\n path={\"identifier\": temp_identifier}) -%}\n\n {{ return(temp_relation) }}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.291143, "supported_languages": null}, "macro.dbt.make_backup_relation": {"name": "make_backup_relation", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/relation.sql", "original_file_path": "macros/adapters/relation.sql", "unique_id": "macro.dbt.make_backup_relation", "macro_sql": "{% macro make_backup_relation(base_relation, backup_relation_type, suffix='__dbt_backup') %}\n {{ return(adapter.dispatch('make_backup_relation', 'dbt')(base_relation, backup_relation_type, suffix)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_postgres.postgres__make_backup_relation"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.29139, "supported_languages": null}, "macro.dbt.default__make_backup_relation": {"name": "default__make_backup_relation", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/relation.sql", "original_file_path": "macros/adapters/relation.sql", "unique_id": "macro.dbt.default__make_backup_relation", "macro_sql": "{% macro default__make_backup_relation(base_relation, backup_relation_type, suffix) %}\n {%- set backup_identifier = base_relation.identifier ~ suffix -%}\n {%- set backup_relation = base_relation.incorporate(\n path={\"identifier\": backup_identifier},\n type=backup_relation_type\n ) -%}\n {{ return(backup_relation) }}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.2917209, "supported_languages": null}, "macro.dbt.truncate_relation": {"name": "truncate_relation", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/relation.sql", "original_file_path": "macros/adapters/relation.sql", "unique_id": "macro.dbt.truncate_relation", "macro_sql": "{% macro truncate_relation(relation) -%}\n {{ return(adapter.dispatch('truncate_relation', 'dbt')(relation)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__truncate_relation"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.291905, "supported_languages": null}, "macro.dbt.default__truncate_relation": {"name": "default__truncate_relation", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/relation.sql", "original_file_path": "macros/adapters/relation.sql", "unique_id": "macro.dbt.default__truncate_relation", "macro_sql": "{% macro default__truncate_relation(relation) -%}\n {% call statement('truncate_relation') -%}\n truncate table {{ relation }}\n {%- endcall %}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.statement"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.292068, "supported_languages": null}, "macro.dbt.get_or_create_relation": {"name": "get_or_create_relation", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/relation.sql", "original_file_path": "macros/adapters/relation.sql", "unique_id": "macro.dbt.get_or_create_relation", "macro_sql": "{% macro get_or_create_relation(database, schema, identifier, type) -%}\n {{ return(adapter.dispatch('get_or_create_relation', 'dbt')(database, schema, identifier, type)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__get_or_create_relation"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.292316, "supported_languages": null}, "macro.dbt.default__get_or_create_relation": {"name": "default__get_or_create_relation", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/relation.sql", "original_file_path": "macros/adapters/relation.sql", "unique_id": "macro.dbt.default__get_or_create_relation", "macro_sql": "{% macro default__get_or_create_relation(database, schema, identifier, type) %}\n {%- set target_relation = adapter.get_relation(database=database, schema=schema, identifier=identifier) %}\n\n {% if target_relation %}\n {% do return([true, target_relation]) %}\n {% endif %}\n\n {%- set new_relation = api.Relation.create(\n database=database,\n schema=schema,\n identifier=identifier,\n type=type\n ) -%}\n {% do return([false, new_relation]) %}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.292938, "supported_languages": null}, "macro.dbt.load_cached_relation": {"name": "load_cached_relation", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/relation.sql", "original_file_path": "macros/adapters/relation.sql", "unique_id": "macro.dbt.load_cached_relation", "macro_sql": "{% macro load_cached_relation(relation) %}\n {% do return(adapter.get_relation(\n database=relation.database,\n schema=relation.schema,\n identifier=relation.identifier\n )) -%}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.293171, "supported_languages": null}, "macro.dbt.load_relation": {"name": "load_relation", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/relation.sql", "original_file_path": "macros/adapters/relation.sql", "unique_id": "macro.dbt.load_relation", "macro_sql": "{% macro load_relation(relation) %}\n {{ return(load_cached_relation(relation)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.load_cached_relation"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.2933152, "supported_languages": null}, "macro.dbt.collect_freshness": {"name": "collect_freshness", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/freshness.sql", "original_file_path": "macros/adapters/freshness.sql", "unique_id": "macro.dbt.collect_freshness", "macro_sql": "{% macro collect_freshness(source, loaded_at_field, filter) %}\n {{ return(adapter.dispatch('collect_freshness', 'dbt')(source, loaded_at_field, filter))}}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__collect_freshness"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.293735, "supported_languages": null}, "macro.dbt.default__collect_freshness": {"name": "default__collect_freshness", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/freshness.sql", "original_file_path": "macros/adapters/freshness.sql", "unique_id": "macro.dbt.default__collect_freshness", "macro_sql": "{% macro default__collect_freshness(source, loaded_at_field, filter) %}\n {% call statement('collect_freshness', fetch_result=True, auto_begin=False) -%}\n select\n max({{ loaded_at_field }}) as max_loaded_at,\n {{ current_timestamp() }} as snapshotted_at\n from {{ source }}\n {% if filter %}\n where {{ filter }}\n {% endif %}\n {% endcall %}\n {{ return(load_result('collect_freshness')) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.statement", "macro.dbt.current_timestamp"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.294158, "supported_languages": null}, "macro.dbt.validate_sql": {"name": "validate_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/validate_sql.sql", "original_file_path": "macros/adapters/validate_sql.sql", "unique_id": "macro.dbt.validate_sql", "macro_sql": "{% macro validate_sql(sql) -%}\n {{ return(adapter.dispatch('validate_sql', 'dbt')(sql)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__validate_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.294442, "supported_languages": null}, "macro.dbt.default__validate_sql": {"name": "default__validate_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/validate_sql.sql", "original_file_path": "macros/adapters/validate_sql.sql", "unique_id": "macro.dbt.default__validate_sql", "macro_sql": "{% macro default__validate_sql(sql) -%}\n {% call statement('validate_sql') -%}\n explain {{ sql }}\n {% endcall %}\n {{ return(load_result('validate_sql')) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.statement"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.294668, "supported_languages": null}, "macro.dbt.copy_grants": {"name": "copy_grants", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/apply_grants.sql", "original_file_path": "macros/adapters/apply_grants.sql", "unique_id": "macro.dbt.copy_grants", "macro_sql": "{% macro copy_grants() %}\n {{ return(adapter.dispatch('copy_grants', 'dbt')()) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_postgres.postgres__copy_grants"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.296402, "supported_languages": null}, "macro.dbt.default__copy_grants": {"name": "default__copy_grants", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/apply_grants.sql", "original_file_path": "macros/adapters/apply_grants.sql", "unique_id": "macro.dbt.default__copy_grants", "macro_sql": "{% macro default__copy_grants() %}\n {{ return(True) }}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.296521, "supported_languages": null}, "macro.dbt.support_multiple_grantees_per_dcl_statement": {"name": "support_multiple_grantees_per_dcl_statement", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/apply_grants.sql", "original_file_path": "macros/adapters/apply_grants.sql", "unique_id": "macro.dbt.support_multiple_grantees_per_dcl_statement", "macro_sql": "{% macro support_multiple_grantees_per_dcl_statement() %}\n {{ return(adapter.dispatch('support_multiple_grantees_per_dcl_statement', 'dbt')()) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__support_multiple_grantees_per_dcl_statement"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.296693, "supported_languages": null}, "macro.dbt.default__support_multiple_grantees_per_dcl_statement": {"name": "default__support_multiple_grantees_per_dcl_statement", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/apply_grants.sql", "original_file_path": "macros/adapters/apply_grants.sql", "unique_id": "macro.dbt.default__support_multiple_grantees_per_dcl_statement", "macro_sql": "\n\n{%- macro default__support_multiple_grantees_per_dcl_statement() -%}\n {{ return(True) }}\n{%- endmacro -%}\n\n\n", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.2968059, "supported_languages": null}, "macro.dbt.should_revoke": {"name": "should_revoke", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/apply_grants.sql", "original_file_path": "macros/adapters/apply_grants.sql", "unique_id": "macro.dbt.should_revoke", "macro_sql": "{% macro should_revoke(existing_relation, full_refresh_mode=True) %}\n\n {% if not existing_relation %}\n {#-- The table doesn't already exist, so no grants to copy over --#}\n {{ return(False) }}\n {% elif full_refresh_mode %}\n {#-- The object is being REPLACED -- whether grants are copied over depends on the value of user config --#}\n {{ return(copy_grants()) }}\n {% else %}\n {#-- The table is being merged/upserted/inserted -- grants will be carried over --#}\n {{ return(True) }}\n {% endif %}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.copy_grants"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.29716, "supported_languages": null}, "macro.dbt.get_show_grant_sql": {"name": "get_show_grant_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/apply_grants.sql", "original_file_path": "macros/adapters/apply_grants.sql", "unique_id": "macro.dbt.get_show_grant_sql", "macro_sql": "{% macro get_show_grant_sql(relation) %}\n {{ return(adapter.dispatch(\"get_show_grant_sql\", \"dbt\")(relation)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_postgres.postgres__get_show_grant_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.2973492, "supported_languages": null}, "macro.dbt.default__get_show_grant_sql": {"name": "default__get_show_grant_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/apply_grants.sql", "original_file_path": "macros/adapters/apply_grants.sql", "unique_id": "macro.dbt.default__get_show_grant_sql", "macro_sql": "{% macro default__get_show_grant_sql(relation) %}\n show grants on {{ relation }}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.297452, "supported_languages": null}, "macro.dbt.get_grant_sql": {"name": "get_grant_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/apply_grants.sql", "original_file_path": "macros/adapters/apply_grants.sql", "unique_id": "macro.dbt.get_grant_sql", "macro_sql": "{% macro get_grant_sql(relation, privilege, grantees) %}\n {{ return(adapter.dispatch('get_grant_sql', 'dbt')(relation, privilege, grantees)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__get_grant_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.297684, "supported_languages": null}, "macro.dbt.default__get_grant_sql": {"name": "default__get_grant_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/apply_grants.sql", "original_file_path": "macros/adapters/apply_grants.sql", "unique_id": "macro.dbt.default__get_grant_sql", "macro_sql": "\n\n{%- macro default__get_grant_sql(relation, privilege, grantees) -%}\n grant {{ privilege }} on {{ relation }} to {{ grantees | join(', ') }}\n{%- endmacro -%}\n\n\n", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.297879, "supported_languages": null}, "macro.dbt.get_revoke_sql": {"name": "get_revoke_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/apply_grants.sql", "original_file_path": "macros/adapters/apply_grants.sql", "unique_id": "macro.dbt.get_revoke_sql", "macro_sql": "{% macro get_revoke_sql(relation, privilege, grantees) %}\n {{ return(adapter.dispatch('get_revoke_sql', 'dbt')(relation, privilege, grantees)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__get_revoke_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.2981088, "supported_languages": null}, "macro.dbt.default__get_revoke_sql": {"name": "default__get_revoke_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/apply_grants.sql", "original_file_path": "macros/adapters/apply_grants.sql", "unique_id": "macro.dbt.default__get_revoke_sql", "macro_sql": "\n\n{%- macro default__get_revoke_sql(relation, privilege, grantees) -%}\n revoke {{ privilege }} on {{ relation }} from {{ grantees | join(', ') }}\n{%- endmacro -%}\n\n\n", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.298296, "supported_languages": null}, "macro.dbt.get_dcl_statement_list": {"name": "get_dcl_statement_list", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/apply_grants.sql", "original_file_path": "macros/adapters/apply_grants.sql", "unique_id": "macro.dbt.get_dcl_statement_list", "macro_sql": "{% macro get_dcl_statement_list(relation, grant_config, get_dcl_macro) %}\n {{ return(adapter.dispatch('get_dcl_statement_list', 'dbt')(relation, grant_config, get_dcl_macro)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__get_dcl_statement_list"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.29853, "supported_languages": null}, "macro.dbt.default__get_dcl_statement_list": {"name": "default__get_dcl_statement_list", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/apply_grants.sql", "original_file_path": "macros/adapters/apply_grants.sql", "unique_id": "macro.dbt.default__get_dcl_statement_list", "macro_sql": "\n\n{%- macro default__get_dcl_statement_list(relation, grant_config, get_dcl_macro) -%}\n {#\n -- Unpack grant_config into specific privileges and the set of users who need them granted/revoked.\n -- Depending on whether this database supports multiple grantees per statement, pass in the list of\n -- all grantees per privilege, or (if not) template one statement per privilege-grantee pair.\n -- `get_dcl_macro` will be either `get_grant_sql` or `get_revoke_sql`\n #}\n {%- set dcl_statements = [] -%}\n {%- for privilege, grantees in grant_config.items() %}\n {%- if support_multiple_grantees_per_dcl_statement() and grantees -%}\n {%- set dcl = get_dcl_macro(relation, privilege, grantees) -%}\n {%- do dcl_statements.append(dcl) -%}\n {%- else -%}\n {%- for grantee in grantees -%}\n {% set dcl = get_dcl_macro(relation, privilege, [grantee]) %}\n {%- do dcl_statements.append(dcl) -%}\n {% endfor -%}\n {%- endif -%}\n {%- endfor -%}\n {{ return(dcl_statements) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt.support_multiple_grantees_per_dcl_statement"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.29928, "supported_languages": null}, "macro.dbt.call_dcl_statements": {"name": "call_dcl_statements", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/apply_grants.sql", "original_file_path": "macros/adapters/apply_grants.sql", "unique_id": "macro.dbt.call_dcl_statements", "macro_sql": "{% macro call_dcl_statements(dcl_statement_list) %}\n {{ return(adapter.dispatch(\"call_dcl_statements\", \"dbt\")(dcl_statement_list)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__call_dcl_statements"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.299474, "supported_languages": null}, "macro.dbt.default__call_dcl_statements": {"name": "default__call_dcl_statements", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/apply_grants.sql", "original_file_path": "macros/adapters/apply_grants.sql", "unique_id": "macro.dbt.default__call_dcl_statements", "macro_sql": "{% macro default__call_dcl_statements(dcl_statement_list) %}\n {#\n -- By default, supply all grant + revoke statements in a single semicolon-separated block,\n -- so that they're all processed together.\n\n -- Some databases do not support this. Those adapters will need to override this macro\n -- to run each statement individually.\n #}\n {% call statement('grants') %}\n {% for dcl_statement in dcl_statement_list %}\n {{ dcl_statement }};\n {% endfor %}\n {% endcall %}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.statement"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.299723, "supported_languages": null}, "macro.dbt.apply_grants": {"name": "apply_grants", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/apply_grants.sql", "original_file_path": "macros/adapters/apply_grants.sql", "unique_id": "macro.dbt.apply_grants", "macro_sql": "{% macro apply_grants(relation, grant_config, should_revoke) %}\n {{ return(adapter.dispatch(\"apply_grants\", \"dbt\")(relation, grant_config, should_revoke)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__apply_grants"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.299957, "supported_languages": null}, "macro.dbt.default__apply_grants": {"name": "default__apply_grants", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/apply_grants.sql", "original_file_path": "macros/adapters/apply_grants.sql", "unique_id": "macro.dbt.default__apply_grants", "macro_sql": "{% macro default__apply_grants(relation, grant_config, should_revoke=True) %}\n {#-- If grant_config is {} or None, this is a no-op --#}\n {% if grant_config %}\n {% if should_revoke %}\n {#-- We think previous grants may have carried over --#}\n {#-- Show current grants and calculate diffs --#}\n {% set current_grants_table = run_query(get_show_grant_sql(relation)) %}\n {% set current_grants_dict = adapter.standardize_grants_dict(current_grants_table) %}\n {% set needs_granting = diff_of_two_dicts(grant_config, current_grants_dict) %}\n {% set needs_revoking = diff_of_two_dicts(current_grants_dict, grant_config) %}\n {% if not (needs_granting or needs_revoking) %}\n {{ log('On ' ~ relation ~': All grants are in place, no revocation or granting needed.')}}\n {% endif %}\n {% else %}\n {#-- We don't think there's any chance of previous grants having carried over. --#}\n {#-- Jump straight to granting what the user has configured. --#}\n {% set needs_revoking = {} %}\n {% set needs_granting = grant_config %}\n {% endif %}\n {% if needs_granting or needs_revoking %}\n {% set revoke_statement_list = get_dcl_statement_list(relation, needs_revoking, get_revoke_sql) %}\n {% set grant_statement_list = get_dcl_statement_list(relation, needs_granting, get_grant_sql) %}\n {% set dcl_statement_list = revoke_statement_list + grant_statement_list %}\n {% if dcl_statement_list %}\n {{ call_dcl_statements(dcl_statement_list) }}\n {% endif %}\n {% endif %}\n {% endif %}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.run_query", "macro.dbt.get_show_grant_sql", "macro.dbt.get_dcl_statement_list", "macro.dbt.call_dcl_statements"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.301118, "supported_languages": null}, "macro.dbt.get_show_sql": {"name": "get_show_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/show.sql", "original_file_path": "macros/adapters/show.sql", "unique_id": "macro.dbt.get_show_sql", "macro_sql": "{% macro get_show_sql(compiled_code, sql_header, limit) -%}\n {%- if sql_header -%}\n {{ sql_header }}\n {%- endif -%}\n {%- if limit is not none -%}\n {{ get_limit_subquery_sql(compiled_code, limit) }}\n {%- else -%}\n {{ compiled_code }}\n {%- endif -%}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.get_limit_subquery_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.3016498, "supported_languages": null}, "macro.dbt.get_limit_subquery_sql": {"name": "get_limit_subquery_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/show.sql", "original_file_path": "macros/adapters/show.sql", "unique_id": "macro.dbt.get_limit_subquery_sql", "macro_sql": "{% macro get_limit_subquery_sql(sql, limit) %}\n {{ adapter.dispatch('get_limit_subquery_sql', 'dbt')(sql, limit) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__get_limit_subquery_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.301844, "supported_languages": null}, "macro.dbt.default__get_limit_subquery_sql": {"name": "default__get_limit_subquery_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/show.sql", "original_file_path": "macros/adapters/show.sql", "unique_id": "macro.dbt.default__get_limit_subquery_sql", "macro_sql": "{% macro default__get_limit_subquery_sql(sql, limit) %}\n select *\n from (\n {{ sql }}\n ) as model_limit_subq\n limit {{ limit }}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.301985, "supported_languages": null}, "macro.dbt.alter_column_comment": {"name": "alter_column_comment", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/persist_docs.sql", "original_file_path": "macros/adapters/persist_docs.sql", "unique_id": "macro.dbt.alter_column_comment", "macro_sql": "{% macro alter_column_comment(relation, column_dict) -%}\n {{ return(adapter.dispatch('alter_column_comment', 'dbt')(relation, column_dict)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_postgres.postgres__alter_column_comment"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.302659, "supported_languages": null}, "macro.dbt.default__alter_column_comment": {"name": "default__alter_column_comment", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/persist_docs.sql", "original_file_path": "macros/adapters/persist_docs.sql", "unique_id": "macro.dbt.default__alter_column_comment", "macro_sql": "{% macro default__alter_column_comment(relation, column_dict) -%}\n {{ exceptions.raise_not_implemented(\n 'alter_column_comment macro not implemented for adapter '+adapter.type()) }}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.3028321, "supported_languages": null}, "macro.dbt.alter_relation_comment": {"name": "alter_relation_comment", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/persist_docs.sql", "original_file_path": "macros/adapters/persist_docs.sql", "unique_id": "macro.dbt.alter_relation_comment", "macro_sql": "{% macro alter_relation_comment(relation, relation_comment) -%}\n {{ return(adapter.dispatch('alter_relation_comment', 'dbt')(relation, relation_comment)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_postgres.postgres__alter_relation_comment"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.303037, "supported_languages": null}, "macro.dbt.default__alter_relation_comment": {"name": "default__alter_relation_comment", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/persist_docs.sql", "original_file_path": "macros/adapters/persist_docs.sql", "unique_id": "macro.dbt.default__alter_relation_comment", "macro_sql": "{% macro default__alter_relation_comment(relation, relation_comment) -%}\n {{ exceptions.raise_not_implemented(\n 'alter_relation_comment macro not implemented for adapter '+adapter.type()) }}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.303209, "supported_languages": null}, "macro.dbt.persist_docs": {"name": "persist_docs", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/persist_docs.sql", "original_file_path": "macros/adapters/persist_docs.sql", "unique_id": "macro.dbt.persist_docs", "macro_sql": "{% macro persist_docs(relation, model, for_relation=true, for_columns=true) -%}\n {{ return(adapter.dispatch('persist_docs', 'dbt')(relation, model, for_relation, for_columns)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__persist_docs"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.303481, "supported_languages": null}, "macro.dbt.default__persist_docs": {"name": "default__persist_docs", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/persist_docs.sql", "original_file_path": "macros/adapters/persist_docs.sql", "unique_id": "macro.dbt.default__persist_docs", "macro_sql": "{% macro default__persist_docs(relation, model, for_relation, for_columns) -%}\n {% if for_relation and config.persist_relation_docs() and model.description %}\n {% do run_query(alter_relation_comment(relation, model.description)) %}\n {% endif %}\n\n {% if for_columns and config.persist_column_docs() and model.columns %}\n {% do run_query(alter_column_comment(relation, model.columns)) %}\n {% endif %}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.run_query", "macro.dbt.alter_relation_comment", "macro.dbt.alter_column_comment"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.303974, "supported_languages": null}, "macro.dbt.get_catalog_relations": {"name": "get_catalog_relations", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/metadata.sql", "original_file_path": "macros/adapters/metadata.sql", "unique_id": "macro.dbt.get_catalog_relations", "macro_sql": "{% macro get_catalog_relations(information_schema, relations) -%}\n {{ return(adapter.dispatch('get_catalog_relations', 'dbt')(information_schema, relations)) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt_postgres.postgres__get_catalog_relations"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.3069649, "supported_languages": null}, "macro.dbt.default__get_catalog_relations": {"name": "default__get_catalog_relations", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/metadata.sql", "original_file_path": "macros/adapters/metadata.sql", "unique_id": "macro.dbt.default__get_catalog_relations", "macro_sql": "{% macro default__get_catalog_relations(information_schema, relations) -%}\n {% set typename = adapter.type() %}\n {% set msg -%}\n get_catalog_relations not implemented for {{ typename }}\n {%- endset %}\n\n {{ exceptions.raise_compiler_error(msg) }}\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.3072379, "supported_languages": null}, "macro.dbt.get_catalog": {"name": "get_catalog", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/metadata.sql", "original_file_path": "macros/adapters/metadata.sql", "unique_id": "macro.dbt.get_catalog", "macro_sql": "{% macro get_catalog(information_schema, schemas) -%}\n {{ return(adapter.dispatch('get_catalog', 'dbt')(information_schema, schemas)) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt_postgres.postgres__get_catalog"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.307446, "supported_languages": null}, "macro.dbt.default__get_catalog": {"name": "default__get_catalog", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/metadata.sql", "original_file_path": "macros/adapters/metadata.sql", "unique_id": "macro.dbt.default__get_catalog", "macro_sql": "{% macro default__get_catalog(information_schema, schemas) -%}\n\n {% set typename = adapter.type() %}\n {% set msg -%}\n get_catalog not implemented for {{ typename }}\n {%- endset %}\n\n {{ exceptions.raise_compiler_error(msg) }}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.307706, "supported_languages": null}, "macro.dbt.information_schema_name": {"name": "information_schema_name", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/metadata.sql", "original_file_path": "macros/adapters/metadata.sql", "unique_id": "macro.dbt.information_schema_name", "macro_sql": "{% macro information_schema_name(database) %}\n {{ return(adapter.dispatch('information_schema_name', 'dbt')(database)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_postgres.postgres__information_schema_name"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.307894, "supported_languages": null}, "macro.dbt.default__information_schema_name": {"name": "default__information_schema_name", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/metadata.sql", "original_file_path": "macros/adapters/metadata.sql", "unique_id": "macro.dbt.default__information_schema_name", "macro_sql": "{% macro default__information_schema_name(database) -%}\n {%- if database -%}\n {{ database }}.INFORMATION_SCHEMA\n {%- else -%}\n INFORMATION_SCHEMA\n {%- endif -%}\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.30805, "supported_languages": null}, "macro.dbt.list_schemas": {"name": "list_schemas", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/metadata.sql", "original_file_path": "macros/adapters/metadata.sql", "unique_id": "macro.dbt.list_schemas", "macro_sql": "{% macro list_schemas(database) -%}\n {{ return(adapter.dispatch('list_schemas', 'dbt')(database)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_postgres.postgres__list_schemas"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.308235, "supported_languages": null}, "macro.dbt.default__list_schemas": {"name": "default__list_schemas", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/metadata.sql", "original_file_path": "macros/adapters/metadata.sql", "unique_id": "macro.dbt.default__list_schemas", "macro_sql": "{% macro default__list_schemas(database) -%}\n {% set sql %}\n select distinct schema_name\n from {{ information_schema_name(database) }}.SCHEMATA\n where catalog_name ilike '{{ database }}'\n {% endset %}\n {{ return(run_query(sql)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.information_schema_name", "macro.dbt.run_query"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.3085592, "supported_languages": null}, "macro.dbt.check_schema_exists": {"name": "check_schema_exists", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/metadata.sql", "original_file_path": "macros/adapters/metadata.sql", "unique_id": "macro.dbt.check_schema_exists", "macro_sql": "{% macro check_schema_exists(information_schema, schema) -%}\n {{ return(adapter.dispatch('check_schema_exists', 'dbt')(information_schema, schema)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_postgres.postgres__check_schema_exists"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.308768, "supported_languages": null}, "macro.dbt.default__check_schema_exists": {"name": "default__check_schema_exists", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/metadata.sql", "original_file_path": "macros/adapters/metadata.sql", "unique_id": "macro.dbt.default__check_schema_exists", "macro_sql": "{% macro default__check_schema_exists(information_schema, schema) -%}\n {% set sql -%}\n select count(*)\n from {{ information_schema.replace(information_schema_view='SCHEMATA') }}\n where catalog_name='{{ information_schema.database }}'\n and schema_name='{{ schema }}'\n {%- endset %}\n {{ return(run_query(sql)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.replace", "macro.dbt.run_query"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.309076, "supported_languages": null}, "macro.dbt.list_relations_without_caching": {"name": "list_relations_without_caching", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/metadata.sql", "original_file_path": "macros/adapters/metadata.sql", "unique_id": "macro.dbt.list_relations_without_caching", "macro_sql": "{% macro list_relations_without_caching(schema_relation) %}\n {{ return(adapter.dispatch('list_relations_without_caching', 'dbt')(schema_relation)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_postgres.postgres__list_relations_without_caching"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.309265, "supported_languages": null}, "macro.dbt.default__list_relations_without_caching": {"name": "default__list_relations_without_caching", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/metadata.sql", "original_file_path": "macros/adapters/metadata.sql", "unique_id": "macro.dbt.default__list_relations_without_caching", "macro_sql": "{% macro default__list_relations_without_caching(schema_relation) %}\n {{ exceptions.raise_not_implemented(\n 'list_relations_without_caching macro not implemented for adapter '+adapter.type()) }}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.309431, "supported_languages": null}, "macro.dbt.get_relations": {"name": "get_relations", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/metadata.sql", "original_file_path": "macros/adapters/metadata.sql", "unique_id": "macro.dbt.get_relations", "macro_sql": "{% macro get_relations() %}\n {{ return(adapter.dispatch('get_relations', 'dbt')()) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_postgres.postgres__get_relations"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.3096, "supported_languages": null}, "macro.dbt.default__get_relations": {"name": "default__get_relations", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/metadata.sql", "original_file_path": "macros/adapters/metadata.sql", "unique_id": "macro.dbt.default__get_relations", "macro_sql": "{% macro default__get_relations() %}\n {{ exceptions.raise_not_implemented(\n 'get_relations macro not implemented for adapter '+adapter.type()) }}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.309757, "supported_languages": null}, "macro.dbt.get_relation_last_modified": {"name": "get_relation_last_modified", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/metadata.sql", "original_file_path": "macros/adapters/metadata.sql", "unique_id": "macro.dbt.get_relation_last_modified", "macro_sql": "{% macro get_relation_last_modified(information_schema, relations) %}\n {{ return(adapter.dispatch('get_relation_last_modified', 'dbt')(information_schema, relations)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__get_relation_last_modified"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.309973, "supported_languages": null}, "macro.dbt.default__get_relation_last_modified": {"name": "default__get_relation_last_modified", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/metadata.sql", "original_file_path": "macros/adapters/metadata.sql", "unique_id": "macro.dbt.default__get_relation_last_modified", "macro_sql": "{% macro default__get_relation_last_modified(information_schema, relations) %}\n {{ exceptions.raise_not_implemented(\n 'get_relation_last_modified macro not implemented for adapter ' + adapter.type()) }}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.31015, "supported_languages": null}, "macro.dbt.get_columns_in_relation": {"name": "get_columns_in_relation", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/columns.sql", "original_file_path": "macros/adapters/columns.sql", "unique_id": "macro.dbt.get_columns_in_relation", "macro_sql": "{% macro get_columns_in_relation(relation) -%}\n {{ return(adapter.dispatch('get_columns_in_relation', 'dbt')(relation)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_postgres.postgres__get_columns_in_relation"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.312441, "supported_languages": null}, "macro.dbt.default__get_columns_in_relation": {"name": "default__get_columns_in_relation", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/columns.sql", "original_file_path": "macros/adapters/columns.sql", "unique_id": "macro.dbt.default__get_columns_in_relation", "macro_sql": "{% macro default__get_columns_in_relation(relation) -%}\n {{ exceptions.raise_not_implemented(\n 'get_columns_in_relation macro not implemented for adapter '+adapter.type()) }}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.312608, "supported_languages": null}, "macro.dbt.sql_convert_columns_in_relation": {"name": "sql_convert_columns_in_relation", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/columns.sql", "original_file_path": "macros/adapters/columns.sql", "unique_id": "macro.dbt.sql_convert_columns_in_relation", "macro_sql": "{% macro sql_convert_columns_in_relation(table) -%}\n {% set columns = [] %}\n {% for row in table %}\n {% do columns.append(api.Column(*row)) %}\n {% endfor %}\n {{ return(columns) }}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.312938, "supported_languages": null}, "macro.dbt.get_empty_subquery_sql": {"name": "get_empty_subquery_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/columns.sql", "original_file_path": "macros/adapters/columns.sql", "unique_id": "macro.dbt.get_empty_subquery_sql", "macro_sql": "{% macro get_empty_subquery_sql(select_sql, select_sql_header=none) -%}\n {{ return(adapter.dispatch('get_empty_subquery_sql', 'dbt')(select_sql, select_sql_header)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__get_empty_subquery_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.3131661, "supported_languages": null}, "macro.dbt.default__get_empty_subquery_sql": {"name": "default__get_empty_subquery_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/columns.sql", "original_file_path": "macros/adapters/columns.sql", "unique_id": "macro.dbt.default__get_empty_subquery_sql", "macro_sql": "{% macro default__get_empty_subquery_sql(select_sql, select_sql_header=none) %}\n {%- if select_sql_header is not none -%}\n {{ select_sql_header }}\n {%- endif -%}\n select * from (\n {{ select_sql }}\n ) as __dbt_sbq\n where false\n limit 0\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.313382, "supported_languages": null}, "macro.dbt.get_empty_schema_sql": {"name": "get_empty_schema_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/columns.sql", "original_file_path": "macros/adapters/columns.sql", "unique_id": "macro.dbt.get_empty_schema_sql", "macro_sql": "{% macro get_empty_schema_sql(columns) -%}\n {{ return(adapter.dispatch('get_empty_schema_sql', 'dbt')(columns)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__get_empty_schema_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.3135731, "supported_languages": null}, "macro.dbt.default__get_empty_schema_sql": {"name": "default__get_empty_schema_sql", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/columns.sql", "original_file_path": "macros/adapters/columns.sql", "unique_id": "macro.dbt.default__get_empty_schema_sql", "macro_sql": "{% macro default__get_empty_schema_sql(columns) %}\n {%- set col_err = [] -%}\n {%- set col_naked_numeric = [] -%}\n select\n {% for i in columns %}\n {%- set col = columns[i] -%}\n {%- if col['data_type'] is not defined -%}\n {%- do col_err.append(col['name']) -%}\n {#-- If this column's type is just 'numeric' then it is missing precision/scale, raise a warning --#}\n {%- elif col['data_type'].strip().lower() in ('numeric', 'decimal', 'number') -%}\n {%- do col_naked_numeric.append(col['name']) -%}\n {%- endif -%}\n {% set col_name = adapter.quote(col['name']) if col.get('quote') else col['name'] %}\n cast(null as {{ col['data_type'] }}) as {{ col_name }}{{ \", \" if not loop.last }}\n {%- endfor -%}\n {%- if (col_err | length) > 0 -%}\n {{ exceptions.column_type_missing(column_names=col_err) }}\n {%- elif (col_naked_numeric | length) > 0 -%}\n {{ exceptions.warn(\"Detected columns with numeric type and unspecified precision/scale, this can lead to unintended rounding: \" ~ col_naked_numeric ~ \"`\") }}\n {%- endif -%}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.314796, "supported_languages": null}, "macro.dbt.get_column_schema_from_query": {"name": "get_column_schema_from_query", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/columns.sql", "original_file_path": "macros/adapters/columns.sql", "unique_id": "macro.dbt.get_column_schema_from_query", "macro_sql": "{% macro get_column_schema_from_query(select_sql, select_sql_header=none) -%}\n {% set columns = [] %}\n {# -- Using an 'empty subquery' here to get the same schema as the given select_sql statement, without necessitating a data scan.#}\n {% set sql = get_empty_subquery_sql(select_sql, select_sql_header) %}\n {% set column_schema = adapter.get_column_schema_from_query(sql) %}\n {{ return(column_schema) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.get_empty_subquery_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.315148, "supported_languages": null}, "macro.dbt.get_columns_in_query": {"name": "get_columns_in_query", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/columns.sql", "original_file_path": "macros/adapters/columns.sql", "unique_id": "macro.dbt.get_columns_in_query", "macro_sql": "{% macro get_columns_in_query(select_sql) -%}\n {{ return(adapter.dispatch('get_columns_in_query', 'dbt')(select_sql)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__get_columns_in_query"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.315337, "supported_languages": null}, "macro.dbt.default__get_columns_in_query": {"name": "default__get_columns_in_query", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/columns.sql", "original_file_path": "macros/adapters/columns.sql", "unique_id": "macro.dbt.default__get_columns_in_query", "macro_sql": "{% macro default__get_columns_in_query(select_sql) %}\n {% call statement('get_columns_in_query', fetch_result=True, auto_begin=False) -%}\n {{ get_empty_subquery_sql(select_sql) }}\n {% endcall %}\n {{ return(load_result('get_columns_in_query').table.columns | map(attribute='name') | list) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.statement", "macro.dbt.get_empty_subquery_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.315698, "supported_languages": null}, "macro.dbt.alter_column_type": {"name": "alter_column_type", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/columns.sql", "original_file_path": "macros/adapters/columns.sql", "unique_id": "macro.dbt.alter_column_type", "macro_sql": "{% macro alter_column_type(relation, column_name, new_column_type) -%}\n {{ return(adapter.dispatch('alter_column_type', 'dbt')(relation, column_name, new_column_type)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__alter_column_type"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.3159301, "supported_languages": null}, "macro.dbt.default__alter_column_type": {"name": "default__alter_column_type", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/columns.sql", "original_file_path": "macros/adapters/columns.sql", "unique_id": "macro.dbt.default__alter_column_type", "macro_sql": "{% macro default__alter_column_type(relation, column_name, new_column_type) -%}\n {#\n 1. Create a new column (w/ temp name and correct type)\n 2. Copy data over to it\n 3. Drop the existing column (cascade!)\n 4. Rename the new column to existing column\n #}\n {%- set tmp_column = column_name + \"__dbt_alter\" -%}\n\n {% call statement('alter_column_type') %}\n alter table {{ relation }} add column {{ adapter.quote(tmp_column) }} {{ new_column_type }};\n update {{ relation }} set {{ adapter.quote(tmp_column) }} = {{ adapter.quote(column_name) }};\n alter table {{ relation }} drop column {{ adapter.quote(column_name) }} cascade;\n alter table {{ relation }} rename column {{ adapter.quote(tmp_column) }} to {{ adapter.quote(column_name) }}\n {% endcall %}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.statement"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.316534, "supported_languages": null}, "macro.dbt.alter_relation_add_remove_columns": {"name": "alter_relation_add_remove_columns", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/columns.sql", "original_file_path": "macros/adapters/columns.sql", "unique_id": "macro.dbt.alter_relation_add_remove_columns", "macro_sql": "{% macro alter_relation_add_remove_columns(relation, add_columns = none, remove_columns = none) -%}\n {{ return(adapter.dispatch('alter_relation_add_remove_columns', 'dbt')(relation, add_columns, remove_columns)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__alter_relation_add_remove_columns"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.316797, "supported_languages": null}, "macro.dbt.default__alter_relation_add_remove_columns": {"name": "default__alter_relation_add_remove_columns", "resource_type": "macro", "package_name": "dbt", "path": "macros/adapters/columns.sql", "original_file_path": "macros/adapters/columns.sql", "unique_id": "macro.dbt.default__alter_relation_add_remove_columns", "macro_sql": "{% macro default__alter_relation_add_remove_columns(relation, add_columns, remove_columns) %}\n\n {% if add_columns is none %}\n {% set add_columns = [] %}\n {% endif %}\n {% if remove_columns is none %}\n {% set remove_columns = [] %}\n {% endif %}\n\n {% set sql -%}\n\n alter {{ relation.type }} {{ relation }}\n\n {% for column in add_columns %}\n add column {{ column.name }} {{ column.data_type }}{{ ',' if not loop.last }}\n {% endfor %}{{ ',' if add_columns and remove_columns }}\n\n {% for column in remove_columns %}\n drop column {{ column.name }}{{ ',' if not loop.last }}\n {% endfor %}\n\n {%- endset -%}\n\n {% do run_query(sql) %}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.run_query"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.317593, "supported_languages": null}, "macro.dbt.resolve_model_name": {"name": "resolve_model_name", "resource_type": "macro", "package_name": "dbt", "path": "macros/python_model/python.sql", "original_file_path": "macros/python_model/python.sql", "unique_id": "macro.dbt.resolve_model_name", "macro_sql": "{% macro resolve_model_name(input_model_name) %}\n {{ return(adapter.dispatch('resolve_model_name', 'dbt')(input_model_name)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.default__resolve_model_name"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.319248, "supported_languages": null}, "macro.dbt.default__resolve_model_name": {"name": "default__resolve_model_name", "resource_type": "macro", "package_name": "dbt", "path": "macros/python_model/python.sql", "original_file_path": "macros/python_model/python.sql", "unique_id": "macro.dbt.default__resolve_model_name", "macro_sql": "\n\n{%- macro default__resolve_model_name(input_model_name) -%}\n {{ input_model_name | string | replace('\"', '\\\"') }}\n{%- endmacro -%}\n\n", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.319406, "supported_languages": null}, "macro.dbt.build_ref_function": {"name": "build_ref_function", "resource_type": "macro", "package_name": "dbt", "path": "macros/python_model/python.sql", "original_file_path": "macros/python_model/python.sql", "unique_id": "macro.dbt.build_ref_function", "macro_sql": "{% macro build_ref_function(model) %}\n\n {%- set ref_dict = {} -%}\n {%- for _ref in model.refs -%}\n {% set _ref_args = [_ref.get('package'), _ref['name']] if _ref.get('package') else [_ref['name'],] %}\n {%- set resolved = ref(*_ref_args, v=_ref.get('version')) -%}\n {%- if _ref.get('version') -%}\n {% do _ref_args.extend([\"v\" ~ _ref['version']]) %}\n {%- endif -%}\n {%- do ref_dict.update({_ref_args | join('.'): resolve_model_name(resolved)}) -%}\n {%- endfor -%}\n\ndef ref(*args, **kwargs):\n refs = {{ ref_dict | tojson }}\n key = '.'.join(args)\n version = kwargs.get(\"v\") or kwargs.get(\"version\")\n if version:\n key += f\".v{version}\"\n dbt_load_df_function = kwargs.get(\"dbt_load_df_function\")\n return dbt_load_df_function(refs[key])\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.resolve_model_name"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.3202329, "supported_languages": null}, "macro.dbt.build_source_function": {"name": "build_source_function", "resource_type": "macro", "package_name": "dbt", "path": "macros/python_model/python.sql", "original_file_path": "macros/python_model/python.sql", "unique_id": "macro.dbt.build_source_function", "macro_sql": "{% macro build_source_function(model) %}\n\n {%- set source_dict = {} -%}\n {%- for _source in model.sources -%}\n {%- set resolved = source(*_source) -%}\n {%- do source_dict.update({_source | join('.'): resolve_model_name(resolved)}) -%}\n {%- endfor -%}\n\ndef source(*args, dbt_load_df_function):\n sources = {{ source_dict | tojson }}\n key = '.'.join(args)\n return dbt_load_df_function(sources[key])\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.resolve_model_name"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.3206458, "supported_languages": null}, "macro.dbt.build_config_dict": {"name": "build_config_dict", "resource_type": "macro", "package_name": "dbt", "path": "macros/python_model/python.sql", "original_file_path": "macros/python_model/python.sql", "unique_id": "macro.dbt.build_config_dict", "macro_sql": "{% macro build_config_dict(model) %}\n {%- set config_dict = {} -%}\n {% set config_dbt_used = zip(model.config.config_keys_used, model.config.config_keys_defaults) | list %}\n {%- for key, default in config_dbt_used -%}\n {# weird type testing with enum, would be much easier to write this logic in Python! #}\n {%- if key == \"language\" -%}\n {%- set value = \"python\" -%}\n {%- endif -%}\n {%- set value = model.config.get(key, default) -%}\n {%- do config_dict.update({key: value}) -%}\n {%- endfor -%}\nconfig_dict = {{ config_dict }}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.321236, "supported_languages": null}, "macro.dbt.py_script_postfix": {"name": "py_script_postfix", "resource_type": "macro", "package_name": "dbt", "path": "macros/python_model/python.sql", "original_file_path": "macros/python_model/python.sql", "unique_id": "macro.dbt.py_script_postfix", "macro_sql": "{% macro py_script_postfix(model) %}\n# This part is user provided model code\n# you will need to copy the next section to run the code\n# COMMAND ----------\n# this part is dbt logic for get ref work, do not modify\n\n{{ build_ref_function(model ) }}\n{{ build_source_function(model ) }}\n{{ build_config_dict(model) }}\n\nclass config:\n def __init__(self, *args, **kwargs):\n pass\n\n @staticmethod\n def get(key, default=None):\n return config_dict.get(key, default)\n\nclass this:\n \"\"\"dbt.this() or dbt.this.identifier\"\"\"\n database = \"{{ this.database }}\"\n schema = \"{{ this.schema }}\"\n identifier = \"{{ this.identifier }}\"\n {% set this_relation_name = resolve_model_name(this) %}\n def __repr__(self):\n return '{{ this_relation_name }}'\n\n\nclass dbtObj:\n def __init__(self, load_df_function) -> None:\n self.source = lambda *args: source(*args, dbt_load_df_function=load_df_function)\n self.ref = lambda *args, **kwargs: ref(*args, **kwargs, dbt_load_df_function=load_df_function)\n self.config = config\n self.this = this()\n self.is_incremental = {{ is_incremental() }}\n\n# COMMAND ----------\n{{py_script_comment()}}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.build_ref_function", "macro.dbt.build_source_function", "macro.dbt.build_config_dict", "macro.dbt.resolve_model_name", "macro.dbt.is_incremental", "macro.dbt.py_script_comment"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.3217149, "supported_languages": null}, "macro.dbt.py_script_comment": {"name": "py_script_comment", "resource_type": "macro", "package_name": "dbt", "path": "macros/python_model/python.sql", "original_file_path": "macros/python_model/python.sql", "unique_id": "macro.dbt.py_script_comment", "macro_sql": "{%macro py_script_comment()%}\n{%endmacro%}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.321789, "supported_languages": null}, "macro.dbt.test_unique": {"name": "test_unique", "resource_type": "macro", "package_name": "dbt", "path": "tests/generic/builtin.sql", "original_file_path": "tests/generic/builtin.sql", "unique_id": "macro.dbt.test_unique", "macro_sql": "{% test unique(model, column_name) %}\n {% set macro = adapter.dispatch('test_unique', 'dbt') %}\n {{ macro(model, column_name) }}\n{% endtest %}", "depends_on": {"macros": ["macro.dbt.default__test_unique"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.322295, "supported_languages": null}, "macro.dbt.test_not_null": {"name": "test_not_null", "resource_type": "macro", "package_name": "dbt", "path": "tests/generic/builtin.sql", "original_file_path": "tests/generic/builtin.sql", "unique_id": "macro.dbt.test_not_null", "macro_sql": "{% test not_null(model, column_name) %}\n {% set macro = adapter.dispatch('test_not_null', 'dbt') %}\n {{ macro(model, column_name) }}\n{% endtest %}", "depends_on": {"macros": ["macro.dbt.default__test_not_null"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.322537, "supported_languages": null}, "macro.dbt.test_accepted_values": {"name": "test_accepted_values", "resource_type": "macro", "package_name": "dbt", "path": "tests/generic/builtin.sql", "original_file_path": "tests/generic/builtin.sql", "unique_id": "macro.dbt.test_accepted_values", "macro_sql": "{% test accepted_values(model, column_name, values, quote=True) %}\n {% set macro = adapter.dispatch('test_accepted_values', 'dbt') %}\n {{ macro(model, column_name, values, quote) }}\n{% endtest %}", "depends_on": {"macros": ["macro.dbt.default__test_accepted_values"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.322826, "supported_languages": null}, "macro.dbt.test_relationships": {"name": "test_relationships", "resource_type": "macro", "package_name": "dbt", "path": "tests/generic/builtin.sql", "original_file_path": "tests/generic/builtin.sql", "unique_id": "macro.dbt.test_relationships", "macro_sql": "{% test relationships(model, column_name, to, field) %}\n {% set macro = adapter.dispatch('test_relationships', 'dbt') %}\n {{ macro(model, column_name, to, field) }}\n{% endtest %}", "depends_on": {"macros": ["macro.dbt.default__test_relationships"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.323103, "supported_languages": null}, "macro.dbt_utils.get_url_host": {"name": "get_url_host", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/web/get_url_host.sql", "original_file_path": "macros/web/get_url_host.sql", "unique_id": "macro.dbt_utils.get_url_host", "macro_sql": "{% macro get_url_host(field) -%}\n {{ return(adapter.dispatch('get_url_host', 'dbt_utils')(field)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.default__get_url_host"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.3234591, "supported_languages": null}, "macro.dbt_utils.default__get_url_host": {"name": "default__get_url_host", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/web/get_url_host.sql", "original_file_path": "macros/web/get_url_host.sql", "unique_id": "macro.dbt_utils.default__get_url_host", "macro_sql": "{% macro default__get_url_host(field) -%}\n\n{%- set parsed =\n dbt.split_part(\n dbt.split_part(\n dbt.replace(\n dbt.replace(\n dbt.replace(field, \"'android-app://'\", \"''\"\n ), \"'http://'\", \"''\"\n ), \"'https://'\", \"''\"\n ), \"'/'\", 1\n ), \"'?'\", 1\n )\n\n-%}\n\n\n {{ dbt.safe_cast(\n parsed,\n dbt.type_string()\n )}}\n\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt.split_part", "macro.dbt.replace", "macro.dbt.safe_cast", "macro.dbt.type_string"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.3239481, "supported_languages": null}, "macro.dbt_utils.get_url_path": {"name": "get_url_path", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/web/get_url_path.sql", "original_file_path": "macros/web/get_url_path.sql", "unique_id": "macro.dbt_utils.get_url_path", "macro_sql": "{% macro get_url_path(field) -%}\n {{ return(adapter.dispatch('get_url_path', 'dbt_utils')(field)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.default__get_url_path"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.32443, "supported_languages": null}, "macro.dbt_utils.default__get_url_path": {"name": "default__get_url_path", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/web/get_url_path.sql", "original_file_path": "macros/web/get_url_path.sql", "unique_id": "macro.dbt_utils.default__get_url_path", "macro_sql": "{% macro default__get_url_path(field) -%}\n\n {%- set stripped_url =\n dbt.replace(\n dbt.replace(field, \"'http://'\", \"''\"), \"'https://'\", \"''\")\n -%}\n\n {%- set first_slash_pos -%}\n coalesce(\n nullif({{ dbt.position(\"'/'\", stripped_url) }}, 0),\n {{ dbt.position(\"'?'\", stripped_url) }} - 1\n )\n {%- endset -%}\n\n {%- set parsed_path =\n dbt.split_part(\n dbt.right(\n stripped_url,\n dbt.length(stripped_url) ~ \"-\" ~ first_slash_pos\n ),\n \"'?'\", 1\n )\n -%}\n\n {{ dbt.safe_cast(\n parsed_path,\n dbt.type_string()\n )}}\n\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt.replace", "macro.dbt.position", "macro.dbt.split_part", "macro.dbt.right", "macro.dbt.length", "macro.dbt.safe_cast", "macro.dbt.type_string"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.325173, "supported_languages": null}, "macro.dbt_utils.get_url_parameter": {"name": "get_url_parameter", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/web/get_url_parameter.sql", "original_file_path": "macros/web/get_url_parameter.sql", "unique_id": "macro.dbt_utils.get_url_parameter", "macro_sql": "{% macro get_url_parameter(field, url_parameter) -%}\n {{ return(adapter.dispatch('get_url_parameter', 'dbt_utils')(field, url_parameter)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.default__get_url_parameter"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.3254888, "supported_languages": null}, "macro.dbt_utils.default__get_url_parameter": {"name": "default__get_url_parameter", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/web/get_url_parameter.sql", "original_file_path": "macros/web/get_url_parameter.sql", "unique_id": "macro.dbt_utils.default__get_url_parameter", "macro_sql": "{% macro default__get_url_parameter(field, url_parameter) -%}\n\n{%- set formatted_url_parameter = \"'\" + url_parameter + \"='\" -%}\n\n{%- set split = dbt.split_part(dbt.split_part(field, formatted_url_parameter, 2), \"'&'\", 1) -%}\n\nnullif({{ split }},'')\n\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt.split_part"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.325811, "supported_languages": null}, "macro.dbt_utils.test_fewer_rows_than": {"name": "test_fewer_rows_than", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/generic_tests/fewer_rows_than.sql", "original_file_path": "macros/generic_tests/fewer_rows_than.sql", "unique_id": "macro.dbt_utils.test_fewer_rows_than", "macro_sql": "{% test fewer_rows_than(model, compare_model, group_by_columns = []) %}\n {{ return(adapter.dispatch('test_fewer_rows_than', 'dbt_utils')(model, compare_model, group_by_columns)) }}\n{% endtest %}", "depends_on": {"macros": ["macro.dbt_utils.default__test_fewer_rows_than"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.3269, "supported_languages": null}, "macro.dbt_utils.default__test_fewer_rows_than": {"name": "default__test_fewer_rows_than", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/generic_tests/fewer_rows_than.sql", "original_file_path": "macros/generic_tests/fewer_rows_than.sql", "unique_id": "macro.dbt_utils.default__test_fewer_rows_than", "macro_sql": "{% macro default__test_fewer_rows_than(model, compare_model, group_by_columns) %}\n\n{{ config(fail_calc = 'sum(coalesce(row_count_delta, 0))') }}\n\n{% if group_by_columns|length() > 0 %}\n {% set select_gb_cols = group_by_columns|join(' ,') + ', ' %}\n {% set join_gb_cols %}\n {% for c in group_by_columns %}\n and a.{{c}} = b.{{c}}\n {% endfor %}\n {% endset %}\n {% set groupby_gb_cols = 'group by ' + group_by_columns|join(',') %}\n{% endif %}\n\n{#-- We must add a fake join key in case additional grouping variables are not provided --#}\n{#-- Redshift does not allow for dynamically created join conditions (e.g. full join on 1 = 1 --#}\n{#-- The same logic is used in equal_rowcount. In case of changes, maintain consistent logic --#}\n{% set group_by_columns = ['id_dbtutils_test_fewer_rows_than'] + group_by_columns %}\n{% set groupby_gb_cols = 'group by ' + group_by_columns|join(',') %}\n\n\nwith a as (\n\n select \n {{select_gb_cols}}\n 1 as id_dbtutils_test_fewer_rows_than,\n count(*) as count_our_model \n from {{ model }}\n {{ groupby_gb_cols }}\n\n),\nb as (\n\n select \n {{select_gb_cols}}\n 1 as id_dbtutils_test_fewer_rows_than,\n count(*) as count_comparison_model \n from {{ compare_model }}\n {{ groupby_gb_cols }}\n\n),\ncounts as (\n\n select\n\n {% for c in group_by_columns -%}\n a.{{c}} as {{c}}_a,\n b.{{c}} as {{c}}_b,\n {% endfor %}\n\n count_our_model,\n count_comparison_model\n from a\n full join b on \n a.id_dbtutils_test_fewer_rows_than = b.id_dbtutils_test_fewer_rows_than\n {{ join_gb_cols }}\n\n),\nfinal as (\n\n select *,\n case\n -- fail the test if we have more rows than the reference model and return the row count delta\n when count_our_model > count_comparison_model then (count_our_model - count_comparison_model)\n -- fail the test if they are the same number\n when count_our_model = count_comparison_model then 1\n -- pass the test if the delta is positive (i.e. return the number 0)\n else 0\n end as row_count_delta\n from counts\n\n)\n\nselect * from final\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.327942, "supported_languages": null}, "macro.dbt_utils.test_equal_rowcount": {"name": "test_equal_rowcount", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/generic_tests/equal_rowcount.sql", "original_file_path": "macros/generic_tests/equal_rowcount.sql", "unique_id": "macro.dbt_utils.test_equal_rowcount", "macro_sql": "{% test equal_rowcount(model, compare_model, group_by_columns = []) %}\n {{ return(adapter.dispatch('test_equal_rowcount', 'dbt_utils')(model, compare_model, group_by_columns)) }}\n{% endtest %}", "depends_on": {"macros": ["macro.dbt_utils.default__test_equal_rowcount"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.328811, "supported_languages": null}, "macro.dbt_utils.default__test_equal_rowcount": {"name": "default__test_equal_rowcount", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/generic_tests/equal_rowcount.sql", "original_file_path": "macros/generic_tests/equal_rowcount.sql", "unique_id": "macro.dbt_utils.default__test_equal_rowcount", "macro_sql": "{% macro default__test_equal_rowcount(model, compare_model, group_by_columns) %}\n\n{#-- Needs to be set at parse time, before we return '' below --#}\n{{ config(fail_calc = 'sum(coalesce(diff_count, 0))') }}\n\n{#-- Prevent querying of db in parsing mode. This works because this macro does not create any new refs. #}\n{%- if not execute -%}\n {{ return('') }}\n{% endif %}\n\n{% if group_by_columns|length() > 0 %}\n {% set select_gb_cols = group_by_columns|join(', ') + ', ' %}\n {% set join_gb_cols %}\n {% for c in group_by_columns %}\n and a.{{c}} = b.{{c}}\n {% endfor %}\n {% endset %}\n {% set groupby_gb_cols = 'group by ' + group_by_columns|join(',') %}\n{% endif %}\n\n{#-- We must add a fake join key in case additional grouping variables are not provided --#}\n{#-- Redshift does not allow for dynamically created join conditions (e.g. full join on 1 = 1 --#}\n{#-- The same logic is used in fewer_rows_than. In case of changes, maintain consistent logic --#}\n{% set group_by_columns = ['id_dbtutils_test_equal_rowcount'] + group_by_columns %}\n{% set groupby_gb_cols = 'group by ' + group_by_columns|join(',') %}\n\nwith a as (\n\n select \n {{select_gb_cols}}\n 1 as id_dbtutils_test_equal_rowcount,\n count(*) as count_a \n from {{ model }}\n {{groupby_gb_cols}}\n\n\n),\nb as (\n\n select \n {{select_gb_cols}}\n 1 as id_dbtutils_test_equal_rowcount,\n count(*) as count_b \n from {{ compare_model }}\n {{groupby_gb_cols}}\n\n),\nfinal as (\n\n select\n \n {% for c in group_by_columns -%}\n a.{{c}} as {{c}}_a,\n b.{{c}} as {{c}}_b,\n {% endfor %}\n\n count_a,\n count_b,\n abs(count_a - count_b) as diff_count\n\n from a\n full join b\n on\n a.id_dbtutils_test_equal_rowcount = b.id_dbtutils_test_equal_rowcount\n {{join_gb_cols}}\n\n\n)\n\nselect * from final\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.329916, "supported_languages": null}, "macro.dbt_utils.test_relationships_where": {"name": "test_relationships_where", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/generic_tests/relationships_where.sql", "original_file_path": "macros/generic_tests/relationships_where.sql", "unique_id": "macro.dbt_utils.test_relationships_where", "macro_sql": "{% test relationships_where(model, column_name, to, field, from_condition=\"1=1\", to_condition=\"1=1\") %}\n {{ return(adapter.dispatch('test_relationships_where', 'dbt_utils')(model, column_name, to, field, from_condition, to_condition)) }}\n{% endtest %}", "depends_on": {"macros": ["macro.dbt_utils.default__test_relationships_where"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.3306298, "supported_languages": null}, "macro.dbt_utils.default__test_relationships_where": {"name": "default__test_relationships_where", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/generic_tests/relationships_where.sql", "original_file_path": "macros/generic_tests/relationships_where.sql", "unique_id": "macro.dbt_utils.default__test_relationships_where", "macro_sql": "{% macro default__test_relationships_where(model, column_name, to, field, from_condition=\"1=1\", to_condition=\"1=1\") %}\n\n{# T-SQL has no boolean data type so we use 1=1 which returns TRUE #}\n{# ref https://stackoverflow.com/a/7170753/3842610 #}\n\nwith left_table as (\n\n select\n {{column_name}} as id\n\n from {{model}}\n\n where {{column_name}} is not null\n and {{from_condition}}\n\n),\n\nright_table as (\n\n select\n {{field}} as id\n\n from {{to}}\n\n where {{field}} is not null\n and {{to_condition}}\n\n),\n\nexceptions as (\n\n select\n left_table.id,\n right_table.id as right_id\n\n from left_table\n\n left join right_table\n on left_table.id = right_table.id\n\n where right_table.id is null\n\n)\n\nselect * from exceptions\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.331012, "supported_languages": null}, "macro.dbt_utils.test_recency": {"name": "test_recency", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/generic_tests/recency.sql", "original_file_path": "macros/generic_tests/recency.sql", "unique_id": "macro.dbt_utils.test_recency", "macro_sql": "{% test recency(model, field, datepart, interval, ignore_time_component=False, group_by_columns = []) %}\n {{ return(adapter.dispatch('test_recency', 'dbt_utils')(model, field, datepart, interval, ignore_time_component, group_by_columns)) }}\n{% endtest %}", "depends_on": {"macros": ["macro.dbt_utils.default__test_recency"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.331795, "supported_languages": null}, "macro.dbt_utils.default__test_recency": {"name": "default__test_recency", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/generic_tests/recency.sql", "original_file_path": "macros/generic_tests/recency.sql", "unique_id": "macro.dbt_utils.default__test_recency", "macro_sql": "{% macro default__test_recency(model, field, datepart, interval, ignore_time_component, group_by_columns) %}\n\n{% set threshold = 'cast(' ~ dbt.dateadd(datepart, interval * -1, dbt.current_timestamp()) ~ ' as ' ~ ('date' if ignore_time_component else dbt.type_timestamp()) ~ ')' %}\n\n{% if group_by_columns|length() > 0 %}\n {% set select_gb_cols = group_by_columns|join(' ,') + ', ' %}\n {% set groupby_gb_cols = 'group by ' + group_by_columns|join(',') %}\n{% endif %}\n\n\nwith recency as (\n\n select \n\n {{ select_gb_cols }}\n {% if ignore_time_component %}\n cast(max({{ field }}) as date) as most_recent\n {%- else %}\n max({{ field }}) as most_recent\n {%- endif %}\n\n from {{ model }}\n\n {{ groupby_gb_cols }}\n\n)\n\nselect\n\n {{ select_gb_cols }}\n most_recent,\n {{ threshold }} as threshold\n\nfrom recency\nwhere most_recent < {{ threshold }}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.dateadd", "macro.dbt.current_timestamp", "macro.dbt.type_timestamp"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.3326578, "supported_languages": null}, "macro.dbt_utils.test_not_constant": {"name": "test_not_constant", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/generic_tests/not_constant.sql", "original_file_path": "macros/generic_tests/not_constant.sql", "unique_id": "macro.dbt_utils.test_not_constant", "macro_sql": "{% test not_constant(model, column_name, group_by_columns = []) %}\n {{ return(adapter.dispatch('test_not_constant', 'dbt_utils')(model, column_name, group_by_columns)) }}\n{% endtest %}", "depends_on": {"macros": ["macro.dbt_utils.default__test_not_constant"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.3331141, "supported_languages": null}, "macro.dbt_utils.default__test_not_constant": {"name": "default__test_not_constant", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/generic_tests/not_constant.sql", "original_file_path": "macros/generic_tests/not_constant.sql", "unique_id": "macro.dbt_utils.default__test_not_constant", "macro_sql": "{% macro default__test_not_constant(model, column_name, group_by_columns) %}\n\n{% if group_by_columns|length() > 0 %}\n {% set select_gb_cols = group_by_columns|join(' ,') + ', ' %}\n {% set groupby_gb_cols = 'group by ' + group_by_columns|join(',') %}\n{% endif %}\n\n\nselect\n {# In TSQL, subquery aggregate columns need aliases #}\n {# thus: a filler col name, 'filler_column' #}\n {{select_gb_cols}}\n count(distinct {{ column_name }}) as filler_column\n\nfrom {{ model }}\n\n {{groupby_gb_cols}}\n\nhaving count(distinct {{ column_name }}) = 1\n\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.3335838, "supported_languages": null}, "macro.dbt_utils.test_accepted_range": {"name": "test_accepted_range", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/generic_tests/accepted_range.sql", "original_file_path": "macros/generic_tests/accepted_range.sql", "unique_id": "macro.dbt_utils.test_accepted_range", "macro_sql": "{% test accepted_range(model, column_name, min_value=none, max_value=none, inclusive=true) %}\n {{ return(adapter.dispatch('test_accepted_range', 'dbt_utils')(model, column_name, min_value, max_value, inclusive)) }}\n{% endtest %}", "depends_on": {"macros": ["macro.dbt_utils.default__test_accepted_range"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.3341959, "supported_languages": null}, "macro.dbt_utils.default__test_accepted_range": {"name": "default__test_accepted_range", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/generic_tests/accepted_range.sql", "original_file_path": "macros/generic_tests/accepted_range.sql", "unique_id": "macro.dbt_utils.default__test_accepted_range", "macro_sql": "{% macro default__test_accepted_range(model, column_name, min_value=none, max_value=none, inclusive=true) %}\n\nwith meet_condition as(\n select *\n from {{ model }}\n),\n\nvalidation_errors as (\n select *\n from meet_condition\n where\n -- never true, defaults to an empty result set. Exists to ensure any combo of the `or` clauses below succeeds\n 1 = 2\n\n {%- if min_value is not none %}\n -- records with a value >= min_value are permitted. The `not` flips this to find records that don't meet the rule.\n or not {{ column_name }} > {{- \"=\" if inclusive }} {{ min_value }}\n {%- endif %}\n\n {%- if max_value is not none %}\n -- records with a value <= max_value are permitted. The `not` flips this to find records that don't meet the rule.\n or not {{ column_name }} < {{- \"=\" if inclusive }} {{ max_value }}\n {%- endif %}\n)\n\nselect *\nfrom validation_errors\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.3346791, "supported_languages": null}, "macro.dbt_utils.test_not_accepted_values": {"name": "test_not_accepted_values", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/generic_tests/not_accepted_values.sql", "original_file_path": "macros/generic_tests/not_accepted_values.sql", "unique_id": "macro.dbt_utils.test_not_accepted_values", "macro_sql": "{% test not_accepted_values(model, column_name, values, quote=True) %}\n {{ return(adapter.dispatch('test_not_accepted_values', 'dbt_utils')(model, column_name, values, quote)) }}\n{% endtest %}", "depends_on": {"macros": ["macro.dbt_utils.default__test_not_accepted_values"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.3352342, "supported_languages": null}, "macro.dbt_utils.default__test_not_accepted_values": {"name": "default__test_not_accepted_values", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/generic_tests/not_accepted_values.sql", "original_file_path": "macros/generic_tests/not_accepted_values.sql", "unique_id": "macro.dbt_utils.default__test_not_accepted_values", "macro_sql": "{% macro default__test_not_accepted_values(model, column_name, values, quote=True) %}\nwith all_values as (\n\n select distinct\n {{ column_name }} as value_field\n\n from {{ model }}\n\n),\n\nvalidation_errors as (\n\n select\n value_field\n\n from all_values\n where value_field in (\n {% for value in values -%}\n {% if quote -%}\n '{{ value }}'\n {%- else -%}\n {{ value }}\n {%- endif -%}\n {%- if not loop.last -%},{%- endif %}\n {%- endfor %}\n )\n\n)\n\nselect *\nfrom validation_errors\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.335619, "supported_languages": null}, "macro.dbt_utils.test_at_least_one": {"name": "test_at_least_one", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/generic_tests/at_least_one.sql", "original_file_path": "macros/generic_tests/at_least_one.sql", "unique_id": "macro.dbt_utils.test_at_least_one", "macro_sql": "{% test at_least_one(model, column_name, group_by_columns = []) %}\n {{ return(adapter.dispatch('test_at_least_one', 'dbt_utils')(model, column_name, group_by_columns)) }}\n{% endtest %}", "depends_on": {"macros": ["macro.dbt_utils.default__test_at_least_one"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.336286, "supported_languages": null}, "macro.dbt_utils.default__test_at_least_one": {"name": "default__test_at_least_one", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/generic_tests/at_least_one.sql", "original_file_path": "macros/generic_tests/at_least_one.sql", "unique_id": "macro.dbt_utils.default__test_at_least_one", "macro_sql": "{% macro default__test_at_least_one(model, column_name, group_by_columns) %}\n\n{% set pruned_cols = [column_name] %}\n\n{% if group_by_columns|length() > 0 %}\n\n {% set select_gb_cols = group_by_columns|join(' ,') + ', ' %}\n {% set groupby_gb_cols = 'group by ' + group_by_columns|join(',') %}\n {% set pruned_cols = group_by_columns %}\n\n {% if column_name not in pruned_cols %}\n {% do pruned_cols.append(column_name) %}\n {% endif %}\n\n{% endif %}\n\n{% set select_pruned_cols = pruned_cols|join(' ,') %}\n\nselect *\nfrom (\n with pruned_rows as (\n select\n {{ select_pruned_cols }}\n from {{ model }}\n where {{ column_name }} is not null\n limit 1\n )\n select\n {# In TSQL, subquery aggregate columns need aliases #}\n {# thus: a filler col name, 'filler_column' #}\n {{select_gb_cols}}\n count({{ column_name }}) as filler_column\n\n from pruned_rows\n\n {{groupby_gb_cols}}\n\n having count({{ column_name }}) = 0\n\n) validation_errors\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.337161, "supported_languages": null}, "macro.dbt_utils.test_unique_combination_of_columns": {"name": "test_unique_combination_of_columns", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/generic_tests/unique_combination_of_columns.sql", "original_file_path": "macros/generic_tests/unique_combination_of_columns.sql", "unique_id": "macro.dbt_utils.test_unique_combination_of_columns", "macro_sql": "{% test unique_combination_of_columns(model, combination_of_columns, quote_columns=false) %}\n {{ return(adapter.dispatch('test_unique_combination_of_columns', 'dbt_utils')(model, combination_of_columns, quote_columns)) }}\n{% endtest %}", "depends_on": {"macros": ["macro.dbt_utils.default__test_unique_combination_of_columns"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.337847, "supported_languages": null}, "macro.dbt_utils.default__test_unique_combination_of_columns": {"name": "default__test_unique_combination_of_columns", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/generic_tests/unique_combination_of_columns.sql", "original_file_path": "macros/generic_tests/unique_combination_of_columns.sql", "unique_id": "macro.dbt_utils.default__test_unique_combination_of_columns", "macro_sql": "{% macro default__test_unique_combination_of_columns(model, combination_of_columns, quote_columns=false) %}\n\n{% if not quote_columns %}\n {%- set column_list=combination_of_columns %}\n{% elif quote_columns %}\n {%- set column_list=[] %}\n {% for column in combination_of_columns -%}\n {% set column_list = column_list.append( adapter.quote(column) ) %}\n {%- endfor %}\n{% else %}\n {{ exceptions.raise_compiler_error(\n \"`quote_columns` argument for unique_combination_of_columns test must be one of [True, False] Got: '\" ~ quote ~\"'.'\"\n ) }}\n{% endif %}\n\n{%- set columns_csv=column_list | join(', ') %}\n\n\nwith validation_errors as (\n\n select\n {{ columns_csv }}\n from {{ model }}\n group by {{ columns_csv }}\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.338498, "supported_languages": null}, "macro.dbt_utils.test_cardinality_equality": {"name": "test_cardinality_equality", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/generic_tests/cardinality_equality.sql", "original_file_path": "macros/generic_tests/cardinality_equality.sql", "unique_id": "macro.dbt_utils.test_cardinality_equality", "macro_sql": "{% test cardinality_equality(model, column_name, to, field) %}\n {{ return(adapter.dispatch('test_cardinality_equality', 'dbt_utils')(model, column_name, to, field)) }}\n{% endtest %}", "depends_on": {"macros": ["macro.dbt_utils.default__test_cardinality_equality"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.339067, "supported_languages": null}, "macro.dbt_utils.default__test_cardinality_equality": {"name": "default__test_cardinality_equality", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/generic_tests/cardinality_equality.sql", "original_file_path": "macros/generic_tests/cardinality_equality.sql", "unique_id": "macro.dbt_utils.default__test_cardinality_equality", "macro_sql": "{% macro default__test_cardinality_equality(model, column_name, to, field) %}\n\n{# T-SQL does not let you use numbers as aliases for columns #}\n{# Thus, no \"GROUP BY 1\" #}\n\nwith table_a as (\nselect\n {{ column_name }},\n count(*) as num_rows\nfrom {{ model }}\ngroup by {{ column_name }}\n),\n\ntable_b as (\nselect\n {{ field }},\n count(*) as num_rows\nfrom {{ to }}\ngroup by {{ field }}\n),\n\nexcept_a as (\n select *\n from table_a\n {{ dbt.except() }}\n select *\n from table_b\n),\n\nexcept_b as (\n select *\n from table_b\n {{ dbt.except() }}\n select *\n from table_a\n),\n\nunioned as (\n select *\n from except_a\n union all\n select *\n from except_b\n)\n\nselect *\nfrom unioned\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.except"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.339415, "supported_languages": null}, "macro.dbt_utils.test_expression_is_true": {"name": "test_expression_is_true", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/generic_tests/expression_is_true.sql", "original_file_path": "macros/generic_tests/expression_is_true.sql", "unique_id": "macro.dbt_utils.test_expression_is_true", "macro_sql": "{% test expression_is_true(model, expression, column_name=None) %}\n {{ return(adapter.dispatch('test_expression_is_true', 'dbt_utils')(model, expression, column_name)) }}\n{% endtest %}", "depends_on": {"macros": ["macro.dbt_utils.default__test_expression_is_true"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.339815, "supported_languages": null}, "macro.dbt_utils.default__test_expression_is_true": {"name": "default__test_expression_is_true", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/generic_tests/expression_is_true.sql", "original_file_path": "macros/generic_tests/expression_is_true.sql", "unique_id": "macro.dbt_utils.default__test_expression_is_true", "macro_sql": "{% macro default__test_expression_is_true(model, expression, column_name) %}\n\n{% set column_list = '*' if should_store_failures() else \"1\" %}\n\nselect\n {{ column_list }}\nfrom {{ model }}\n{% if column_name is none %}\nwhere not({{ expression }})\n{%- else %}\nwhere not({{ column_name }} {{ expression }})\n{%- endif %}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.should_store_failures"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.34018, "supported_languages": null}, "macro.dbt_utils.test_not_null_proportion": {"name": "test_not_null_proportion", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/generic_tests/not_null_proportion.sql", "original_file_path": "macros/generic_tests/not_null_proportion.sql", "unique_id": "macro.dbt_utils.test_not_null_proportion", "macro_sql": "{% macro test_not_null_proportion(model, group_by_columns = []) %}\n {{ return(adapter.dispatch('test_not_null_proportion', 'dbt_utils')(model, group_by_columns, **kwargs)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.default__test_not_null_proportion"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.340827, "supported_languages": null}, "macro.dbt_utils.default__test_not_null_proportion": {"name": "default__test_not_null_proportion", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/generic_tests/not_null_proportion.sql", "original_file_path": "macros/generic_tests/not_null_proportion.sql", "unique_id": "macro.dbt_utils.default__test_not_null_proportion", "macro_sql": "{% macro default__test_not_null_proportion(model, group_by_columns) %}\n\n{% set column_name = kwargs.get('column_name', kwargs.get('arg')) %}\n{% set at_least = kwargs.get('at_least', kwargs.get('arg')) %}\n{% set at_most = kwargs.get('at_most', kwargs.get('arg', 1)) %}\n\n{% if group_by_columns|length() > 0 %}\n {% set select_gb_cols = group_by_columns|join(' ,') + ', ' %}\n {% set groupby_gb_cols = 'group by ' + group_by_columns|join(',') %}\n{% endif %}\n\nwith validation as (\n select\n {{select_gb_cols}}\n sum(case when {{ column_name }} is null then 0 else 1 end) / cast(count(*) as numeric) as not_null_proportion\n from {{ model }}\n {{groupby_gb_cols}}\n),\nvalidation_errors as (\n select\n {{select_gb_cols}}\n not_null_proportion\n from validation\n where not_null_proportion < {{ at_least }} or not_null_proportion > {{ at_most }}\n)\nselect\n *\nfrom validation_errors\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.3416588, "supported_languages": null}, "macro.dbt_utils.test_sequential_values": {"name": "test_sequential_values", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/generic_tests/sequential_values.sql", "original_file_path": "macros/generic_tests/sequential_values.sql", "unique_id": "macro.dbt_utils.test_sequential_values", "macro_sql": "{% test sequential_values(model, column_name, interval=1, datepart=None, group_by_columns = []) %}\n\n {{ return(adapter.dispatch('test_sequential_values', 'dbt_utils')(model, column_name, interval, datepart, group_by_columns)) }}\n\n{% endtest %}", "depends_on": {"macros": ["macro.dbt_utils.default__test_sequential_values"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.3425658, "supported_languages": null}, "macro.dbt_utils.default__test_sequential_values": {"name": "default__test_sequential_values", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/generic_tests/sequential_values.sql", "original_file_path": "macros/generic_tests/sequential_values.sql", "unique_id": "macro.dbt_utils.default__test_sequential_values", "macro_sql": "{% macro default__test_sequential_values(model, column_name, interval=1, datepart=None, group_by_columns = []) %}\n\n{% set previous_column_name = \"previous_\" ~ dbt_utils.slugify(column_name) %}\n\n{% if group_by_columns|length() > 0 %}\n {% set select_gb_cols = group_by_columns|join(',') + ', ' %}\n {% set partition_gb_cols = 'partition by ' + group_by_columns|join(',') %}\n{% endif %}\n\nwith windowed as (\n\n select\n {{ select_gb_cols }}\n {{ column_name }},\n lag({{ column_name }}) over (\n {{partition_gb_cols}}\n order by {{ column_name }}\n ) as {{ previous_column_name }}\n from {{ model }}\n),\n\nvalidation_errors as (\n select\n *\n from windowed\n {% if datepart %}\n where not(cast({{ column_name }} as {{ dbt.type_timestamp() }})= cast({{ dbt.dateadd(datepart, interval, previous_column_name) }} as {{ dbt.type_timestamp() }}))\n {% else %}\n where not({{ column_name }} = {{ previous_column_name }} + {{ interval }})\n {% endif %}\n)\n\nselect *\nfrom validation_errors\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.slugify", "macro.dbt.type_timestamp", "macro.dbt.dateadd"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.343499, "supported_languages": null}, "macro.dbt_utils.test_equality": {"name": "test_equality", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/generic_tests/equality.sql", "original_file_path": "macros/generic_tests/equality.sql", "unique_id": "macro.dbt_utils.test_equality", "macro_sql": "{% test equality(model, compare_model, compare_columns=None) %}\n {{ return(adapter.dispatch('test_equality', 'dbt_utils')(model, compare_model, compare_columns)) }}\n{% endtest %}", "depends_on": {"macros": ["macro.dbt_utils.default__test_equality"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.344247, "supported_languages": null}, "macro.dbt_utils.default__test_equality": {"name": "default__test_equality", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/generic_tests/equality.sql", "original_file_path": "macros/generic_tests/equality.sql", "unique_id": "macro.dbt_utils.default__test_equality", "macro_sql": "{% macro default__test_equality(model, compare_model, compare_columns=None) %}\n\n{% set set_diff %}\n count(*) + coalesce(abs(\n sum(case when which_diff = 'a_minus_b' then 1 else 0 end) -\n sum(case when which_diff = 'b_minus_a' then 1 else 0 end)\n ), 0)\n{% endset %}\n\n{#-- Needs to be set at parse time, before we return '' below --#}\n{{ config(fail_calc = set_diff) }}\n\n{#-- Prevent querying of db in parsing mode. This works because this macro does not create any new refs. #}\n{%- if not execute -%}\n {{ return('') }}\n{% endif %}\n\n-- setup\n{%- do dbt_utils._is_relation(model, 'test_equality') -%}\n\n{#-\nIf the compare_cols arg is provided, we can run this test without querying the\ninformation schema\u00a0\u2014 this allows the model to be an ephemeral model\n-#}\n\n{%- if not compare_columns -%}\n {%- do dbt_utils._is_ephemeral(model, 'test_equality') -%}\n {%- set compare_columns = adapter.get_columns_in_relation(model) | map(attribute='quoted') -%}\n{%- endif -%}\n\n{% set compare_cols_csv = compare_columns | join(', ') %}\n\nwith a as (\n\n select * from {{ model }}\n\n),\n\nb as (\n\n select * from {{ compare_model }}\n\n),\n\na_minus_b as (\n\n select {{compare_cols_csv}} from a\n {{ dbt.except() }}\n select {{compare_cols_csv}} from b\n\n),\n\nb_minus_a as (\n\n select {{compare_cols_csv}} from b\n {{ dbt.except() }}\n select {{compare_cols_csv}} from a\n\n),\n\nunioned as (\n\n select 'a_minus_b' as which_diff, a_minus_b.* from a_minus_b\n union all\n select 'b_minus_a' as which_diff, b_minus_a.* from b_minus_a\n\n)\n\nselect * from unioned\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils._is_relation", "macro.dbt_utils._is_ephemeral", "macro.dbt.except"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.345144, "supported_languages": null}, "macro.dbt_utils.test_not_empty_string": {"name": "test_not_empty_string", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/generic_tests/not_empty_string.sql", "original_file_path": "macros/generic_tests/not_empty_string.sql", "unique_id": "macro.dbt_utils.test_not_empty_string", "macro_sql": "{% test not_empty_string(model, column_name, trim_whitespace=true) %}\n\n {{ return(adapter.dispatch('test_not_empty_string', 'dbt_utils')(model, column_name, trim_whitespace)) }}\n\n{% endtest %}", "depends_on": {"macros": ["macro.dbt_utils.default__test_not_empty_string"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.3456588, "supported_languages": null}, "macro.dbt_utils.default__test_not_empty_string": {"name": "default__test_not_empty_string", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/generic_tests/not_empty_string.sql", "original_file_path": "macros/generic_tests/not_empty_string.sql", "unique_id": "macro.dbt_utils.default__test_not_empty_string", "macro_sql": "{% macro default__test_not_empty_string(model, column_name, trim_whitespace=true) %}\n\n with\n \n all_values as (\n\n select \n\n\n {% if trim_whitespace == true -%}\n\n trim({{ column_name }}) as {{ column_name }}\n\n {%- else -%}\n\n {{ column_name }}\n\n {%- endif %}\n \n from {{ model }}\n\n ),\n\n errors as (\n\n select * from all_values\n where {{ column_name }} = ''\n\n )\n\n select * from errors\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.34597, "supported_languages": null}, "macro.dbt_utils.test_mutually_exclusive_ranges": {"name": "test_mutually_exclusive_ranges", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/generic_tests/mutually_exclusive_ranges.sql", "original_file_path": "macros/generic_tests/mutually_exclusive_ranges.sql", "unique_id": "macro.dbt_utils.test_mutually_exclusive_ranges", "macro_sql": "{% test mutually_exclusive_ranges(model, lower_bound_column, upper_bound_column, partition_by=None, gaps='allowed', zero_length_range_allowed=False) %}\n {{ return(adapter.dispatch('test_mutually_exclusive_ranges', 'dbt_utils')(model, lower_bound_column, upper_bound_column, partition_by, gaps, zero_length_range_allowed)) }}\n{% endtest %}", "depends_on": {"macros": ["macro.dbt_utils.default__test_mutually_exclusive_ranges"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.349559, "supported_languages": null}, "macro.dbt_utils.default__test_mutually_exclusive_ranges": {"name": "default__test_mutually_exclusive_ranges", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/generic_tests/mutually_exclusive_ranges.sql", "original_file_path": "macros/generic_tests/mutually_exclusive_ranges.sql", "unique_id": "macro.dbt_utils.default__test_mutually_exclusive_ranges", "macro_sql": "{% macro default__test_mutually_exclusive_ranges(model, lower_bound_column, upper_bound_column, partition_by=None, gaps='allowed', zero_length_range_allowed=False) %}\n{% if gaps == 'not_allowed' %}\n {% set allow_gaps_operator='=' %}\n {% set allow_gaps_operator_in_words='equal_to' %}\n{% elif gaps == 'allowed' %}\n {% set allow_gaps_operator='<=' %}\n {% set allow_gaps_operator_in_words='less_than_or_equal_to' %}\n{% elif gaps == 'required' %}\n {% set allow_gaps_operator='<' %}\n {% set allow_gaps_operator_in_words='less_than' %}\n{% else %}\n {{ exceptions.raise_compiler_error(\n \"`gaps` argument for mutually_exclusive_ranges test must be one of ['not_allowed', 'allowed', 'required'] Got: '\" ~ gaps ~\"'.'\"\n ) }}\n{% endif %}\n{% if not zero_length_range_allowed %}\n {% set allow_zero_length_operator='<' %}\n {% set allow_zero_length_operator_in_words='less_than' %}\n{% elif zero_length_range_allowed %}\n {% set allow_zero_length_operator='<=' %}\n {% set allow_zero_length_operator_in_words='less_than_or_equal_to' %}\n{% else %}\n {{ exceptions.raise_compiler_error(\n \"`zero_length_range_allowed` argument for mutually_exclusive_ranges test must be one of [true, false] Got: '\" ~ zero_length_range_allowed ~\"'.'\"\n ) }}\n{% endif %}\n\n{% set partition_clause=\"partition by \" ~ partition_by if partition_by else '' %}\n\nwith window_functions as (\n\n select\n {% if partition_by %}\n {{ partition_by }} as partition_by_col,\n {% endif %}\n {{ lower_bound_column }} as lower_bound,\n {{ upper_bound_column }} as upper_bound,\n\n lead({{ lower_bound_column }}) over (\n {{ partition_clause }}\n order by {{ lower_bound_column }}, {{ upper_bound_column }}\n ) as next_lower_bound,\n\n row_number() over (\n {{ partition_clause }}\n order by {{ lower_bound_column }} desc, {{ upper_bound_column }} desc\n ) = 1 as is_last_record\n\n from {{ model }}\n\n),\n\ncalc as (\n -- We want to return records where one of our assumptions fails, so we'll use\n -- the `not` function with `and` statements so we can write our assumptions more cleanly\n select\n *,\n\n -- For each record: lower_bound should be < upper_bound.\n -- Coalesce it to return an error on the null case (implicit assumption\n -- these columns are not_null)\n coalesce(\n lower_bound {{ allow_zero_length_operator }} upper_bound,\n false\n ) as lower_bound_{{ allow_zero_length_operator_in_words }}_upper_bound,\n\n -- For each record: upper_bound {{ allow_gaps_operator }} the next lower_bound.\n -- Coalesce it to handle null cases for the last record.\n coalesce(\n upper_bound {{ allow_gaps_operator }} next_lower_bound,\n is_last_record,\n false\n ) as upper_bound_{{ allow_gaps_operator_in_words }}_next_lower_bound\n\n from window_functions\n\n),\n\nvalidation_errors as (\n\n select\n *\n from calc\n\n where not(\n -- THE FOLLOWING SHOULD BE TRUE --\n lower_bound_{{ allow_zero_length_operator_in_words }}_upper_bound\n and upper_bound_{{ allow_gaps_operator_in_words }}_next_lower_bound\n )\n)\n\nselect * from validation_errors\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.351191, "supported_languages": null}, "macro.dbt_utils.pretty_log_format": {"name": "pretty_log_format", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/jinja_helpers/pretty_log_format.sql", "original_file_path": "macros/jinja_helpers/pretty_log_format.sql", "unique_id": "macro.dbt_utils.pretty_log_format", "macro_sql": "{% macro pretty_log_format(message) %}\n {{ return(adapter.dispatch('pretty_log_format', 'dbt_utils')(message)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.default__pretty_log_format"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.351469, "supported_languages": null}, "macro.dbt_utils.default__pretty_log_format": {"name": "default__pretty_log_format", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/jinja_helpers/pretty_log_format.sql", "original_file_path": "macros/jinja_helpers/pretty_log_format.sql", "unique_id": "macro.dbt_utils.default__pretty_log_format", "macro_sql": "{% macro default__pretty_log_format(message) %}\n {{ return( dbt_utils.pretty_time() ~ ' + ' ~ message) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.pretty_time"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.35164, "supported_languages": null}, "macro.dbt_utils._is_relation": {"name": "_is_relation", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/jinja_helpers/_is_relation.sql", "original_file_path": "macros/jinja_helpers/_is_relation.sql", "unique_id": "macro.dbt_utils._is_relation", "macro_sql": "{% macro _is_relation(obj, macro) %}\n {%- if not (obj is mapping and obj.get('metadata', {}).get('type', '').endswith('Relation')) -%}\n {%- do exceptions.raise_compiler_error(\"Macro \" ~ macro ~ \" expected a Relation but received the value: \" ~ obj) -%}\n {%- endif -%}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.352084, "supported_languages": null}, "macro.dbt_utils.pretty_time": {"name": "pretty_time", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/jinja_helpers/pretty_time.sql", "original_file_path": "macros/jinja_helpers/pretty_time.sql", "unique_id": "macro.dbt_utils.pretty_time", "macro_sql": "{% macro pretty_time(format='%H:%M:%S') %}\n {{ return(adapter.dispatch('pretty_time', 'dbt_utils')(format)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.default__pretty_time"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.352364, "supported_languages": null}, "macro.dbt_utils.default__pretty_time": {"name": "default__pretty_time", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/jinja_helpers/pretty_time.sql", "original_file_path": "macros/jinja_helpers/pretty_time.sql", "unique_id": "macro.dbt_utils.default__pretty_time", "macro_sql": "{% macro default__pretty_time(format='%H:%M:%S') %}\n {{ return(modules.datetime.datetime.now().strftime(format)) }}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.352563, "supported_languages": null}, "macro.dbt_utils.log_info": {"name": "log_info", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/jinja_helpers/log_info.sql", "original_file_path": "macros/jinja_helpers/log_info.sql", "unique_id": "macro.dbt_utils.log_info", "macro_sql": "{% macro log_info(message) %}\n {{ return(adapter.dispatch('log_info', 'dbt_utils')(message)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.default__log_info"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.35282, "supported_languages": null}, "macro.dbt_utils.default__log_info": {"name": "default__log_info", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/jinja_helpers/log_info.sql", "original_file_path": "macros/jinja_helpers/log_info.sql", "unique_id": "macro.dbt_utils.default__log_info", "macro_sql": "{% macro default__log_info(message) %}\n {{ log(dbt_utils.pretty_log_format(message), info=True) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.pretty_log_format"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.352999, "supported_languages": null}, "macro.dbt_utils.slugify": {"name": "slugify", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/jinja_helpers/slugify.sql", "original_file_path": "macros/jinja_helpers/slugify.sql", "unique_id": "macro.dbt_utils.slugify", "macro_sql": "{% macro slugify(string) %}\n\n{#- Lower case the string -#}\n{% set string = string | lower %}\n{#- Replace spaces and dashes with underscores -#}\n{% set string = modules.re.sub('[ -]+', '_', string) %}\n{#- Only take letters, numbers, and underscores -#}\n{% set string = modules.re.sub('[^a-z0-9_]+', '', string) %}\n{#- Prepends \"_\" if string begins with a number -#}\n{% set string = modules.re.sub('^[0-9]', '_' + string[0], string) %}\n\n{{ return(string) }}\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.353617, "supported_languages": null}, "macro.dbt_utils._is_ephemeral": {"name": "_is_ephemeral", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/jinja_helpers/_is_ephemeral.sql", "original_file_path": "macros/jinja_helpers/_is_ephemeral.sql", "unique_id": "macro.dbt_utils._is_ephemeral", "macro_sql": "{% macro _is_ephemeral(obj, macro) %}\n {%- if obj.is_cte -%}\n {% set ephemeral_prefix = api.Relation.add_ephemeral_prefix('') %}\n {% if obj.name.startswith(ephemeral_prefix) %}\n {% set model_name = obj.name[(ephemeral_prefix|length):] %}\n {% else %}\n {% set model_name = obj.name %}\n {%- endif -%}\n {% set error_message %}\nThe `{{ macro }}` macro cannot be used with ephemeral models, as it relies on the information schema.\n\n`{{ model_name }}` is an ephemeral model. Consider making it a view or table instead.\n {% endset %}\n {%- do exceptions.raise_compiler_error(error_message) -%}\n {%- endif -%}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.354458, "supported_languages": null}, "macro.dbt_utils.get_intervals_between": {"name": "get_intervals_between", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/date_spine.sql", "original_file_path": "macros/sql/date_spine.sql", "unique_id": "macro.dbt_utils.get_intervals_between", "macro_sql": "{% macro get_intervals_between(start_date, end_date, datepart) -%}\n {{ return(adapter.dispatch('get_intervals_between', 'dbt_utils')(start_date, end_date, datepart)) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.default__get_intervals_between"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.3551722, "supported_languages": null}, "macro.dbt_utils.default__get_intervals_between": {"name": "default__get_intervals_between", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/date_spine.sql", "original_file_path": "macros/sql/date_spine.sql", "unique_id": "macro.dbt_utils.default__get_intervals_between", "macro_sql": "{% macro default__get_intervals_between(start_date, end_date, datepart) -%}\n {%- call statement('get_intervals_between', fetch_result=True) %}\n\n select {{ dbt.datediff(start_date, end_date, datepart) }}\n\n {%- endcall -%}\n\n {%- set value_list = load_result('get_intervals_between') -%}\n\n {%- if value_list and value_list['data'] -%}\n {%- set values = value_list['data'] | map(attribute=0) | list %}\n {{ return(values[0]) }}\n {%- else -%}\n {{ return(1) }}\n {%- endif -%}\n\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt.statement", "macro.dbt.datediff"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.3557749, "supported_languages": null}, "macro.dbt_utils.date_spine": {"name": "date_spine", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/date_spine.sql", "original_file_path": "macros/sql/date_spine.sql", "unique_id": "macro.dbt_utils.date_spine", "macro_sql": "{% macro date_spine(datepart, start_date, end_date) %}\n {{ return(adapter.dispatch('date_spine', 'dbt_utils')(datepart, start_date, end_date)) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.default__date_spine"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.356019, "supported_languages": null}, "macro.dbt_utils.default__date_spine": {"name": "default__date_spine", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/date_spine.sql", "original_file_path": "macros/sql/date_spine.sql", "unique_id": "macro.dbt_utils.default__date_spine", "macro_sql": "{% macro default__date_spine(datepart, start_date, end_date) %}\n\n\n{# call as follows:\n\ndate_spine(\n \"day\",\n \"to_date('01/01/2016', 'mm/dd/yyyy')\",\n \"dbt.dateadd(week, 1, current_date)\"\n) #}\n\n\nwith rawdata as (\n\n {{dbt_utils.generate_series(\n dbt_utils.get_intervals_between(start_date, end_date, datepart)\n )}}\n\n),\n\nall_periods as (\n\n select (\n {{\n dbt.dateadd(\n datepart,\n \"row_number() over (order by 1) - 1\",\n start_date\n )\n }}\n ) as date_{{datepart}}\n from rawdata\n\n),\n\nfiltered as (\n\n select *\n from all_periods\n where date_{{datepart}} <= {{ end_date }}\n\n)\n\nselect * from filtered\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.generate_series", "macro.dbt_utils.get_intervals_between", "macro.dbt.dateadd"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.3563871, "supported_languages": null}, "macro.dbt_utils.safe_subtract": {"name": "safe_subtract", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/safe_subtract.sql", "original_file_path": "macros/sql/safe_subtract.sql", "unique_id": "macro.dbt_utils.safe_subtract", "macro_sql": "{%- macro safe_subtract(field_list) -%}\n {{ return(adapter.dispatch('safe_subtract', 'dbt_utils')(field_list)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.default__safe_subtract"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.3567748, "supported_languages": null}, "macro.dbt_utils.default__safe_subtract": {"name": "default__safe_subtract", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/safe_subtract.sql", "original_file_path": "macros/sql/safe_subtract.sql", "unique_id": "macro.dbt_utils.default__safe_subtract", "macro_sql": "\n\n{%- macro default__safe_subtract(field_list) -%}\n\n{%- if field_list is not iterable or field_list is string or field_list is mapping -%}\n\n{%- set error_message = '\nWarning: the `safe_subtract` macro takes a single list argument instead of \\\nstring arguments. The {}.{} model triggered this warning. \\\n'.format(model.package_name, model.name) -%}\n\n{%- do exceptions.raise_compiler_error(error_message) -%}\n\n{%- endif -%}\n\n{% set fields = [] %}\n\n{%- for field in field_list -%}\n\n {% do fields.append(\"coalesce(\" ~ field ~ \", 0)\") %}\n\n{%- endfor -%}\n\n{{ fields|join(' -\\n ') }}\n\n{%- endmacro -%}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.357332, "supported_languages": null}, "macro.dbt_utils.nullcheck_table": {"name": "nullcheck_table", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/nullcheck_table.sql", "original_file_path": "macros/sql/nullcheck_table.sql", "unique_id": "macro.dbt_utils.nullcheck_table", "macro_sql": "{% macro nullcheck_table(relation) %}\n {{ return(adapter.dispatch('nullcheck_table', 'dbt_utils')(relation)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.default__nullcheck_table"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.3576589, "supported_languages": null}, "macro.dbt_utils.default__nullcheck_table": {"name": "default__nullcheck_table", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/nullcheck_table.sql", "original_file_path": "macros/sql/nullcheck_table.sql", "unique_id": "macro.dbt_utils.default__nullcheck_table", "macro_sql": "{% macro default__nullcheck_table(relation) %}\n\n {%- do dbt_utils._is_relation(relation, 'nullcheck_table') -%}\n {%- do dbt_utils._is_ephemeral(relation, 'nullcheck_table') -%}\n {% set cols = adapter.get_columns_in_relation(relation) %}\n\n select {{ dbt_utils.nullcheck(cols) }}\n from {{relation}}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils._is_relation", "macro.dbt_utils._is_ephemeral", "macro.dbt_utils.nullcheck"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.3580108, "supported_languages": null}, "macro.dbt_utils.get_relations_by_pattern": {"name": "get_relations_by_pattern", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/get_relations_by_pattern.sql", "original_file_path": "macros/sql/get_relations_by_pattern.sql", "unique_id": "macro.dbt_utils.get_relations_by_pattern", "macro_sql": "{% macro get_relations_by_pattern(schema_pattern, table_pattern, exclude='', database=target.database) %}\n {{ return(adapter.dispatch('get_relations_by_pattern', 'dbt_utils')(schema_pattern, table_pattern, exclude, database)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.default__get_relations_by_pattern"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.3587258, "supported_languages": null}, "macro.dbt_utils.default__get_relations_by_pattern": {"name": "default__get_relations_by_pattern", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/get_relations_by_pattern.sql", "original_file_path": "macros/sql/get_relations_by_pattern.sql", "unique_id": "macro.dbt_utils.default__get_relations_by_pattern", "macro_sql": "{% macro default__get_relations_by_pattern(schema_pattern, table_pattern, exclude='', database=target.database) %}\n\n {%- call statement('get_tables', fetch_result=True) %}\n\n {{ dbt_utils.get_tables_by_pattern_sql(schema_pattern, table_pattern, exclude, database) }}\n\n {%- endcall -%}\n\n {%- set table_list = load_result('get_tables') -%}\n\n {%- if table_list and table_list['table'] -%}\n {%- set tbl_relations = [] -%}\n {%- for row in table_list['table'] -%}\n {%- set tbl_relation = api.Relation.create(\n database=database,\n schema=row.table_schema,\n identifier=row.table_name,\n type=row.table_type\n ) -%}\n {%- do tbl_relations.append(tbl_relation) -%}\n {%- endfor -%}\n\n {{ return(tbl_relations) }}\n {%- else -%}\n {{ return([]) }}\n {%- endif -%}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.statement", "macro.dbt_utils.get_tables_by_pattern_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.359652, "supported_languages": null}, "macro.dbt_utils.get_powers_of_two": {"name": "get_powers_of_two", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/generate_series.sql", "original_file_path": "macros/sql/generate_series.sql", "unique_id": "macro.dbt_utils.get_powers_of_two", "macro_sql": "{% macro get_powers_of_two(upper_bound) %}\n {{ return(adapter.dispatch('get_powers_of_two', 'dbt_utils')(upper_bound)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.default__get_powers_of_two"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.360493, "supported_languages": null}, "macro.dbt_utils.default__get_powers_of_two": {"name": "default__get_powers_of_two", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/generate_series.sql", "original_file_path": "macros/sql/generate_series.sql", "unique_id": "macro.dbt_utils.default__get_powers_of_two", "macro_sql": "{% macro default__get_powers_of_two(upper_bound) %}\n\n {% if upper_bound <= 0 %}\n {{ exceptions.raise_compiler_error(\"upper bound must be positive\") }}\n {% endif %}\n\n {% for _ in range(1, 100) %}\n {% if upper_bound <= 2 ** loop.index %}{{ return(loop.index) }}{% endif %}\n {% endfor %}\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.360919, "supported_languages": null}, "macro.dbt_utils.generate_series": {"name": "generate_series", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/generate_series.sql", "original_file_path": "macros/sql/generate_series.sql", "unique_id": "macro.dbt_utils.generate_series", "macro_sql": "{% macro generate_series(upper_bound) %}\n {{ return(adapter.dispatch('generate_series', 'dbt_utils')(upper_bound)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.default__generate_series"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.361109, "supported_languages": null}, "macro.dbt_utils.default__generate_series": {"name": "default__generate_series", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/generate_series.sql", "original_file_path": "macros/sql/generate_series.sql", "unique_id": "macro.dbt_utils.default__generate_series", "macro_sql": "{% macro default__generate_series(upper_bound) %}\n\n {% set n = dbt_utils.get_powers_of_two(upper_bound) %}\n\n with p as (\n select 0 as generated_number union all select 1\n ), unioned as (\n\n select\n\n {% for i in range(n) %}\n p{{i}}.generated_number * power(2, {{i}})\n {% if not loop.last %} + {% endif %}\n {% endfor %}\n + 1\n as generated_number\n\n from\n\n {% for i in range(n) %}\n p as p{{i}}\n {% if not loop.last %} cross join {% endif %}\n {% endfor %}\n\n )\n\n select *\n from unioned\n where generated_number <= {{upper_bound}}\n order by generated_number\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.get_powers_of_two"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.36164, "supported_languages": null}, "macro.dbt_utils.get_relations_by_prefix": {"name": "get_relations_by_prefix", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/get_relations_by_prefix.sql", "original_file_path": "macros/sql/get_relations_by_prefix.sql", "unique_id": "macro.dbt_utils.get_relations_by_prefix", "macro_sql": "{% macro get_relations_by_prefix(schema, prefix, exclude='', database=target.database) %}\n {{ return(adapter.dispatch('get_relations_by_prefix', 'dbt_utils')(schema, prefix, exclude, database)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.default__get_relations_by_prefix"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.362325, "supported_languages": null}, "macro.dbt_utils.default__get_relations_by_prefix": {"name": "default__get_relations_by_prefix", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/get_relations_by_prefix.sql", "original_file_path": "macros/sql/get_relations_by_prefix.sql", "unique_id": "macro.dbt_utils.default__get_relations_by_prefix", "macro_sql": "{% macro default__get_relations_by_prefix(schema, prefix, exclude='', database=target.database) %}\n\n {%- call statement('get_tables', fetch_result=True) %}\n\n {{ dbt_utils.get_tables_by_prefix_sql(schema, prefix, exclude, database) }}\n\n {%- endcall -%}\n\n {%- set table_list = load_result('get_tables') -%}\n\n {%- if table_list and table_list['table'] -%}\n {%- set tbl_relations = [] -%}\n {%- for row in table_list['table'] -%}\n {%- set tbl_relation = api.Relation.create(\n database=database,\n schema=row.table_schema,\n identifier=row.table_name,\n type=row.table_type\n ) -%}\n {%- do tbl_relations.append(tbl_relation) -%}\n {%- endfor -%}\n\n {{ return(tbl_relations) }}\n {%- else -%}\n {{ return([]) }}\n {%- endif -%}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.statement", "macro.dbt_utils.get_tables_by_prefix_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.363204, "supported_languages": null}, "macro.dbt_utils.get_tables_by_prefix_sql": {"name": "get_tables_by_prefix_sql", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/get_tables_by_prefix_sql.sql", "original_file_path": "macros/sql/get_tables_by_prefix_sql.sql", "unique_id": "macro.dbt_utils.get_tables_by_prefix_sql", "macro_sql": "{% macro get_tables_by_prefix_sql(schema, prefix, exclude='', database=target.database) %}\n {{ return(adapter.dispatch('get_tables_by_prefix_sql', 'dbt_utils')(schema, prefix, exclude, database)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.default__get_tables_by_prefix_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.3636322, "supported_languages": null}, "macro.dbt_utils.default__get_tables_by_prefix_sql": {"name": "default__get_tables_by_prefix_sql", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/get_tables_by_prefix_sql.sql", "original_file_path": "macros/sql/get_tables_by_prefix_sql.sql", "unique_id": "macro.dbt_utils.default__get_tables_by_prefix_sql", "macro_sql": "{% macro default__get_tables_by_prefix_sql(schema, prefix, exclude='', database=target.database) %}\n\n {{ dbt_utils.get_tables_by_pattern_sql(\n schema_pattern = schema,\n table_pattern = prefix ~ '%',\n exclude = exclude,\n database = database\n ) }}\n \n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.get_tables_by_pattern_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.363948, "supported_languages": null}, "macro.dbt_utils.star": {"name": "star", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/star.sql", "original_file_path": "macros/sql/star.sql", "unique_id": "macro.dbt_utils.star", "macro_sql": "{% macro star(from, relation_alias=False, except=[], prefix='', suffix='', quote_identifiers=True) -%}\r\n {{ return(adapter.dispatch('star', 'dbt_utils')(from, relation_alias, except, prefix, suffix, quote_identifiers)) }}\r\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.default__star"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.3652852, "supported_languages": null}, "macro.dbt_utils.default__star": {"name": "default__star", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/star.sql", "original_file_path": "macros/sql/star.sql", "unique_id": "macro.dbt_utils.default__star", "macro_sql": "{% macro default__star(from, relation_alias=False, except=[], prefix='', suffix='', quote_identifiers=True) -%}\r\n {%- do dbt_utils._is_relation(from, 'star') -%}\r\n {%- do dbt_utils._is_ephemeral(from, 'star') -%}\r\n\r\n {#-- Prevent querying of db in parsing mode. This works because this macro does not create any new refs. #}\r\n {%- if not execute -%}\r\n {% do return('*') %}\r\n {%- endif -%}\r\n\r\n {% set cols = dbt_utils.get_filtered_columns_in_relation(from, except) %}\r\n\r\n {%- if cols|length <= 0 -%}\r\n {% if flags.WHICH == 'compile' %}\r\n {% set response %}\r\n*\r\n/* No columns were returned. Maybe the relation doesn't exist yet \r\nor all columns were excluded. This star is only output during \r\ndbt compile, and exists to keep SQLFluff happy. */\r\n {% endset %}\r\n {% do return(response) %}\r\n {% else %}\r\n {% do return(\"/* no columns returned from star() macro */\") %}\r\n {% endif %}\r\n {%- else -%}\r\n {%- for col in cols %}\r\n {%- if relation_alias %}{{ relation_alias }}.{% else %}{%- endif -%}\r\n {%- if quote_identifiers -%}\r\n {{ adapter.quote(col)|trim }} {%- if prefix!='' or suffix!='' %} as {{ adapter.quote(prefix ~ col ~ suffix)|trim }} {%- endif -%}\r\n {%- else -%}\r\n {{ col|trim }} {%- if prefix!='' or suffix!='' %} as {{ (prefix ~ col ~ suffix)|trim }} {%- endif -%}\r\n {% endif %}\r\n {%- if not loop.last %},{{ '\\n ' }}{%- endif -%}\r\n {%- endfor -%}\r\n {% endif %}\r\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt_utils._is_relation", "macro.dbt_utils._is_ephemeral", "macro.dbt_utils.get_filtered_columns_in_relation"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.3667378, "supported_languages": null}, "macro.dbt_utils.unpivot": {"name": "unpivot", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/unpivot.sql", "original_file_path": "macros/sql/unpivot.sql", "unique_id": "macro.dbt_utils.unpivot", "macro_sql": "{% macro unpivot(relation=none, cast_to='varchar', exclude=none, remove=none, field_name='field_name', value_name='value') -%}\n {{ return(adapter.dispatch('unpivot', 'dbt_utils')(relation, cast_to, exclude, remove, field_name, value_name)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.default__unpivot"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.3681011, "supported_languages": null}, "macro.dbt_utils.default__unpivot": {"name": "default__unpivot", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/unpivot.sql", "original_file_path": "macros/sql/unpivot.sql", "unique_id": "macro.dbt_utils.default__unpivot", "macro_sql": "{% macro default__unpivot(relation=none, cast_to='varchar', exclude=none, remove=none, field_name='field_name', value_name='value') -%}\n\n {% if not relation %}\n {{ exceptions.raise_compiler_error(\"Error: argument `relation` is required for `unpivot` macro.\") }}\n {% endif %}\n\n {%- set exclude = exclude if exclude is not none else [] %}\n {%- set remove = remove if remove is not none else [] %}\n\n {%- set include_cols = [] %}\n\n {%- set table_columns = {} %}\n\n {%- do table_columns.update({relation: []}) %}\n\n {%- do dbt_utils._is_relation(relation, 'unpivot') -%}\n {%- do dbt_utils._is_ephemeral(relation, 'unpivot') -%}\n {%- set cols = adapter.get_columns_in_relation(relation) %}\n\n {%- for col in cols -%}\n {%- if col.column.lower() not in remove|map('lower') and col.column.lower() not in exclude|map('lower') -%}\n {% do include_cols.append(col) %}\n {%- endif %}\n {%- endfor %}\n\n\n {%- for col in include_cols -%}\n select\n {%- for exclude_col in exclude %}\n {{ exclude_col }},\n {%- endfor %}\n\n cast('{{ col.column }}' as {{ dbt.type_string() }}) as {{ field_name }},\n cast( {% if col.data_type == 'boolean' %}\n {{ dbt.cast_bool_to_text(col.column) }}\n {% else %}\n {{ col.column }}\n {% endif %}\n as {{ cast_to }}) as {{ value_name }}\n\n from {{ relation }}\n\n {% if not loop.last -%}\n union all\n {% endif -%}\n {%- endfor -%}\n\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt_utils._is_relation", "macro.dbt_utils._is_ephemeral", "macro.dbt.type_string", "macro.dbt.cast_bool_to_text"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.369966, "supported_languages": null}, "macro.dbt_utils.safe_divide": {"name": "safe_divide", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/safe_divide.sql", "original_file_path": "macros/sql/safe_divide.sql", "unique_id": "macro.dbt_utils.safe_divide", "macro_sql": "{% macro safe_divide(numerator, denominator) -%}\n {{ return(adapter.dispatch('safe_divide', 'dbt_utils')(numerator, denominator)) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.default__safe_divide"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.370267, "supported_languages": null}, "macro.dbt_utils.default__safe_divide": {"name": "default__safe_divide", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/safe_divide.sql", "original_file_path": "macros/sql/safe_divide.sql", "unique_id": "macro.dbt_utils.default__safe_divide", "macro_sql": "{% macro default__safe_divide(numerator, denominator) %}\n ( {{ numerator }} ) / nullif( ( {{ denominator }} ), 0)\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.370401, "supported_languages": null}, "macro.dbt_utils.union_relations": {"name": "union_relations", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/union.sql", "original_file_path": "macros/sql/union.sql", "unique_id": "macro.dbt_utils.union_relations", "macro_sql": "{%- macro union_relations(relations, column_override=none, include=[], exclude=[], source_column_name='_dbt_source_relation', where=none) -%}\n {{ return(adapter.dispatch('union_relations', 'dbt_utils')(relations, column_override, include, exclude, source_column_name, where)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.default__union_relations"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.3736682, "supported_languages": null}, "macro.dbt_utils.default__union_relations": {"name": "default__union_relations", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/union.sql", "original_file_path": "macros/sql/union.sql", "unique_id": "macro.dbt_utils.default__union_relations", "macro_sql": "\n\n{%- macro default__union_relations(relations, column_override=none, include=[], exclude=[], source_column_name='_dbt_source_relation', where=none) -%}\n\n {%- if exclude and include -%}\n {{ exceptions.raise_compiler_error(\"Both an exclude and include list were provided to the `union` macro. Only one is allowed\") }}\n {%- endif -%}\n\n {#-- Prevent querying of db in parsing mode. This works because this macro does not create any new refs. -#}\n {%- if not execute %}\n {{ return('') }}\n {% endif -%}\n\n {%- set column_override = column_override if column_override is not none else {} -%}\n\n {%- set relation_columns = {} -%}\n {%- set column_superset = {} -%}\n {%- set all_excludes = [] -%}\n {%- set all_includes = [] -%}\n\n {%- if exclude -%}\n {%- for exc in exclude -%}\n {%- do all_excludes.append(exc | lower) -%}\n {%- endfor -%}\n {%- endif -%}\n\n {%- if include -%}\n {%- for inc in include -%}\n {%- do all_includes.append(inc | lower) -%}\n {%- endfor -%}\n {%- endif -%}\n\n {%- for relation in relations -%}\n\n {%- do relation_columns.update({relation: []}) -%}\n\n {%- do dbt_utils._is_relation(relation, 'union_relations') -%}\n {%- do dbt_utils._is_ephemeral(relation, 'union_relations') -%}\n {%- set cols = adapter.get_columns_in_relation(relation) -%}\n {%- for col in cols -%}\n\n {#- If an exclude list was provided and the column is in the list, do nothing -#}\n {%- if exclude and col.column | lower in all_excludes -%}\n\n {#- If an include list was provided and the column is not in the list, do nothing -#}\n {%- elif include and col.column | lower not in all_includes -%}\n\n {#- Otherwise add the column to the column superset -#}\n {%- else -%}\n\n {#- update the list of columns in this relation -#}\n {%- do relation_columns[relation].append(col.column) -%}\n\n {%- if col.column in column_superset -%}\n\n {%- set stored = column_superset[col.column] -%}\n {%- if col.is_string() and stored.is_string() and col.string_size() > stored.string_size() -%}\n\n {%- do column_superset.update({col.column: col}) -%}\n\n {%- endif %}\n\n {%- else -%}\n\n {%- do column_superset.update({col.column: col}) -%}\n\n {%- endif -%}\n\n {%- endif -%}\n\n {%- endfor -%}\n {%- endfor -%}\n\n {%- set ordered_column_names = column_superset.keys() -%}\n {%- set dbt_command = flags.WHICH -%}\n\n\n {% if dbt_command in ['run', 'build'] %}\n {% if (include | length > 0 or exclude | length > 0) and not column_superset.keys() %}\n {%- set relations_string -%}\n {%- for relation in relations -%}\n {{ relation.name }}\n {%- if not loop.last %}, {% endif -%}\n {%- endfor -%}\n {%- endset -%}\n\n {%- set error_message -%}\n There were no columns found to union for relations {{ relations_string }}\n {%- endset -%}\n\n {{ exceptions.raise_compiler_error(error_message) }}\n {%- endif -%}\n {%- endif -%}\n\n {%- for relation in relations %}\n\n (\n select\n\n {%- if source_column_name is not none %}\n cast({{ dbt.string_literal(relation) }} as {{ dbt.type_string() }}) as {{ source_column_name }},\n {%- endif %}\n\n {% for col_name in ordered_column_names -%}\n\n {%- set col = column_superset[col_name] %}\n {%- set col_type = column_override.get(col.column, col.data_type) %}\n {%- set col_name = adapter.quote(col_name) if col_name in relation_columns[relation] else 'null' %}\n cast({{ col_name }} as {{ col_type }}) as {{ col.quoted }} {% if not loop.last %},{% endif -%}\n\n {%- endfor %}\n\n from {{ relation }}\n\n {% if where -%}\n where {{ where }}\n {%- endif %}\n )\n\n {% if not loop.last -%}\n union all\n {% endif -%}\n\n {%- endfor -%}\n\n{%- endmacro -%}", "depends_on": {"macros": ["macro.dbt_utils._is_relation", "macro.dbt_utils._is_ephemeral", "macro.dbt.string_literal", "macro.dbt.type_string"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.377203, "supported_languages": null}, "macro.dbt_utils.group_by": {"name": "group_by", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/groupby.sql", "original_file_path": "macros/sql/groupby.sql", "unique_id": "macro.dbt_utils.group_by", "macro_sql": "{%- macro group_by(n) -%}\n {{ return(adapter.dispatch('group_by', 'dbt_utils')(n)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.default__group_by"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.3775098, "supported_languages": null}, "macro.dbt_utils.default__group_by": {"name": "default__group_by", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/groupby.sql", "original_file_path": "macros/sql/groupby.sql", "unique_id": "macro.dbt_utils.default__group_by", "macro_sql": "\n\n{%- macro default__group_by(n) -%}\n\n group by {% for i in range(1, n + 1) -%}\n {{ i }}{{ ',' if not loop.last }} \n {%- endfor -%}\n\n{%- endmacro -%}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.377763, "supported_languages": null}, "macro.dbt_utils.deduplicate": {"name": "deduplicate", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/deduplicate.sql", "original_file_path": "macros/sql/deduplicate.sql", "unique_id": "macro.dbt_utils.deduplicate", "macro_sql": "{%- macro deduplicate(relation, partition_by, order_by) -%}\n {{ return(adapter.dispatch('deduplicate', 'dbt_utils')(relation, partition_by, order_by)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.postgres__deduplicate"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.3785322, "supported_languages": null}, "macro.dbt_utils.default__deduplicate": {"name": "default__deduplicate", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/deduplicate.sql", "original_file_path": "macros/sql/deduplicate.sql", "unique_id": "macro.dbt_utils.default__deduplicate", "macro_sql": "\n\n{%- macro default__deduplicate(relation, partition_by, order_by) -%}\n\n with row_numbered as (\n select\n _inner.*,\n row_number() over (\n partition by {{ partition_by }}\n order by {{ order_by }}\n ) as rn\n from {{ relation }} as _inner\n )\n\n select\n distinct data.*\n from {{ relation }} as data\n {#\n -- Not all DBs will support natural joins but the ones that do include:\n -- Oracle, MySQL, SQLite, Redshift, Teradata, Materialize, Databricks\n -- Apache Spark, SingleStore, Vertica\n -- Those that do not appear to support natural joins include:\n -- SQLServer, Trino, Presto, Rockset, Athena\n #}\n natural join row_numbered\n where row_numbered.rn = 1\n\n{%- endmacro -%}\n\n", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.378751, "supported_languages": null}, "macro.dbt_utils.redshift__deduplicate": {"name": "redshift__deduplicate", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/deduplicate.sql", "original_file_path": "macros/sql/deduplicate.sql", "unique_id": "macro.dbt_utils.redshift__deduplicate", "macro_sql": "{% macro redshift__deduplicate(relation, partition_by, order_by) -%}\n\n {{ return(dbt_utils.default__deduplicate(relation, partition_by, order_by=order_by)) }}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.default__deduplicate"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.378957, "supported_languages": null}, "macro.dbt_utils.postgres__deduplicate": {"name": "postgres__deduplicate", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/deduplicate.sql", "original_file_path": "macros/sql/deduplicate.sql", "unique_id": "macro.dbt_utils.postgres__deduplicate", "macro_sql": "\n{%- macro postgres__deduplicate(relation, partition_by, order_by) -%}\n\n select\n distinct on ({{ partition_by }}) *\n from {{ relation }}\n order by {{ partition_by }}{{ ',' ~ order_by }}\n\n{%- endmacro -%}\n\n", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.379153, "supported_languages": null}, "macro.dbt_utils.snowflake__deduplicate": {"name": "snowflake__deduplicate", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/deduplicate.sql", "original_file_path": "macros/sql/deduplicate.sql", "unique_id": "macro.dbt_utils.snowflake__deduplicate", "macro_sql": "\n{%- macro snowflake__deduplicate(relation, partition_by, order_by) -%}\n\n select *\n from {{ relation }}\n qualify\n row_number() over (\n partition by {{ partition_by }}\n order by {{ order_by }}\n ) = 1\n\n{%- endmacro -%}\n\n", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.379331, "supported_languages": null}, "macro.dbt_utils.bigquery__deduplicate": {"name": "bigquery__deduplicate", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/deduplicate.sql", "original_file_path": "macros/sql/deduplicate.sql", "unique_id": "macro.dbt_utils.bigquery__deduplicate", "macro_sql": "\n{%- macro bigquery__deduplicate(relation, partition_by, order_by) -%}\n\n select unique.*\n from (\n select\n array_agg (\n original\n order by {{ order_by }}\n limit 1\n )[offset(0)] unique\n from {{ relation }} original\n group by {{ partition_by }}\n )\n\n{%- endmacro -%}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.3795068, "supported_languages": null}, "macro.dbt_utils.surrogate_key": {"name": "surrogate_key", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/surrogate_key.sql", "original_file_path": "macros/sql/surrogate_key.sql", "unique_id": "macro.dbt_utils.surrogate_key", "macro_sql": "{%- macro surrogate_key(field_list) -%}\n {% set frustrating_jinja_feature = varargs %}\n {{ return(adapter.dispatch('surrogate_key', 'dbt_utils')(field_list, *varargs)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.default__surrogate_key"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.379895, "supported_languages": null}, "macro.dbt_utils.default__surrogate_key": {"name": "default__surrogate_key", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/surrogate_key.sql", "original_file_path": "macros/sql/surrogate_key.sql", "unique_id": "macro.dbt_utils.default__surrogate_key", "macro_sql": "\n\n{%- macro default__surrogate_key(field_list) -%}\n\n{%- set error_message = '\nWarning: `dbt_utils.surrogate_key` has been replaced by \\\n`dbt_utils.generate_surrogate_key`. The new macro treats null values \\\ndifferently to empty strings. To restore the behaviour of the original \\\nmacro, add a global variable in dbt_project.yml called \\\n`surrogate_key_treat_nulls_as_empty_strings` to your \\\ndbt_project.yml file with a value of True. \\\nThe {}.{} model triggered this warning. \\\n'.format(model.package_name, model.name) -%}\n\n{%- do exceptions.raise_compiler_error(error_message) -%}\n\n{%- endmacro -%}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.3801322, "supported_languages": null}, "macro.dbt_utils.safe_add": {"name": "safe_add", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/safe_add.sql", "original_file_path": "macros/sql/safe_add.sql", "unique_id": "macro.dbt_utils.safe_add", "macro_sql": "{%- macro safe_add(field_list) -%}\n {{ return(adapter.dispatch('safe_add', 'dbt_utils')(field_list)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.default__safe_add"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.380509, "supported_languages": null}, "macro.dbt_utils.default__safe_add": {"name": "default__safe_add", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/safe_add.sql", "original_file_path": "macros/sql/safe_add.sql", "unique_id": "macro.dbt_utils.default__safe_add", "macro_sql": "\n\n{%- macro default__safe_add(field_list) -%}\n\n{%- if field_list is not iterable or field_list is string or field_list is mapping -%}\n\n{%- set error_message = '\nWarning: the `safe_add` macro now takes a single list argument instead of \\\nstring arguments. The {}.{} model triggered this warning. \\\n'.format(model.package_name, model.name) -%}\n\n{%- do exceptions.warn(error_message) -%}\n\n{%- endif -%}\n\n{% set fields = [] %}\n\n{%- for field in field_list -%}\n\n {% do fields.append(\"coalesce(\" ~ field ~ \", 0)\") %}\n\n{%- endfor -%}\n\n{{ fields|join(' +\\n ') }}\n\n{%- endmacro -%}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.3810618, "supported_languages": null}, "macro.dbt_utils.nullcheck": {"name": "nullcheck", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/nullcheck.sql", "original_file_path": "macros/sql/nullcheck.sql", "unique_id": "macro.dbt_utils.nullcheck", "macro_sql": "{% macro nullcheck(cols) %}\n {{ return(adapter.dispatch('nullcheck', 'dbt_utils')(cols)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.default__nullcheck"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.381404, "supported_languages": null}, "macro.dbt_utils.default__nullcheck": {"name": "default__nullcheck", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/nullcheck.sql", "original_file_path": "macros/sql/nullcheck.sql", "unique_id": "macro.dbt_utils.default__nullcheck", "macro_sql": "{% macro default__nullcheck(cols) %}\n{%- for col in cols %}\n\n {% if col.is_string() -%}\n\n nullif({{col.name}},'') as {{col.name}}\n\n {%- else -%}\n\n {{col.name}}\n\n {%- endif -%}\n\n{%- if not loop.last -%} , {%- endif -%}\n\n{%- endfor -%}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.381738, "supported_languages": null}, "macro.dbt_utils.get_tables_by_pattern_sql": {"name": "get_tables_by_pattern_sql", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/get_tables_by_pattern_sql.sql", "original_file_path": "macros/sql/get_tables_by_pattern_sql.sql", "unique_id": "macro.dbt_utils.get_tables_by_pattern_sql", "macro_sql": "{% macro get_tables_by_pattern_sql(schema_pattern, table_pattern, exclude='', database=target.database) %}\n {{ return(adapter.dispatch('get_tables_by_pattern_sql', 'dbt_utils')\n (schema_pattern, table_pattern, exclude, database)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.default__get_tables_by_pattern_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.3834748, "supported_languages": null}, "macro.dbt_utils.default__get_tables_by_pattern_sql": {"name": "default__get_tables_by_pattern_sql", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/get_tables_by_pattern_sql.sql", "original_file_path": "macros/sql/get_tables_by_pattern_sql.sql", "unique_id": "macro.dbt_utils.default__get_tables_by_pattern_sql", "macro_sql": "{% macro default__get_tables_by_pattern_sql(schema_pattern, table_pattern, exclude='', database=target.database) %}\n\n select distinct\n table_schema as {{ adapter.quote('table_schema') }},\n table_name as {{ adapter.quote('table_name') }},\n {{ dbt_utils.get_table_types_sql() }}\n from {{ database }}.information_schema.tables\n where table_schema ilike '{{ schema_pattern }}'\n and table_name ilike '{{ table_pattern }}'\n and table_name not ilike '{{ exclude }}'\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.get_table_types_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.383845, "supported_languages": null}, "macro.dbt_utils.bigquery__get_tables_by_pattern_sql": {"name": "bigquery__get_tables_by_pattern_sql", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/get_tables_by_pattern_sql.sql", "original_file_path": "macros/sql/get_tables_by_pattern_sql.sql", "unique_id": "macro.dbt_utils.bigquery__get_tables_by_pattern_sql", "macro_sql": "{% macro bigquery__get_tables_by_pattern_sql(schema_pattern, table_pattern, exclude='', database=target.database) %}\n\n {% if '%' in schema_pattern %}\n {% set schemata=dbt_utils._bigquery__get_matching_schemata(schema_pattern, database) %}\n {% else %}\n {% set schemata=[schema_pattern] %}\n {% endif %}\n\n {% set sql %}\n {% for schema in schemata %}\n select distinct\n table_schema,\n table_name,\n {{ dbt_utils.get_table_types_sql() }}\n\n from {{ adapter.quote(database) }}.{{ schema }}.INFORMATION_SCHEMA.TABLES\n where lower(table_name) like lower ('{{ table_pattern }}')\n and lower(table_name) not like lower ('{{ exclude }}')\n\n {% if not loop.last %} union all {% endif %}\n\n {% endfor %}\n {% endset %}\n\n {{ return(sql) }}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils._bigquery__get_matching_schemata", "macro.dbt_utils.get_table_types_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.3846521, "supported_languages": null}, "macro.dbt_utils._bigquery__get_matching_schemata": {"name": "_bigquery__get_matching_schemata", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/get_tables_by_pattern_sql.sql", "original_file_path": "macros/sql/get_tables_by_pattern_sql.sql", "unique_id": "macro.dbt_utils._bigquery__get_matching_schemata", "macro_sql": "{% macro _bigquery__get_matching_schemata(schema_pattern, database) %}\n {% if execute %}\n\n {% set sql %}\n select schema_name from {{ adapter.quote(database) }}.INFORMATION_SCHEMA.SCHEMATA\n where lower(schema_name) like lower('{{ schema_pattern }}')\n {% endset %}\n\n {% set results=run_query(sql) %}\n\n {% set schemata=results.columns['schema_name'].values() %}\n\n {{ return(schemata) }}\n\n {% else %}\n\n {{ return([]) }}\n\n {% endif %}\n\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.run_query"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.38517, "supported_languages": null}, "macro.dbt_utils.get_column_values": {"name": "get_column_values", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/get_column_values.sql", "original_file_path": "macros/sql/get_column_values.sql", "unique_id": "macro.dbt_utils.get_column_values", "macro_sql": "{% macro get_column_values(table, column, order_by='count(*) desc', max_records=none, default=none, where=none) -%}\n {{ return(adapter.dispatch('get_column_values', 'dbt_utils')(table, column, order_by, max_records, default, where)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.default__get_column_values"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.386318, "supported_languages": null}, "macro.dbt_utils.default__get_column_values": {"name": "default__get_column_values", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/get_column_values.sql", "original_file_path": "macros/sql/get_column_values.sql", "unique_id": "macro.dbt_utils.default__get_column_values", "macro_sql": "{% macro default__get_column_values(table, column, order_by='count(*) desc', max_records=none, default=none, where=none) -%}\n {#-- Prevent querying of db in parsing mode. This works because this macro does not create any new refs. #}\n {%- if not execute -%}\n {% set default = [] if not default %}\n {{ return(default) }}\n {% endif %}\n\n {%- do dbt_utils._is_ephemeral(table, 'get_column_values') -%}\n\n {# Not all relations are tables. Renaming for internal clarity without breaking functionality for anyone using named arguments #}\n {# TODO: Change the method signature in a future 0.x.0 release #}\n {%- set target_relation = table -%}\n\n {# adapter.load_relation is a convenience wrapper to avoid building a Relation when we already have one #}\n {% set relation_exists = (load_relation(target_relation)) is not none %}\n\n {%- call statement('get_column_values', fetch_result=true) %}\n\n {%- if not relation_exists and default is none -%}\n\n {{ exceptions.raise_compiler_error(\"In get_column_values(): relation \" ~ target_relation ~ \" does not exist and no default value was provided.\") }}\n\n {%- elif not relation_exists and default is not none -%}\n\n {{ log(\"Relation \" ~ target_relation ~ \" does not exist. Returning the default value: \" ~ default) }}\n\n {{ return(default) }}\n\n {%- else -%}\n\n\n select\n {{ column }} as value\n\n from {{ target_relation }}\n\n {% if where is not none %}\n where {{ where }}\n {% endif %}\n\n group by {{ column }}\n order by {{ order_by }}\n\n {% if max_records is not none %}\n limit {{ max_records }}\n {% endif %}\n\n {% endif %}\n\n {%- endcall -%}\n\n {%- set value_list = load_result('get_column_values') -%}\n\n {%- if value_list and value_list['data'] -%}\n {%- set values = value_list['data'] | map(attribute=0) | list %}\n {{ return(values) }}\n {%- else -%}\n {{ return(default) }}\n {%- endif -%}\n\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt_utils._is_ephemeral", "macro.dbt.load_relation", "macro.dbt.statement"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.387861, "supported_languages": null}, "macro.dbt_utils.pivot": {"name": "pivot", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/pivot.sql", "original_file_path": "macros/sql/pivot.sql", "unique_id": "macro.dbt_utils.pivot", "macro_sql": "{% macro pivot(column,\n values,\n alias=True,\n agg='sum',\n cmp='=',\n prefix='',\n suffix='',\n then_value=1,\n else_value=0,\n quote_identifiers=True,\n distinct=False) %}\n {{ return(adapter.dispatch('pivot', 'dbt_utils')(column, values, alias, agg, cmp, prefix, suffix, then_value, else_value, quote_identifiers, distinct)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.default__pivot"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.388938, "supported_languages": null}, "macro.dbt_utils.default__pivot": {"name": "default__pivot", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/pivot.sql", "original_file_path": "macros/sql/pivot.sql", "unique_id": "macro.dbt_utils.default__pivot", "macro_sql": "{% macro default__pivot(column,\n values,\n alias=True,\n agg='sum',\n cmp='=',\n prefix='',\n suffix='',\n then_value=1,\n else_value=0,\n quote_identifiers=True,\n distinct=False) %}\n {% for value in values %}\n {{ agg }}(\n {% if distinct %} distinct {% endif %}\n case\n when {{ column }} {{ cmp }} '{{ dbt.escape_single_quotes(value) }}'\n then {{ then_value }}\n else {{ else_value }}\n end\n )\n {% if alias %}\n {% if quote_identifiers %}\n as {{ adapter.quote(prefix ~ value ~ suffix) }}\n {% else %}\n as {{ dbt_utils.slugify(prefix ~ value ~ suffix) }}\n {% endif %}\n {% endif %}\n {% if not loop.last %},{% endif %}\n {% endfor %}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.escape_single_quotes", "macro.dbt_utils.slugify"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.389798, "supported_languages": null}, "macro.dbt_utils.get_filtered_columns_in_relation": {"name": "get_filtered_columns_in_relation", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/get_filtered_columns_in_relation.sql", "original_file_path": "macros/sql/get_filtered_columns_in_relation.sql", "unique_id": "macro.dbt_utils.get_filtered_columns_in_relation", "macro_sql": "{% macro get_filtered_columns_in_relation(from, except=[]) -%}\n {{ return(adapter.dispatch('get_filtered_columns_in_relation', 'dbt_utils')(from, except)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.default__get_filtered_columns_in_relation"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.390269, "supported_languages": null}, "macro.dbt_utils.default__get_filtered_columns_in_relation": {"name": "default__get_filtered_columns_in_relation", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/get_filtered_columns_in_relation.sql", "original_file_path": "macros/sql/get_filtered_columns_in_relation.sql", "unique_id": "macro.dbt_utils.default__get_filtered_columns_in_relation", "macro_sql": "{% macro default__get_filtered_columns_in_relation(from, except=[]) -%}\n {%- do dbt_utils._is_relation(from, 'get_filtered_columns_in_relation') -%}\n {%- do dbt_utils._is_ephemeral(from, 'get_filtered_columns_in_relation') -%}\n\n {# -- Prevent querying of db in parsing mode. This works because this macro does not create any new refs. #}\n {%- if not execute -%}\n {{ return('') }}\n {% endif %}\n\n {%- set include_cols = [] %}\n {%- set cols = adapter.get_columns_in_relation(from) -%}\n {%- set except = except | map(\"lower\") | list %}\n {%- for col in cols -%}\n {%- if col.column|lower not in except -%}\n {% do include_cols.append(col.column) %}\n {%- endif %}\n {%- endfor %}\n\n {{ return(include_cols) }}\n\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt_utils._is_relation", "macro.dbt_utils._is_ephemeral"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.39101, "supported_languages": null}, "macro.dbt_utils.width_bucket": {"name": "width_bucket", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/width_bucket.sql", "original_file_path": "macros/sql/width_bucket.sql", "unique_id": "macro.dbt_utils.width_bucket", "macro_sql": "{% macro width_bucket(expr, min_value, max_value, num_buckets) %}\n {{ return(adapter.dispatch('width_bucket', 'dbt_utils') (expr, min_value, max_value, num_buckets)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.default__width_bucket"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.391812, "supported_languages": null}, "macro.dbt_utils.default__width_bucket": {"name": "default__width_bucket", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/width_bucket.sql", "original_file_path": "macros/sql/width_bucket.sql", "unique_id": "macro.dbt_utils.default__width_bucket", "macro_sql": "{% macro default__width_bucket(expr, min_value, max_value, num_buckets) -%}\n\n {% set bin_size -%}\n (( {{ max_value }} - {{ min_value }} ) / {{ num_buckets }} )\n {%- endset %}\n (\n -- to break ties when the amount is eaxtly at the bucket egde\n case\n when\n mod(\n {{ dbt.safe_cast(expr, dbt.type_numeric() ) }},\n {{ dbt.safe_cast(bin_size, dbt.type_numeric() ) }}\n ) = 0\n then 1\n else 0\n end\n ) +\n -- Anything over max_value goes the N+1 bucket\n least(\n ceil(\n ({{ expr }} - {{ min_value }})/{{ bin_size }}\n ),\n {{ num_buckets }} + 1\n )\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt.safe_cast", "macro.dbt.type_numeric"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.3922849, "supported_languages": null}, "macro.dbt_utils.snowflake__width_bucket": {"name": "snowflake__width_bucket", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/width_bucket.sql", "original_file_path": "macros/sql/width_bucket.sql", "unique_id": "macro.dbt_utils.snowflake__width_bucket", "macro_sql": "{% macro snowflake__width_bucket(expr, min_value, max_value, num_buckets) %}\n width_bucket({{ expr }}, {{ min_value }}, {{ max_value }}, {{ num_buckets }} )\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.392477, "supported_languages": null}, "macro.dbt_utils.get_query_results_as_dict": {"name": "get_query_results_as_dict", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/get_query_results_as_dict.sql", "original_file_path": "macros/sql/get_query_results_as_dict.sql", "unique_id": "macro.dbt_utils.get_query_results_as_dict", "macro_sql": "{% macro get_query_results_as_dict(query) %}\n {{ return(adapter.dispatch('get_query_results_as_dict', 'dbt_utils')(query)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.default__get_query_results_as_dict"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.3928692, "supported_languages": null}, "macro.dbt_utils.default__get_query_results_as_dict": {"name": "default__get_query_results_as_dict", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/get_query_results_as_dict.sql", "original_file_path": "macros/sql/get_query_results_as_dict.sql", "unique_id": "macro.dbt_utils.default__get_query_results_as_dict", "macro_sql": "{% macro default__get_query_results_as_dict(query) %}\n\n{# This macro returns a dictionary of the form {column_name: (tuple_of_results)} #}\n\n {%- call statement('get_query_results', fetch_result=True,auto_begin=false) -%}\n\n {{ query }}\n\n {%- endcall -%}\n\n {% set sql_results={} %}\n\n {%- if execute -%}\n {% set sql_results_table = load_result('get_query_results').table.columns %}\n {% for column_name, column in sql_results_table.items() %}\n {% do sql_results.update({column_name: column.values()}) %}\n {% endfor %}\n {%- endif -%}\n\n {{ return(sql_results) }}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.statement"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.393472, "supported_languages": null}, "macro.dbt_utils.generate_surrogate_key": {"name": "generate_surrogate_key", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/generate_surrogate_key.sql", "original_file_path": "macros/sql/generate_surrogate_key.sql", "unique_id": "macro.dbt_utils.generate_surrogate_key", "macro_sql": "{%- macro generate_surrogate_key(field_list) -%}\n {{ return(adapter.dispatch('generate_surrogate_key', 'dbt_utils')(field_list)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.default__generate_surrogate_key"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.393934, "supported_languages": null}, "macro.dbt_utils.default__generate_surrogate_key": {"name": "default__generate_surrogate_key", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/generate_surrogate_key.sql", "original_file_path": "macros/sql/generate_surrogate_key.sql", "unique_id": "macro.dbt_utils.default__generate_surrogate_key", "macro_sql": "\n\n{%- macro default__generate_surrogate_key(field_list) -%}\n\n{%- if var('surrogate_key_treat_nulls_as_empty_strings', False) -%}\n {%- set default_null_value = \"\" -%}\n{%- else -%}\n {%- set default_null_value = '_dbt_utils_surrogate_key_null_' -%}\n{%- endif -%}\n\n{%- set fields = [] -%}\n\n{%- for field in field_list -%}\n\n {%- do fields.append(\n \"coalesce(cast(\" ~ field ~ \" as \" ~ dbt.type_string() ~ \"), '\" ~ default_null_value ~\"')\"\n ) -%}\n\n {%- if not loop.last %}\n {%- do fields.append(\"'-'\") -%}\n {%- endif -%}\n\n{%- endfor -%}\n\n{{ dbt.hash(dbt.concat(fields)) }}\n\n{%- endmacro -%}", "depends_on": {"macros": ["macro.dbt.type_string", "macro.dbt.hash", "macro.dbt.concat"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.3945742, "supported_languages": null}, "macro.dbt_utils.get_table_types_sql": {"name": "get_table_types_sql", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/get_table_types_sql.sql", "original_file_path": "macros/sql/get_table_types_sql.sql", "unique_id": "macro.dbt_utils.get_table_types_sql", "macro_sql": "{%- macro get_table_types_sql() -%}\n {{ return(adapter.dispatch('get_table_types_sql', 'dbt_utils')()) }}\n{%- endmacro -%}\n\n", "depends_on": {"macros": ["macro.dbt_utils.postgres__get_table_types_sql"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.395116, "supported_languages": null}, "macro.dbt_utils.default__get_table_types_sql": {"name": "default__get_table_types_sql", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/get_table_types_sql.sql", "original_file_path": "macros/sql/get_table_types_sql.sql", "unique_id": "macro.dbt_utils.default__get_table_types_sql", "macro_sql": "{% macro default__get_table_types_sql() %}\n case table_type\n when 'BASE TABLE' then 'table'\n when 'EXTERNAL TABLE' then 'external'\n when 'MATERIALIZED VIEW' then 'materializedview'\n else lower(table_type)\n end as {{ adapter.quote('table_type') }}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.395257, "supported_languages": null}, "macro.dbt_utils.postgres__get_table_types_sql": {"name": "postgres__get_table_types_sql", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/get_table_types_sql.sql", "original_file_path": "macros/sql/get_table_types_sql.sql", "unique_id": "macro.dbt_utils.postgres__get_table_types_sql", "macro_sql": "{% macro postgres__get_table_types_sql() %}\n case table_type\n when 'BASE TABLE' then 'table'\n when 'FOREIGN' then 'external'\n when 'MATERIALIZED VIEW' then 'materializedview'\n else lower(table_type)\n end as {{ adapter.quote('table_type') }}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.3953972, "supported_languages": null}, "macro.dbt_utils.databricks__get_table_types_sql": {"name": "databricks__get_table_types_sql", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/get_table_types_sql.sql", "original_file_path": "macros/sql/get_table_types_sql.sql", "unique_id": "macro.dbt_utils.databricks__get_table_types_sql", "macro_sql": "{% macro databricks__get_table_types_sql() %}\n case table_type\n when 'MANAGED' then 'table'\n when 'BASE TABLE' then 'table'\n when 'MATERIALIZED VIEW' then 'materializedview'\n else lower(table_type)\n end as {{ adapter.quote('table_type') }}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.395536, "supported_languages": null}, "macro.dbt_utils.get_single_value": {"name": "get_single_value", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/get_single_value.sql", "original_file_path": "macros/sql/get_single_value.sql", "unique_id": "macro.dbt_utils.get_single_value", "macro_sql": "{% macro get_single_value(query, default=none) %}\n {{ return(adapter.dispatch('get_single_value', 'dbt_utils')(query, default)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.default__get_single_value"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.396058, "supported_languages": null}, "macro.dbt_utils.default__get_single_value": {"name": "default__get_single_value", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/get_single_value.sql", "original_file_path": "macros/sql/get_single_value.sql", "unique_id": "macro.dbt_utils.default__get_single_value", "macro_sql": "{% macro default__get_single_value(query, default) %}\n\n{# This macro returns the (0, 0) record in a query, i.e. the first row of the first column #}\n\n {%- call statement('get_query_result', fetch_result=True, auto_begin=false) -%}\n\n {{ query }}\n\n {%- endcall -%}\n\n {%- if execute -%}\n\n {% set r = load_result('get_query_result').table.columns[0].values() %}\n {% if r | length == 0 %}\n {% do print('Query `' ~ query ~ '` returned no rows. Using the default value: ' ~ default) %}\n {% set sql_result = default %}\n {% else %}\n {% set sql_result = r[0] %}\n {% endif %}\n \n {%- else -%}\n \n {% set sql_result = default %}\n \n {%- endif -%}\n\n {% do return(sql_result) %}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.statement"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.3969018, "supported_languages": null}, "macro.dbt_utils.degrees_to_radians": {"name": "degrees_to_radians", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/haversine_distance.sql", "original_file_path": "macros/sql/haversine_distance.sql", "unique_id": "macro.dbt_utils.degrees_to_radians", "macro_sql": "{% macro degrees_to_radians(degrees) -%}\n acos(-1) * {{degrees}} / 180\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.398069, "supported_languages": null}, "macro.dbt_utils.haversine_distance": {"name": "haversine_distance", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/haversine_distance.sql", "original_file_path": "macros/sql/haversine_distance.sql", "unique_id": "macro.dbt_utils.haversine_distance", "macro_sql": "{% macro haversine_distance(lat1, lon1, lat2, lon2, unit='mi') -%}\n {{ return(adapter.dispatch('haversine_distance', 'dbt_utils')(lat1,lon1,lat2,lon2,unit)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.default__haversine_distance"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.398381, "supported_languages": null}, "macro.dbt_utils.default__haversine_distance": {"name": "default__haversine_distance", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/haversine_distance.sql", "original_file_path": "macros/sql/haversine_distance.sql", "unique_id": "macro.dbt_utils.default__haversine_distance", "macro_sql": "{% macro default__haversine_distance(lat1, lon1, lat2, lon2, unit='mi') -%}\n{%- if unit == 'mi' %}\n {% set conversion_rate = 1 %}\n{% elif unit == 'km' %}\n {% set conversion_rate = 1.60934 %}\n{% else %}\n {{ exceptions.raise_compiler_error(\"unit input must be one of 'mi' or 'km'. Got \" ~ unit) }}\n{% endif %}\n\n 2 * 3961 * asin(sqrt(power((sin(radians(({{ lat2 }} - {{ lat1 }}) / 2))), 2) +\n cos(radians({{lat1}})) * cos(radians({{lat2}})) *\n power((sin(radians(({{ lon2 }} - {{ lon1 }}) / 2))), 2))) * {{ conversion_rate }}\n\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.398957, "supported_languages": null}, "macro.dbt_utils.bigquery__haversine_distance": {"name": "bigquery__haversine_distance", "resource_type": "macro", "package_name": "dbt_utils", "path": "macros/sql/haversine_distance.sql", "original_file_path": "macros/sql/haversine_distance.sql", "unique_id": "macro.dbt_utils.bigquery__haversine_distance", "macro_sql": "{% macro bigquery__haversine_distance(lat1, lon1, lat2, lon2, unit='mi') -%}\n{% set radians_lat1 = dbt_utils.degrees_to_radians(lat1) %}\n{% set radians_lat2 = dbt_utils.degrees_to_radians(lat2) %}\n{% set radians_lon1 = dbt_utils.degrees_to_radians(lon1) %}\n{% set radians_lon2 = dbt_utils.degrees_to_radians(lon2) %}\n{%- if unit == 'mi' %}\n {% set conversion_rate = 1 %}\n{% elif unit == 'km' %}\n {% set conversion_rate = 1.60934 %}\n{% else %}\n {{ exceptions.raise_compiler_error(\"unit input must be one of 'mi' or 'km'. Got \" ~ unit) }}\n{% endif %}\n 2 * 3961 * asin(sqrt(power(sin(({{ radians_lat2 }} - {{ radians_lat1 }}) / 2), 2) +\n cos({{ radians_lat1 }}) * cos({{ radians_lat2 }}) *\n power(sin(({{ radians_lon2 }} - {{ radians_lon1 }}) / 2), 2))) * {{ conversion_rate }}\n\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.degrees_to_radians"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.39978, "supported_languages": null}, "macro.spark_utils.get_tables": {"name": "get_tables", "resource_type": "macro", "package_name": "spark_utils", "path": "macros/maintenance_operation.sql", "original_file_path": "macros/maintenance_operation.sql", "unique_id": "macro.spark_utils.get_tables", "macro_sql": "{% macro get_tables(table_regex_pattern='.*') %}\n\n {% set tables = [] %}\n {% for database in spark__list_schemas('not_used') %}\n {% for table in spark__list_relations_without_caching(database[0]) %}\n {% set db_tablename = database[0] ~ \".\" ~ table[1] %}\n {% set is_match = modules.re.match(table_regex_pattern, db_tablename) %}\n {% if is_match %}\n {% call statement('table_detail', fetch_result=True) -%}\n describe extended {{ db_tablename }}\n {% endcall %}\n\n {% set table_type = load_result('table_detail').table|reverse|selectattr(0, 'in', ('type', 'TYPE', 'Type'))|first %}\n {% if table_type[1]|lower != 'view' %}\n {{ tables.append(db_tablename) }}\n {% endif %}\n {% endif %}\n {% endfor %}\n {% endfor %}\n {{ return(tables) }}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.statement"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.4051032, "supported_languages": null}, "macro.spark_utils.get_delta_tables": {"name": "get_delta_tables", "resource_type": "macro", "package_name": "spark_utils", "path": "macros/maintenance_operation.sql", "original_file_path": "macros/maintenance_operation.sql", "unique_id": "macro.spark_utils.get_delta_tables", "macro_sql": "{% macro get_delta_tables(table_regex_pattern='.*') %}\n\n {% set delta_tables = [] %}\n {% for db_tablename in get_tables(table_regex_pattern) %}\n {% call statement('table_detail', fetch_result=True) -%}\n describe extended {{ db_tablename }}\n {% endcall %}\n\n {% set table_type = load_result('table_detail').table|reverse|selectattr(0, 'in', ('provider', 'PROVIDER', 'Provider'))|first %}\n {% if table_type[1]|lower == 'delta' %}\n {{ delta_tables.append(db_tablename) }}\n {% endif %}\n {% endfor %}\n {{ return(delta_tables) }}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.spark_utils.get_tables", "macro.dbt.statement"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.405816, "supported_languages": null}, "macro.spark_utils.get_statistic_columns": {"name": "get_statistic_columns", "resource_type": "macro", "package_name": "spark_utils", "path": "macros/maintenance_operation.sql", "original_file_path": "macros/maintenance_operation.sql", "unique_id": "macro.spark_utils.get_statistic_columns", "macro_sql": "{% macro get_statistic_columns(table) %}\n\n {% call statement('input_columns', fetch_result=True) %}\n SHOW COLUMNS IN {{ table }}\n {% endcall %}\n {% set input_columns = load_result('input_columns').table %}\n\n {% set output_columns = [] %}\n {% for column in input_columns %}\n {% call statement('column_information', fetch_result=True) %}\n DESCRIBE TABLE {{ table }} `{{ column[0] }}`\n {% endcall %}\n {% if not load_result('column_information').table[1][1].startswith('struct') and not load_result('column_information').table[1][1].startswith('array') %}\n {{ output_columns.append('`' ~ column[0] ~ '`') }}\n {% endif %}\n {% endfor %}\n {{ return(output_columns) }}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.statement"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.406726, "supported_languages": null}, "macro.spark_utils.spark_optimize_delta_tables": {"name": "spark_optimize_delta_tables", "resource_type": "macro", "package_name": "spark_utils", "path": "macros/maintenance_operation.sql", "original_file_path": "macros/maintenance_operation.sql", "unique_id": "macro.spark_utils.spark_optimize_delta_tables", "macro_sql": "{% macro spark_optimize_delta_tables(table_regex_pattern='.*') %}\n\n {% for table in get_delta_tables(table_regex_pattern) %}\n {% set start=modules.datetime.datetime.now() %}\n {% set message_prefix=loop.index ~ \" of \" ~ loop.length %}\n {{ dbt_utils.log_info(message_prefix ~ \" Optimizing \" ~ table) }}\n {% do run_query(\"optimize \" ~ table) %}\n {% set end=modules.datetime.datetime.now() %}\n {% set total_seconds = (end - start).total_seconds() | round(2) %}\n {{ dbt_utils.log_info(message_prefix ~ \" Finished \" ~ table ~ \" in \" ~ total_seconds ~ \"s\") }}\n {% endfor %}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.spark_utils.get_delta_tables", "macro.dbt_utils.log_info", "macro.dbt.run_query"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.4074821, "supported_languages": null}, "macro.spark_utils.spark_vacuum_delta_tables": {"name": "spark_vacuum_delta_tables", "resource_type": "macro", "package_name": "spark_utils", "path": "macros/maintenance_operation.sql", "original_file_path": "macros/maintenance_operation.sql", "unique_id": "macro.spark_utils.spark_vacuum_delta_tables", "macro_sql": "{% macro spark_vacuum_delta_tables(table_regex_pattern='.*') %}\n\n {% for table in get_delta_tables(table_regex_pattern) %}\n {% set start=modules.datetime.datetime.now() %}\n {% set message_prefix=loop.index ~ \" of \" ~ loop.length %}\n {{ dbt_utils.log_info(message_prefix ~ \" Vacuuming \" ~ table) }}\n {% do run_query(\"vacuum \" ~ table) %}\n {% set end=modules.datetime.datetime.now() %}\n {% set total_seconds = (end - start).total_seconds() | round(2) %}\n {{ dbt_utils.log_info(message_prefix ~ \" Finished \" ~ table ~ \" in \" ~ total_seconds ~ \"s\") }}\n {% endfor %}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.spark_utils.get_delta_tables", "macro.dbt_utils.log_info", "macro.dbt.run_query"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.408232, "supported_languages": null}, "macro.spark_utils.spark_analyze_tables": {"name": "spark_analyze_tables", "resource_type": "macro", "package_name": "spark_utils", "path": "macros/maintenance_operation.sql", "original_file_path": "macros/maintenance_operation.sql", "unique_id": "macro.spark_utils.spark_analyze_tables", "macro_sql": "{% macro spark_analyze_tables(table_regex_pattern='.*') %}\n\n {% for table in get_tables(table_regex_pattern) %}\n {% set start=modules.datetime.datetime.now() %}\n {% set columns = get_statistic_columns(table) | join(',') %}\n {% set message_prefix=loop.index ~ \" of \" ~ loop.length %}\n {{ dbt_utils.log_info(message_prefix ~ \" Analyzing \" ~ table) }}\n {% if columns != '' %}\n {% do run_query(\"analyze table \" ~ table ~ \" compute statistics for columns \" ~ columns) %}\n {% endif %}\n {% set end=modules.datetime.datetime.now() %}\n {% set total_seconds = (end - start).total_seconds() | round(2) %}\n {{ dbt_utils.log_info(message_prefix ~ \" Finished \" ~ table ~ \" in \" ~ total_seconds ~ \"s\") }}\n {% endfor %}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.spark_utils.get_tables", "macro.spark_utils.get_statistic_columns", "macro.dbt_utils.log_info", "macro.dbt.run_query"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.409218, "supported_languages": null}, "macro.spark_utils.spark__concat": {"name": "spark__concat", "resource_type": "macro", "package_name": "spark_utils", "path": "macros/dbt_utils/cross_db_utils/concat.sql", "original_file_path": "macros/dbt_utils/cross_db_utils/concat.sql", "unique_id": "macro.spark_utils.spark__concat", "macro_sql": "{% macro spark__concat(fields) -%}\n concat({{ fields|join(', ') }})\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.409396, "supported_languages": null}, "macro.spark_utils.spark__type_numeric": {"name": "spark__type_numeric", "resource_type": "macro", "package_name": "spark_utils", "path": "macros/dbt_utils/cross_db_utils/datatypes.sql", "original_file_path": "macros/dbt_utils/cross_db_utils/datatypes.sql", "unique_id": "macro.spark_utils.spark__type_numeric", "macro_sql": "{% macro spark__type_numeric() %}\n decimal(28, 6)\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.409508, "supported_languages": null}, "macro.spark_utils.spark__dateadd": {"name": "spark__dateadd", "resource_type": "macro", "package_name": "spark_utils", "path": "macros/dbt_utils/cross_db_utils/dateadd.sql", "original_file_path": "macros/dbt_utils/cross_db_utils/dateadd.sql", "unique_id": "macro.spark_utils.spark__dateadd", "macro_sql": "{% macro spark__dateadd(datepart, interval, from_date_or_timestamp) %}\n\n {%- set clock_component -%}\n {# make sure the dates + timestamps are real, otherwise raise an error asap #}\n to_unix_timestamp({{ spark_utils.assert_not_null('to_timestamp', from_date_or_timestamp) }})\n - to_unix_timestamp({{ spark_utils.assert_not_null('date', from_date_or_timestamp) }})\n {%- endset -%}\n\n {%- if datepart in ['day', 'week'] -%}\n \n {%- set multiplier = 7 if datepart == 'week' else 1 -%}\n\n to_timestamp(\n to_unix_timestamp(\n date_add(\n {{ spark_utils.assert_not_null('date', from_date_or_timestamp) }},\n cast({{interval}} * {{multiplier}} as int)\n )\n ) + {{clock_component}}\n )\n\n {%- elif datepart in ['month', 'quarter', 'year'] -%}\n \n {%- set multiplier -%} \n {%- if datepart == 'month' -%} 1\n {%- elif datepart == 'quarter' -%} 3\n {%- elif datepart == 'year' -%} 12\n {%- endif -%}\n {%- endset -%}\n\n to_timestamp(\n to_unix_timestamp(\n add_months(\n {{ spark_utils.assert_not_null('date', from_date_or_timestamp) }},\n cast({{interval}} * {{multiplier}} as int)\n )\n ) + {{clock_component}}\n )\n\n {%- elif datepart in ('hour', 'minute', 'second', 'millisecond', 'microsecond') -%}\n \n {%- set multiplier -%} \n {%- if datepart == 'hour' -%} 3600\n {%- elif datepart == 'minute' -%} 60\n {%- elif datepart == 'second' -%} 1\n {%- elif datepart == 'millisecond' -%} (1/1000000)\n {%- elif datepart == 'microsecond' -%} (1/1000000)\n {%- endif -%}\n {%- endset -%}\n\n to_timestamp(\n {{ spark_utils.assert_not_null('to_unix_timestamp', from_date_or_timestamp) }}\n + cast({{interval}} * {{multiplier}} as int)\n )\n\n {%- else -%}\n\n {{ exceptions.raise_compiler_error(\"macro dateadd not implemented for datepart ~ '\" ~ datepart ~ \"' ~ on Spark\") }}\n\n {%- endif -%}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.spark_utils.assert_not_null"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.412431, "supported_languages": null}, "macro.spark_utils.spark__datediff": {"name": "spark__datediff", "resource_type": "macro", "package_name": "spark_utils", "path": "macros/dbt_utils/cross_db_utils/datediff.sql", "original_file_path": "macros/dbt_utils/cross_db_utils/datediff.sql", "unique_id": "macro.spark_utils.spark__datediff", "macro_sql": "{% macro spark__datediff(first_date, second_date, datepart) %}\n\n {%- if datepart in ['day', 'week', 'month', 'quarter', 'year'] -%}\n \n {# make sure the dates are real, otherwise raise an error asap #}\n {% set first_date = spark_utils.assert_not_null('date', first_date) %}\n {% set second_date = spark_utils.assert_not_null('date', second_date) %}\n \n {%- endif -%}\n \n {%- if datepart == 'day' -%}\n \n datediff({{second_date}}, {{first_date}})\n \n {%- elif datepart == 'week' -%}\n \n case when {{first_date}} < {{second_date}}\n then floor(datediff({{second_date}}, {{first_date}})/7)\n else ceil(datediff({{second_date}}, {{first_date}})/7)\n end\n \n -- did we cross a week boundary (Sunday)?\n + case\n when {{first_date}} < {{second_date}} and dayofweek({{second_date}}) < dayofweek({{first_date}}) then 1\n when {{first_date}} > {{second_date}} and dayofweek({{second_date}}) > dayofweek({{first_date}}) then -1\n else 0 end\n\n {%- elif datepart == 'month' -%}\n\n case when {{first_date}} < {{second_date}}\n then floor(months_between(date({{second_date}}), date({{first_date}})))\n else ceil(months_between(date({{second_date}}), date({{first_date}})))\n end\n \n -- did we cross a month boundary?\n + case\n when {{first_date}} < {{second_date}} and dayofmonth({{second_date}}) < dayofmonth({{first_date}}) then 1\n when {{first_date}} > {{second_date}} and dayofmonth({{second_date}}) > dayofmonth({{first_date}}) then -1\n else 0 end\n \n {%- elif datepart == 'quarter' -%}\n \n case when {{first_date}} < {{second_date}}\n then floor(months_between(date({{second_date}}), date({{first_date}}))/3)\n else ceil(months_between(date({{second_date}}), date({{first_date}}))/3)\n end\n \n -- did we cross a quarter boundary?\n + case\n when {{first_date}} < {{second_date}} and (\n (dayofyear({{second_date}}) - (quarter({{second_date}}) * 365/4))\n < (dayofyear({{first_date}}) - (quarter({{first_date}}) * 365/4))\n ) then 1\n when {{first_date}} > {{second_date}} and (\n (dayofyear({{second_date}}) - (quarter({{second_date}}) * 365/4))\n > (dayofyear({{first_date}}) - (quarter({{first_date}}) * 365/4))\n ) then -1\n else 0 end\n\n {%- elif datepart == 'year' -%}\n \n year({{second_date}}) - year({{first_date}})\n\n {%- elif datepart in ('hour', 'minute', 'second', 'millisecond', 'microsecond') -%}\n \n {%- set divisor -%} \n {%- if datepart == 'hour' -%} 3600\n {%- elif datepart == 'minute' -%} 60\n {%- elif datepart == 'second' -%} 1\n {%- elif datepart == 'millisecond' -%} (1/1000)\n {%- elif datepart == 'microsecond' -%} (1/1000000)\n {%- endif -%}\n {%- endset -%}\n\n case when {{first_date}} < {{second_date}}\n then ceil((\n {# make sure the timestamps are real, otherwise raise an error asap #}\n {{ spark_utils.assert_not_null('to_unix_timestamp', spark_utils.assert_not_null('to_timestamp', second_date)) }}\n - {{ spark_utils.assert_not_null('to_unix_timestamp', spark_utils.assert_not_null('to_timestamp', first_date)) }}\n ) / {{divisor}})\n else floor((\n {{ spark_utils.assert_not_null('to_unix_timestamp', spark_utils.assert_not_null('to_timestamp', second_date)) }}\n - {{ spark_utils.assert_not_null('to_unix_timestamp', spark_utils.assert_not_null('to_timestamp', first_date)) }}\n ) / {{divisor}})\n end\n \n {% if datepart == 'millisecond' %}\n + cast(date_format({{second_date}}, 'SSS') as int)\n - cast(date_format({{first_date}}, 'SSS') as int)\n {% endif %}\n \n {% if datepart == 'microsecond' %} \n {% set capture_str = '[0-9]{4}-[0-9]{2}-[0-9]{2}.[0-9]{2}:[0-9]{2}:[0-9]{2}.([0-9]{6})' %}\n -- Spark doesn't really support microseconds, so this is a massive hack!\n -- It will only work if the timestamp-string is of the format\n -- 'yyyy-MM-dd-HH mm.ss.SSSSSS'\n + cast(regexp_extract({{second_date}}, '{{capture_str}}', 1) as int)\n - cast(regexp_extract({{first_date}}, '{{capture_str}}', 1) as int) \n {% endif %}\n\n {%- else -%}\n\n {{ exceptions.raise_compiler_error(\"macro datediff not implemented for datepart ~ '\" ~ datepart ~ \"' ~ on Spark\") }}\n\n {%- endif -%}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.spark_utils.assert_not_null"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.420186, "supported_languages": null}, "macro.spark_utils.spark__current_timestamp": {"name": "spark__current_timestamp", "resource_type": "macro", "package_name": "spark_utils", "path": "macros/dbt_utils/cross_db_utils/current_timestamp.sql", "original_file_path": "macros/dbt_utils/cross_db_utils/current_timestamp.sql", "unique_id": "macro.spark_utils.spark__current_timestamp", "macro_sql": "{% macro spark__current_timestamp() %}\n current_timestamp()\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.420327, "supported_languages": null}, "macro.spark_utils.spark__current_timestamp_in_utc": {"name": "spark__current_timestamp_in_utc", "resource_type": "macro", "package_name": "spark_utils", "path": "macros/dbt_utils/cross_db_utils/current_timestamp.sql", "original_file_path": "macros/dbt_utils/cross_db_utils/current_timestamp.sql", "unique_id": "macro.spark_utils.spark__current_timestamp_in_utc", "macro_sql": "{% macro spark__current_timestamp_in_utc() %}\n unix_timestamp()\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.420405, "supported_languages": null}, "macro.spark_utils.spark__split_part": {"name": "spark__split_part", "resource_type": "macro", "package_name": "spark_utils", "path": "macros/dbt_utils/cross_db_utils/split_part.sql", "original_file_path": "macros/dbt_utils/cross_db_utils/split_part.sql", "unique_id": "macro.spark_utils.spark__split_part", "macro_sql": "{% macro spark__split_part(string_text, delimiter_text, part_number) %}\n\n {% set delimiter_expr %}\n \n -- escape if starts with a special character\n case when regexp_extract({{ delimiter_text }}, '([^A-Za-z0-9])(.*)', 1) != '_'\n then concat('\\\\', {{ delimiter_text }})\n else {{ delimiter_text }} end\n \n {% endset %}\n\n {% set split_part_expr %}\n \n split(\n {{ string_text }},\n {{ delimiter_expr }}\n )[({{ part_number - 1 }})]\n \n {% endset %}\n \n {{ return(split_part_expr) }}\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.420991, "supported_languages": null}, "macro.spark_utils.spark__get_relations_by_pattern": {"name": "spark__get_relations_by_pattern", "resource_type": "macro", "package_name": "spark_utils", "path": "macros/dbt_utils/sql/get_relations_by_prefix.sql", "original_file_path": "macros/dbt_utils/sql/get_relations_by_prefix.sql", "unique_id": "macro.spark_utils.spark__get_relations_by_pattern", "macro_sql": "{% macro spark__get_relations_by_pattern(schema_pattern, table_pattern, exclude='', database=target.database) %}\n\n {%- call statement('get_tables', fetch_result=True) %}\n\n show table extended in {{ schema_pattern }} like '{{ table_pattern }}'\n\n {%- endcall -%}\n\n {%- set table_list = load_result('get_tables') -%}\n\n {%- if table_list and table_list['table'] -%}\n {%- set tbl_relations = [] -%}\n {%- for row in table_list['table'] -%}\n {%- set tbl_relation = api.Relation.create(\n database=None,\n schema=row[0],\n identifier=row[1],\n type=('view' if 'Type: VIEW' in row[3] else 'table')\n ) -%}\n {%- do tbl_relations.append(tbl_relation) -%}\n {%- endfor -%}\n\n {{ return(tbl_relations) }}\n {%- else -%}\n {{ return([]) }}\n {%- endif -%}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.statement"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.422612, "supported_languages": null}, "macro.spark_utils.spark__get_relations_by_prefix": {"name": "spark__get_relations_by_prefix", "resource_type": "macro", "package_name": "spark_utils", "path": "macros/dbt_utils/sql/get_relations_by_prefix.sql", "original_file_path": "macros/dbt_utils/sql/get_relations_by_prefix.sql", "unique_id": "macro.spark_utils.spark__get_relations_by_prefix", "macro_sql": "{% macro spark__get_relations_by_prefix(schema_pattern, table_pattern, exclude='', database=target.database) %}\n {% set table_pattern = table_pattern ~ '*' %}\n {{ return(spark_utils.spark__get_relations_by_pattern(schema_pattern, table_pattern, exclude='', database=target.database)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.spark_utils.spark__get_relations_by_pattern"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.422969, "supported_languages": null}, "macro.spark_utils.spark__get_tables_by_pattern": {"name": "spark__get_tables_by_pattern", "resource_type": "macro", "package_name": "spark_utils", "path": "macros/dbt_utils/sql/get_relations_by_prefix.sql", "original_file_path": "macros/dbt_utils/sql/get_relations_by_prefix.sql", "unique_id": "macro.spark_utils.spark__get_tables_by_pattern", "macro_sql": "{% macro spark__get_tables_by_pattern(schema_pattern, table_pattern, exclude='', database=target.database) %}\n {{ return(spark_utils.spark__get_relations_by_pattern(schema_pattern, table_pattern, exclude='', database=target.database)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.spark_utils.spark__get_relations_by_pattern"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.423262, "supported_languages": null}, "macro.spark_utils.spark__get_tables_by_prefix": {"name": "spark__get_tables_by_prefix", "resource_type": "macro", "package_name": "spark_utils", "path": "macros/dbt_utils/sql/get_relations_by_prefix.sql", "original_file_path": "macros/dbt_utils/sql/get_relations_by_prefix.sql", "unique_id": "macro.spark_utils.spark__get_tables_by_prefix", "macro_sql": "{% macro spark__get_tables_by_prefix(schema_pattern, table_pattern, exclude='', database=target.database) %}\n {{ return(spark_utils.spark__get_relations_by_prefix(schema_pattern, table_pattern, exclude='', database=target.database)) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.spark_utils.spark__get_relations_by_prefix"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.423542, "supported_languages": null}, "macro.spark_utils.assert_not_null": {"name": "assert_not_null", "resource_type": "macro", "package_name": "spark_utils", "path": "macros/etc/assert_not_null.sql", "original_file_path": "macros/etc/assert_not_null.sql", "unique_id": "macro.spark_utils.assert_not_null", "macro_sql": "{% macro assert_not_null(function, arg) -%}\n {{ return(adapter.dispatch('assert_not_null', 'spark_utils')(function, arg)) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.spark_utils.default__assert_not_null"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.423865, "supported_languages": null}, "macro.spark_utils.default__assert_not_null": {"name": "default__assert_not_null", "resource_type": "macro", "package_name": "spark_utils", "path": "macros/etc/assert_not_null.sql", "original_file_path": "macros/etc/assert_not_null.sql", "unique_id": "macro.spark_utils.default__assert_not_null", "macro_sql": "{% macro default__assert_not_null(function, arg) %}\n\n coalesce({{function}}({{arg}}), nvl2({{function}}({{arg}}), assert_true({{function}}({{arg}}) is not null), null))\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.4240692, "supported_languages": null}, "macro.spark_utils.spark__convert_timezone": {"name": "spark__convert_timezone", "resource_type": "macro", "package_name": "spark_utils", "path": "macros/snowplow/convert_timezone.sql", "original_file_path": "macros/snowplow/convert_timezone.sql", "unique_id": "macro.spark_utils.spark__convert_timezone", "macro_sql": "{% macro spark__convert_timezone(in_tz, out_tz, in_timestamp) %}\n from_utc_timestamp(to_utc_timestamp({{in_timestamp}}, {{in_tz}}), {{out_tz}})\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.4242759, "supported_languages": null}, "macro.fivetran_utils.enabled_vars": {"name": "enabled_vars", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/enabled_vars.sql", "original_file_path": "macros/enabled_vars.sql", "unique_id": "macro.fivetran_utils.enabled_vars", "macro_sql": "{% macro enabled_vars(vars) %}\n\n{% for v in vars %}\n \n {% if var(v, True) == False %}\n {{ return(False) }}\n {% endif %}\n\n{% endfor %}\n\n{{ return(True) }}\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.424673, "supported_languages": null}, "macro.fivetran_utils.percentile": {"name": "percentile", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/percentile.sql", "original_file_path": "macros/percentile.sql", "unique_id": "macro.fivetran_utils.percentile", "macro_sql": "{% macro percentile(percentile_field, partition_field, percent) -%}\n\n{{ adapter.dispatch('percentile', 'fivetran_utils') (percentile_field, partition_field, percent) }}\n\n{%- endmacro %}", "depends_on": {"macros": ["macro.fivetran_utils.postgres__percentile"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.4256299, "supported_languages": null}, "macro.fivetran_utils.default__percentile": {"name": "default__percentile", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/percentile.sql", "original_file_path": "macros/percentile.sql", "unique_id": "macro.fivetran_utils.default__percentile", "macro_sql": "{% macro default__percentile(percentile_field, partition_field, percent) %}\n\n percentile_cont( \n {{ percent }} )\n within group ( order by {{ percentile_field }} )\n over ( partition by {{ partition_field }} )\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.4257998, "supported_languages": null}, "macro.fivetran_utils.redshift__percentile": {"name": "redshift__percentile", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/percentile.sql", "original_file_path": "macros/percentile.sql", "unique_id": "macro.fivetran_utils.redshift__percentile", "macro_sql": "{% macro redshift__percentile(percentile_field, partition_field, percent) %}\n\n percentile_cont( \n {{ percent }} )\n within group ( order by {{ percentile_field }} )\n over ( partition by {{ partition_field }} )\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.4259672, "supported_languages": null}, "macro.fivetran_utils.bigquery__percentile": {"name": "bigquery__percentile", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/percentile.sql", "original_file_path": "macros/percentile.sql", "unique_id": "macro.fivetran_utils.bigquery__percentile", "macro_sql": "{% macro bigquery__percentile(percentile_field, partition_field, percent) %}\n\n percentile_cont( \n {{ percentile_field }}, \n {{ percent }}) \n over (partition by {{ partition_field }} \n )\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.426137, "supported_languages": null}, "macro.fivetran_utils.postgres__percentile": {"name": "postgres__percentile", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/percentile.sql", "original_file_path": "macros/percentile.sql", "unique_id": "macro.fivetran_utils.postgres__percentile", "macro_sql": "{% macro postgres__percentile(percentile_field, partition_field, percent) %}\n\n percentile_cont( \n {{ percent }} )\n within group ( order by {{ percentile_field }} )\n /* have to group by partition field */\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.42628, "supported_languages": null}, "macro.fivetran_utils.spark__percentile": {"name": "spark__percentile", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/percentile.sql", "original_file_path": "macros/percentile.sql", "unique_id": "macro.fivetran_utils.spark__percentile", "macro_sql": "{% macro spark__percentile(percentile_field, partition_field, percent) %}\n\n percentile( \n {{ percentile_field }}, \n {{ percent }}) \n over (partition by {{ partition_field }} \n )\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.4264472, "supported_languages": null}, "macro.fivetran_utils.pivot_json_extract": {"name": "pivot_json_extract", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/pivot_json_extract.sql", "original_file_path": "macros/pivot_json_extract.sql", "unique_id": "macro.fivetran_utils.pivot_json_extract", "macro_sql": "{% macro pivot_json_extract(string, list_of_properties) %}\n\n{%- for property in list_of_properties -%}\n{%- if property is mapping -%}\nreplace( {{ fivetran_utils.json_extract(string, property.name) }}, '\"', '') as {{ property.alias if property.alias else property.name | replace(' ', '_') | replace('.', '_') | lower }}\n\n{%- else -%}\nreplace( {{ fivetran_utils.json_extract(string, property) }}, '\"', '') as {{ property | replace(' ', '_') | lower }}\n\n{%- endif -%}\n{%- if not loop.last -%},{%- endif %}\n{% endfor -%}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.fivetran_utils.json_extract"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.427317, "supported_languages": null}, "macro.fivetran_utils.persist_pass_through_columns": {"name": "persist_pass_through_columns", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/persist_pass_through_columns.sql", "original_file_path": "macros/persist_pass_through_columns.sql", "unique_id": "macro.fivetran_utils.persist_pass_through_columns", "macro_sql": "{% macro persist_pass_through_columns(pass_through_variable, identifier=none, transform='') %}\n\n{% if var(pass_through_variable, none) %}\n {% for field in var(pass_through_variable) %}\n , {{ transform ~ '(' ~ (identifier ~ '.' if identifier else '') ~ (field.alias if field.alias else field.name) ~ ')' }} as {{ field.alias if field.alias else field.name }}\n {% endfor %}\n{% endif %}\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.4279711, "supported_languages": null}, "macro.fivetran_utils.json_parse": {"name": "json_parse", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/json_parse.sql", "original_file_path": "macros/json_parse.sql", "unique_id": "macro.fivetran_utils.json_parse", "macro_sql": "{% macro json_parse(string, string_path) -%}\n\n{{ adapter.dispatch('json_parse', 'fivetran_utils') (string, string_path) }}\n\n{%- endmacro %}", "depends_on": {"macros": ["macro.fivetran_utils.postgres__json_parse"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.429336, "supported_languages": null}, "macro.fivetran_utils.default__json_parse": {"name": "default__json_parse", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/json_parse.sql", "original_file_path": "macros/json_parse.sql", "unique_id": "macro.fivetran_utils.default__json_parse", "macro_sql": "{% macro default__json_parse(string, string_path) %}\n\n json_extract_path_text({{string}}, {%- for s in string_path -%}'{{ s }}'{%- if not loop.last -%},{%- endif -%}{%- endfor -%} )\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.429586, "supported_languages": null}, "macro.fivetran_utils.redshift__json_parse": {"name": "redshift__json_parse", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/json_parse.sql", "original_file_path": "macros/json_parse.sql", "unique_id": "macro.fivetran_utils.redshift__json_parse", "macro_sql": "{% macro redshift__json_parse(string, string_path) %}\n\n json_extract_path_text({{string}}, {%- for s in string_path -%}'{{ s }}'{%- if not loop.last -%},{%- endif -%}{%- endfor -%} )\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.429848, "supported_languages": null}, "macro.fivetran_utils.bigquery__json_parse": {"name": "bigquery__json_parse", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/json_parse.sql", "original_file_path": "macros/json_parse.sql", "unique_id": "macro.fivetran_utils.bigquery__json_parse", "macro_sql": "{% macro bigquery__json_parse(string, string_path) %}\n\n \n json_extract_scalar({{string}}, '$.{%- for s in string_path -%}{{ s }}{%- if not loop.last -%}.{%- endif -%}{%- endfor -%} ')\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.430101, "supported_languages": null}, "macro.fivetran_utils.postgres__json_parse": {"name": "postgres__json_parse", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/json_parse.sql", "original_file_path": "macros/json_parse.sql", "unique_id": "macro.fivetran_utils.postgres__json_parse", "macro_sql": "{% macro postgres__json_parse(string, string_path) %}\n\n {{string}}::json #>> '{ {%- for s in string_path -%}{{ s }}{%- if not loop.last -%},{%- endif -%}{%- endfor -%} }'\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.430353, "supported_languages": null}, "macro.fivetran_utils.snowflake__json_parse": {"name": "snowflake__json_parse", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/json_parse.sql", "original_file_path": "macros/json_parse.sql", "unique_id": "macro.fivetran_utils.snowflake__json_parse", "macro_sql": "{% macro snowflake__json_parse(string, string_path) %}\n\n parse_json( {{string}} ) {%- for s in string_path -%}{% if s is number %}[{{ s }}]{% else %}['{{ s }}']{% endif %}{%- endfor -%}\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.43072, "supported_languages": null}, "macro.fivetran_utils.spark__json_parse": {"name": "spark__json_parse", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/json_parse.sql", "original_file_path": "macros/json_parse.sql", "unique_id": "macro.fivetran_utils.spark__json_parse", "macro_sql": "{% macro spark__json_parse(string, string_path) %}\n\n {{string}} : {%- for s in string_path -%}{% if s is number %}[{{ s }}]{% else %}['{{ s }}']{% endif %}{%- endfor -%}\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.431042, "supported_languages": null}, "macro.fivetran_utils.sqlserver__json_parse": {"name": "sqlserver__json_parse", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/json_parse.sql", "original_file_path": "macros/json_parse.sql", "unique_id": "macro.fivetran_utils.sqlserver__json_parse", "macro_sql": "{% macro sqlserver__json_parse(string, string_path) %}\n\n json_value({{string}}, '$.{%- for s in string_path -%}{{ s }}{%- if not loop.last -%}.{%- endif -%}{%- endfor -%} ')\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.4313128, "supported_languages": null}, "macro.fivetran_utils.max_bool": {"name": "max_bool", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/max_bool.sql", "original_file_path": "macros/max_bool.sql", "unique_id": "macro.fivetran_utils.max_bool", "macro_sql": "{% macro max_bool(boolean_field) -%}\n\n{{ adapter.dispatch('max_bool', 'fivetran_utils') (boolean_field) }}\n\n{%- endmacro %}", "depends_on": {"macros": ["macro.fivetran_utils.default__max_bool"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.4316852, "supported_languages": null}, "macro.fivetran_utils.default__max_bool": {"name": "default__max_bool", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/max_bool.sql", "original_file_path": "macros/max_bool.sql", "unique_id": "macro.fivetran_utils.default__max_bool", "macro_sql": "{% macro default__max_bool(boolean_field) %}\n\n bool_or( {{ boolean_field }} )\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.431796, "supported_languages": null}, "macro.fivetran_utils.snowflake__max_bool": {"name": "snowflake__max_bool", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/max_bool.sql", "original_file_path": "macros/max_bool.sql", "unique_id": "macro.fivetran_utils.snowflake__max_bool", "macro_sql": "{% macro snowflake__max_bool(boolean_field) %}\n\n max( {{ boolean_field }} )\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.4318988, "supported_languages": null}, "macro.fivetran_utils.bigquery__max_bool": {"name": "bigquery__max_bool", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/max_bool.sql", "original_file_path": "macros/max_bool.sql", "unique_id": "macro.fivetran_utils.bigquery__max_bool", "macro_sql": "{% macro bigquery__max_bool(boolean_field) %}\n\n max( {{ boolean_field }} )\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.432006, "supported_languages": null}, "macro.fivetran_utils.calculated_fields": {"name": "calculated_fields", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/calculated_fields.sql", "original_file_path": "macros/calculated_fields.sql", "unique_id": "macro.fivetran_utils.calculated_fields", "macro_sql": "{% macro calculated_fields(variable) -%}\n\n{% if var(variable, none) %}\n {% for field in var(variable) %}\n , {{ field.transform_sql }} as {{ field.name }} \n {% endfor %}\n{% endif %}\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.432395, "supported_languages": null}, "macro.fivetran_utils.drop_schemas_automation": {"name": "drop_schemas_automation", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/drop_schemas_automation.sql", "original_file_path": "macros/drop_schemas_automation.sql", "unique_id": "macro.fivetran_utils.drop_schemas_automation", "macro_sql": "{% macro drop_schemas_automation(drop_target_schema=true) %}\n {{ return(adapter.dispatch('drop_schemas_automation', 'fivetran_utils')(drop_target_schema)) }}\n{%- endmacro %}", "depends_on": {"macros": ["macro.fivetran_utils.default__drop_schemas_automation"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.4330938, "supported_languages": null}, "macro.fivetran_utils.default__drop_schemas_automation": {"name": "default__drop_schemas_automation", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/drop_schemas_automation.sql", "original_file_path": "macros/drop_schemas_automation.sql", "unique_id": "macro.fivetran_utils.default__drop_schemas_automation", "macro_sql": "{% macro default__drop_schemas_automation(drop_target_schema=true) %}\n\n{% set fetch_list_sql %}\n {% if target.type not in ('databricks', 'spark') %}\n select schema_name\n from \n {{ wrap_in_quotes(target.database) }}.INFORMATION_SCHEMA.SCHEMATA\n where lower(schema_name) like '{{ target.schema | lower }}{%- if not drop_target_schema -%}_{%- endif -%}%'\n {% else %}\n SHOW SCHEMAS LIKE '{{ target.schema }}{%- if not drop_target_schema -%}_{%- endif -%}*'\n {% endif %}\n{% endset %}\n\n{% set results = run_query(fetch_list_sql) %}\n\n{% if execute %}\n {% set results_list = results.columns[0].values() %}\n{% else %}\n {% set results_list = [] %}\n{% endif %}\n\n{% for schema_to_drop in results_list %}\n {% do adapter.drop_schema(api.Relation.create(database=target.database, schema=schema_to_drop)) %}\n {{ print('Schema ' ~ schema_to_drop ~ ' successfully dropped from the ' ~ target.database ~ ' database.\\n')}}\n{% endfor %}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.fivetran_utils.wrap_in_quotes", "macro.dbt.run_query"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.434274, "supported_languages": null}, "macro.fivetran_utils.seed_data_helper": {"name": "seed_data_helper", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/seed_data_helper.sql", "original_file_path": "macros/seed_data_helper.sql", "unique_id": "macro.fivetran_utils.seed_data_helper", "macro_sql": "{% macro seed_data_helper(seed_name, warehouses) %}\n\n{% if target.type in warehouses %}\n {% for w in warehouses %}\n {% if target.type == w %}\n {{ return(ref(seed_name ~ \"_\" ~ w ~ \"\")) }}\n {% endif %}\n {% endfor %}\n{% else %}\n{{ return(ref(seed_name)) }}\n{% endif %}\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.434894, "supported_languages": null}, "macro.fivetran_utils.fill_pass_through_columns": {"name": "fill_pass_through_columns", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/fill_pass_through_columns.sql", "original_file_path": "macros/fill_pass_through_columns.sql", "unique_id": "macro.fivetran_utils.fill_pass_through_columns", "macro_sql": "{% macro fill_pass_through_columns(pass_through_variable) %}\n\n{% if var(pass_through_variable) %}\n {% for field in var(pass_through_variable) %}\n {% if field is mapping %}\n {% if field.transform_sql %}\n , {{ field.transform_sql }} as {{ field.alias if field.alias else field.name }}\n {% else %}\n , {{ field.alias if field.alias else field.name }}\n {% endif %}\n {% else %}\n , {{ field }}\n {% endif %}\n {% endfor %}\n{% endif %}\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.435704, "supported_languages": null}, "macro.fivetran_utils.string_agg": {"name": "string_agg", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/string_agg.sql", "original_file_path": "macros/string_agg.sql", "unique_id": "macro.fivetran_utils.string_agg", "macro_sql": "{% macro string_agg(field_to_agg, delimiter) -%}\n\n{{ adapter.dispatch('string_agg', 'fivetran_utils') (field_to_agg, delimiter) }}\n\n{%- endmacro %}", "depends_on": {"macros": ["macro.fivetran_utils.default__string_agg"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.43619, "supported_languages": null}, "macro.fivetran_utils.default__string_agg": {"name": "default__string_agg", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/string_agg.sql", "original_file_path": "macros/string_agg.sql", "unique_id": "macro.fivetran_utils.default__string_agg", "macro_sql": "{% macro default__string_agg(field_to_agg, delimiter) %}\n string_agg({{ field_to_agg }}, {{ delimiter }})\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.43633, "supported_languages": null}, "macro.fivetran_utils.snowflake__string_agg": {"name": "snowflake__string_agg", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/string_agg.sql", "original_file_path": "macros/string_agg.sql", "unique_id": "macro.fivetran_utils.snowflake__string_agg", "macro_sql": "{% macro snowflake__string_agg(field_to_agg, delimiter) %}\n listagg({{ field_to_agg }}, {{ delimiter }})\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.436463, "supported_languages": null}, "macro.fivetran_utils.redshift__string_agg": {"name": "redshift__string_agg", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/string_agg.sql", "original_file_path": "macros/string_agg.sql", "unique_id": "macro.fivetran_utils.redshift__string_agg", "macro_sql": "{% macro redshift__string_agg(field_to_agg, delimiter) %}\n listagg({{ field_to_agg }}, {{ delimiter }})\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.436598, "supported_languages": null}, "macro.fivetran_utils.spark__string_agg": {"name": "spark__string_agg", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/string_agg.sql", "original_file_path": "macros/string_agg.sql", "unique_id": "macro.fivetran_utils.spark__string_agg", "macro_sql": "{% macro spark__string_agg(field_to_agg, delimiter) %}\n -- collect set will remove duplicates\n replace(replace(replace(cast( collect_set({{ field_to_agg }}) as string), '[', ''), ']', ''), ', ', {{ delimiter }} )\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.436736, "supported_languages": null}, "macro.fivetran_utils.timestamp_diff": {"name": "timestamp_diff", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/timestamp_diff.sql", "original_file_path": "macros/timestamp_diff.sql", "unique_id": "macro.fivetran_utils.timestamp_diff", "macro_sql": "{% macro timestamp_diff(first_date, second_date, datepart) %}\n {{ adapter.dispatch('timestamp_diff', 'fivetran_utils')(first_date, second_date, datepart) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.fivetran_utils.postgres__timestamp_diff"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.439756, "supported_languages": null}, "macro.fivetran_utils.default__timestamp_diff": {"name": "default__timestamp_diff", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/timestamp_diff.sql", "original_file_path": "macros/timestamp_diff.sql", "unique_id": "macro.fivetran_utils.default__timestamp_diff", "macro_sql": "{% macro default__timestamp_diff(first_date, second_date, datepart) %}\n\n datediff(\n {{ datepart }},\n {{ first_date }},\n {{ second_date }}\n )\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.439923, "supported_languages": null}, "macro.fivetran_utils.redshift__timestamp_diff": {"name": "redshift__timestamp_diff", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/timestamp_diff.sql", "original_file_path": "macros/timestamp_diff.sql", "unique_id": "macro.fivetran_utils.redshift__timestamp_diff", "macro_sql": "{% macro redshift__timestamp_diff(first_date, second_date, datepart) %}\n\n datediff(\n {{ datepart }},\n {{ first_date }},\n {{ second_date }}\n )\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.440087, "supported_languages": null}, "macro.fivetran_utils.bigquery__timestamp_diff": {"name": "bigquery__timestamp_diff", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/timestamp_diff.sql", "original_file_path": "macros/timestamp_diff.sql", "unique_id": "macro.fivetran_utils.bigquery__timestamp_diff", "macro_sql": "{% macro bigquery__timestamp_diff(first_date, second_date, datepart) %}\n\n timestamp_diff(\n {{second_date}},\n {{first_date}},\n {{datepart}}\n )\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.440244, "supported_languages": null}, "macro.fivetran_utils.postgres__timestamp_diff": {"name": "postgres__timestamp_diff", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/timestamp_diff.sql", "original_file_path": "macros/timestamp_diff.sql", "unique_id": "macro.fivetran_utils.postgres__timestamp_diff", "macro_sql": "{% macro postgres__timestamp_diff(first_date, second_date, datepart) %}\n\n {% if datepart == 'year' %}\n (date_part('year', ({{second_date}})::date) - date_part('year', ({{first_date}})::date))\n {% elif datepart == 'quarter' %}\n ({{ dbt.datediff(first_date, second_date, 'year') }} * 4 + date_part('quarter', ({{second_date}})::date) - date_part('quarter', ({{first_date}})::date))\n {% elif datepart == 'month' %}\n ({{ dbt.datediff(first_date, second_date, 'year') }} * 12 + date_part('month', ({{second_date}})::date) - date_part('month', ({{first_date}})::date))\n {% elif datepart == 'day' %}\n (({{second_date}})::date - ({{first_date}})::date)\n {% elif datepart == 'week' %}\n ({{ dbt.datediff(first_date, second_date, 'day') }} / 7 + case\n when date_part('dow', ({{first_date}})::timestamp) <= date_part('dow', ({{second_date}})::timestamp) then\n case when {{first_date}} <= {{second_date}} then 0 else -1 end\n else\n case when {{first_date}} <= {{second_date}} then 1 else 0 end\n end)\n {% elif datepart == 'hour' %}\n ({{ dbt.datediff(first_date, second_date, 'day') }} * 24 + date_part('hour', ({{second_date}})::timestamp) - date_part('hour', ({{first_date}})::timestamp))\n {% elif datepart == 'minute' %}\n ({{ dbt.datediff(first_date, second_date, 'hour') }} * 60 + date_part('minute', ({{second_date}})::timestamp) - date_part('minute', ({{first_date}})::timestamp))\n {% elif datepart == 'second' %}\n ({{ dbt.datediff(first_date, second_date, 'minute') }} * 60 + floor(date_part('second', ({{second_date}})::timestamp)) - floor(date_part('second', ({{first_date}})::timestamp)))\n {% elif datepart == 'millisecond' %}\n ({{ dbt.datediff(first_date, second_date, 'minute') }} * 60000 + floor(date_part('millisecond', ({{second_date}})::timestamp)) - floor(date_part('millisecond', ({{first_date}})::timestamp)))\n {% elif datepart == 'microsecond' %}\n ({{ dbt.datediff(first_date, second_date, 'minute') }} * 60000000 + floor(date_part('microsecond', ({{second_date}})::timestamp)) - floor(date_part('microsecond', ({{first_date}})::timestamp)))\n {% else %}\n {{ exceptions.raise_compiler_error(\"Unsupported datepart for macro datediff in postgres: {!r}\".format(datepart)) }}\n {% endif %}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.datediff"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.44208, "supported_languages": null}, "macro.fivetran_utils.try_cast": {"name": "try_cast", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/try_cast.sql", "original_file_path": "macros/try_cast.sql", "unique_id": "macro.fivetran_utils.try_cast", "macro_sql": "{% macro try_cast(field, type) %}\n {{ adapter.dispatch('try_cast', 'fivetran_utils') (field, type) }}\n{% endmacro %}", "depends_on": {"macros": ["macro.fivetran_utils.postgres__try_cast"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.443039, "supported_languages": null}, "macro.fivetran_utils.default__try_cast": {"name": "default__try_cast", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/try_cast.sql", "original_file_path": "macros/try_cast.sql", "unique_id": "macro.fivetran_utils.default__try_cast", "macro_sql": "{% macro default__try_cast(field, type) %}\n {# most databases don't support this function yet\n so we just need to use cast #}\n cast({{field}} as {{type}})\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.443182, "supported_languages": null}, "macro.fivetran_utils.redshift__try_cast": {"name": "redshift__try_cast", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/try_cast.sql", "original_file_path": "macros/try_cast.sql", "unique_id": "macro.fivetran_utils.redshift__try_cast", "macro_sql": "{% macro redshift__try_cast(field, type) %}\n{%- if type == 'numeric' -%}\n\n case\n when trim({{field}}) ~ '^(0|[1-9][0-9]*)$' then trim({{field}})\n else null\n end::{{type}}\n\n{% else %}\n {{ exceptions.raise_compiler_error(\n \"non-numeric datatypes are not currently supported\") }}\n\n{% endif %}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.4434628, "supported_languages": null}, "macro.fivetran_utils.postgres__try_cast": {"name": "postgres__try_cast", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/try_cast.sql", "original_file_path": "macros/try_cast.sql", "unique_id": "macro.fivetran_utils.postgres__try_cast", "macro_sql": "{% macro postgres__try_cast(field, type) %}\n{%- if type == 'numeric' -%}\n\n case\n when replace(cast({{field}} as varchar),cast(' ' as varchar),cast('' as varchar)) ~ '^(0|[1-9][0-9]*)$' \n then replace(cast({{field}} as varchar),cast(' ' as varchar),cast('' as varchar))\n else null\n end::{{type}}\n\n{% else %}\n {{ exceptions.raise_compiler_error(\n \"non-numeric datatypes are not currently supported\") }}\n\n{% endif %}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.443757, "supported_languages": null}, "macro.fivetran_utils.snowflake__try_cast": {"name": "snowflake__try_cast", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/try_cast.sql", "original_file_path": "macros/try_cast.sql", "unique_id": "macro.fivetran_utils.snowflake__try_cast", "macro_sql": "{% macro snowflake__try_cast(field, type) %}\n try_cast(cast({{field}} as varchar) as {{type}})\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.443891, "supported_languages": null}, "macro.fivetran_utils.bigquery__try_cast": {"name": "bigquery__try_cast", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/try_cast.sql", "original_file_path": "macros/try_cast.sql", "unique_id": "macro.fivetran_utils.bigquery__try_cast", "macro_sql": "{% macro bigquery__try_cast(field, type) %}\n safe_cast({{field}} as {{type}})\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.444017, "supported_languages": null}, "macro.fivetran_utils.spark__try_cast": {"name": "spark__try_cast", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/try_cast.sql", "original_file_path": "macros/try_cast.sql", "unique_id": "macro.fivetran_utils.spark__try_cast", "macro_sql": "{% macro spark__try_cast(field, type) %}\n try_cast({{field}} as {{type}})\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.444145, "supported_languages": null}, "macro.fivetran_utils.sqlserver__try_cast": {"name": "sqlserver__try_cast", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/try_cast.sql", "original_file_path": "macros/try_cast.sql", "unique_id": "macro.fivetran_utils.sqlserver__try_cast", "macro_sql": "{% macro sqlserver__try_cast(field, type) %}\n try_cast({{field}} as {{type}})\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.444287, "supported_languages": null}, "macro.fivetran_utils.source_relation": {"name": "source_relation", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/source_relation.sql", "original_file_path": "macros/source_relation.sql", "unique_id": "macro.fivetran_utils.source_relation", "macro_sql": "{% macro source_relation(union_schema_variable='union_schemas', union_database_variable='union_databases') -%}\n\n{{ adapter.dispatch('source_relation', 'fivetran_utils') (union_schema_variable, union_database_variable) }}\n\n{%- endmacro %}", "depends_on": {"macros": ["macro.fivetran_utils.default__source_relation"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.4447842, "supported_languages": null}, "macro.fivetran_utils.default__source_relation": {"name": "default__source_relation", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/source_relation.sql", "original_file_path": "macros/source_relation.sql", "unique_id": "macro.fivetran_utils.default__source_relation", "macro_sql": "{% macro default__source_relation(union_schema_variable, union_database_variable) %}\n\n{% if var(union_schema_variable, none) %}\n, case\n {% for schema in var(union_schema_variable) %}\n when lower(replace(replace(_dbt_source_relation,'\"',''),'`','')) like '%.{{ schema|lower }}.%' then '{{ schema|lower }}'\n {% endfor %}\n end as source_relation\n{% elif var(union_database_variable, none) %}\n, case\n {% for database in var(union_database_variable) %}\n when lower(replace(replace(_dbt_source_relation,'\"',''),'`','')) like '%{{ database|lower }}.%' then '{{ database|lower }}'\n {% endfor %}\n end as source_relation\n{% else %}\n, cast('' as {{ dbt.type_string() }}) as source_relation\n{% endif %}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.type_string"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.445376, "supported_languages": null}, "macro.fivetran_utils.first_value": {"name": "first_value", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/first_value.sql", "original_file_path": "macros/first_value.sql", "unique_id": "macro.fivetran_utils.first_value", "macro_sql": "{% macro first_value(first_value_field, partition_field, order_by_field, order=\"asc\") -%}\n\n{{ adapter.dispatch('first_value', 'fivetran_utils') (first_value_field, partition_field, order_by_field, order) }}\n\n{%- endmacro %}", "depends_on": {"macros": ["macro.fivetran_utils.default__first_value"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.445887, "supported_languages": null}, "macro.fivetran_utils.default__first_value": {"name": "default__first_value", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/first_value.sql", "original_file_path": "macros/first_value.sql", "unique_id": "macro.fivetran_utils.default__first_value", "macro_sql": "{% macro default__first_value(first_value_field, partition_field, order_by_field, order=\"asc\") %}\n\n first_value( {{ first_value_field }} ignore nulls ) over (partition by {{ partition_field }} order by {{ order_by_field }} {{ order }} )\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.4461, "supported_languages": null}, "macro.fivetran_utils.redshift__first_value": {"name": "redshift__first_value", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/first_value.sql", "original_file_path": "macros/first_value.sql", "unique_id": "macro.fivetran_utils.redshift__first_value", "macro_sql": "{% macro redshift__first_value(first_value_field, partition_field, order_by_field, order=\"asc\") %}\n\n first_value( {{ first_value_field }} ignore nulls ) over (partition by {{ partition_field }} order by {{ order_by_field }} {{ order }} , {{ partition_field }} rows unbounded preceding )\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.446325, "supported_languages": null}, "macro.fivetran_utils.add_dbt_source_relation": {"name": "add_dbt_source_relation", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/add_dbt_source_relation.sql", "original_file_path": "macros/add_dbt_source_relation.sql", "unique_id": "macro.fivetran_utils.add_dbt_source_relation", "macro_sql": "{% macro add_dbt_source_relation() %}\n\n{% if var('union_schemas', none) or var('union_databases', none) %}\n, _dbt_source_relation\n{% endif %}\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.446584, "supported_languages": null}, "macro.fivetran_utils.add_pass_through_columns": {"name": "add_pass_through_columns", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/add_pass_through_columns.sql", "original_file_path": "macros/add_pass_through_columns.sql", "unique_id": "macro.fivetran_utils.add_pass_through_columns", "macro_sql": "{% macro add_pass_through_columns(base_columns, pass_through_var) %}\n\n {% if pass_through_var %}\n\n {% for column in pass_through_var %}\n\n {% if column is mapping %}\n\n {% if column.alias %}\n\n {% do base_columns.append({ \"name\": column.name, \"alias\": column.alias, \"datatype\": column.datatype if column.datatype else dbt.type_string()}) %}\n\n {% else %}\n\n {% do base_columns.append({ \"name\": column.name, \"datatype\": column.datatype if column.datatype else dbt.type_string()}) %}\n \n {% endif %}\n\n {% else %}\n\n {% do base_columns.append({ \"name\": column, \"datatype\": dbt.type_string()}) %}\n\n {% endif %}\n\n {% endfor %}\n\n {% endif %}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.type_string"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.4477649, "supported_languages": null}, "macro.fivetran_utils.union_relations": {"name": "union_relations", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/union_relations.sql", "original_file_path": "macros/union_relations.sql", "unique_id": "macro.fivetran_utils.union_relations", "macro_sql": "{%- macro union_relations(relations, aliases=none, column_override=none, include=[], exclude=[], source_column_name=none) -%}\n\n {%- if exclude and include -%}\n {{ exceptions.raise_compiler_error(\"Both an exclude and include list were provided to the `union` macro. Only one is allowed\") }}\n {%- endif -%}\n\n {#-- Prevent querying of db in parsing mode. This works because this macro does not create any new refs. -#}\n {%- if not execute %}\n {{ return('') }}\n {% endif -%}\n\n {%- set column_override = column_override if column_override is not none else {} -%}\n {%- set source_column_name = source_column_name if source_column_name is not none else '_dbt_source_relation' -%}\n\n {%- set relation_columns = {} -%}\n {%- set column_superset = {} -%}\n\n {%- for relation in relations -%}\n\n {%- do relation_columns.update({relation: []}) -%}\n\n {%- do dbt_utils._is_relation(relation, 'union_relations') -%}\n {%- set cols = adapter.get_columns_in_relation(relation) -%}\n {%- for col in cols -%}\n\n {#- If an exclude list was provided and the column is in the list, do nothing -#}\n {%- if exclude and col.column in exclude -%}\n\n {#- If an include list was provided and the column is not in the list, do nothing -#}\n {%- elif include and col.column not in include -%}\n\n {#- Otherwise add the column to the column superset -#}\n {%- else -%}\n\n {#- update the list of columns in this relation -#}\n {%- do relation_columns[relation].append(col.column) -%}\n\n {%- if col.column in column_superset -%}\n\n {%- set stored = column_superset[col.column] -%}\n {%- if col.is_string() and stored.is_string() and col.string_size() > stored.string_size() -%}\n\n {%- do column_superset.update({col.column: col}) -%}\n\n {%- endif %}\n\n {%- else -%}\n\n {%- do column_superset.update({col.column: col}) -%}\n\n {%- endif -%}\n\n {%- endif -%}\n\n {%- endfor -%}\n {%- endfor -%}\n\n {%- set ordered_column_names = column_superset.keys() -%}\n\n {%- for relation in relations %}\n\n (\n select\n\n cast({{ dbt.string_literal(relation) }} as {{ dbt.type_string() }}) as {{ source_column_name }},\n {% for col_name in ordered_column_names -%}\n\n {%- set col = column_superset[col_name] %}\n {%- set col_type = column_override.get(col.column, col.data_type) %}\n {%- set col_name = adapter.quote(col_name) if col_name in relation_columns[relation] else 'null' %}\n cast({{ col_name }} as {{ col_type }}) as {{ col.quoted }} {% if not loop.last %},{% endif -%}\n\n {%- endfor %}\n\n from {{ aliases[loop.index0] if aliases else relation }}\n )\n\n {% if not loop.last -%}\n union all\n {% endif -%}\n\n {%- endfor -%}\n\n{%- endmacro -%}\n\n", "depends_on": {"macros": ["macro.dbt_utils._is_relation", "macro.dbt.string_literal", "macro.dbt.type_string"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.451793, "supported_languages": null}, "macro.fivetran_utils.union_tables": {"name": "union_tables", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/union_relations.sql", "original_file_path": "macros/union_relations.sql", "unique_id": "macro.fivetran_utils.union_tables", "macro_sql": "{%- macro union_tables(tables, column_override=none, include=[], exclude=[], source_column_name='_dbt_source_table') -%}\n\n {%- do exceptions.warn(\"Warning: the `union_tables` macro is no longer supported and will be deprecated in a future release of dbt-utils. Use the `union_relations` macro instead\") -%}\n\n {{ return(dbt_utils.union_relations(tables, column_override, include, exclude, source_column_name)) }}\n\n{%- endmacro -%}", "depends_on": {"macros": ["macro.dbt_utils.union_relations"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.45216, "supported_languages": null}, "macro.fivetran_utils.snowflake_seed_data": {"name": "snowflake_seed_data", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/snowflake_seed_data.sql", "original_file_path": "macros/snowflake_seed_data.sql", "unique_id": "macro.fivetran_utils.snowflake_seed_data", "macro_sql": "{% macro snowflake_seed_data(seed_name) %}\n\n{% if target.type == 'snowflake' %}\n{{ return(ref(seed_name ~ '_snowflake')) }}\n{% else %}\n{{ return(ref(seed_name)) }}\n{% endif %}\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.452545, "supported_languages": null}, "macro.fivetran_utils.fill_staging_columns": {"name": "fill_staging_columns", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/fill_staging_columns.sql", "original_file_path": "macros/fill_staging_columns.sql", "unique_id": "macro.fivetran_utils.fill_staging_columns", "macro_sql": "{% macro fill_staging_columns(source_columns, staging_columns) -%}\n\n{%- set source_column_names = source_columns|map(attribute='name')|map('lower')|list -%}\n\n{%- for column in staging_columns %}\n {% if column.name|lower in source_column_names -%}\n {{ fivetran_utils.quote_column(column) }} as \n {%- if 'alias' in column %} {{ column.alias }} {% else %} {{ fivetran_utils.quote_column(column) }} {%- endif -%}\n {%- else -%}\n cast(null as {{ column.datatype }})\n {%- if 'alias' in column %} as {{ column.alias }} {% else %} as {{ fivetran_utils.quote_column(column) }} {% endif -%}\n {%- endif -%}\n {%- if not loop.last -%} , {% endif -%}\n{% endfor %}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.fivetran_utils.quote_column"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.454155, "supported_languages": null}, "macro.fivetran_utils.quote_column": {"name": "quote_column", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/fill_staging_columns.sql", "original_file_path": "macros/fill_staging_columns.sql", "unique_id": "macro.fivetran_utils.quote_column", "macro_sql": "{% macro quote_column(column) %}\n {% if 'quote' in column %}\n {% if column.quote %}\n {% if target.type in ('bigquery', 'spark', 'databricks') %}\n `{{ column.name }}`\n {% elif target.type == 'snowflake' %}\n \"{{ column.name | upper }}\"\n {% else %}\n \"{{ column.name }}\"\n {% endif %}\n {% else %}\n {{ column.name }}\n {% endif %}\n {% else %}\n {{ column.name }}\n {% endif %}\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.454738, "supported_languages": null}, "macro.fivetran_utils.json_extract": {"name": "json_extract", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/json_extract.sql", "original_file_path": "macros/json_extract.sql", "unique_id": "macro.fivetran_utils.json_extract", "macro_sql": "{% macro json_extract(string, string_path) -%}\n\n{{ adapter.dispatch('json_extract', 'fivetran_utils') (string, string_path) }}\n\n{%- endmacro %}", "depends_on": {"macros": ["macro.fivetran_utils.postgres__json_extract"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.455322, "supported_languages": null}, "macro.fivetran_utils.default__json_extract": {"name": "default__json_extract", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/json_extract.sql", "original_file_path": "macros/json_extract.sql", "unique_id": "macro.fivetran_utils.default__json_extract", "macro_sql": "{% macro default__json_extract(string, string_path) %}\n\n json_extract_path_text({{string}}, {{ \"'\" ~ string_path ~ \"'\" }} )\n \n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.455482, "supported_languages": null}, "macro.fivetran_utils.snowflake__json_extract": {"name": "snowflake__json_extract", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/json_extract.sql", "original_file_path": "macros/json_extract.sql", "unique_id": "macro.fivetran_utils.snowflake__json_extract", "macro_sql": "{% macro snowflake__json_extract(string, string_path) %}\n\n json_extract_path_text(try_parse_json( {{string}} ), {{ \"'\" ~ string_path ~ \"'\" }} )\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.455641, "supported_languages": null}, "macro.fivetran_utils.redshift__json_extract": {"name": "redshift__json_extract", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/json_extract.sql", "original_file_path": "macros/json_extract.sql", "unique_id": "macro.fivetran_utils.redshift__json_extract", "macro_sql": "{% macro redshift__json_extract(string, string_path) %}\n\n case when is_valid_json( {{string}} ) then json_extract_path_text({{string}}, {{ \"'\" ~ string_path ~ \"'\" }} ) else null end\n \n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.455816, "supported_languages": null}, "macro.fivetran_utils.bigquery__json_extract": {"name": "bigquery__json_extract", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/json_extract.sql", "original_file_path": "macros/json_extract.sql", "unique_id": "macro.fivetran_utils.bigquery__json_extract", "macro_sql": "{% macro bigquery__json_extract(string, string_path) %}\n\n json_extract_scalar({{string}}, {{ \"'$.\" ~ string_path ~ \"'\" }} )\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.45597, "supported_languages": null}, "macro.fivetran_utils.postgres__json_extract": {"name": "postgres__json_extract", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/json_extract.sql", "original_file_path": "macros/json_extract.sql", "unique_id": "macro.fivetran_utils.postgres__json_extract", "macro_sql": "{% macro postgres__json_extract(string, string_path) %}\n\n {{string}}::json->>{{\"'\" ~ string_path ~ \"'\" }}\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.45612, "supported_languages": null}, "macro.fivetran_utils.collect_freshness": {"name": "collect_freshness", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/collect_freshness.sql", "original_file_path": "macros/collect_freshness.sql", "unique_id": "macro.fivetran_utils.collect_freshness", "macro_sql": "{% macro collect_freshness(source, loaded_at_field, filter) %}\n {{ return(adapter.dispatch('collect_freshness')(source, loaded_at_field, filter))}}\n{% endmacro %}", "depends_on": {"macros": ["macro.fivetran_utils.default__collect_freshness"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.456961, "supported_languages": null}, "macro.fivetran_utils.default__collect_freshness": {"name": "default__collect_freshness", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/collect_freshness.sql", "original_file_path": "macros/collect_freshness.sql", "unique_id": "macro.fivetran_utils.default__collect_freshness", "macro_sql": "{% macro default__collect_freshness(source, loaded_at_field, filter) %}\n {% call statement('collect_freshness', fetch_result=True, auto_begin=False) -%}\n\n {%- set enabled_array = [] -%}\n {% for node in graph.sources.values() %}\n {% if node.identifier == source.identifier %}\n {% if (node.meta['is_enabled'] | default(true)) %}\n {%- do enabled_array.append(1) -%}\n {% endif %}\n {% endif %}\n {% endfor %}\n {% set is_enabled = (enabled_array != []) %}\n\n select\n {% if is_enabled %}\n max({{ loaded_at_field }})\n {% else %} \n {{ current_timestamp() }} {% endif %} as max_loaded_at,\n {{ current_timestamp() }} as snapshotted_at\n\n {% if is_enabled %}\n from {{ source }}\n {% if filter %}\n where {{ filter }}\n {% endif %}\n {% endif %}\n\n {% endcall %}\n\n {% if dbt_version.split('.') | map('int') | list >= [1, 5, 0] %}\n {{ return(load_result('collect_freshness')) }}\n {% else %}\n {{ return(load_result('collect_freshness').table) }}\n {% endif %}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.statement", "macro.dbt.current_timestamp"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.4582589, "supported_languages": null}, "macro.fivetran_utils.timestamp_add": {"name": "timestamp_add", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/timestamp_add.sql", "original_file_path": "macros/timestamp_add.sql", "unique_id": "macro.fivetran_utils.timestamp_add", "macro_sql": "{% macro timestamp_add(datepart, interval, from_timestamp) -%}\n\n{{ adapter.dispatch('timestamp_add', 'fivetran_utils') (datepart, interval, from_timestamp) }}\n\n{%- endmacro %}", "depends_on": {"macros": ["macro.fivetran_utils.postgres__timestamp_add"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.458984, "supported_languages": null}, "macro.fivetran_utils.default__timestamp_add": {"name": "default__timestamp_add", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/timestamp_add.sql", "original_file_path": "macros/timestamp_add.sql", "unique_id": "macro.fivetran_utils.default__timestamp_add", "macro_sql": "{% macro default__timestamp_add(datepart, interval, from_timestamp) %}\n\n timestampadd(\n {{ datepart }},\n {{ interval }},\n {{ from_timestamp }}\n )\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.459151, "supported_languages": null}, "macro.fivetran_utils.bigquery__timestamp_add": {"name": "bigquery__timestamp_add", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/timestamp_add.sql", "original_file_path": "macros/timestamp_add.sql", "unique_id": "macro.fivetran_utils.bigquery__timestamp_add", "macro_sql": "{% macro bigquery__timestamp_add(datepart, interval, from_timestamp) %}\n\n timestamp_add({{ from_timestamp }}, interval {{ interval }} {{ datepart }})\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.459315, "supported_languages": null}, "macro.fivetran_utils.redshift__timestamp_add": {"name": "redshift__timestamp_add", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/timestamp_add.sql", "original_file_path": "macros/timestamp_add.sql", "unique_id": "macro.fivetran_utils.redshift__timestamp_add", "macro_sql": "{% macro redshift__timestamp_add(datepart, interval, from_timestamp) %}\n\n dateadd(\n {{ datepart }},\n {{ interval }},\n {{ from_timestamp }}\n )\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.459481, "supported_languages": null}, "macro.fivetran_utils.postgres__timestamp_add": {"name": "postgres__timestamp_add", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/timestamp_add.sql", "original_file_path": "macros/timestamp_add.sql", "unique_id": "macro.fivetran_utils.postgres__timestamp_add", "macro_sql": "{% macro postgres__timestamp_add(datepart, interval, from_timestamp) %}\n\n {{ from_timestamp }} + ((interval '1 {{ datepart }}') * ({{ interval }}))\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.45964, "supported_languages": null}, "macro.fivetran_utils.spark__timestamp_add": {"name": "spark__timestamp_add", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/timestamp_add.sql", "original_file_path": "macros/timestamp_add.sql", "unique_id": "macro.fivetran_utils.spark__timestamp_add", "macro_sql": "{% macro spark__timestamp_add(datepart, interval, from_timestamp) %}\n\n {{ dbt.dateadd(datepart, interval, from_timestamp) }}\n \n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.dateadd"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.459818, "supported_languages": null}, "macro.fivetran_utils.ceiling": {"name": "ceiling", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/ceiling.sql", "original_file_path": "macros/ceiling.sql", "unique_id": "macro.fivetran_utils.ceiling", "macro_sql": "{% macro ceiling(num) -%}\n\n{{ adapter.dispatch('ceiling', 'fivetran_utils') (num) }}\n\n{%- endmacro %}", "depends_on": {"macros": ["macro.fivetran_utils.default__ceiling"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.4600708, "supported_languages": null}, "macro.fivetran_utils.default__ceiling": {"name": "default__ceiling", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/ceiling.sql", "original_file_path": "macros/ceiling.sql", "unique_id": "macro.fivetran_utils.default__ceiling", "macro_sql": "{% macro default__ceiling(num) %}\n ceiling({{ num }})\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.4601731, "supported_languages": null}, "macro.fivetran_utils.snowflake__ceiling": {"name": "snowflake__ceiling", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/ceiling.sql", "original_file_path": "macros/ceiling.sql", "unique_id": "macro.fivetran_utils.snowflake__ceiling", "macro_sql": "{% macro snowflake__ceiling(num) %}\n ceil({{ num }})\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.460272, "supported_languages": null}, "macro.fivetran_utils.remove_prefix_from_columns": {"name": "remove_prefix_from_columns", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/remove_prefix_from_columns.sql", "original_file_path": "macros/remove_prefix_from_columns.sql", "unique_id": "macro.fivetran_utils.remove_prefix_from_columns", "macro_sql": "{% macro remove_prefix_from_columns(columns, prefix='', exclude=[]) %}\n\n {%- for col in columns if col.name not in exclude -%}\n {%- if col.name[:prefix|length]|lower == prefix -%}\n {{ col.name }} as {{ col.name[prefix|length:] }}\n {%- else -%}\n {{ col.name }}\n {%- endif -%}\n {%- if not loop.last -%},{%- endif %}\n {% endfor -%}\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.460917, "supported_languages": null}, "macro.fivetran_utils.fivetran_date_spine": {"name": "fivetran_date_spine", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/fivetran_date_spine.sql", "original_file_path": "macros/fivetran_date_spine.sql", "unique_id": "macro.fivetran_utils.fivetran_date_spine", "macro_sql": "{% macro fivetran_date_spine(datepart, start_date, end_date) -%}\n\n{{ return(adapter.dispatch('fivetran_date_spine', 'fivetran_utils') (datepart, start_date, end_date)) }}\n\n{%- endmacro %}", "depends_on": {"macros": ["macro.fivetran_utils.default__fivetran_date_spine"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.4623082, "supported_languages": null}, "macro.fivetran_utils.default__fivetran_date_spine": {"name": "default__fivetran_date_spine", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/fivetran_date_spine.sql", "original_file_path": "macros/fivetran_date_spine.sql", "unique_id": "macro.fivetran_utils.default__fivetran_date_spine", "macro_sql": "{% macro default__fivetran_date_spine(datepart, start_date, end_date) %}\n\n {{ dbt_utils.date_spine(datepart, start_date, end_date) }}\n \n{% endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.date_spine"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.46249, "supported_languages": null}, "macro.fivetran_utils.sqlserver__fivetran_date_spine": {"name": "sqlserver__fivetran_date_spine", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/fivetran_date_spine.sql", "original_file_path": "macros/fivetran_date_spine.sql", "unique_id": "macro.fivetran_utils.sqlserver__fivetran_date_spine", "macro_sql": "{% macro sqlserver__fivetran_date_spine(datepart, start_date, end_date) -%}\n\n {% set date_spine_query %}\n with\n\n l0 as (\n\n select c\n from (select 1 union all select 1) as d(c)\n\n ),\n l1 as (\n\n select\n 1 as c\n from l0 as a\n cross join l0 as b\n\n ),\n\n l2 as (\n\n select 1 as c\n from l1 as a\n cross join l1 as b\n ),\n\n l3 as (\n\n select 1 as c\n from l2 as a\n cross join l2 as b\n ),\n\n l4 as (\n\n select 1 as c\n from l3 as a\n cross join l3 as b\n ),\n\n l5 as (\n\n select 1 as c\n from l4 as a\n cross join l4 as b\n ),\n\n nums as (\n\n select row_number() over (order by (select null)) as rownum\n from l5\n ),\n\n rawdata as (\n\n select top ({{dbt.datediff(start_date, end_date, datepart)}}) rownum -1 as n\n from nums\n order by rownum\n ),\n\n all_periods as (\n\n select (\n {{\n dbt.dateadd(\n datepart,\n 'n',\n start_date\n )\n }}\n ) as date_{{datepart}}\n from rawdata\n ),\n\n filtered as (\n\n select *\n from all_periods\n where date_{{datepart}} <= {{ end_date }}\n\n )\n\n select * from filtered\n order by 1\n\n {% endset %}\n\n {% set results = run_query(date_spine_query) %}\n\n {% if execute %}\n\n {% set results_list = results.columns[0].values() %}\n \n {% else %}\n\n {% set results_list = [] %}\n\n {% endif %}\n\n {%- for date_field in results_list %}\n select cast('{{ date_field }}' as date) as date_{{datepart}} {{ 'union all ' if not loop.last else '' }}\n {% endfor -%}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.datediff", "macro.dbt.dateadd", "macro.dbt.run_query"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.463565, "supported_languages": null}, "macro.fivetran_utils.union_data": {"name": "union_data", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/union_data.sql", "original_file_path": "macros/union_data.sql", "unique_id": "macro.fivetran_utils.union_data", "macro_sql": "{%- macro union_data(table_identifier, database_variable, schema_variable, default_database, default_schema, default_variable, union_schema_variable='union_schemas', union_database_variable='union_databases') -%}\n\n{{ adapter.dispatch('union_data', 'fivetran_utils') (\n table_identifier, \n database_variable, \n schema_variable, \n default_database, \n default_schema, \n default_variable,\n union_schema_variable,\n union_database_variable\n ) }}\n\n{%- endmacro -%}\n\n", "depends_on": {"macros": ["macro.fivetran_utils.default__union_data"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.467287, "supported_languages": null}, "macro.fivetran_utils.default__union_data": {"name": "default__union_data", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/union_data.sql", "original_file_path": "macros/union_data.sql", "unique_id": "macro.fivetran_utils.default__union_data", "macro_sql": "{%- macro default__union_data(\n table_identifier, \n database_variable, \n schema_variable, \n default_database, \n default_schema, \n default_variable,\n union_schema_variable,\n union_database_variable\n ) -%}\n\n{%- if var(union_schema_variable, none) -%}\n\n {%- set relations = [] -%}\n \n {%- if var(union_schema_variable) is string -%}\n {%- set trimmed = var(union_schema_variable)|trim('[')|trim(']') -%}\n {%- set schemas = trimmed.split(',')|map('trim',\" \")|map('trim','\"')|map('trim',\"'\") -%}\n {%- else -%}\n {%- set schemas = var(union_schema_variable) -%}\n {%- endif -%}\n\n {%- for schema in var(union_schema_variable) -%}\n {%- set relation=adapter.get_relation(\n database=source(schema, table_identifier).database if var('has_defined_sources', false) else var(database_variable, default_database),\n schema=source(schema, table_identifier).schema if var('has_defined_sources', false) else schema,\n identifier=source(schema, table_identifier).identifier if var('has_defined_sources', false) else table_identifier\n ) -%}\n \n {%- set relation_exists=relation is not none -%}\n\n {%- if relation_exists -%}\n {%- do relations.append(relation) -%}\n {%- endif -%}\n\n {%- endfor -%}\n \n {%- if relations != [] -%}\n {{ dbt_utils.union_relations(relations) }}\n {%- else -%}\n {% if execute and not var('fivetran__remove_empty_table_warnings', false) -%}\n {{ exceptions.warn(\"\\n\\nPlease be aware: The \" ~ table_identifier|upper ~ \" table was not found in your \" ~ default_schema|upper ~ \" schema(s). The Fivetran dbt package will create a completely empty \" ~ table_identifier|upper ~ \" staging model as to not break downstream transformations. To turn off these warnings, set the `fivetran__remove_empty_table_warnings` variable to TRUE (see https://github.com/fivetran/dbt_fivetran_utils/tree/releases/v0.4.latest#union_data-source for details).\\n\") }}\n {% endif -%}\n select \n cast(null as {{ dbt.type_string() }}) as _dbt_source_relation\n limit 0\n {%- endif -%}\n\n{%- elif var(union_database_variable, none) -%}\n\n {%- set relations = [] -%}\n\n {%- for database in var(union_database_variable) -%}\n {%- set relation=adapter.get_relation(\n database=source(schema, table_identifier).database if var('has_defined_sources', false) else database,\n schema=source(schema, table_identifier).schema if var('has_defined_sources', false) else var(schema_variable, default_schema),\n identifier=source(schema, table_identifier).identifier if var('has_defined_sources', false) else table_identifier\n ) -%}\n\n {%- set relation_exists=relation is not none -%}\n\n {%- if relation_exists -%}\n {%- do relations.append(relation) -%}\n {%- endif -%}\n\n {%- endfor -%}\n\n {%- if relations != [] -%}\n {{ dbt_utils.union_relations(relations) }}\n {%- else -%}\n {% if execute and not var('fivetran__remove_empty_table_warnings', false) -%}\n {{ exceptions.warn(\"\\n\\nPlease be aware: The \" ~ table_identifier|upper ~ \" table was not found in your \" ~ default_schema|upper ~ \" schema(s). The Fivetran dbt package will create a completely empty \" ~ table_identifier|upper ~ \" staging model as to not break downstream transformations. To turn off these warnings, set the `fivetran__remove_empty_table_warnings` variable to TRUE (see https://github.com/fivetran/dbt_fivetran_utils/tree/releases/v0.4.latest#union_data-source for details).\\n\") }}\n {% endif -%}\n select \n cast(null as {{ dbt.type_string() }}) as _dbt_source_relation\n limit 0\n {%- endif -%}\n\n{%- else -%}\n {% set exception_schemas = {\"linkedin_company_pages\": \"linkedin_pages\", \"instagram_business_pages\": \"instagram_business\"} %}\n {% set relation = namespace(value=\"\") %}\n {% if default_schema in exception_schemas.keys() %}\n {% for corrected_schema_name in exception_schemas.items() %} \n {% if default_schema in corrected_schema_name %}\n {# In order for this macro to effectively work within upstream integration tests (mainly used by the Fivetran dbt package maintainers), this identifier variable selection is required to use the macro with different identifier names. #}\n {% set identifier_var = corrected_schema_name[1] + \"_\" + table_identifier + \"_identifier\" %}\n {%- set relation.value=adapter.get_relation(\n database=source(corrected_schema_name[1], table_identifier).database,\n schema=source(corrected_schema_name[1], table_identifier).schema,\n identifier=var(identifier_var, table_identifier)\n ) -%}\n {% endif %}\n {% endfor %}\n {% else %}\n {# In order for this macro to effectively work within upstream integration tests (mainly used by the Fivetran dbt package maintainers), this identifier variable selection is required to use the macro with different identifier names. #}\n {% set identifier_var = default_schema + \"_\" + table_identifier + \"_identifier\" %}\n {# Unfortunately the Twitter Organic identifiers were misspelled. As such, we will need to account for this in the model. This will be adjusted in the Twitter Organic package, but to ensure backwards compatibility, this needs to be included. #}\n {% if var(identifier_var, none) is none %} \n {% set identifier_var = default_schema + \"_\" + table_identifier + \"_identifer\" %}\n {% endif %}\n {%- set relation.value=adapter.get_relation(\n database=source(default_schema, table_identifier).database,\n schema=source(default_schema, table_identifier).schema,\n identifier=var(identifier_var, table_identifier)\n ) -%}\n {% endif %}\n{%- set table_exists=relation.value is not none -%}\n\n{%- if table_exists -%}\n select * \n from {{ relation.value }}\n{%- else -%}\n {% if execute and not var('fivetran__remove_empty_table_warnings', false) -%}\n {{ exceptions.warn(\"\\n\\nPlease be aware: The \" ~ table_identifier|upper ~ \" table was not found in your \" ~ default_schema|upper ~ \" schema(s). The Fivetran dbt package will create a completely empty \" ~ table_identifier|upper ~ \" staging model as to not break downstream transformations. To turn off these warnings, set the `fivetran__remove_empty_table_warnings` variable to TRUE (see https://github.com/fivetran/dbt_fivetran_utils/tree/releases/v0.4.latest#union_data-source for details).\\n\") }}\n {% endif -%}\n select \n cast(null as {{ dbt.type_string() }}) as _dbt_source_relation\n limit 0\n{%- endif -%}\n{%- endif -%}\n\n{%- endmacro -%}", "depends_on": {"macros": ["macro.dbt_utils.union_relations", "macro.dbt.type_string"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.4723442, "supported_languages": null}, "macro.fivetran_utils.dummy_coalesce_value": {"name": "dummy_coalesce_value", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/dummy_coalesce_value.sql", "original_file_path": "macros/dummy_coalesce_value.sql", "unique_id": "macro.fivetran_utils.dummy_coalesce_value", "macro_sql": "{% macro dummy_coalesce_value(column) %}\n\n{% set coalesce_value = {\n 'STRING': \"'DUMMY_STRING'\",\n 'BOOLEAN': 'null',\n 'INT': 999999999,\n 'FLOAT': 999999999.99,\n 'TIMESTAMP': 'cast(\"2099-12-31\" as timestamp)',\n 'DATE': 'cast(\"2099-12-31\" as date)',\n} %}\n\n{% if column.is_float() %}\n{{ return(coalesce_value['FLOAT']) }}\n\n{% elif column.is_numeric() %}\n{{ return(coalesce_value['INT']) }}\n\n{% elif column.is_string() %}\n{{ return(coalesce_value['STRING']) }}\n\n{% elif column.data_type|lower == 'boolean' %}\n{{ return(coalesce_value['BOOLEAN']) }}\n\n{% elif 'timestamp' in column.data_type|lower %}\n{{ return(coalesce_value['TIMESTAMP']) }}\n\n{% elif 'date' in column.data_type|lower %}\n{{ return(coalesce_value['DATE']) }}\n\n{% elif 'int' in column.data_type|lower %}\n{{ return(coalesce_value['INT']) }}\n\n{% endif %}\n\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.474022, "supported_languages": null}, "macro.fivetran_utils.extract_url_parameter": {"name": "extract_url_parameter", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/extract_url_parameter.sql", "original_file_path": "macros/extract_url_parameter.sql", "unique_id": "macro.fivetran_utils.extract_url_parameter", "macro_sql": "{% macro extract_url_parameter(field, url_parameter) -%}\n\n{{ adapter.dispatch('extract_url_parameter', 'fivetran_utils') (field, url_parameter) }}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.fivetran_utils.default__extract_url_parameter"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.474455, "supported_languages": null}, "macro.fivetran_utils.default__extract_url_parameter": {"name": "default__extract_url_parameter", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/extract_url_parameter.sql", "original_file_path": "macros/extract_url_parameter.sql", "unique_id": "macro.fivetran_utils.default__extract_url_parameter", "macro_sql": "{% macro default__extract_url_parameter(field, url_parameter) -%}\n\n{{ dbt_utils.get_url_parameter(field, url_parameter) }}\n\n{%- endmacro %}", "depends_on": {"macros": ["macro.dbt_utils.get_url_parameter"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.474617, "supported_languages": null}, "macro.fivetran_utils.spark__extract_url_parameter": {"name": "spark__extract_url_parameter", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/extract_url_parameter.sql", "original_file_path": "macros/extract_url_parameter.sql", "unique_id": "macro.fivetran_utils.spark__extract_url_parameter", "macro_sql": "{% macro spark__extract_url_parameter(field, url_parameter) -%}\n\n{%- set formatted_url_parameter = \"'\" + url_parameter + \"=([^&]+)'\" -%}\nnullif(regexp_extract({{ field }}, {{ formatted_url_parameter }}, 1), '')\n\n{%- endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.4748318, "supported_languages": null}, "macro.fivetran_utils.wrap_in_quotes": {"name": "wrap_in_quotes", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/wrap_in_quotes.sql", "original_file_path": "macros/wrap_in_quotes.sql", "unique_id": "macro.fivetran_utils.wrap_in_quotes", "macro_sql": "{%- macro wrap_in_quotes(object_to_quote) -%}\n\n{{ return(adapter.dispatch('wrap_in_quotes', 'fivetran_utils')(object_to_quote)) }}\n\n{%- endmacro -%}\n\n", "depends_on": {"macros": ["macro.fivetran_utils.postgres__wrap_in_quotes"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.475191, "supported_languages": null}, "macro.fivetran_utils.default__wrap_in_quotes": {"name": "default__wrap_in_quotes", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/wrap_in_quotes.sql", "original_file_path": "macros/wrap_in_quotes.sql", "unique_id": "macro.fivetran_utils.default__wrap_in_quotes", "macro_sql": "{%- macro default__wrap_in_quotes(object_to_quote) -%}\n{# bigquery, spark, databricks #}\n `{{ object_to_quote }}`\n{%- endmacro -%}\n\n", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.475314, "supported_languages": null}, "macro.fivetran_utils.snowflake__wrap_in_quotes": {"name": "snowflake__wrap_in_quotes", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/wrap_in_quotes.sql", "original_file_path": "macros/wrap_in_quotes.sql", "unique_id": "macro.fivetran_utils.snowflake__wrap_in_quotes", "macro_sql": "{%- macro snowflake__wrap_in_quotes(object_to_quote) -%}\n \"{{ object_to_quote | upper }}\"\n{%- endmacro -%}\n\n", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.475435, "supported_languages": null}, "macro.fivetran_utils.redshift__wrap_in_quotes": {"name": "redshift__wrap_in_quotes", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/wrap_in_quotes.sql", "original_file_path": "macros/wrap_in_quotes.sql", "unique_id": "macro.fivetran_utils.redshift__wrap_in_quotes", "macro_sql": "{%- macro redshift__wrap_in_quotes(object_to_quote) -%}\n \"{{ object_to_quote }}\"\n{%- endmacro -%}\n\n", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.4755409, "supported_languages": null}, "macro.fivetran_utils.postgres__wrap_in_quotes": {"name": "postgres__wrap_in_quotes", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/wrap_in_quotes.sql", "original_file_path": "macros/wrap_in_quotes.sql", "unique_id": "macro.fivetran_utils.postgres__wrap_in_quotes", "macro_sql": "{%- macro postgres__wrap_in_quotes(object_to_quote) -%}\n \"{{ object_to_quote }}\"\n{%- endmacro -%}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.4756448, "supported_languages": null}, "macro.fivetran_utils.array_agg": {"name": "array_agg", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/array_agg.sql", "original_file_path": "macros/array_agg.sql", "unique_id": "macro.fivetran_utils.array_agg", "macro_sql": "{% macro array_agg(field_to_agg) -%}\n\n{{ adapter.dispatch('array_agg', 'fivetran_utils') (field_to_agg) }}\n\n{%- endmacro %}", "depends_on": {"macros": ["macro.fivetran_utils.default__array_agg"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.475911, "supported_languages": null}, "macro.fivetran_utils.default__array_agg": {"name": "default__array_agg", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/array_agg.sql", "original_file_path": "macros/array_agg.sql", "unique_id": "macro.fivetran_utils.default__array_agg", "macro_sql": "{% macro default__array_agg(field_to_agg) %}\n array_agg({{ field_to_agg }})\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.4760242, "supported_languages": null}, "macro.fivetran_utils.redshift__array_agg": {"name": "redshift__array_agg", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/array_agg.sql", "original_file_path": "macros/array_agg.sql", "unique_id": "macro.fivetran_utils.redshift__array_agg", "macro_sql": "{% macro redshift__array_agg(field_to_agg) %}\n listagg({{ field_to_agg }}, ',')\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.47613, "supported_languages": null}, "macro.fivetran_utils.empty_variable_warning": {"name": "empty_variable_warning", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/empty_variable_warning.sql", "original_file_path": "macros/empty_variable_warning.sql", "unique_id": "macro.fivetran_utils.empty_variable_warning", "macro_sql": "{% macro empty_variable_warning(variable, downstream_model) %}\n\n{% if not var(variable) %}\n{{ log(\n \"\"\"\n Warning: You have passed an empty list to the \"\"\" ~ variable ~ \"\"\".\n As a result, you won't see the history of any columns in the \"\"\" ~ downstream_model ~ \"\"\" model.\n \"\"\",\n info=True\n) }}\n{% endif %}\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.476543, "supported_languages": null}, "macro.fivetran_utils.enabled_vars_one_true": {"name": "enabled_vars_one_true", "resource_type": "macro", "package_name": "fivetran_utils", "path": "macros/enabled_vars_one_true.sql", "original_file_path": "macros/enabled_vars_one_true.sql", "unique_id": "macro.fivetran_utils.enabled_vars_one_true", "macro_sql": "{% macro enabled_vars_one_true(vars) %}\n\n{% for v in vars %}\n \n {% if var(v, False) == True %}\n {{ return(True) }}\n {% endif %}\n\n{% endfor %}\n\n{{ return(False) }}\n\n{% endmacro %}", "depends_on": {"macros": []}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.4769652, "supported_languages": null}, "macro.qualtrics_source.get_survey_embedded_data_columns": {"name": "get_survey_embedded_data_columns", "resource_type": "macro", "package_name": "qualtrics_source", "path": "macros/get_survey_embedded_data_columns.sql", "original_file_path": "macros/get_survey_embedded_data_columns.sql", "unique_id": "macro.qualtrics_source.get_survey_embedded_data_columns", "macro_sql": "{% macro get_survey_embedded_data_columns() %}\n\n{% set columns = [\n {\"name\": \"_fivetran_synced\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"import_id\", \"datatype\": dbt.type_string()},\n {\"name\": \"key\", \"datatype\": dbt.type_string()},\n {\"name\": \"response_id\", \"datatype\": dbt.type_string()},\n {\"name\": \"value\", \"datatype\": dbt.type_string()}\n] %}\n\n{{ return(columns) }}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.type_timestamp", "macro.dbt.type_string"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.4776819, "supported_languages": null}, "macro.qualtrics_source.get_block_columns": {"name": "get_block_columns", "resource_type": "macro", "package_name": "qualtrics_source", "path": "macros/get_block_columns.sql", "original_file_path": "macros/get_block_columns.sql", "unique_id": "macro.qualtrics_source.get_block_columns", "macro_sql": "{% macro get_block_columns() %}\n\n{% set columns = [\n {\"name\": \"_fivetran_deleted\", \"datatype\": \"boolean\"},\n {\"name\": \"_fivetran_synced\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"block_locking\", \"datatype\": dbt.type_string()},\n {\"name\": \"block_visibility\", \"datatype\": dbt.type_string()},\n {\"name\": \"description\", \"datatype\": dbt.type_string()},\n {\"name\": \"id\", \"datatype\": dbt.type_string()},\n {\"name\": \"randomize_questions\", \"datatype\": dbt.type_string()},\n {\"name\": \"survey_id\", \"datatype\": dbt.type_string()},\n {\"name\": \"type\", \"datatype\": dbt.type_string()}\n] %}\n\n{{ return(columns) }}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.type_timestamp", "macro.dbt.type_string"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.478865, "supported_languages": null}, "macro.qualtrics_source.get_sub_question_columns": {"name": "get_sub_question_columns", "resource_type": "macro", "package_name": "qualtrics_source", "path": "macros/get_sub_question_columns.sql", "original_file_path": "macros/get_sub_question_columns.sql", "unique_id": "macro.qualtrics_source.get_sub_question_columns", "macro_sql": "{% macro get_sub_question_columns() %}\n\n{% set columns = [\n {\"name\": \"_fivetran_deleted\", \"datatype\": \"boolean\"},\n {\"name\": \"_fivetran_synced\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"choice_data_export_tag\", \"datatype\": dbt.type_string()},\n {\"name\": \"key\", \"datatype\": dbt.type_string()},\n {\"name\": \"question_id\", \"datatype\": dbt.type_string()},\n {\"name\": \"survey_id\", \"datatype\": dbt.type_string()},\n {\"name\": \"text\", \"datatype\": dbt.type_string()}\n] %}\n\n{{ return(columns) }}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.type_timestamp", "macro.dbt.type_string"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.479761, "supported_languages": null}, "macro.qualtrics_source.get_directory_mailing_list_columns": {"name": "get_directory_mailing_list_columns", "resource_type": "macro", "package_name": "qualtrics_source", "path": "macros/get_directory_mailing_list_columns.sql", "original_file_path": "macros/get_directory_mailing_list_columns.sql", "unique_id": "macro.qualtrics_source.get_directory_mailing_list_columns", "macro_sql": "{% macro get_directory_mailing_list_columns() %}\n\n{% set columns = [\n {\"name\": \"_fivetran_deleted\", \"datatype\": \"boolean\"},\n {\"name\": \"_fivetran_synced\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"creation_date\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"directory_id\", \"datatype\": dbt.type_string()},\n {\"name\": \"id\", \"datatype\": dbt.type_string()},\n {\"name\": \"last_modified_date\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"name\", \"datatype\": dbt.type_string()},\n {\"name\": \"owner_id\", \"datatype\": dbt.type_string()}\n] %}\n\n{{ return(columns) }}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.type_timestamp", "macro.dbt.type_string"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.480751, "supported_languages": null}, "macro.qualtrics_source.get_core_contact_columns": {"name": "get_core_contact_columns", "resource_type": "macro", "package_name": "qualtrics_source", "path": "macros/get_core_contact_columns.sql", "original_file_path": "macros/get_core_contact_columns.sql", "unique_id": "macro.qualtrics_source.get_core_contact_columns", "macro_sql": "{% macro get_core_contact_columns() %}\n\n{% set columns = [\n {\"name\": \"_fivetran_synced\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"id\", \"datatype\": dbt.type_string()},\n {\"name\": \"mailing_list_id\", \"datatype\": dbt.type_string()},\n {\"name\": \"first_name\", \"datatype\": dbt.type_string()},\n {\"name\": \"last_name\", \"datatype\": dbt.type_string()},\n {\"name\": \"email\", \"datatype\": dbt.type_string()},\n {\"name\": \"external_data_reference\", \"datatype\": dbt.type_string()},\n {\"name\": \"language\", \"datatype\": dbt.type_string()},\n {\"name\": \"unsubscribed\", \"datatype\": \"boolean\"},\n {\"name\": \"_fivetran_deleted\", \"datatype\": \"boolean\"}\n] %}\n\n{{ fivetran_utils.add_pass_through_columns(columns, var('qualtrics__core_contact_pass_through_columns')) }}\n\n{{ return(columns) }}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.type_timestamp", "macro.dbt.type_string", "macro.fivetran_utils.add_pass_through_columns"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.482013, "supported_languages": null}, "macro.qualtrics_source.get_survey_version_columns": {"name": "get_survey_version_columns", "resource_type": "macro", "package_name": "qualtrics_source", "path": "macros/get_survey_version_columns.sql", "original_file_path": "macros/get_survey_version_columns.sql", "unique_id": "macro.qualtrics_source.get_survey_version_columns", "macro_sql": "{% macro get_survey_version_columns() %}\n\n{% set columns = [\n {\"name\": \"_fivetran_deleted\", \"datatype\": \"boolean\"},\n {\"name\": \"_fivetran_synced\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"creation_date\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"description\", \"datatype\": dbt.type_string()},\n {\"name\": \"id\", \"datatype\": dbt.type_string()},\n {\"name\": \"published\", \"datatype\": \"boolean\"},\n {\"name\": \"survey_id\", \"datatype\": dbt.type_string()},\n {\"name\": \"user_id\", \"datatype\": dbt.type_string()},\n {\"name\": \"version_number\", \"datatype\": dbt.type_int()},\n {\"name\": \"was_published\", \"datatype\": \"boolean\"}\n] %}\n\n{{ return(columns) }}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.type_timestamp", "macro.dbt.type_string", "macro.dbt.type_int"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.48316, "supported_languages": null}, "macro.qualtrics_source.get_survey_response_columns": {"name": "get_survey_response_columns", "resource_type": "macro", "package_name": "qualtrics_source", "path": "macros/get_survey_response_columns.sql", "original_file_path": "macros/get_survey_response_columns.sql", "unique_id": "macro.qualtrics_source.get_survey_response_columns", "macro_sql": "{% macro get_survey_response_columns() %}\n\n{% set columns = [\n {\"name\": \"_fivetran_synced\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"distribution_channel\", \"datatype\": dbt.type_string()},\n {\"name\": \"duration_in_seconds\", \"datatype\": dbt.type_int()},\n {\"name\": \"end_date\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"finished\", \"datatype\": dbt.type_int()},\n {\"name\": \"id\", \"datatype\": dbt.type_string()},\n {\"name\": \"ip_address\", \"datatype\": dbt.type_string()},\n {\"name\": \"last_modified_date\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"location_latitude\", \"datatype\": dbt.type_float()},\n {\"name\": \"location_longitude\", \"datatype\": dbt.type_float()},\n {\"name\": \"progress\", \"datatype\": dbt.type_int()},\n {\"name\": \"recipient_email\", \"datatype\": dbt.type_string()},\n {\"name\": \"recipient_first_name\", \"datatype\": dbt.type_string()},\n {\"name\": \"recipient_last_name\", \"datatype\": dbt.type_string()},\n {\"name\": \"recorded_date\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"start_date\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"status\", \"datatype\": dbt.type_int()},\n {\"name\": \"survey_id\", \"datatype\": dbt.type_string()},\n {\"name\": \"user_language\", \"datatype\": dbt.type_string()}\n] %}\n\n{{ return(columns) }}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.type_timestamp", "macro.dbt.type_string", "macro.dbt.type_int", "macro.dbt.type_float"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.485316, "supported_languages": null}, "macro.qualtrics_source.get_distribution_columns": {"name": "get_distribution_columns", "resource_type": "macro", "package_name": "qualtrics_source", "path": "macros/get_distribution_columns.sql", "original_file_path": "macros/get_distribution_columns.sql", "unique_id": "macro.qualtrics_source.get_distribution_columns", "macro_sql": "{% macro get_distribution_columns() %}\n\n{% set columns = [\n {\"name\": \"_fivetran_deleted\", \"datatype\": \"boolean\"},\n {\"name\": \"_fivetran_synced\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"created_date\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"header_from_email\", \"datatype\": dbt.type_string()},\n {\"name\": \"header_from_name\", \"datatype\": dbt.type_string()},\n {\"name\": \"header_reply_to_email\", \"datatype\": dbt.type_string()},\n {\"name\": \"header_subject\", \"datatype\": dbt.type_string()},\n {\"name\": \"id\", \"datatype\": dbt.type_string()},\n {\"name\": \"message_library_id\", \"datatype\": dbt.type_string()},\n {\"name\": \"message_message_id\", \"datatype\": dbt.type_string()},\n {\"name\": \"message_message_text\", \"datatype\": dbt.type_string()},\n {\"name\": \"modified_date\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"organization_id\", \"datatype\": dbt.type_string()},\n {\"name\": \"owner_id\", \"datatype\": dbt.type_string()},\n {\"name\": \"parent_distribution_id\", \"datatype\": dbt.type_string()},\n {\"name\": \"recipient_contact_id\", \"datatype\": dbt.type_string()},\n {\"name\": \"recipient_library_id\", \"datatype\": dbt.type_string()},\n {\"name\": \"recipient_mailing_list_id\", \"datatype\": dbt.type_string()},\n {\"name\": \"recipient_sample_id\", \"datatype\": dbt.type_string()},\n {\"name\": \"request_status\", \"datatype\": dbt.type_string()},\n {\"name\": \"request_type\", \"datatype\": dbt.type_string()},\n {\"name\": \"send_date\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"survey_link_expiration_date\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"survey_link_link_type\", \"datatype\": dbt.type_string()},\n {\"name\": \"survey_link_survey_id\", \"datatype\": dbt.type_string()}\n] %}\n\n{{ fivetran_utils.add_pass_through_columns(columns, var('qualtrics__distribution_pass_through_columns')) }}\n\n{{ return(columns) }}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.type_timestamp", "macro.dbt.type_string", "macro.fivetran_utils.add_pass_through_columns"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.488297, "supported_languages": null}, "macro.qualtrics_source.get_user_columns": {"name": "get_user_columns", "resource_type": "macro", "package_name": "qualtrics_source", "path": "macros/get_user_columns.sql", "original_file_path": "macros/get_user_columns.sql", "unique_id": "macro.qualtrics_source.get_user_columns", "macro_sql": "{% macro get_user_columns() %}\n\n{% set columns = [\n {\"name\": \"_fivetran_deleted\", \"datatype\": \"boolean\"},\n {\"name\": \"_fivetran_synced\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"account_creation_date\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"account_expiration_date\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"account_status\", \"datatype\": dbt.type_string()},\n {\"name\": \"division_id\", \"datatype\": dbt.type_string()},\n {\"name\": \"email\", \"datatype\": dbt.type_string()},\n {\"name\": \"first_name\", \"datatype\": dbt.type_string()},\n {\"name\": \"id\", \"datatype\": dbt.type_string()},\n {\"name\": \"language\", \"datatype\": dbt.type_string()},\n {\"name\": \"last_login_date\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"last_name\", \"datatype\": dbt.type_string()},\n {\"name\": \"organization_id\", \"datatype\": dbt.type_string()},\n {\"name\": \"password_expiration_date\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"password_last_changed_date\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"response_count_auditable\", \"datatype\": dbt.type_int()},\n {\"name\": \"response_count_deleted\", \"datatype\": dbt.type_int()},\n {\"name\": \"response_count_generated\", \"datatype\": dbt.type_int()},\n {\"name\": \"time_zone\", \"datatype\": dbt.type_string()},\n {\"name\": \"unsubscribed\", \"datatype\": \"boolean\"},\n {\"name\": \"user_type\", \"datatype\": dbt.type_string()},\n {\"name\": \"username\", \"datatype\": dbt.type_string()}\n] %}\n\n{{ return(columns) }}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.type_timestamp", "macro.dbt.type_string", "macro.dbt.type_int"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.490905, "supported_languages": null}, "macro.qualtrics_source.get_question_columns": {"name": "get_question_columns", "resource_type": "macro", "package_name": "qualtrics_source", "path": "macros/get_question_columns.sql", "original_file_path": "macros/get_question_columns.sql", "unique_id": "macro.qualtrics_source.get_question_columns", "macro_sql": "{% macro get_question_columns() %}\n\n{% set columns = [\n {\"name\": \"_fivetran_deleted\", \"datatype\": \"boolean\"},\n {\"name\": \"_fivetran_synced\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"data_export_tag\", \"datatype\": dbt.type_string()},\n {\"name\": \"data_visibility_hidden\", \"datatype\": \"boolean\"},\n {\"name\": \"data_visibility_private\", \"datatype\": \"boolean\"},\n {\"name\": \"id\", \"datatype\": dbt.type_string()},\n {\"name\": \"next_answer_id\", \"datatype\": dbt.type_int()},\n {\"name\": \"next_choice_id\", \"datatype\": dbt.type_int()},\n {\"name\": \"question_description\", \"datatype\": dbt.type_string()},\n {\"name\": \"question_description_option\", \"datatype\": dbt.type_string()},\n {\"name\": \"question_text\", \"datatype\": dbt.type_string()},\n {\"name\": \"question_text_unsafe\", \"datatype\": dbt.type_string()},\n {\"name\": \"question_type\", \"datatype\": dbt.type_string()},\n {\"name\": \"selector\", \"datatype\": dbt.type_string()},\n {\"name\": \"sub_selector\", \"datatype\": dbt.type_string()},\n {\"name\": \"survey_id\", \"datatype\": dbt.type_string()},\n {\"name\": \"validation_setting_force_response\", \"datatype\": dbt.type_string()},\n {\"name\": \"validation_setting_force_response_type\", \"datatype\": dbt.type_string()},\n {\"name\": \"validation_setting_type\", \"datatype\": dbt.type_string()}\n] %}\n\n{{ return(columns) }}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.type_timestamp", "macro.dbt.type_string", "macro.dbt.type_int"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.4930549, "supported_languages": null}, "macro.qualtrics_source.get_survey_columns": {"name": "get_survey_columns", "resource_type": "macro", "package_name": "qualtrics_source", "path": "macros/get_survey_columns.sql", "original_file_path": "macros/get_survey_columns.sql", "unique_id": "macro.qualtrics_source.get_survey_columns", "macro_sql": "{% macro get_survey_columns() %}\n\n{% set columns = [\n {\"name\": \"_fivetran_deleted\", \"datatype\": \"boolean\"},\n {\"name\": \"_fivetran_synced\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"auto_scoring_category\", \"datatype\": dbt.type_string()},\n {\"name\": \"brand_base_url\", \"datatype\": dbt.type_string()},\n {\"name\": \"brand_id\", \"datatype\": dbt.type_string()},\n {\"name\": \"bundle_short_name\", \"datatype\": dbt.type_string()},\n {\"name\": \"composition_type\", \"datatype\": dbt.type_string()},\n {\"name\": \"creator_id\", \"datatype\": dbt.type_string()},\n {\"name\": \"default_scoring_category\", \"datatype\": dbt.type_string()},\n {\"name\": \"division_id\", \"datatype\": dbt.type_string()},\n {\"name\": \"id\", \"datatype\": dbt.type_string()},\n {\"name\": \"last_accessed\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"last_activated\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"last_modified\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"owner_id\", \"datatype\": dbt.type_string()},\n {\"name\": \"project_category\", \"datatype\": dbt.type_string()},\n {\"name\": \"project_type\", \"datatype\": dbt.type_string()},\n {\"name\": \"registry_sha\", \"datatype\": dbt.type_string()},\n {\"name\": \"registry_version\", \"datatype\": dbt.type_string()},\n {\"name\": \"schema_version\", \"datatype\": dbt.type_string()},\n {\"name\": \"scoring_summary_after_questions\", \"datatype\": \"boolean\"},\n {\"name\": \"scoring_summary_after_survey\", \"datatype\": \"boolean\"},\n {\"name\": \"scoring_summary_category\", \"datatype\": dbt.type_string()},\n {\"name\": \"survey_name\", \"datatype\": dbt.type_string()},\n {\"name\": \"survey_status\", \"datatype\": dbt.type_string()}\n] %}\n\n{{ fivetran_utils.add_pass_through_columns(columns, var('qualtrics__survey_pass_through_columns')) }}\n\n{{ return(columns) }}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.type_timestamp", "macro.dbt.type_string", "macro.fivetran_utils.add_pass_through_columns"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.496001, "supported_languages": null}, "macro.qualtrics_source.get_directory_columns": {"name": "get_directory_columns", "resource_type": "macro", "package_name": "qualtrics_source", "path": "macros/get_directory_columns.sql", "original_file_path": "macros/get_directory_columns.sql", "unique_id": "macro.qualtrics_source.get_directory_columns", "macro_sql": "{% macro get_directory_columns() %}\n\n{% set columns = [\n {\"name\": \"_fivetran_deleted\", \"datatype\": \"boolean\"},\n {\"name\": \"_fivetran_synced\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"deduplication_criteria_email\", \"datatype\": \"boolean\"},\n {\"name\": \"deduplication_criteria_external_data_reference\", \"datatype\": \"boolean\"},\n {\"name\": \"deduplication_criteria_first_name\", \"datatype\": \"boolean\"},\n {\"name\": \"deduplication_criteria_last_name\", \"datatype\": \"boolean\"},\n {\"name\": \"deduplication_criteria_phone\", \"datatype\": \"boolean\"},\n {\"name\": \"id\", \"datatype\": dbt.type_string()},\n {\"name\": \"is_default\", \"datatype\": \"boolean\"},\n {\"name\": \"name\", \"datatype\": dbt.type_string()}\n] %}\n\n{{ fivetran_utils.add_pass_through_columns(columns, var('qualtrics__directory_pass_through_columns')) }}\n\n{{ return(columns) }}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.type_timestamp", "macro.dbt.type_string", "macro.fivetran_utils.add_pass_through_columns"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.497223, "supported_languages": null}, "macro.qualtrics_source.get_block_question_columns": {"name": "get_block_question_columns", "resource_type": "macro", "package_name": "qualtrics_source", "path": "macros/get_block_question_columns.sql", "original_file_path": "macros/get_block_question_columns.sql", "unique_id": "macro.qualtrics_source.get_block_question_columns", "macro_sql": "{% macro get_block_question_columns() %}\n\n{% set columns = [\n {\"name\": \"_fivetran_deleted\", \"datatype\": \"boolean\"},\n {\"name\": \"_fivetran_synced\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"block_id\", \"datatype\": dbt.type_string()},\n {\"name\": \"question_id\", \"datatype\": dbt.type_string()},\n {\"name\": \"survey_id\", \"datatype\": dbt.type_string()}\n] %}\n\n{{ return(columns) }}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.type_timestamp", "macro.dbt.type_string"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.497909, "supported_languages": null}, "macro.qualtrics_source.get_question_response_columns": {"name": "get_question_response_columns", "resource_type": "macro", "package_name": "qualtrics_source", "path": "macros/get_question_response_columns.sql", "original_file_path": "macros/get_question_response_columns.sql", "unique_id": "macro.qualtrics_source.get_question_response_columns", "macro_sql": "{% macro get_question_response_columns() %}\n\n{% set columns = [\n {\"name\": \"_fivetran_id\", \"datatype\": dbt.type_string()},\n {\"name\": \"_fivetran_synced\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"loop_id\", \"datatype\": dbt.type_string()},\n {\"name\": \"question\", \"datatype\": dbt.type_string()},\n {\"name\": \"question_id\", \"datatype\": dbt.type_string()},\n {\"name\": \"question_option_key\", \"datatype\": dbt.type_string()},\n {\"name\": \"response_id\", \"datatype\": dbt.type_string()},\n {\"name\": \"sub_question_key\", \"datatype\": dbt.type_string()},\n {\"name\": \"sub_question_text\", \"datatype\": dbt.type_string()},\n {\"name\": \"value\", \"datatype\": dbt.type_string()}\n] %}\n\n{{ return(columns) }}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.type_string", "macro.dbt.type_timestamp"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.499103, "supported_languages": null}, "macro.qualtrics_source.get_core_mailing_list_columns": {"name": "get_core_mailing_list_columns", "resource_type": "macro", "package_name": "qualtrics_source", "path": "macros/get_core_mailing_list_columns.sql", "original_file_path": "macros/get_core_mailing_list_columns.sql", "unique_id": "macro.qualtrics_source.get_core_mailing_list_columns", "macro_sql": "{% macro get_core_mailing_list_columns() %}\n\n{% set columns = [\n {\"name\": \"_fivetran_deleted\", \"datatype\": \"boolean\"},\n {\"name\": \"_fivetran_synced\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"id\", \"datatype\": dbt.type_string()},\n {\"name\": \"library_id\", \"datatype\": dbt.type_string()},\n {\"name\": \"name\", \"datatype\": dbt.type_string()},\n {\"name\": \"category\", \"datatype\": dbt.type_string()},\n {\"name\": \"folder\", \"datatype\": dbt.type_string()}\n] %}\n\n{{ return(columns) }}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.type_timestamp", "macro.dbt.type_string"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.499979, "supported_languages": null}, "macro.qualtrics_source.get_directory_contact_columns": {"name": "get_directory_contact_columns", "resource_type": "macro", "package_name": "qualtrics_source", "path": "macros/get_directory_contact_columns.sql", "original_file_path": "macros/get_directory_contact_columns.sql", "unique_id": "macro.qualtrics_source.get_directory_contact_columns", "macro_sql": "{% macro get_directory_contact_columns() %}\n\n{% set columns = [\n {\"name\": \"_fivetran_synced\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"creation_date\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"directory_id\", \"datatype\": dbt.type_string()},\n {\"name\": \"directory_unsubscribe_date\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"directory_unsubscribed\", \"datatype\": \"boolean\"},\n {\"name\": \"email\", \"datatype\": dbt.type_string()},\n {\"name\": \"email_domain\", \"datatype\": dbt.type_string()},\n {\"name\": \"ext_ref\", \"datatype\": dbt.type_string()},\n {\"name\": \"first_name\", \"datatype\": dbt.type_string()},\n {\"name\": \"id\", \"datatype\": dbt.type_string()},\n {\"name\": \"language\", \"datatype\": dbt.type_string()},\n {\"name\": \"last_modified\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"last_name\", \"datatype\": dbt.type_string()},\n {\"name\": \"phone\", \"datatype\": dbt.type_string()}\n] %}\n\n{{ fivetran_utils.add_pass_through_columns(columns, var('qualtrics__directory_contact_pass_through_columns')) }}\n\n{{ return(columns) }}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.type_timestamp", "macro.dbt.type_string", "macro.fivetran_utils.add_pass_through_columns"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.5016682, "supported_languages": null}, "macro.qualtrics_source.get_distribution_contact_columns": {"name": "get_distribution_contact_columns", "resource_type": "macro", "package_name": "qualtrics_source", "path": "macros/get_distribution_contact_columns.sql", "original_file_path": "macros/get_distribution_contact_columns.sql", "unique_id": "macro.qualtrics_source.get_distribution_contact_columns", "macro_sql": "{% macro get_distribution_contact_columns() %}\n\n{% set columns = [\n {\"name\": \"_fivetran_synced\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"contact_frequency_rule_id\", \"datatype\": dbt.type_string()},\n {\"name\": \"contact_id\", \"datatype\": dbt.type_string()},\n {\"name\": \"contact_lookup_id\", \"datatype\": dbt.type_string()},\n {\"name\": \"distribution_id\", \"datatype\": dbt.type_string()},\n {\"name\": \"opened_at\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"response_completed_at\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"response_id\", \"datatype\": dbt.type_string()},\n {\"name\": \"response_started_at\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"sent_at\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"status\", \"datatype\": dbt.type_string()},\n {\"name\": \"survey_link\", \"datatype\": dbt.type_string()},\n {\"name\": \"survey_session_id\", \"datatype\": dbt.type_string()}\n] %}\n\n{{ return(columns) }}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.type_timestamp", "macro.dbt.type_string"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.50317, "supported_languages": null}, "macro.qualtrics_source.get_question_option_columns": {"name": "get_question_option_columns", "resource_type": "macro", "package_name": "qualtrics_source", "path": "macros/get_question_option_columns.sql", "original_file_path": "macros/get_question_option_columns.sql", "unique_id": "macro.qualtrics_source.get_question_option_columns", "macro_sql": "{% macro get_question_option_columns() %}\n\n{% set columns = [\n {\"name\": \"_fivetran_deleted\", \"datatype\": \"boolean\"},\n {\"name\": \"_fivetran_synced\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"key\", \"datatype\": dbt.type_string()},\n {\"name\": \"question_id\", \"datatype\": dbt.type_string()},\n {\"name\": \"recode_value\", \"datatype\": dbt.type_string()},\n {\"name\": \"survey_id\", \"datatype\": dbt.type_string()},\n {\"name\": \"text\", \"datatype\": dbt.type_string()}\n] %}\n\n{{ return(columns) }}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.type_timestamp", "macro.dbt.type_string"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.504045, "supported_languages": null}, "macro.qualtrics_source.get_contact_mailing_list_membership_columns": {"name": "get_contact_mailing_list_membership_columns", "resource_type": "macro", "package_name": "qualtrics_source", "path": "macros/get_contact_mailing_list_membership_columns.sql", "original_file_path": "macros/get_contact_mailing_list_membership_columns.sql", "unique_id": "macro.qualtrics_source.get_contact_mailing_list_membership_columns", "macro_sql": "{% macro get_contact_mailing_list_membership_columns() %}\n\n{% set columns = [\n {\"name\": \"_fivetran_synced\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"contact_id\", \"datatype\": dbt.type_string()},\n {\"name\": \"contact_lookup_id\", \"datatype\": dbt.type_string()},\n {\"name\": \"directory_id\", \"datatype\": dbt.type_string()},\n {\"name\": \"mailing_list_id\", \"datatype\": dbt.type_string()},\n {\"name\": \"name\", \"datatype\": dbt.type_string()},\n {\"name\": \"owner_id\", \"datatype\": dbt.type_string()},\n {\"name\": \"unsubscribe_date\", \"datatype\": dbt.type_timestamp()},\n {\"name\": \"unsubscribed\", \"datatype\": \"boolean\"}\n] %}\n\n{{ return(columns) }}\n\n{% endmacro %}", "depends_on": {"macros": ["macro.dbt.type_timestamp", "macro.dbt.type_string"]}, "description": "", "meta": {}, "docs": {"show": true, "node_color": null}, "patch_path": null, "arguments": [], "created_at": 1714419375.505126, "supported_languages": null}}, "docs": {"doc.dbt.__overview__": {"name": "__overview__", "resource_type": "doc", "package_name": "dbt", "path": "overview.md", "original_file_path": "docs/overview.md", "unique_id": "doc.dbt.__overview__", "block_contents": "### Welcome!\n\nWelcome to the auto-generated documentation for your dbt project!\n\n### Navigation\n\nYou can use the `Project` and `Database` navigation tabs on the left side of the window to explore the models\nin your project.\n\n#### Project Tab\nThe `Project` tab mirrors the directory structure of your dbt project. In this tab, you can see all of the\nmodels defined in your dbt project, as well as models imported from dbt packages.\n\n#### Database Tab\nThe `Database` tab also exposes your models, but in a format that looks more like a database explorer. This view\nshows relations (tables and views) grouped into database schemas. Note that ephemeral models are _not_ shown\nin this interface, as they do not exist in the database.\n\n### Graph Exploration\nYou can click the blue icon on the bottom-right corner of the page to view the lineage graph of your models.\n\nOn model pages, you'll see the immediate parents and children of the model you're exploring. By clicking the `Expand`\nbutton at the top-right of this lineage pane, you'll be able to see all of the models that are used to build,\nor are built from, the model you're exploring.\n\nOnce expanded, you'll be able to use the `--select` and `--exclude` model selection syntax to filter the\nmodels in the graph. For more information on model selection, check out the [dbt docs](https://docs.getdbt.com/docs/model-selection-syntax).\n\nNote that you can also right-click on models to interactively filter and explore the graph.\n\n---\n\n### More information\n\n- [What is dbt](https://docs.getdbt.com/docs/introduction)?\n- Read the [dbt viewpoint](https://docs.getdbt.com/docs/viewpoint)\n- [Installation](https://docs.getdbt.com/docs/installation)\n- Join the [dbt Community](https://www.getdbt.com/community/) for questions and discussion"}, "doc.qualtrics_source._fivetran_synced": {"name": "_fivetran_synced", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source._fivetran_synced", "block_contents": "The time when a record was last updated by Fivetran."}, "doc.qualtrics_source.source_relation": {"name": "source_relation", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.source_relation", "block_contents": "The schema or database this record came from if you are making use of the qualtrics_union_schemas or qualtrics_union_databases variables, respectively. Empty string if you are not using either of these variables to union together multiple Qualtrics connectors."}, "doc.qualtrics_source._fivetran_deleted": {"name": "_fivetran_deleted", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source._fivetran_deleted", "block_contents": "Boolean representing whether the record was soft-deleted in Qualtrics."}, "doc.qualtrics_source.block_locking": {"name": "block_locking", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.block_locking", "block_contents": "Boolean representing whether modification of the block and its contents is prevented."}, "doc.qualtrics_source.block_visibility": {"name": "block_visibility", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.block_visibility", "block_contents": "Whether the questions in the block are 'collapsed' or 'expanded' by default."}, "doc.qualtrics_source.block_description": {"name": "block_description", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.block_description", "block_contents": "Description given to the block."}, "doc.qualtrics_source.block_id": {"name": "block_id", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.block_id", "block_contents": "The ID of the survey block. Match pattern = ^BL_[a-zA-Z0-9]{11,15}$"}, "doc.qualtrics_source.randomize_questions": {"name": "randomize_questions", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.randomize_questions", "block_contents": "If/how the block questions are randomized. Can be - `false` (no randomization), `RandomWithXPerPage` (randomize all and place X questions in each block), `RandomWithOnlyX` (randomly present only X out of the total questions), or `Advanced` (custom configuration)"}, "doc.qualtrics_source.survey_id": {"name": "survey_id", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.survey_id", "block_contents": "The unique identifier for this survey. Match pattern = ^SV_[a-zA-Z0-9]{11,15}$"}, "doc.qualtrics_source.block_type": {"name": "block_type", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.block_type", "block_contents": "Type of block. Can be `Trash`, `Default`, or `Standard`"}, "doc.qualtrics_source.user_id": {"name": "user_id", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.user_id", "block_contents": "Unique ID of the user. Match pattern = ^((UR)|(URH))_[0-9a-zA-Z]{11,15}$"}, "doc.qualtrics_source.division_id": {"name": "division_id", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.division_id", "block_contents": "The unique identifier for the Division ID. Match pattern = ^DV_[0-9a-zA-Z]{11,15}$"}, "doc.qualtrics_source.username": {"name": "username", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.username", "block_contents": "UI-facing username for the account."}, "doc.qualtrics_source.user_first_name": {"name": "user_first_name", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.user_first_name", "block_contents": "The user's first name or given name."}, "doc.qualtrics_source.user_last_name": {"name": "user_last_name", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.user_last_name", "block_contents": "User's surname."}, "doc.qualtrics_source.user_type": {"name": "user_type", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.user_type", "block_contents": "ID of the user type. See mappings of user types to their type IDs [here](https://api.qualtrics.com/dc2be1c61af61-user-type)."}, "doc.qualtrics_source.organization_id": {"name": "organization_id", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.organization_id", "block_contents": "ID of the organization/brand this record belongs to."}, "doc.qualtrics_source.language": {"name": "language", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.language", "block_contents": "The user's default language."}, "doc.qualtrics_source.unsubscribed": {"name": "unsubscribed", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.unsubscribed", "block_contents": "Boolean indicating if the user unsubscribed."}, "doc.qualtrics_source.account_creation_date": {"name": "account_creation_date", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.account_creation_date", "block_contents": "The date and time that the account was created. Dates and times are expressed in ISO 8601 format."}, "doc.qualtrics_source.account_expiration_date": {"name": "account_expiration_date", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.account_expiration_date", "block_contents": "The date the account expires. Dates and times are expressed in ISO 8601 format."}, "doc.qualtrics_source.account_status": {"name": "account_status", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.account_status", "block_contents": "Either `active`, `disabled`, or `notVerified`."}, "doc.qualtrics_source.email": {"name": "email", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.email", "block_contents": "The user's email address."}, "doc.qualtrics_source.last_login_date": {"name": "last_login_date", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.last_login_date", "block_contents": "The date and time the user last logged into the user interface. Dates and times are expressed in ISO 8601 format."}, "doc.qualtrics_source.password_expiration_date": {"name": "password_expiration_date", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.password_expiration_date", "block_contents": "The date the account password expires. Dates and times are expressed in ISO 8601 format."}, "doc.qualtrics_source.password_last_changed_date": {"name": "password_last_changed_date", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.password_last_changed_date", "block_contents": "The date the account password was last changed. Dates and times are expressed in ISO 8601 format."}, "doc.qualtrics_source.response_count_auditable": {"name": "response_count_auditable", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.response_count_auditable", "block_contents": "The count of auditable responses."}, "doc.qualtrics_source.response_count_deleted": {"name": "response_count_deleted", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.response_count_deleted", "block_contents": "The count of deleted responses."}, "doc.qualtrics_source.response_count_generated": {"name": "response_count_generated", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.response_count_generated", "block_contents": "The count of generated responses."}, "doc.qualtrics_source.time_zone": {"name": "time_zone", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.time_zone", "block_contents": "The IANA time zone setting for the user."}, "doc.qualtrics_source.auto_scoring_category": {"name": "auto_scoring_category", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.auto_scoring_category", "block_contents": "The automated scoring category."}, "doc.qualtrics_source.brand_base_url": {"name": "brand_base_url", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.brand_base_url", "block_contents": "Base url for the organization/brand."}, "doc.qualtrics_source.brand_id": {"name": "brand_id", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.brand_id", "block_contents": "Unique ID of the organization/brand."}, "doc.qualtrics_source.bundle_short_name": {"name": "bundle_short_name", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.bundle_short_name", "block_contents": "Short name for the content bundle that the survey is from."}, "doc.qualtrics_source.composition_type": {"name": "composition_type", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.composition_type", "block_contents": "Survey composition type."}, "doc.qualtrics_source.creator_id": {"name": "creator_id", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.creator_id", "block_contents": "The unique identifier for a specific `USER` who created the survey."}, "doc.qualtrics_source.default_scoring_category": {"name": "default_scoring_category", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.default_scoring_category", "block_contents": "The default scoring category."}, "doc.qualtrics_source.is_active": {"name": "is_active", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.is_active", "block_contents": "DEPRECATED. Use `survey_status = 'active'` instead."}, "doc.qualtrics_source.last_accessed": {"name": "last_accessed", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.last_accessed", "block_contents": "The date the survey was last accessed."}, "doc.qualtrics_source.last_activated": {"name": "last_activated", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.last_activated", "block_contents": "The date the survey was last activated."}, "doc.qualtrics_source.owner_id": {"name": "owner_id", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.owner_id", "block_contents": "The unique identifier for a specific user who owns this."}, "doc.qualtrics_source.project_category": {"name": "project_category", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.project_category", "block_contents": "Project category of the survey.\n\nAllowed values - `CORE`, `CX`, `EX`, `BX`, `PX`"}, "doc.qualtrics_source.project_type": {"name": "project_type", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.project_type", "block_contents": "Type of [Qualtrics project](https://www.qualtrics.com/support/survey-platform/my-projects/my-projects-overview/#SelectingProjectType). Match pattern = ^[a-zA-Z]+$"}, "doc.qualtrics_source.registry_sha": {"name": "registry_sha", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.registry_sha", "block_contents": "The survey registry SHA."}, "doc.qualtrics_source.registry_version": {"name": "registry_version", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.registry_version", "block_contents": "The survey registry version."}, "doc.qualtrics_source.schema_version": {"name": "schema_version", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.schema_version", "block_contents": "Qualtrics schema version."}, "doc.qualtrics_source.scoring_summary_after_questions": {"name": "scoring_summary_after_questions", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.scoring_summary_after_questions", "block_contents": "Boolean representing whether the scoring summary is after questions."}, "doc.qualtrics_source.scoring_summary_after_survey": {"name": "scoring_summary_after_survey", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.scoring_summary_after_survey", "block_contents": "Boolean representing whether the scoring summary is after the survey."}, "doc.qualtrics_source.scoring_summary_category": {"name": "scoring_summary_category", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.scoring_summary_category", "block_contents": "The unique identifier for the scoring."}, "doc.qualtrics_source.survey_name": {"name": "survey_name", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.survey_name", "block_contents": "Name of the survey."}, "doc.qualtrics_source.survey_status": {"name": "survey_status", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.survey_status", "block_contents": "The distribution status of the survey, or a flag indicating that it's a library block\n\nAllowed values - `Inactive`, `Active`, `Pending`, `LibBlock`, `Deactive`, `Temporary`"}, "doc.qualtrics_source.data_export_tag": {"name": "data_export_tag", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.data_export_tag", "block_contents": "The tag to identify the question in exported data."}, "doc.qualtrics_source.choice_data_export_tag": {"name": "choice_data_export_tag", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.choice_data_export_tag", "block_contents": "The tag to identify the question choice in exported data."}, "doc.qualtrics_source.data_visibility_hidden": {"name": "data_visibility_hidden", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.data_visibility_hidden", "block_contents": "Boolean that represents whether the embedded data is hidden."}, "doc.qualtrics_source.data_visibility_private": {"name": "data_visibility_private", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.data_visibility_private", "block_contents": "Boolean that represents whether the embedded data is private."}, "doc.qualtrics_source.question_id": {"name": "question_id", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.question_id", "block_contents": "The unique identifier for the question. Match pattern = ^QID[a-zA-Z0-9]+$"}, "doc.qualtrics_source.next_answer_id": {"name": "next_answer_id", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.next_answer_id", "block_contents": "For Matrix questions, the vertical options are denoted as \"Answers\" in the question's structure. \nID of the next answer for this question. ?"}, "doc.qualtrics_source.next_choice_id": {"name": "next_choice_id", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.next_choice_id", "block_contents": "For Matrix questions, the horizontal options are denoted as \"Choices\" in the question's structure. \n\nID of the next choice for this question. ?"}, "doc.qualtrics_source.question_description": {"name": "question_description", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.question_description", "block_contents": "Label to identify the question."}, "doc.qualtrics_source.question_description_option": {"name": "question_description_option", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.question_description_option", "block_contents": "An optional user-provided field for question descriptions. Accepted values = `UseText`, `SpecifyLabel`"}, "doc.qualtrics_source.question_text": {"name": "question_text", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.question_text", "block_contents": "Text for the question."}, "doc.qualtrics_source.question_text_unsafe": {"name": "question_text_unsafe", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.question_text_unsafe", "block_contents": "Un-paresed version of the question text."}, "doc.qualtrics_source.question_type": {"name": "question_type", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.question_type", "block_contents": "The type of question. Can be -\n`MC`,`Matrix`,`Captcha`,`CS`,`DB`,`DD`,`Draw`,`DynamicMatrix`,`FileUpload`,`GAP`,`HeatMap`,`HL`,`HotSpot`,`Meta`,`PGR`,`RO`,`SBS`,`Slider`,`SS`,`TE`,`Timing`,`TreeSelect`"}, "doc.qualtrics_source.selector": {"name": "selector", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.selector", "block_contents": "How answers are selected such as single answer, multiple answer, etc. Accepted values - \n- `Bipolar`\n- `Browser`\n- `Captcha`\n- `CompactView`\n- `CS`\n- `D`\n- `DL`\n- `DND`\n- `DragAndDrop`\n- `ESTB`\n- `FORM`\n- `FileUpload`\n- `GRB`\n- `HBAR`\n- `HR`\n- `HSLIDER`\n- `I`\n- `Image`\n- `LikeDislike`\n- `Likert`\n- `MACOL`\n- `MAHR`\n- `MAVR`\n- `ML`\n- `MSB`\n- `MaxDiff`\n- `NPS`\n- `OH`\n- `OnOff`\n- `POS`\n- `PTB`\n- `PW`\n- `PageTimer`\n- `Profile`\n- `RB`\n- `RO`\n- `SACOL`\n- `SAHR`\n- `SAVR`\n- `SB`\n- `SBSMatrix`\n- `SL`\n- `STAR`\n- `ScreenCapture`\n- `SearchOnly`\n- `Signature`\n- `TA`\n- `TB`\n- `TBelow`\n- `TE`\n- `TL`\n- `TRight`\n- `Text`\n- `V1`\n- `V2`\n- `VR`\n- `VRTL`\n- `WTXB`"}, "doc.qualtrics_source.sub_selector": {"name": "sub_selector", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.sub_selector", "block_contents": "How subquestion answers are selected. Allowed values - SingleAnswer, DL, GR, DND, Long, Medium, MultipleAnswer, Columns, NoColumns, Short, TX, TXOT, WOTXB, WOTB, WTB, WTXB, WVTB."}, "doc.qualtrics_source.validation_setting_force_response": {"name": "validation_setting_force_response", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.validation_setting_force_response", "block_contents": "The response from forcing respondents to answer a question or request that they consider answering the question before leaving the page"}, "doc.qualtrics_source.validation_setting_force_response_type": {"name": "validation_setting_force_response_type", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.validation_setting_force_response_type", "block_contents": "The type of response from forcing respondents to answer a question or request that they consider answering the question before leaving the page"}, "doc.qualtrics_source.validation_setting_type": {"name": "validation_setting_type", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.validation_setting_type", "block_contents": "The type of forced response validation that is set."}, "doc.qualtrics_source.question_response_fivetran_id": {"name": "question_response_fivetran_id", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.question_response_fivetran_id", "block_contents": "Fivetran-generated unique key hashed on `response_id`, `question_id`, `sub_question_key`, `sub_question_text` , `question_option_key` , `loop_id` and `importId`."}, "doc.qualtrics_source.loop_id": {"name": "loop_id", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.loop_id", "block_contents": "ID of the [Loop and Merge](https://www.qualtrics.com/support/survey-platform/survey-module/block-options/loop-and-merge/) object this response is associated with."}, "doc.qualtrics_source.question": {"name": "question", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.question", "block_contents": "Question text."}, "doc.qualtrics_source.question_option_key": {"name": "question_option_key", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.question_option_key", "block_contents": "The key of the `QUESTION_OPTION` that was chosen."}, "doc.qualtrics_source.sub_question_option_key": {"name": "sub_question_option_key", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.sub_question_option_key", "block_contents": "The key of the `QUESTION_OPTION` that was chosen for the sub-question."}, "doc.qualtrics_source.sub_question_text": {"name": "sub_question_text", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.sub_question_text", "block_contents": "Sub question text."}, "doc.qualtrics_source.response_value": {"name": "response_value", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.response_value", "block_contents": "Value of the question response."}, "doc.qualtrics_source.recode_value": {"name": "recode_value", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.recode_value", "block_contents": "Recode/mapping value for the option."}, "doc.qualtrics_source.question_option_text": {"name": "question_option_text", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.question_option_text", "block_contents": "Question option text."}, "doc.qualtrics_source.distribution_channel": {"name": "distribution_channel", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.distribution_channel", "block_contents": "The method by which the survey was distributed to respondents."}, "doc.qualtrics_source.duration_in_seconds": {"name": "duration_in_seconds", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.duration_in_seconds", "block_contents": "How long it took for the respondent to finish the survey in seconds."}, "doc.qualtrics_source.end_date": {"name": "end_date", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.end_date", "block_contents": "The point in time when the survey response was finished."}, "doc.qualtrics_source.finished": {"name": "finished", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.finished", "block_contents": "Boolean (stored as int) indicating if the respondent finished and submitted the survey, the value will be 1, otherwise it will be 0."}, "doc.qualtrics_source.response_id": {"name": "response_id", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.response_id", "block_contents": "The unique ID for the `SURVEY_RESPONSE`."}, "doc.qualtrics_source.ip_address": {"name": "ip_address", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.ip_address", "block_contents": "IP address of the recipient."}, "doc.qualtrics_source.last_modified_date": {"name": "last_modified_date", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.last_modified_date", "block_contents": "The point in time when the record was last modified."}, "doc.qualtrics_source.location_latitude": {"name": "location_latitude", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.location_latitude", "block_contents": "The approximate location of the respondent at the time the survey was taken."}, "doc.qualtrics_source.location_longitude": {"name": "location_longitude", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.location_longitude", "block_contents": "The approximate location of the respondent at the time the survey was taken."}, "doc.qualtrics_source.progress": {"name": "progress", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.progress", "block_contents": "How far the respondent has progressed through the survey as a percentage out of 100."}, "doc.qualtrics_source.recipient_email": {"name": "recipient_email", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.recipient_email", "block_contents": "Email of the [recipient](https://api.qualtrics.com/ZG9jOjg3NzY2OQ-getting-information-about-distributions#the-recipients-object) if they are a single recipient (not a mailing list or sample)."}, "doc.qualtrics_source.recipient_first_name": {"name": "recipient_first_name", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.recipient_first_name", "block_contents": "First name of the [recipient](https://api.qualtrics.com/ZG9jOjg3NzY2OQ-getting-information-about-distributions#the-recipients-object) if they are a single recipient (not a mailing list or sample)."}, "doc.qualtrics_source.recipient_last_name": {"name": "recipient_last_name", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.recipient_last_name", "block_contents": "Last name of the [recipient](https://api.qualtrics.com/ZG9jOjg3NzY2OQ-getting-information-about-distributions#the-recipients-object) if they are a single recipient (not a mailing list or sample)."}, "doc.qualtrics_source.recorded_date": {"name": "recorded_date", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.recorded_date", "block_contents": "The point in time when the survey response was recorded."}, "doc.qualtrics_source.start_date": {"name": "start_date", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.start_date", "block_contents": "The point in time when the survey response was recorded."}, "doc.qualtrics_source.status": {"name": "status", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.status", "block_contents": "The type of response."}, "doc.qualtrics_source.user_language": {"name": "user_language", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.user_language", "block_contents": "The language of the respondent."}, "doc.qualtrics_source.sub_question_key": {"name": "sub_question_key", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.sub_question_key", "block_contents": "Key of the sub question."}, "doc.qualtrics_source.creation_date": {"name": "creation_date", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.creation_date", "block_contents": "The creation date and time of the record, expressed as an ISO 8601 value."}, "doc.qualtrics_source.survey_version_description": {"name": "survey_version_description", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.survey_version_description", "block_contents": "A user-provided description of the survey version."}, "doc.qualtrics_source.version_id": {"name": "version_id", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.version_id", "block_contents": "The unique identifier for this survey version."}, "doc.qualtrics_source.published": {"name": "published", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.published", "block_contents": "Boolean that, when true, publishes the version."}, "doc.qualtrics_source.publisher_user_id": {"name": "publisher_user_id", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.publisher_user_id", "block_contents": "ID of `USER` who published this survey version in your org."}, "doc.qualtrics_source.version_number": {"name": "version_number", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.version_number", "block_contents": "The version number of this survey."}, "doc.qualtrics_source.was_published": {"name": "was_published", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.was_published", "block_contents": "Boolean that is true if the survey version was published."}, "doc.qualtrics_source.import_id": {"name": "import_id", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.import_id", "block_contents": "A unique identifier to recognize this import job of embedded survey data."}, "doc.qualtrics_source.key": {"name": "key", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.key", "block_contents": "Key of the embedded survey data element."}, "doc.qualtrics_source.value": {"name": "value", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.value", "block_contents": "Key of the embedded survey data element."}, "doc.qualtrics_source.deduplication_criteria_email": {"name": "deduplication_criteria_email", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.deduplication_criteria_email", "block_contents": "Boolean representing if directory contacts are deduped based on email."}, "doc.qualtrics_source.deduplication_criteria_external_data_reference": {"name": "deduplication_criteria_external_data_reference", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.deduplication_criteria_external_data_reference", "block_contents": "Boolean representing if directory contacts are deduped based on an external data reference."}, "doc.qualtrics_source.deduplication_criteria_first_name": {"name": "deduplication_criteria_first_name", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.deduplication_criteria_first_name", "block_contents": "Boolean representing if directory contacts are deduped based on first name."}, "doc.qualtrics_source.deduplication_criteria_last_name": {"name": "deduplication_criteria_last_name", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.deduplication_criteria_last_name", "block_contents": "Boolean representing if directory contacts are deduped based on last name."}, "doc.qualtrics_source.deduplication_criteria_phone": {"name": "deduplication_criteria_phone", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.deduplication_criteria_phone", "block_contents": "Boolean representing if directory contacts are deduped based on phone number."}, "doc.qualtrics_source.directory_id": {"name": "directory_id", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.directory_id", "block_contents": "The directory ID, also known as a pool ID. Example - POOL_012345678901234"}, "doc.qualtrics_source.is_default": {"name": "is_default", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.is_default", "block_contents": "Boolean representing if this directory is the default one for your brand. \n\nThe default directory will be the first directory listed in the dropdown menu in Qualtrics."}, "doc.qualtrics_source.directory_name": {"name": "directory_name", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.directory_name", "block_contents": "Name of the directory."}, "doc.qualtrics_source.directory_unsubscribe_date": {"name": "directory_unsubscribe_date", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.directory_unsubscribe_date", "block_contents": "Date and time the user opted out of the directory."}, "doc.qualtrics_source.directory_unsubscribed": {"name": "directory_unsubscribed", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.directory_unsubscribed", "block_contents": "Boolean indicating whether the contact unsubscribed from all contact from the Directory."}, "doc.qualtrics_source.contact_email": {"name": "contact_email", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.contact_email", "block_contents": "Contact's email address. Must be in proper email format."}, "doc.qualtrics_source.email_domain": {"name": "email_domain", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.email_domain", "block_contents": "Domain of the contact's email address."}, "doc.qualtrics_source.ext_ref": {"name": "ext_ref", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.ext_ref", "block_contents": "The external reference for the contact."}, "doc.qualtrics_source.contact_first_name": {"name": "contact_first_name", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.contact_first_name", "block_contents": "Contact's first name."}, "doc.qualtrics_source.contact_id": {"name": "contact_id", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.contact_id", "block_contents": "The ID for the contact. Example - CID_012345678901234"}, "doc.qualtrics_source.contact_last_name": {"name": "contact_last_name", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.contact_last_name", "block_contents": "Contact's surname."}, "doc.qualtrics_source.phone": {"name": "phone", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.phone", "block_contents": "Contact's phone number."}, "doc.qualtrics_source.write_blanks": {"name": "write_blanks", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.write_blanks", "block_contents": "Boolean of whether to write blanks(?) or not."}, "doc.qualtrics_source.header_from_email": {"name": "header_from_email", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.header_from_email", "block_contents": "Email from address."}, "doc.qualtrics_source.header_from_name": {"name": "header_from_name", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.header_from_name", "block_contents": "Email from name."}, "doc.qualtrics_source.header_reply_to_email": {"name": "header_reply_to_email", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.header_reply_to_email", "block_contents": "Email reply-to address."}, "doc.qualtrics_source.header_subject": {"name": "header_subject", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.header_subject", "block_contents": "Email subject; text or message id (MS_)."}, "doc.qualtrics_source.distribution_id": {"name": "distribution_id", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.distribution_id", "block_contents": "The unique Distribution ID."}, "doc.qualtrics_source.message_library_id": {"name": "message_library_id", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.message_library_id", "block_contents": "Library ID of the message."}, "doc.qualtrics_source.message_message_id": {"name": "message_message_id", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.message_message_id", "block_contents": "The ID for the desired library message."}, "doc.qualtrics_source.message_message_text": {"name": "message_message_text", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.message_message_text", "block_contents": "Text of the message to send."}, "doc.qualtrics_source.parent_distribution_id": {"name": "parent_distribution_id", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.parent_distribution_id", "block_contents": "The unique ID of the parent distribution."}, "doc.qualtrics_source.recipient_contact_id": {"name": "recipient_contact_id", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.recipient_contact_id", "block_contents": "The contact ID of the recipient. Can point to `directory_contact` or `core_contact`."}, "doc.qualtrics_source.recipient_library_id": {"name": "recipient_library_id", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.recipient_library_id", "block_contents": "Library ID of the message."}, "doc.qualtrics_source.recipient_mailing_list_id": {"name": "recipient_mailing_list_id", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.recipient_mailing_list_id", "block_contents": "The mailing list or contact group associated with the distribution(s). Can point to `directory_mailing_list` or `core_mailing_list`."}, "doc.qualtrics_source.recipient_sample_id": {"name": "recipient_sample_id", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.recipient_sample_id", "block_contents": "The ID for the desired sample. Can point to `directory_sample` or `core_sample` (not included in package)."}, "doc.qualtrics_source.request_status": {"name": "request_status", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.request_status", "block_contents": "The distribution's status. States include `Pending` and `Done`. The Pending state is for email that is scheduled to be sent at a later time."}, "doc.qualtrics_source.request_type": {"name": "request_type", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.request_type", "block_contents": "The distribution's type. Types include `Invite`, `Reminder`, and `ThankYou`."}, "doc.qualtrics_source.send_date": {"name": "send_date", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.send_date", "block_contents": "The date and time the request will be or was sent (in ISO 8601 format). Note that this date and time could be in the future if the email distribution is scheduled to send after a delay."}, "doc.qualtrics_source.survey_link_expiration_date": {"name": "survey_link_expiration_date", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.survey_link_expiration_date", "block_contents": "The expiration date for the link associated with the survey distribution. Null if `request_type` != `Invite`."}, "doc.qualtrics_source.survey_link_link_type": {"name": "survey_link_link_type", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.survey_link_link_type", "block_contents": "The link type (`Individual`, `Anonymous`, or `Multiple`) for the link associated with the survey distribution. Null if `request_type` != `Invite`."}, "doc.qualtrics_source.survey_link_survey_id": {"name": "survey_link_survey_id", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.survey_link_survey_id", "block_contents": "The unique survey ID. Will be non-null even if `request_type` != `Invite`."}, "doc.qualtrics_source.contact_frequency_rule_id": {"name": "contact_frequency_rule_id", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.contact_frequency_rule_id", "block_contents": "The contact frequency Rule ID. Ex - FQ_AAB234234"}, "doc.qualtrics_source.contact_lookup_id": {"name": "contact_lookup_id", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.contact_lookup_id", "block_contents": "Optional contact lookup ID for individual distribution."}, "doc.qualtrics_source.opened_at": {"name": "opened_at", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.opened_at", "block_contents": "The time a survey was opened by the respondent, will be null if the survey has not been opened."}, "doc.qualtrics_source.response_completed_at": {"name": "response_completed_at", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.response_completed_at", "block_contents": "The time a response was completed, will be null for uncompleted surveys."}, "doc.qualtrics_source.distribution_response_id": {"name": "distribution_response_id", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.distribution_response_id", "block_contents": "The ID of the survey response submitted by this contact. If no survey response has been submitted, this value will be null. If the survey was setup to anonymize responses, then this value will be `Anonymous`."}, "doc.qualtrics_source.response_started_at": {"name": "response_started_at", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.response_started_at", "block_contents": "The time a response was started by the respondent, will be null if survey has not been started."}, "doc.qualtrics_source.sent_at": {"name": "sent_at", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.sent_at", "block_contents": "The time a survey was sent to the respondent."}, "doc.qualtrics_source.distribution_status": {"name": "distribution_status", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.distribution_status", "block_contents": "One of ([full descriptions](https://api.qualtrics.com/fc8017650d0b9-distribution-status)):\n- `Pending`\n- `Success`\n- `Error`\n- `Opened`\n- `Complaint`\n- `Skipped`\n- `Blocked`\n- `Failure`\n- `Unknown`\n- `SoftBounce`\n- `HardBounce`\n- `SurveyStarted`\n- `SurveyPartiallyFinished`\n- `SurveyFinished`\n- `SurveyScreenedOut`\n- `SessionExpired`"}, "doc.qualtrics_source.survey_link": {"name": "survey_link", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.survey_link", "block_contents": "The survey link sent with the distribution. This is null when no link was sent."}, "doc.qualtrics_source.survey_session_id": {"name": "survey_session_id", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.survey_session_id", "block_contents": "An identifier that represents the session in which the respondent interacted with the survey"}, "doc.qualtrics_source.mailing_list_id": {"name": "mailing_list_id", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.mailing_list_id", "block_contents": "The ID for the mailing list."}, "doc.qualtrics_source.mailing_list_name": {"name": "mailing_list_name", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.mailing_list_name", "block_contents": "Name of the mailing list."}, "doc.qualtrics_source.mailing_list_unsubscribed": {"name": "mailing_list_unsubscribed", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.mailing_list_unsubscribed", "block_contents": "Boolean indicating whether the contact has opted out of receiving email through this mailing list."}, "doc.qualtrics_source.mailing_list_unsubscribe_date": {"name": "mailing_list_unsubscribe_date", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.mailing_list_unsubscribe_date", "block_contents": "Date and time the user opted out of this mailing list."}, "doc.qualtrics_source.mailing_list_contact_id": {"name": "mailing_list_contact_id", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.mailing_list_contact_id", "block_contents": "Mailing List Contact ID (different from `contact_id`). ex: `MLRP_*`"}, "doc.qualtrics_source.library_id": {"name": "library_id", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.library_id", "block_contents": "The library ID. Example: `UR_1234567890AbCdE`"}, "doc.qualtrics_source.mailing_list_category": {"name": "mailing_list_category", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.mailing_list_category", "block_contents": "The library ID. Example: `UR_1234567890AbCdE`"}, "doc.qualtrics_source.folder": {"name": "folder", "resource_type": "doc", "package_name": "qualtrics_source", "path": "docs.md", "original_file_path": "models/docs.md", "unique_id": "doc.qualtrics_source.folder", "block_contents": "The folder this is placed in."}}, "exposures": {}, "metrics": {}, "groups": {}, "selectors": {}, "disabled": {}, "parent_map": {"seed.qualtrics_source_integration_tests.distribution": [], "seed.qualtrics_source_integration_tests.distribution_contact": [], "seed.qualtrics_source_integration_tests.core_mailing_list": [], "seed.qualtrics_source_integration_tests.block": [], "seed.qualtrics_source_integration_tests.directory_mailing_list": [], "seed.qualtrics_source_integration_tests.survey_response": [], "seed.qualtrics_source_integration_tests.block_question": [], "seed.qualtrics_source_integration_tests.contact_mailing_list_membership": [], "seed.qualtrics_source_integration_tests.directory": [], "seed.qualtrics_source_integration_tests.question_response": [], "seed.qualtrics_source_integration_tests.directory_contact": [], "seed.qualtrics_source_integration_tests.sub_question": [], "seed.qualtrics_source_integration_tests.survey_version": [], "seed.qualtrics_source_integration_tests.user": [], "seed.qualtrics_source_integration_tests.survey": [], "seed.qualtrics_source_integration_tests.survey_embedded_data": [], "seed.qualtrics_source_integration_tests.question_option": [], "seed.qualtrics_source_integration_tests.question": [], "seed.qualtrics_source_integration_tests.core_contact": [], "model.qualtrics_source.stg_qualtrics__survey": ["model.qualtrics_source.stg_qualtrics__survey_tmp"], "model.qualtrics_source.stg_qualtrics__block_question": ["model.qualtrics_source.stg_qualtrics__block_question_tmp"], "model.qualtrics_source.stg_qualtrics__question_option": ["model.qualtrics_source.stg_qualtrics__question_option_tmp"], "model.qualtrics_source.stg_qualtrics__contact_mailing_list_membership": ["model.qualtrics_source.stg_qualtrics__contact_mailing_list_membership_tmp"], "model.qualtrics_source.stg_qualtrics__directory_contact": ["model.qualtrics_source.stg_qualtrics__directory_contact_tmp"], "model.qualtrics_source.stg_qualtrics__question_response": ["model.qualtrics_source.stg_qualtrics__question_response_tmp"], "model.qualtrics_source.stg_qualtrics__directory": ["model.qualtrics_source.stg_qualtrics__directory_tmp"], "model.qualtrics_source.stg_qualtrics__distribution_contact": ["model.qualtrics_source.stg_qualtrics__distribution_contact_tmp"], "model.qualtrics_source.stg_qualtrics__block": ["model.qualtrics_source.stg_qualtrics__block_tmp"], "model.qualtrics_source.stg_qualtrics__distribution": ["model.qualtrics_source.stg_qualtrics__distribution_tmp"], "model.qualtrics_source.stg_qualtrics__core_contact": ["model.qualtrics_source.stg_qualtrics__core_contact_tmp"], "model.qualtrics_source.stg_qualtrics__survey_embedded_data": ["model.qualtrics_source.stg_qualtrics__survey_embedded_data_tmp"], "model.qualtrics_source.stg_qualtrics__survey_response": ["model.qualtrics_source.stg_qualtrics__survey_response_tmp"], "model.qualtrics_source.stg_qualtrics__user": ["model.qualtrics_source.stg_qualtrics__user_tmp"], "model.qualtrics_source.stg_qualtrics__core_mailing_list": ["model.qualtrics_source.stg_qualtrics__core_mailing_list_tmp"], "model.qualtrics_source.stg_qualtrics__question": ["model.qualtrics_source.stg_qualtrics__question_tmp"], "model.qualtrics_source.stg_qualtrics__sub_question": ["model.qualtrics_source.stg_qualtrics__sub_question_tmp"], "model.qualtrics_source.stg_qualtrics__survey_version": ["model.qualtrics_source.stg_qualtrics__survey_version_tmp"], "model.qualtrics_source.stg_qualtrics__directory_mailing_list": ["model.qualtrics_source.stg_qualtrics__directory_mailing_list_tmp"], "model.qualtrics_source.stg_qualtrics__directory_tmp": ["source.qualtrics_source.qualtrics.directory"], "model.qualtrics_source.stg_qualtrics__question_tmp": ["source.qualtrics_source.qualtrics.question"], "model.qualtrics_source.stg_qualtrics__question_option_tmp": ["source.qualtrics_source.qualtrics.question_option"], "model.qualtrics_source.stg_qualtrics__distribution_contact_tmp": ["source.qualtrics_source.qualtrics.distribution_contact"], "model.qualtrics_source.stg_qualtrics__core_mailing_list_tmp": ["source.qualtrics_source.qualtrics.core_mailing_list"], "model.qualtrics_source.stg_qualtrics__survey_tmp": ["source.qualtrics_source.qualtrics.survey"], "model.qualtrics_source.stg_qualtrics__contact_mailing_list_membership_tmp": ["source.qualtrics_source.qualtrics.contact_mailing_list_membership"], "model.qualtrics_source.stg_qualtrics__distribution_tmp": ["source.qualtrics_source.qualtrics.distribution"], "model.qualtrics_source.stg_qualtrics__block_question_tmp": ["source.qualtrics_source.qualtrics.block_question"], "model.qualtrics_source.stg_qualtrics__survey_response_tmp": ["source.qualtrics_source.qualtrics.survey_response"], "model.qualtrics_source.stg_qualtrics__directory_mailing_list_tmp": ["source.qualtrics_source.qualtrics.directory_mailing_list"], "model.qualtrics_source.stg_qualtrics__directory_contact_tmp": ["source.qualtrics_source.qualtrics.directory_contact"], "model.qualtrics_source.stg_qualtrics__block_tmp": ["source.qualtrics_source.qualtrics.block"], "model.qualtrics_source.stg_qualtrics__survey_embedded_data_tmp": ["source.qualtrics_source.qualtrics.survey_embedded_data"], "model.qualtrics_source.stg_qualtrics__user_tmp": ["source.qualtrics_source.qualtrics.user"], "model.qualtrics_source.stg_qualtrics__question_response_tmp": ["source.qualtrics_source.qualtrics.question_response"], "model.qualtrics_source.stg_qualtrics__core_contact_tmp": ["source.qualtrics_source.qualtrics.core_contact"], "model.qualtrics_source.stg_qualtrics__survey_version_tmp": ["source.qualtrics_source.qualtrics.survey_version"], "model.qualtrics_source.stg_qualtrics__sub_question_tmp": ["source.qualtrics_source.qualtrics.sub_question"], "test.qualtrics_source.not_null_stg_qualtrics__user_user_id.816e912ff9": ["model.qualtrics_source.stg_qualtrics__user"], "test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__user_user_id__source_relation.73c4de157d": ["model.qualtrics_source.stg_qualtrics__user"], "test.qualtrics_source.not_null_stg_qualtrics__survey_survey_id.2796651e04": ["model.qualtrics_source.stg_qualtrics__survey"], "test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__survey_survey_id__source_relation.a1fd5a2968": ["model.qualtrics_source.stg_qualtrics__survey"], "test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__question_question_id__survey_id__source_relation.1e5f78924a": ["model.qualtrics_source.stg_qualtrics__question"], "test.qualtrics_source.not_null_stg_qualtrics__question_response__fivetran_id.6e47cc53d7": ["model.qualtrics_source.stg_qualtrics__question_response"], "test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__question_response__fivetran_id__source_relation.2e0556a912": ["model.qualtrics_source.stg_qualtrics__question_response"], "test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__question_option_question_id__survey_id__key__source_relation.af5af3057f": ["model.qualtrics_source.stg_qualtrics__question_option"], "test.qualtrics_source.not_null_stg_qualtrics__survey_response_response_id.864d3a83e3": ["model.qualtrics_source.stg_qualtrics__survey_response"], "test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__survey_response_response_id__source_relation.c97ddff72b": ["model.qualtrics_source.stg_qualtrics__survey_response"], "test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__sub_question_question_id__survey_id__key__source_relation.12c68e2ef2": ["model.qualtrics_source.stg_qualtrics__sub_question"], "test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__survey_version_version_id__survey_id__source_relation.513ef528c1": ["model.qualtrics_source.stg_qualtrics__survey_version"], "test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__survey_embedded_data_import_id__response_id__key__value__source_relation.73ba345920": ["model.qualtrics_source.stg_qualtrics__survey_embedded_data"], "test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__block_block_id__survey_id__source_relation.9105cad472": ["model.qualtrics_source.stg_qualtrics__block"], "test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__block_question_block_id__question_id__survey_id__source_relation.2fd7c420b5": ["model.qualtrics_source.stg_qualtrics__block_question"], "test.qualtrics_source.not_null_stg_qualtrics__directory_directory_id.65413cdcf7": ["model.qualtrics_source.stg_qualtrics__directory"], "test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__directory_directory_id__source_relation.9c637ae3e0": ["model.qualtrics_source.stg_qualtrics__directory"], "test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__directory_contact_contact_id__directory_id__source_relation.a3dc488ebf": ["model.qualtrics_source.stg_qualtrics__directory_contact"], "test.qualtrics_source.not_null_stg_qualtrics__distribution_distribution_id.6158e414ed": ["model.qualtrics_source.stg_qualtrics__distribution"], "test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__distribution_distribution_id__source_relation.312f709e9c": ["model.qualtrics_source.stg_qualtrics__distribution"], "test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__distribution_contact_contact_id__distribution_id__source_relation.b40826e6b2": ["model.qualtrics_source.stg_qualtrics__distribution_contact"], "test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__directory_mailing_list_mailing_list_id__directory_id__source_relation.24870adb73": ["model.qualtrics_source.stg_qualtrics__directory_mailing_list"], "test.qualtrics_source.not_null_stg_qualtrics__contact_mailing_list_membership_contact_lookup_id.32d4d7bbf5": ["model.qualtrics_source.stg_qualtrics__contact_mailing_list_membership"], "test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__contact_mailing_list_membership_contact_lookup_id__source_relation.943f4b419c": ["model.qualtrics_source.stg_qualtrics__contact_mailing_list_membership"], "test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__core_contact_contact_id__mailing_list_id__source_relation.fbdaf339c9": ["model.qualtrics_source.stg_qualtrics__core_contact"], "test.qualtrics_source.not_null_stg_qualtrics__core_mailing_list_mailing_list_id.344fbdd6dc": ["model.qualtrics_source.stg_qualtrics__core_mailing_list"], "test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__core_mailing_list_mailing_list_id__source_relation.fcd78a8fd6": ["model.qualtrics_source.stg_qualtrics__core_mailing_list"], "source.qualtrics_source.qualtrics.user": [], "source.qualtrics_source.qualtrics.survey": [], "source.qualtrics_source.qualtrics.question": [], "source.qualtrics_source.qualtrics.question_response": [], "source.qualtrics_source.qualtrics.question_option": [], "source.qualtrics_source.qualtrics.survey_response": [], "source.qualtrics_source.qualtrics.sub_question": [], "source.qualtrics_source.qualtrics.survey_version": [], "source.qualtrics_source.qualtrics.survey_embedded_data": [], "source.qualtrics_source.qualtrics.block": [], "source.qualtrics_source.qualtrics.block_question": [], "source.qualtrics_source.qualtrics.directory": [], "source.qualtrics_source.qualtrics.directory_contact": [], "source.qualtrics_source.qualtrics.distribution": [], "source.qualtrics_source.qualtrics.distribution_contact": [], "source.qualtrics_source.qualtrics.directory_mailing_list": [], "source.qualtrics_source.qualtrics.contact_mailing_list_membership": [], "source.qualtrics_source.qualtrics.core_contact": [], "source.qualtrics_source.qualtrics.core_mailing_list": []}, "child_map": {"seed.qualtrics_source_integration_tests.distribution": [], "seed.qualtrics_source_integration_tests.distribution_contact": [], "seed.qualtrics_source_integration_tests.core_mailing_list": [], "seed.qualtrics_source_integration_tests.block": [], "seed.qualtrics_source_integration_tests.directory_mailing_list": [], "seed.qualtrics_source_integration_tests.survey_response": [], "seed.qualtrics_source_integration_tests.block_question": [], "seed.qualtrics_source_integration_tests.contact_mailing_list_membership": [], "seed.qualtrics_source_integration_tests.directory": [], "seed.qualtrics_source_integration_tests.question_response": [], "seed.qualtrics_source_integration_tests.directory_contact": [], "seed.qualtrics_source_integration_tests.sub_question": [], "seed.qualtrics_source_integration_tests.survey_version": [], "seed.qualtrics_source_integration_tests.user": [], "seed.qualtrics_source_integration_tests.survey": [], "seed.qualtrics_source_integration_tests.survey_embedded_data": [], "seed.qualtrics_source_integration_tests.question_option": [], "seed.qualtrics_source_integration_tests.question": [], "seed.qualtrics_source_integration_tests.core_contact": [], "model.qualtrics_source.stg_qualtrics__survey": ["test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__survey_survey_id__source_relation.a1fd5a2968", "test.qualtrics_source.not_null_stg_qualtrics__survey_survey_id.2796651e04"], "model.qualtrics_source.stg_qualtrics__block_question": ["test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__block_question_block_id__question_id__survey_id__source_relation.2fd7c420b5"], "model.qualtrics_source.stg_qualtrics__question_option": ["test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__question_option_question_id__survey_id__key__source_relation.af5af3057f"], "model.qualtrics_source.stg_qualtrics__contact_mailing_list_membership": ["test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__contact_mailing_list_membership_contact_lookup_id__source_relation.943f4b419c", "test.qualtrics_source.not_null_stg_qualtrics__contact_mailing_list_membership_contact_lookup_id.32d4d7bbf5"], "model.qualtrics_source.stg_qualtrics__directory_contact": ["test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__directory_contact_contact_id__directory_id__source_relation.a3dc488ebf"], "model.qualtrics_source.stg_qualtrics__question_response": ["test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__question_response__fivetran_id__source_relation.2e0556a912", "test.qualtrics_source.not_null_stg_qualtrics__question_response__fivetran_id.6e47cc53d7"], "model.qualtrics_source.stg_qualtrics__directory": ["test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__directory_directory_id__source_relation.9c637ae3e0", "test.qualtrics_source.not_null_stg_qualtrics__directory_directory_id.65413cdcf7"], "model.qualtrics_source.stg_qualtrics__distribution_contact": ["test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__distribution_contact_contact_id__distribution_id__source_relation.b40826e6b2"], "model.qualtrics_source.stg_qualtrics__block": ["test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__block_block_id__survey_id__source_relation.9105cad472"], "model.qualtrics_source.stg_qualtrics__distribution": ["test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__distribution_distribution_id__source_relation.312f709e9c", "test.qualtrics_source.not_null_stg_qualtrics__distribution_distribution_id.6158e414ed"], "model.qualtrics_source.stg_qualtrics__core_contact": ["test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__core_contact_contact_id__mailing_list_id__source_relation.fbdaf339c9"], "model.qualtrics_source.stg_qualtrics__survey_embedded_data": ["test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__survey_embedded_data_import_id__response_id__key__value__source_relation.73ba345920"], "model.qualtrics_source.stg_qualtrics__survey_response": ["test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__survey_response_response_id__source_relation.c97ddff72b", "test.qualtrics_source.not_null_stg_qualtrics__survey_response_response_id.864d3a83e3"], "model.qualtrics_source.stg_qualtrics__user": ["test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__user_user_id__source_relation.73c4de157d", "test.qualtrics_source.not_null_stg_qualtrics__user_user_id.816e912ff9"], "model.qualtrics_source.stg_qualtrics__core_mailing_list": ["test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__core_mailing_list_mailing_list_id__source_relation.fcd78a8fd6", "test.qualtrics_source.not_null_stg_qualtrics__core_mailing_list_mailing_list_id.344fbdd6dc"], "model.qualtrics_source.stg_qualtrics__question": ["test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__question_question_id__survey_id__source_relation.1e5f78924a"], "model.qualtrics_source.stg_qualtrics__sub_question": ["test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__sub_question_question_id__survey_id__key__source_relation.12c68e2ef2"], "model.qualtrics_source.stg_qualtrics__survey_version": ["test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__survey_version_version_id__survey_id__source_relation.513ef528c1"], "model.qualtrics_source.stg_qualtrics__directory_mailing_list": ["test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__directory_mailing_list_mailing_list_id__directory_id__source_relation.24870adb73"], "model.qualtrics_source.stg_qualtrics__directory_tmp": ["model.qualtrics_source.stg_qualtrics__directory"], "model.qualtrics_source.stg_qualtrics__question_tmp": ["model.qualtrics_source.stg_qualtrics__question"], "model.qualtrics_source.stg_qualtrics__question_option_tmp": ["model.qualtrics_source.stg_qualtrics__question_option"], "model.qualtrics_source.stg_qualtrics__distribution_contact_tmp": ["model.qualtrics_source.stg_qualtrics__distribution_contact"], "model.qualtrics_source.stg_qualtrics__core_mailing_list_tmp": ["model.qualtrics_source.stg_qualtrics__core_mailing_list"], "model.qualtrics_source.stg_qualtrics__survey_tmp": ["model.qualtrics_source.stg_qualtrics__survey"], "model.qualtrics_source.stg_qualtrics__contact_mailing_list_membership_tmp": ["model.qualtrics_source.stg_qualtrics__contact_mailing_list_membership"], "model.qualtrics_source.stg_qualtrics__distribution_tmp": ["model.qualtrics_source.stg_qualtrics__distribution"], "model.qualtrics_source.stg_qualtrics__block_question_tmp": ["model.qualtrics_source.stg_qualtrics__block_question"], "model.qualtrics_source.stg_qualtrics__survey_response_tmp": ["model.qualtrics_source.stg_qualtrics__survey_response"], "model.qualtrics_source.stg_qualtrics__directory_mailing_list_tmp": ["model.qualtrics_source.stg_qualtrics__directory_mailing_list"], "model.qualtrics_source.stg_qualtrics__directory_contact_tmp": ["model.qualtrics_source.stg_qualtrics__directory_contact"], "model.qualtrics_source.stg_qualtrics__block_tmp": ["model.qualtrics_source.stg_qualtrics__block"], "model.qualtrics_source.stg_qualtrics__survey_embedded_data_tmp": ["model.qualtrics_source.stg_qualtrics__survey_embedded_data"], "model.qualtrics_source.stg_qualtrics__user_tmp": ["model.qualtrics_source.stg_qualtrics__user"], "model.qualtrics_source.stg_qualtrics__question_response_tmp": ["model.qualtrics_source.stg_qualtrics__question_response"], "model.qualtrics_source.stg_qualtrics__core_contact_tmp": ["model.qualtrics_source.stg_qualtrics__core_contact"], "model.qualtrics_source.stg_qualtrics__survey_version_tmp": ["model.qualtrics_source.stg_qualtrics__survey_version"], "model.qualtrics_source.stg_qualtrics__sub_question_tmp": ["model.qualtrics_source.stg_qualtrics__sub_question"], "test.qualtrics_source.not_null_stg_qualtrics__user_user_id.816e912ff9": [], "test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__user_user_id__source_relation.73c4de157d": [], "test.qualtrics_source.not_null_stg_qualtrics__survey_survey_id.2796651e04": [], "test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__survey_survey_id__source_relation.a1fd5a2968": [], "test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__question_question_id__survey_id__source_relation.1e5f78924a": [], "test.qualtrics_source.not_null_stg_qualtrics__question_response__fivetran_id.6e47cc53d7": [], "test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__question_response__fivetran_id__source_relation.2e0556a912": [], "test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__question_option_question_id__survey_id__key__source_relation.af5af3057f": [], "test.qualtrics_source.not_null_stg_qualtrics__survey_response_response_id.864d3a83e3": [], "test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__survey_response_response_id__source_relation.c97ddff72b": [], "test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__sub_question_question_id__survey_id__key__source_relation.12c68e2ef2": [], "test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__survey_version_version_id__survey_id__source_relation.513ef528c1": [], "test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__survey_embedded_data_import_id__response_id__key__value__source_relation.73ba345920": [], "test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__block_block_id__survey_id__source_relation.9105cad472": [], "test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__block_question_block_id__question_id__survey_id__source_relation.2fd7c420b5": [], "test.qualtrics_source.not_null_stg_qualtrics__directory_directory_id.65413cdcf7": [], "test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__directory_directory_id__source_relation.9c637ae3e0": [], "test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__directory_contact_contact_id__directory_id__source_relation.a3dc488ebf": [], "test.qualtrics_source.not_null_stg_qualtrics__distribution_distribution_id.6158e414ed": [], "test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__distribution_distribution_id__source_relation.312f709e9c": [], "test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__distribution_contact_contact_id__distribution_id__source_relation.b40826e6b2": [], "test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__directory_mailing_list_mailing_list_id__directory_id__source_relation.24870adb73": [], "test.qualtrics_source.not_null_stg_qualtrics__contact_mailing_list_membership_contact_lookup_id.32d4d7bbf5": [], "test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__contact_mailing_list_membership_contact_lookup_id__source_relation.943f4b419c": [], "test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__core_contact_contact_id__mailing_list_id__source_relation.fbdaf339c9": [], "test.qualtrics_source.not_null_stg_qualtrics__core_mailing_list_mailing_list_id.344fbdd6dc": [], "test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__core_mailing_list_mailing_list_id__source_relation.fcd78a8fd6": [], "source.qualtrics_source.qualtrics.user": ["model.qualtrics_source.stg_qualtrics__user_tmp"], "source.qualtrics_source.qualtrics.survey": ["model.qualtrics_source.stg_qualtrics__survey_tmp"], "source.qualtrics_source.qualtrics.question": ["model.qualtrics_source.stg_qualtrics__question_tmp"], "source.qualtrics_source.qualtrics.question_response": ["model.qualtrics_source.stg_qualtrics__question_response_tmp"], "source.qualtrics_source.qualtrics.question_option": ["model.qualtrics_source.stg_qualtrics__question_option_tmp"], "source.qualtrics_source.qualtrics.survey_response": ["model.qualtrics_source.stg_qualtrics__survey_response_tmp"], "source.qualtrics_source.qualtrics.sub_question": ["model.qualtrics_source.stg_qualtrics__sub_question_tmp"], "source.qualtrics_source.qualtrics.survey_version": ["model.qualtrics_source.stg_qualtrics__survey_version_tmp"], "source.qualtrics_source.qualtrics.survey_embedded_data": ["model.qualtrics_source.stg_qualtrics__survey_embedded_data_tmp"], "source.qualtrics_source.qualtrics.block": ["model.qualtrics_source.stg_qualtrics__block_tmp"], "source.qualtrics_source.qualtrics.block_question": ["model.qualtrics_source.stg_qualtrics__block_question_tmp"], "source.qualtrics_source.qualtrics.directory": ["model.qualtrics_source.stg_qualtrics__directory_tmp"], "source.qualtrics_source.qualtrics.directory_contact": ["model.qualtrics_source.stg_qualtrics__directory_contact_tmp"], "source.qualtrics_source.qualtrics.distribution": ["model.qualtrics_source.stg_qualtrics__distribution_tmp"], "source.qualtrics_source.qualtrics.distribution_contact": ["model.qualtrics_source.stg_qualtrics__distribution_contact_tmp"], "source.qualtrics_source.qualtrics.directory_mailing_list": ["model.qualtrics_source.stg_qualtrics__directory_mailing_list_tmp"], "source.qualtrics_source.qualtrics.contact_mailing_list_membership": ["model.qualtrics_source.stg_qualtrics__contact_mailing_list_membership_tmp"], "source.qualtrics_source.qualtrics.core_contact": ["model.qualtrics_source.stg_qualtrics__core_contact_tmp"], "source.qualtrics_source.qualtrics.core_mailing_list": ["model.qualtrics_source.stg_qualtrics__core_mailing_list_tmp"]}, "group_map": {}, "saved_queries": {}, "semantic_models": {}} \ No newline at end of file diff --git a/docs/run_results.json b/docs/run_results.json index 871161e..8a788c6 100644 --- a/docs/run_results.json +++ b/docs/run_results.json @@ -1 +1 @@ -{"metadata": {"dbt_schema_version": "https://schemas.getdbt.com/dbt/run-results/v5.json", "dbt_version": "1.7.10", "generated_at": "2024-03-22T19:55:40.870694Z", "invocation_id": "a8724f2c-3ab8-47dc-a85e-17ac333dfaf6", "env": {}}, "results": [{"status": "success", "timing": [{"name": "compile", "started_at": "2024-03-22T19:55:38.981220Z", "completed_at": "2024-03-22T19:55:38.986876Z"}, {"name": "execute", "started_at": "2024-03-22T19:55:38.988926Z", "completed_at": "2024-03-22T19:55:38.988942Z"}], "thread_id": "Thread-3 (worker)", "execution_time": 0.046074867248535156, "adapter_response": {}, "message": null, "failures": null, "unique_id": "model.qualtrics_source.stg_qualtrics__contact_mailing_list_membership_tmp", "compiled": true, "compiled_code": "\n \n \n \n \n \n \n \n select * \n from \"postgres\".\"qualtrics_source_integration_tests\".\"contact_mailing_list_membership\"", "relation_name": "\"postgres\".\"qualtrics_source_integration_tests_qualtrics_source\".\"stg_qualtrics__contact_mailing_list_membership_tmp\""}, {"status": "success", "timing": [{"name": "compile", "started_at": "2024-03-22T19:55:38.965286Z", "completed_at": "2024-03-22T19:55:38.987172Z"}, {"name": "execute", "started_at": "2024-03-22T19:55:38.989307Z", "completed_at": "2024-03-22T19:55:38.989320Z"}], "thread_id": "Thread-2 (worker)", "execution_time": 0.04705524444580078, "adapter_response": {}, "message": null, "failures": null, "unique_id": "model.qualtrics_source.stg_qualtrics__block_tmp", "compiled": true, "compiled_code": "\n \n \n \n \n \n \n \n select * \n from \"postgres\".\"qualtrics_source_integration_tests\".\"block\"", "relation_name": "\"postgres\".\"qualtrics_source_integration_tests_qualtrics_source\".\"stg_qualtrics__block_tmp\""}, {"status": "success", "timing": [{"name": "compile", "started_at": "2024-03-22T19:55:38.984257Z", "completed_at": "2024-03-22T19:55:38.987469Z"}, {"name": "execute", "started_at": "2024-03-22T19:55:38.989757Z", "completed_at": "2024-03-22T19:55:38.989765Z"}], "thread_id": "Thread-4 (worker)", "execution_time": 0.04682612419128418, "adapter_response": {}, "message": null, "failures": null, "unique_id": "model.qualtrics_source.stg_qualtrics__directory_contact_tmp", "compiled": true, "compiled_code": "\n \n \n \n \n \n \n \n select * \n from \"postgres\".\"qualtrics_source_integration_tests\".\"directory_contact\"", "relation_name": "\"postgres\".\"qualtrics_source_integration_tests_qualtrics_source\".\"stg_qualtrics__directory_contact_tmp\""}, {"status": "success", "timing": [{"name": "compile", "started_at": "2024-03-22T19:55:38.946508Z", "completed_at": "2024-03-22T19:55:38.987721Z"}, {"name": "execute", "started_at": "2024-03-22T19:55:38.990111Z", "completed_at": "2024-03-22T19:55:38.990116Z"}], "thread_id": "Thread-1 (worker)", "execution_time": 0.04875898361206055, "adapter_response": {}, "message": null, "failures": null, "unique_id": "model.qualtrics_source.stg_qualtrics__block_question_tmp", "compiled": true, "compiled_code": "\n \n \n \n \n \n \n \n select * \n from \"postgres\".\"qualtrics_source_integration_tests\".\"block_question\"", "relation_name": "\"postgres\".\"qualtrics_source_integration_tests_qualtrics_source\".\"stg_qualtrics__block_question_tmp\""}, {"status": "success", "timing": [{"name": "compile", "started_at": "2024-03-22T19:55:38.997124Z", "completed_at": "2024-03-22T19:55:39.008310Z"}, {"name": "execute", "started_at": "2024-03-22T19:55:39.010265Z", "completed_at": "2024-03-22T19:55:39.010272Z"}], "thread_id": "Thread-3 (worker)", "execution_time": 0.01703810691833496, "adapter_response": {}, "message": null, "failures": null, "unique_id": "model.qualtrics_source.stg_qualtrics__directory_mailing_list_tmp", "compiled": true, "compiled_code": "\n \n \n \n \n \n \n \n select * \n from \"postgres\".\"qualtrics_source_integration_tests\".\"directory_mailing_list\"", "relation_name": "\"postgres\".\"qualtrics_source_integration_tests_qualtrics_source\".\"stg_qualtrics__directory_mailing_list_tmp\""}, {"status": "success", "timing": [{"name": "compile", "started_at": "2024-03-22T19:55:38.999987Z", "completed_at": "2024-03-22T19:55:39.008700Z"}, {"name": "execute", "started_at": "2024-03-22T19:55:39.010538Z", "completed_at": "2024-03-22T19:55:39.010541Z"}], "thread_id": "Thread-2 (worker)", "execution_time": 0.01706409454345703, "adapter_response": {}, "message": null, "failures": null, "unique_id": "model.qualtrics_source.stg_qualtrics__directory_tmp", "compiled": true, "compiled_code": "\n \n \n \n \n \n \n \n select * \n from \"postgres\".\"qualtrics_source_integration_tests\".\"directory\"", "relation_name": "\"postgres\".\"qualtrics_source_integration_tests_qualtrics_source\".\"stg_qualtrics__directory_tmp\""}, {"status": "success", "timing": [{"name": "compile", "started_at": "2024-03-22T19:55:39.002354Z", "completed_at": "2024-03-22T19:55:39.008982Z"}, {"name": "execute", "started_at": "2024-03-22T19:55:39.011039Z", "completed_at": "2024-03-22T19:55:39.011041Z"}], "thread_id": "Thread-4 (worker)", "execution_time": 0.017377853393554688, "adapter_response": {}, "message": null, "failures": null, "unique_id": "model.qualtrics_source.stg_qualtrics__distribution_contact_tmp", "compiled": true, "compiled_code": "\n \n \n \n \n \n \n \n select * \n from \"postgres\".\"qualtrics_source_integration_tests\".\"distribution_contact\"", "relation_name": "\"postgres\".\"qualtrics_source_integration_tests_qualtrics_source\".\"stg_qualtrics__distribution_contact_tmp\""}, {"status": "success", "timing": [{"name": "compile", "started_at": "2024-03-22T19:55:39.005032Z", "completed_at": "2024-03-22T19:55:39.009764Z"}, {"name": "execute", "started_at": "2024-03-22T19:55:39.012313Z", "completed_at": "2024-03-22T19:55:39.012317Z"}], "thread_id": "Thread-1 (worker)", "execution_time": 0.018176794052124023, "adapter_response": {}, "message": null, "failures": null, "unique_id": "model.qualtrics_source.stg_qualtrics__distribution_tmp", "compiled": true, "compiled_code": "\n \n \n \n \n \n \n \n select * \n from \"postgres\".\"qualtrics_source_integration_tests\".\"distribution\"", "relation_name": "\"postgres\".\"qualtrics_source_integration_tests_qualtrics_source\".\"stg_qualtrics__distribution_tmp\""}, {"status": "success", "timing": [{"name": "compile", "started_at": "2024-03-22T19:55:39.017046Z", "completed_at": "2024-03-22T19:55:39.027756Z"}, {"name": "execute", "started_at": "2024-03-22T19:55:39.028303Z", "completed_at": "2024-03-22T19:55:39.028309Z"}], "thread_id": "Thread-3 (worker)", "execution_time": 0.014165878295898438, "adapter_response": {}, "message": null, "failures": null, "unique_id": "model.qualtrics_source.stg_qualtrics__question_option_tmp", "compiled": true, "compiled_code": "\n \n \n \n \n \n \n \n select * \n from \"postgres\".\"qualtrics_source_integration_tests\".\"question_option\"", "relation_name": "\"postgres\".\"qualtrics_source_integration_tests_qualtrics_source\".\"stg_qualtrics__question_option_tmp\""}, {"status": "success", "timing": [{"name": "compile", "started_at": "2024-03-22T19:55:39.019924Z", "completed_at": "2024-03-22T19:55:39.029046Z"}, {"name": "execute", "started_at": "2024-03-22T19:55:39.031314Z", "completed_at": "2024-03-22T19:55:39.031319Z"}], "thread_id": "Thread-2 (worker)", "execution_time": 0.01760101318359375, "adapter_response": {}, "message": null, "failures": null, "unique_id": "model.qualtrics_source.stg_qualtrics__question_response_tmp", "compiled": true, "compiled_code": "\n \n \n \n \n \n \n \n select * \n from \"postgres\".\"qualtrics_source_integration_tests\".\"question_response\"", "relation_name": "\"postgres\".\"qualtrics_source_integration_tests_qualtrics_source\".\"stg_qualtrics__question_response_tmp\""}, {"status": "success", "timing": [{"name": "compile", "started_at": "2024-03-22T19:55:39.025037Z", "completed_at": "2024-03-22T19:55:39.029619Z"}, {"name": "execute", "started_at": "2024-03-22T19:55:39.031832Z", "completed_at": "2024-03-22T19:55:39.031834Z"}], "thread_id": "Thread-1 (worker)", "execution_time": 0.019138097763061523, "adapter_response": {}, "message": null, "failures": null, "unique_id": "model.qualtrics_source.stg_qualtrics__sub_question_tmp", "compiled": true, "compiled_code": "\n \n \n \n \n \n \n \n select * \n from \"postgres\".\"qualtrics_source_integration_tests\".\"sub_question\"", "relation_name": "\"postgres\".\"qualtrics_source_integration_tests_qualtrics_source\".\"stg_qualtrics__sub_question_tmp\""}, {"status": "success", "timing": [{"name": "compile", "started_at": "2024-03-22T19:55:39.022531Z", "completed_at": "2024-03-22T19:55:39.029904Z"}, {"name": "execute", "started_at": "2024-03-22T19:55:39.032103Z", "completed_at": "2024-03-22T19:55:39.032106Z"}], "thread_id": "Thread-4 (worker)", "execution_time": 0.020421743392944336, "adapter_response": {}, "message": null, "failures": null, "unique_id": "model.qualtrics_source.stg_qualtrics__question_tmp", "compiled": true, "compiled_code": "\n \n \n \n \n \n \n \n select * \n from \"postgres\".\"qualtrics_source_integration_tests\".\"question\"", "relation_name": "\"postgres\".\"qualtrics_source_integration_tests_qualtrics_source\".\"stg_qualtrics__question_tmp\""}, {"status": "success", "timing": [{"name": "compile", "started_at": "2024-03-22T19:55:39.032887Z", "completed_at": "2024-03-22T19:55:39.037310Z"}, {"name": "execute", "started_at": "2024-03-22T19:55:39.039747Z", "completed_at": "2024-03-22T19:55:39.039752Z"}], "thread_id": "Thread-3 (worker)", "execution_time": 0.01778101921081543, "adapter_response": {}, "message": null, "failures": null, "unique_id": "model.qualtrics_source.stg_qualtrics__survey_embedded_data_tmp", "compiled": true, "compiled_code": "\n \n \n \n \n \n \n \n select * \n from \"postgres\".\"qualtrics_source_integration_tests\".\"survey_embedded_data\"", "relation_name": "\"postgres\".\"qualtrics_source_integration_tests_qualtrics_source\".\"stg_qualtrics__survey_embedded_data_tmp\""}, {"status": "success", "timing": [{"name": "compile", "started_at": "2024-03-22T19:55:39.043281Z", "completed_at": "2024-03-22T19:55:39.049118Z"}, {"name": "execute", "started_at": "2024-03-22T19:55:39.051084Z", "completed_at": "2024-03-22T19:55:39.051088Z"}], "thread_id": "Thread-1 (worker)", "execution_time": 0.01649618148803711, "adapter_response": {}, "message": null, "failures": null, "unique_id": "model.qualtrics_source.stg_qualtrics__survey_tmp", "compiled": true, "compiled_code": "\n \n \n \n \n \n \n \n select * \n from \"postgres\".\"qualtrics_source_integration_tests\".\"survey\"", "relation_name": "\"postgres\".\"qualtrics_source_integration_tests_qualtrics_source\".\"stg_qualtrics__survey_tmp\""}, {"status": "success", "timing": [{"name": "compile", "started_at": "2024-03-22T19:55:39.040006Z", "completed_at": "2024-03-22T19:55:39.049453Z"}, {"name": "execute", "started_at": "2024-03-22T19:55:39.051583Z", "completed_at": "2024-03-22T19:55:39.051586Z"}], "thread_id": "Thread-2 (worker)", "execution_time": 0.017745256423950195, "adapter_response": {}, "message": null, "failures": null, "unique_id": "model.qualtrics_source.stg_qualtrics__survey_response_tmp", "compiled": true, "compiled_code": "\n \n \n \n \n \n \n \n select * \n from \"postgres\".\"qualtrics_source_integration_tests\".\"survey_response\"", "relation_name": "\"postgres\".\"qualtrics_source_integration_tests_qualtrics_source\".\"stg_qualtrics__survey_response_tmp\""}, {"status": "success", "timing": [{"name": "compile", "started_at": "2024-03-22T19:55:39.045542Z", "completed_at": "2024-03-22T19:55:39.050341Z"}, {"name": "execute", "started_at": "2024-03-22T19:55:39.054894Z", "completed_at": "2024-03-22T19:55:39.054899Z"}], "thread_id": "Thread-4 (worker)", "execution_time": 0.017853260040283203, "adapter_response": {}, "message": null, "failures": null, "unique_id": "model.qualtrics_source.stg_qualtrics__survey_version_tmp", "compiled": true, "compiled_code": "\n \n \n \n \n \n \n \n select * \n from \"postgres\".\"qualtrics_source_integration_tests\".\"survey_version\"", "relation_name": "\"postgres\".\"qualtrics_source_integration_tests_qualtrics_source\".\"stg_qualtrics__survey_version_tmp\""}, {"status": "success", "timing": [{"name": "compile", "started_at": "2024-03-22T19:55:39.051845Z", "completed_at": "2024-03-22T19:55:39.056923Z"}, {"name": "execute", "started_at": "2024-03-22T19:55:39.059337Z", "completed_at": "2024-03-22T19:55:39.059341Z"}], "thread_id": "Thread-3 (worker)", "execution_time": 0.013707160949707031, "adapter_response": {}, "message": null, "failures": null, "unique_id": "model.qualtrics_source.stg_qualtrics__user_tmp", "compiled": true, "compiled_code": "\n \n \n \n \n \n \n \n select * \n from \"postgres\".\"qualtrics_source_integration_tests\".\"user\"", "relation_name": "\"postgres\".\"qualtrics_source_integration_tests_qualtrics_source\".\"stg_qualtrics__user_tmp\""}, {"status": "success", "timing": [{"name": "compile", "started_at": "2024-03-22T19:55:39.059612Z", "completed_at": "2024-03-22T19:55:39.060734Z"}, {"name": "execute", "started_at": "2024-03-22T19:55:39.065695Z", "completed_at": "2024-03-22T19:55:39.065698Z"}], "thread_id": "Thread-1 (worker)", "execution_time": 0.009733200073242188, "adapter_response": {}, "message": null, "failures": null, "unique_id": "seed.qualtrics_source_integration_tests.block", "compiled": null, "compiled_code": null, "relation_name": null}, {"status": "success", "timing": [{"name": "compile", "started_at": "2024-03-22T19:55:39.061278Z", "completed_at": "2024-03-22T19:55:39.062978Z"}, {"name": "execute", "started_at": "2024-03-22T19:55:39.066169Z", "completed_at": "2024-03-22T19:55:39.066172Z"}], "thread_id": "Thread-2 (worker)", "execution_time": 0.00979304313659668, "adapter_response": {}, "message": null, "failures": null, "unique_id": "seed.qualtrics_source_integration_tests.block_question", "compiled": null, "compiled_code": null, "relation_name": null}, {"status": "success", "timing": [{"name": "compile", "started_at": "2024-03-22T19:55:39.063958Z", "completed_at": "2024-03-22T19:55:39.064881Z"}, {"name": "execute", "started_at": "2024-03-22T19:55:39.067272Z", "completed_at": "2024-03-22T19:55:39.067275Z"}], "thread_id": "Thread-4 (worker)", "execution_time": 0.009930133819580078, "adapter_response": {}, "message": null, "failures": null, "unique_id": "seed.qualtrics_source_integration_tests.contact_mailing_list_membership", "compiled": null, "compiled_code": null, "relation_name": null}, {"status": "success", "timing": [{"name": "compile", "started_at": "2024-03-22T19:55:39.069243Z", "completed_at": "2024-03-22T19:55:39.070282Z"}, {"name": "execute", "started_at": "2024-03-22T19:55:39.072571Z", "completed_at": "2024-03-22T19:55:39.072575Z"}], "thread_id": "Thread-3 (worker)", "execution_time": 0.009196996688842773, "adapter_response": {}, "message": null, "failures": null, "unique_id": "seed.qualtrics_source_integration_tests.directory", "compiled": null, "compiled_code": null, "relation_name": null}, {"status": "success", "timing": [{"name": "compile", "started_at": "2024-03-22T19:55:39.072824Z", "completed_at": "2024-03-22T19:55:39.073811Z"}, {"name": "execute", "started_at": "2024-03-22T19:55:39.077748Z", "completed_at": "2024-03-22T19:55:39.077751Z"}], "thread_id": "Thread-1 (worker)", "execution_time": 0.008409976959228516, "adapter_response": {}, "message": null, "failures": null, "unique_id": "seed.qualtrics_source_integration_tests.directory_contact", "compiled": null, "compiled_code": null, "relation_name": null}, {"status": "success", "timing": [{"name": "compile", "started_at": "2024-03-22T19:55:39.074313Z", "completed_at": "2024-03-22T19:55:39.075207Z"}, {"name": "execute", "started_at": "2024-03-22T19:55:39.078228Z", "completed_at": "2024-03-22T19:55:39.078231Z"}], "thread_id": "Thread-2 (worker)", "execution_time": 0.00861501693725586, "adapter_response": {}, "message": null, "failures": null, "unique_id": "seed.qualtrics_source_integration_tests.directory_mailing_list", "compiled": null, "compiled_code": null, "relation_name": null}, {"status": "success", "timing": [{"name": "compile", "started_at": "2024-03-22T19:55:39.076150Z", "completed_at": "2024-03-22T19:55:39.077017Z"}, {"name": "execute", "started_at": "2024-03-22T19:55:39.079268Z", "completed_at": "2024-03-22T19:55:39.079271Z"}], "thread_id": "Thread-4 (worker)", "execution_time": 0.008986234664916992, "adapter_response": {}, "message": null, "failures": null, "unique_id": "seed.qualtrics_source_integration_tests.distribution", "compiled": null, "compiled_code": null, "relation_name": null}, {"status": "success", "timing": [{"name": "compile", "started_at": "2024-03-22T19:55:39.081707Z", "completed_at": "2024-03-22T19:55:39.083609Z"}, {"name": "execute", "started_at": "2024-03-22T19:55:39.086038Z", "completed_at": "2024-03-22T19:55:39.086043Z"}], "thread_id": "Thread-3 (worker)", "execution_time": 0.010959863662719727, "adapter_response": {}, "message": null, "failures": null, "unique_id": "seed.qualtrics_source_integration_tests.distribution_contact", "compiled": null, "compiled_code": null, "relation_name": null}, {"status": "success", "timing": [{"name": "compile", "started_at": "2024-03-22T19:55:39.086313Z", "completed_at": "2024-03-22T19:55:39.087367Z"}, {"name": "execute", "started_at": "2024-03-22T19:55:39.091899Z", "completed_at": "2024-03-22T19:55:39.091903Z"}], "thread_id": "Thread-1 (worker)", "execution_time": 0.009171009063720703, "adapter_response": {}, "message": null, "failures": null, "unique_id": "seed.qualtrics_source_integration_tests.question", "compiled": null, "compiled_code": null, "relation_name": null}, {"status": "success", "timing": [{"name": "compile", "started_at": "2024-03-22T19:55:39.087952Z", "completed_at": "2024-03-22T19:55:39.088919Z"}, {"name": "execute", "started_at": "2024-03-22T19:55:39.092394Z", "completed_at": "2024-03-22T19:55:39.092397Z"}], "thread_id": "Thread-2 (worker)", "execution_time": 0.00917673110961914, "adapter_response": {}, "message": null, "failures": null, "unique_id": "seed.qualtrics_source_integration_tests.question_option", "compiled": null, "compiled_code": null, "relation_name": null}, {"status": "success", "timing": [{"name": "compile", "started_at": "2024-03-22T19:55:39.090142Z", "completed_at": "2024-03-22T19:55:39.091145Z"}, {"name": "execute", "started_at": "2024-03-22T19:55:39.093435Z", "completed_at": "2024-03-22T19:55:39.093438Z"}], "thread_id": "Thread-4 (worker)", "execution_time": 0.009231090545654297, "adapter_response": {}, "message": null, "failures": null, "unique_id": "seed.qualtrics_source_integration_tests.question_response", "compiled": null, "compiled_code": null, "relation_name": null}, {"status": "success", "timing": [{"name": "compile", "started_at": "2024-03-22T19:55:39.095230Z", "completed_at": "2024-03-22T19:55:39.096172Z"}, {"name": "execute", "started_at": "2024-03-22T19:55:39.098716Z", "completed_at": "2024-03-22T19:55:39.098723Z"}], "thread_id": "Thread-3 (worker)", "execution_time": 0.010437726974487305, "adapter_response": {}, "message": null, "failures": null, "unique_id": "seed.qualtrics_source_integration_tests.sub_question", "compiled": null, "compiled_code": null, "relation_name": null}, {"status": "success", "timing": [{"name": "compile", "started_at": "2024-03-22T19:55:39.099032Z", "completed_at": "2024-03-22T19:55:39.100176Z"}, {"name": "execute", "started_at": "2024-03-22T19:55:39.105328Z", "completed_at": "2024-03-22T19:55:39.105334Z"}], "thread_id": "Thread-1 (worker)", "execution_time": 0.010385990142822266, "adapter_response": {}, "message": null, "failures": null, "unique_id": "seed.qualtrics_source_integration_tests.survey", "compiled": null, "compiled_code": null, "relation_name": null}, {"status": "success", "timing": [{"name": "compile", "started_at": "2024-03-22T19:55:39.100752Z", "completed_at": "2024-03-22T19:55:39.102586Z"}, {"name": "execute", "started_at": "2024-03-22T19:55:39.105918Z", "completed_at": "2024-03-22T19:55:39.105924Z"}], "thread_id": "Thread-2 (worker)", "execution_time": 0.010544061660766602, "adapter_response": {}, "message": null, "failures": null, "unique_id": "seed.qualtrics_source_integration_tests.survey_embedded_data", "compiled": null, "compiled_code": null, "relation_name": null}, {"status": "success", "timing": [{"name": "compile", "started_at": "2024-03-22T19:55:39.103611Z", "completed_at": "2024-03-22T19:55:39.104521Z"}, {"name": "execute", "started_at": "2024-03-22T19:55:39.107150Z", "completed_at": "2024-03-22T19:55:39.107153Z"}], "thread_id": "Thread-4 (worker)", "execution_time": 0.010684967041015625, "adapter_response": {}, "message": null, "failures": null, "unique_id": "seed.qualtrics_source_integration_tests.survey_response", "compiled": null, "compiled_code": null, "relation_name": null}, {"status": "success", "timing": [{"name": "compile", "started_at": "2024-03-22T19:55:39.109246Z", "completed_at": "2024-03-22T19:55:39.110313Z"}, {"name": "execute", "started_at": "2024-03-22T19:55:39.112840Z", "completed_at": "2024-03-22T19:55:39.112845Z"}], "thread_id": "Thread-3 (worker)", "execution_time": 0.015403032302856445, "adapter_response": {}, "message": null, "failures": null, "unique_id": "seed.qualtrics_source_integration_tests.survey_version", "compiled": null, "compiled_code": null, "relation_name": null}, {"status": "success", "timing": [{"name": "compile", "started_at": "2024-03-22T19:55:39.113114Z", "completed_at": "2024-03-22T19:55:39.114098Z"}, {"name": "execute", "started_at": "2024-03-22T19:55:39.126625Z", "completed_at": "2024-03-22T19:55:39.126633Z"}], "thread_id": "Thread-1 (worker)", "execution_time": 0.017355918884277344, "adapter_response": {}, "message": null, "failures": null, "unique_id": "seed.qualtrics_source_integration_tests.user", "compiled": null, "compiled_code": null, "relation_name": null}, {"status": "success", "timing": [{"name": "compile", "started_at": "2024-03-22T19:55:39.114626Z", "completed_at": "2024-03-22T19:55:39.423082Z"}, {"name": "execute", "started_at": "2024-03-22T19:55:39.426013Z", "completed_at": "2024-03-22T19:55:39.426022Z"}], "thread_id": "Thread-2 (worker)", "execution_time": 0.34625911712646484, "adapter_response": {}, "message": null, "failures": null, "unique_id": "model.qualtrics_source.stg_qualtrics__block", "compiled": true, "compiled_code": "with base as (\n\n select * \n from \"postgres\".\"qualtrics_source_integration_tests_qualtrics_source\".\"stg_qualtrics__block_tmp\"\n),\n\nfields as (\n\n select\n \n \n \n _fivetran_deleted\n \n as \n \n _fivetran_deleted\n \n, \n \n \n _fivetran_synced\n \n as \n \n _fivetran_synced\n \n, \n \n \n block_locking\n \n as \n \n block_locking\n \n, \n \n \n block_visibility\n \n as \n \n block_visibility\n \n, \n \n \n description\n \n as \n \n description\n \n, \n \n \n id\n \n as \n \n id\n \n, \n \n \n randomize_questions\n \n as \n \n randomize_questions\n \n, \n \n \n survey_id\n \n as \n \n survey_id\n \n, \n \n \n type\n \n as \n \n type\n \n\n\n\n\n \n\n\n, cast('' as TEXT) as source_relation\n\n\n\n\n from base\n),\n\nfinal as (\n \n select \n block_locking as is_locked,\n block_visibility,\n description,\n id as block_id,\n randomize_questions,\n survey_id,\n type,\n _fivetran_deleted as is_deleted,\n _fivetran_synced,\n source_relation\n\n from fields\n)\n\nselect *\nfrom final", "relation_name": "\"postgres\".\"qualtrics_source_integration_tests_qualtrics_source\".\"stg_qualtrics__block\""}, {"status": "success", "timing": [{"name": "compile", "started_at": "2024-03-22T19:55:39.134525Z", "completed_at": "2024-03-22T19:55:39.425015Z"}, {"name": "execute", "started_at": "2024-03-22T19:55:39.427700Z", "completed_at": "2024-03-22T19:55:39.427705Z"}], "thread_id": "Thread-1 (worker)", "execution_time": 0.3248467445373535, "adapter_response": {}, "message": null, "failures": null, "unique_id": "model.qualtrics_source.stg_qualtrics__block_question", "compiled": true, "compiled_code": "with base as (\n\n select * \n from \"postgres\".\"qualtrics_source_integration_tests_qualtrics_source\".\"stg_qualtrics__block_question_tmp\"\n),\n\nfields as (\n\n select\n \n \n \n _fivetran_deleted\n \n as \n \n _fivetran_deleted\n \n, \n \n \n _fivetran_synced\n \n as \n \n _fivetran_synced\n \n, \n \n \n block_id\n \n as \n \n block_id\n \n, \n \n \n question_id\n \n as \n \n question_id\n \n, \n \n \n survey_id\n \n as \n \n survey_id\n \n\n\n\n\n \n\n\n, cast('' as TEXT) as source_relation\n\n\n\n\n from base\n),\n\nfinal as (\n \n select \n block_id,\n question_id,\n survey_id,\n _fivetran_deleted as is_deleted,\n _fivetran_synced,\n source_relation\n \n from fields\n)\n\nselect *\nfrom final", "relation_name": "\"postgres\".\"qualtrics_source_integration_tests_qualtrics_source\".\"stg_qualtrics__block_question\""}, {"status": "success", "timing": [{"name": "compile", "started_at": "2024-03-22T19:55:39.129233Z", "completed_at": "2024-03-22T19:55:39.424244Z"}, {"name": "execute", "started_at": "2024-03-22T19:55:39.427053Z", "completed_at": "2024-03-22T19:55:39.427060Z"}], "thread_id": "Thread-3 (worker)", "execution_time": 0.3314480781555176, "adapter_response": {}, "message": null, "failures": null, "unique_id": "model.qualtrics_source.stg_qualtrics__directory_contact", "compiled": true, "compiled_code": "with base as (\n\n select * \n from \"postgres\".\"qualtrics_source_integration_tests_qualtrics_source\".\"stg_qualtrics__directory_contact_tmp\"\n),\n\nfields as (\n\n select\n \n \n \n _fivetran_synced\n \n as \n \n _fivetran_synced\n \n, \n \n \n creation_date\n \n as \n \n creation_date\n \n, \n \n \n directory_id\n \n as \n \n directory_id\n \n, \n \n \n directory_unsubscribe_date\n \n as \n \n directory_unsubscribe_date\n \n, \n \n \n directory_unsubscribed\n \n as \n \n directory_unsubscribed\n \n, \n \n \n email\n \n as \n \n email\n \n, \n \n \n email_domain\n \n as \n \n email_domain\n \n, \n \n \n ext_ref\n \n as \n \n ext_ref\n \n, \n \n \n first_name\n \n as \n \n first_name\n \n, \n \n \n id\n \n as \n \n id\n \n, \n \n \n language\n \n as \n \n language\n \n, \n \n \n last_modified\n \n as \n \n last_modified\n \n, \n \n \n last_name\n \n as \n \n last_name\n \n, \n \n \n phone\n \n as \n \n phone\n \n\n\n\n\n \n\n\n, cast('' as TEXT) as source_relation\n\n\n\n \n from base\n),\n\nfinal as (\n \n select \n cast(creation_date as timestamp) as created_at,\n directory_id,\n cast(directory_unsubscribe_date as timestamp) as unsubscribed_from_directory_at,\n directory_unsubscribed as is_unsubscribed_from_directory,\n lower(email) as email,\n lower(email_domain) as email_domain,\n ext_ref,\n first_name,\n last_name,\n REGEXP_REPLACE(phone, '[^0-9]', '') AS phone, -- remove any non-numeric chars\n id as contact_id,\n language,\n cast(last_modified as timestamp) as last_modified_at,\n _fivetran_synced,\n source_relation\n\n \n\n\n\n\n\n from fields\n)\n\nselect *\nfrom final", "relation_name": "\"postgres\".\"qualtrics_source_integration_tests_qualtrics_source\".\"stg_qualtrics__directory_contact\""}, {"status": "success", "timing": [{"name": "compile", "started_at": "2024-03-22T19:55:39.122234Z", "completed_at": "2024-03-22T19:55:39.425394Z"}, {"name": "execute", "started_at": "2024-03-22T19:55:39.428042Z", "completed_at": "2024-03-22T19:55:39.428048Z"}], "thread_id": "Thread-4 (worker)", "execution_time": 0.3475639820098877, "adapter_response": {}, "message": null, "failures": null, "unique_id": "model.qualtrics_source.stg_qualtrics__contact_mailing_list_membership", "compiled": true, "compiled_code": "with base as (\n\n select * \n from \"postgres\".\"qualtrics_source_integration_tests_qualtrics_source\".\"stg_qualtrics__contact_mailing_list_membership_tmp\"\n),\n\nfields as (\n\n select\n \n \n \n _fivetran_synced\n \n as \n \n _fivetran_synced\n \n, \n \n \n contact_id\n \n as \n \n contact_id\n \n, \n \n \n contact_lookup_id\n \n as \n \n contact_lookup_id\n \n, \n \n \n directory_id\n \n as \n \n directory_id\n \n, \n \n \n mailing_list_id\n \n as \n \n mailing_list_id\n \n, \n \n \n name\n \n as \n \n name\n \n, \n \n \n owner_id\n \n as \n \n owner_id\n \n, \n \n \n unsubscribe_date\n \n as \n \n unsubscribe_date\n \n, \n \n \n unsubscribed\n \n as \n \n unsubscribed\n \n\n\n\n\n \n\n\n, cast('' as TEXT) as source_relation\n\n\n\n \n from base\n),\n\nfinal as (\n \n select \n contact_id,\n contact_lookup_id,\n directory_id,\n mailing_list_id,\n name,\n owner_id as owner_user_id,\n unsubscribe_date as unsubscribed_at,\n unsubscribed as is_unsubscribed,\n _fivetran_synced,\n source_relation\n\n from fields\n)\n\nselect *\nfrom final", "relation_name": "\"postgres\".\"qualtrics_source_integration_tests_qualtrics_source\".\"stg_qualtrics__contact_mailing_list_membership\""}, {"status": "success", "timing": [{"name": "compile", "started_at": "2024-03-22T19:55:39.515271Z", "completed_at": "2024-03-22T19:55:39.817580Z"}, {"name": "execute", "started_at": "2024-03-22T19:55:39.818462Z", "completed_at": "2024-03-22T19:55:39.818470Z"}], "thread_id": "Thread-3 (worker)", "execution_time": 0.38094401359558105, "adapter_response": {}, "message": null, "failures": null, "unique_id": "model.qualtrics_source.stg_qualtrics__distribution_contact", "compiled": true, "compiled_code": "with base as (\n\n select * \n from \"postgres\".\"qualtrics_source_integration_tests_qualtrics_source\".\"stg_qualtrics__distribution_contact_tmp\"\n),\n\nfields as (\n\n select\n \n \n \n _fivetran_synced\n \n as \n \n _fivetran_synced\n \n, \n \n \n contact_frequency_rule_id\n \n as \n \n contact_frequency_rule_id\n \n, \n \n \n contact_id\n \n as \n \n contact_id\n \n, \n \n \n contact_lookup_id\n \n as \n \n contact_lookup_id\n \n, \n \n \n distribution_id\n \n as \n \n distribution_id\n \n, \n \n \n opened_at\n \n as \n \n opened_at\n \n, \n \n \n response_completed_at\n \n as \n \n response_completed_at\n \n, \n \n \n response_id\n \n as \n \n response_id\n \n, \n \n \n response_started_at\n \n as \n \n response_started_at\n \n, \n \n \n sent_at\n \n as \n \n sent_at\n \n, \n \n \n status\n \n as \n \n status\n \n, \n \n \n survey_link\n \n as \n \n survey_link\n \n, \n \n \n survey_session_id\n \n as \n \n survey_session_id\n \n\n\n\n\n \n\n\n, cast('' as TEXT) as source_relation\n\n\n\n \n from base\n),\n\nfinal as (\n \n select \n contact_frequency_rule_id,\n contact_id,\n contact_lookup_id,\n distribution_id,\n cast(opened_at as timestamp) as opened_at,\n cast(response_completed_at as timestamp) as response_completed_at,\n response_id,\n cast(response_started_at as timestamp) as response_started_at,\n cast(sent_at as timestamp) as sent_at,\n status,\n survey_link,\n survey_session_id,\n _fivetran_synced,\n source_relation\n\n from fields\n)\n\nselect *\nfrom final", "relation_name": "\"postgres\".\"qualtrics_source_integration_tests_qualtrics_source\".\"stg_qualtrics__distribution_contact\""}, {"status": "success", "timing": [{"name": "compile", "started_at": "2024-03-22T19:55:39.464030Z", "completed_at": "2024-03-22T19:55:39.818764Z"}, {"name": "execute", "started_at": "2024-03-22T19:55:39.819874Z", "completed_at": "2024-03-22T19:55:39.819878Z"}], "thread_id": "Thread-2 (worker)", "execution_time": 0.389603853225708, "adapter_response": {}, "message": null, "failures": null, "unique_id": "model.qualtrics_source.stg_qualtrics__directory_mailing_list", "compiled": true, "compiled_code": "with base as (\n\n select * \n from \"postgres\".\"qualtrics_source_integration_tests_qualtrics_source\".\"stg_qualtrics__directory_mailing_list_tmp\"\n),\n\nfields as (\n\n select\n \n \n \n _fivetran_deleted\n \n as \n \n _fivetran_deleted\n \n, \n \n \n _fivetran_synced\n \n as \n \n _fivetran_synced\n \n, \n \n \n creation_date\n \n as \n \n creation_date\n \n, \n \n \n directory_id\n \n as \n \n directory_id\n \n, \n \n \n id\n \n as \n \n id\n \n, \n \n \n last_modified_date\n \n as \n \n last_modified_date\n \n, \n \n \n name\n \n as \n \n name\n \n, \n \n \n owner_id\n \n as \n \n owner_id\n \n\n\n\n\n \n\n\n, cast('' as TEXT) as source_relation\n\n\n\n \n from base\n),\n\nfinal as (\n \n select \n cast(creation_date as timestamp) as created_at,\n directory_id,\n id as mailing_list_id,\n cast(last_modified_date as timestamp) as last_modified_at,\n name,\n owner_id as owner_user_id,\n _fivetran_deleted as is_deleted,\n _fivetran_synced,\n source_relation\n\n from fields\n)\n\nselect *\nfrom final", "relation_name": "\"postgres\".\"qualtrics_source_integration_tests_qualtrics_source\".\"stg_qualtrics__directory_mailing_list\""}, {"status": "success", "timing": [{"name": "compile", "started_at": "2024-03-22T19:55:39.520073Z", "completed_at": "2024-03-22T19:55:39.836792Z"}, {"name": "execute", "started_at": "2024-03-22T19:55:39.837345Z", "completed_at": "2024-03-22T19:55:39.837351Z"}], "thread_id": "Thread-4 (worker)", "execution_time": 0.40166378021240234, "adapter_response": {}, "message": null, "failures": null, "unique_id": "model.qualtrics_source.stg_qualtrics__distribution", "compiled": true, "compiled_code": "with base as (\n\n select * \n from \"postgres\".\"qualtrics_source_integration_tests_qualtrics_source\".\"stg_qualtrics__distribution_tmp\"\n),\n\nfields as (\n\n select\n \n \n \n _fivetran_deleted\n \n as \n \n _fivetran_deleted\n \n, \n \n \n _fivetran_synced\n \n as \n \n _fivetran_synced\n \n, \n \n \n created_date\n \n as \n \n created_date\n \n, \n \n \n header_from_email\n \n as \n \n header_from_email\n \n, \n \n \n header_from_name\n \n as \n \n header_from_name\n \n, \n \n \n header_reply_to_email\n \n as \n \n header_reply_to_email\n \n, \n \n \n header_subject\n \n as \n \n header_subject\n \n, \n \n \n id\n \n as \n \n id\n \n, \n \n \n message_library_id\n \n as \n \n message_library_id\n \n, \n \n \n message_message_id\n \n as \n \n message_message_id\n \n, \n \n \n message_message_text\n \n as \n \n message_message_text\n \n, \n \n \n modified_date\n \n as \n \n modified_date\n \n, \n \n \n organization_id\n \n as \n \n organization_id\n \n, \n \n \n owner_id\n \n as \n \n owner_id\n \n, \n \n \n parent_distribution_id\n \n as \n \n parent_distribution_id\n \n, \n \n \n recipient_contact_id\n \n as \n \n recipient_contact_id\n \n, \n \n \n recipient_library_id\n \n as \n \n recipient_library_id\n \n, \n \n \n recipient_mailing_list_id\n \n as \n \n recipient_mailing_list_id\n \n, \n \n \n recipient_sample_id\n \n as \n \n recipient_sample_id\n \n, \n \n \n request_status\n \n as \n \n request_status\n \n, \n \n \n request_type\n \n as \n \n request_type\n \n, \n \n \n send_date\n \n as \n \n send_date\n \n, \n \n \n survey_link_expiration_date\n \n as \n \n survey_link_expiration_date\n \n, \n \n \n survey_link_link_type\n \n as \n \n survey_link_link_type\n \n, \n \n \n survey_link_survey_id\n \n as \n \n survey_link_survey_id\n \n\n\n\n\n \n\n\n, cast('' as TEXT) as source_relation\n\n\n\n \n from base\n),\n\nfinal as (\n \n select \n cast(created_date as timestamp) as created_at,\n header_from_email,\n header_from_name,\n header_reply_to_email,\n header_subject,\n id as distribution_id,\n message_library_id,\n message_message_id as message_id,\n message_message_text as message_text,\n cast(modified_date as timestamp) as last_modified_at,\n organization_id,\n owner_id as owner_user_id,\n parent_distribution_id,\n recipient_contact_id,\n recipient_library_id,\n recipient_mailing_list_id,\n recipient_sample_id,\n request_status,\n request_type,\n cast(send_date as timestamp) as send_at,\n cast(survey_link_expiration_date as timestamp) as survey_link_expires_at,\n survey_link_link_type as survey_link_type,\n survey_link_survey_id as survey_id,\n _fivetran_deleted as is_deleted,\n _fivetran_synced,\n source_relation\n\n \n\n\n\n\n\n from fields\n)\n\nselect *\nfrom final", "relation_name": "\"postgres\".\"qualtrics_source_integration_tests_qualtrics_source\".\"stg_qualtrics__distribution\""}, {"status": "success", "timing": [{"name": "compile", "started_at": "2024-03-22T19:55:39.845306Z", "completed_at": "2024-03-22T19:55:40.131023Z"}, {"name": "execute", "started_at": "2024-03-22T19:55:40.131939Z", "completed_at": "2024-03-22T19:55:40.131944Z"}], "thread_id": "Thread-3 (worker)", "execution_time": 0.31316304206848145, "adapter_response": {}, "message": null, "failures": null, "unique_id": "model.qualtrics_source.stg_qualtrics__question_option", "compiled": true, "compiled_code": "with base as (\n\n select * \n from \"postgres\".\"qualtrics_source_integration_tests_qualtrics_source\".\"stg_qualtrics__question_option_tmp\"\n),\n\nfields as (\n\n select\n \n \n \n _fivetran_deleted\n \n as \n \n _fivetran_deleted\n \n, \n \n \n _fivetran_synced\n \n as \n \n _fivetran_synced\n \n, \n \n \n key\n \n as \n \n key\n \n, \n \n \n question_id\n \n as \n \n question_id\n \n, \n \n \n recode_value\n \n as \n \n recode_value\n \n, \n \n \n survey_id\n \n as \n \n survey_id\n \n, \n \n \n text\n \n as \n \n text\n \n\n\n\n\n \n\n\n, cast('' as TEXT) as source_relation\n\n\n\n \n from base\n),\n\nfinal as (\n \n select \n question_id,\n survey_id,\n key,\n recode_value,\n text,\n _fivetran_deleted as is_deleted,\n _fivetran_synced,\n source_relation\n \n from fields\n)\n\nselect *\nfrom final", "relation_name": "\"postgres\".\"qualtrics_source_integration_tests_qualtrics_source\".\"stg_qualtrics__question_option\""}, {"status": "success", "timing": [{"name": "compile", "started_at": "2024-03-22T19:55:39.511194Z", "completed_at": "2024-03-22T19:55:40.129886Z"}, {"name": "execute", "started_at": "2024-03-22T19:55:40.130725Z", "completed_at": "2024-03-22T19:55:40.130733Z"}], "thread_id": "Thread-1 (worker)", "execution_time": 0.6959795951843262, "adapter_response": {}, "message": null, "failures": null, "unique_id": "model.qualtrics_source.stg_qualtrics__directory", "compiled": true, "compiled_code": "with base as (\n\n select * \n from \"postgres\".\"qualtrics_source_integration_tests_qualtrics_source\".\"stg_qualtrics__directory_tmp\"\n),\n\nfields as (\n\n select\n \n \n \n _fivetran_deleted\n \n as \n \n _fivetran_deleted\n \n, \n \n \n _fivetran_synced\n \n as \n \n _fivetran_synced\n \n, \n \n \n deduplication_criteria_email\n \n as \n \n deduplication_criteria_email\n \n, \n \n \n deduplication_criteria_external_data_reference\n \n as \n \n deduplication_criteria_external_data_reference\n \n, \n \n \n deduplication_criteria_first_name\n \n as \n \n deduplication_criteria_first_name\n \n, \n \n \n deduplication_criteria_last_name\n \n as \n \n deduplication_criteria_last_name\n \n, \n \n \n deduplication_criteria_phone\n \n as \n \n deduplication_criteria_phone\n \n, \n \n \n id\n \n as \n \n id\n \n, \n \n \n is_default\n \n as \n \n is_default\n \n, \n \n \n name\n \n as \n \n name\n \n\n\n\n\n \n\n\n, cast('' as TEXT) as source_relation\n\n\n\n \n from base\n),\n\nfinal as (\n \n select \n deduplication_criteria_email as is_deduped_on_email,\n deduplication_criteria_external_data_reference as is_deduped_on_ext_ref,\n deduplication_criteria_first_name as is_deduped_on_first_name,\n deduplication_criteria_last_name as is_deduped_on_last_name,\n deduplication_criteria_phone as is_deduped_on_phone,\n id as directory_id,\n is_default,\n name,\n _fivetran_deleted as is_deleted,\n _fivetran_synced,\n source_relation\n\n \n\n\n\n\n\n from fields\n)\n\nselect *\nfrom final", "relation_name": "\"postgres\".\"qualtrics_source_integration_tests_qualtrics_source\".\"stg_qualtrics__directory\""}, {"status": "success", "timing": [{"name": "compile", "started_at": "2024-03-22T19:55:39.853186Z", "completed_at": "2024-03-22T19:55:40.145727Z"}, {"name": "execute", "started_at": "2024-03-22T19:55:40.147043Z", "completed_at": "2024-03-22T19:55:40.147052Z"}], "thread_id": "Thread-2 (worker)", "execution_time": 0.3246002197265625, "adapter_response": {}, "message": null, "failures": null, "unique_id": "model.qualtrics_source.stg_qualtrics__question_response", "compiled": true, "compiled_code": "with base as (\n\n select * \n from \"postgres\".\"qualtrics_source_integration_tests_qualtrics_source\".\"stg_qualtrics__question_response_tmp\"\n),\n\nfields as (\n\n select\n \n \n \n _fivetran_id\n \n as \n \n _fivetran_id\n \n, \n \n \n _fivetran_synced\n \n as \n \n _fivetran_synced\n \n, \n \n \n loop_id\n \n as \n \n loop_id\n \n, \n \n \n question\n \n as \n \n question\n \n, \n \n \n question_id\n \n as \n \n question_id\n \n, \n \n \n question_option_key\n \n as \n \n question_option_key\n \n, \n \n \n response_id\n \n as \n \n response_id\n \n, \n \n \n sub_question_key\n \n as \n \n sub_question_key\n \n, \n \n \n sub_question_text\n \n as \n \n sub_question_text\n \n, \n \n \n value\n \n as \n \n value\n \n\n\n\n \n \n\n\n, cast('' as TEXT) as source_relation\n\n\n\n \n from base\n),\n\nfinal as (\n \n select \n _fivetran_id,\n loop_id,\n question_id,\n question,\n question_option_key,\n response_id,\n sub_question_key,\n sub_question_text,\n value,\n _fivetran_synced,\n source_relation\n \n from fields\n)\n\nselect *\nfrom final", "relation_name": "\"postgres\".\"qualtrics_source_integration_tests_qualtrics_source\".\"stg_qualtrics__question_response\""}, {"status": "success", "timing": [{"name": "compile", "started_at": "2024-03-22T19:55:39.866769Z", "completed_at": "2024-03-22T19:55:40.146644Z"}, {"name": "execute", "started_at": "2024-03-22T19:55:40.148058Z", "completed_at": "2024-03-22T19:55:40.148065Z"}], "thread_id": "Thread-4 (worker)", "execution_time": 0.31737208366394043, "adapter_response": {}, "message": null, "failures": null, "unique_id": "model.qualtrics_source.stg_qualtrics__sub_question", "compiled": true, "compiled_code": "with base as (\n\n select * \n from \"postgres\".\"qualtrics_source_integration_tests_qualtrics_source\".\"stg_qualtrics__sub_question_tmp\"\n),\n\nfields as (\n\n select\n \n \n \n _fivetran_deleted\n \n as \n \n _fivetran_deleted\n \n, \n \n \n _fivetran_synced\n \n as \n \n _fivetran_synced\n \n, \n \n \n choice_data_export_tag\n \n as \n \n choice_data_export_tag\n \n, \n \n \n key\n \n as \n \n key\n \n, \n \n \n question_id\n \n as \n \n question_id\n \n, \n \n \n survey_id\n \n as \n \n survey_id\n \n, \n \n \n text\n \n as \n \n text\n \n\n\n\n\n \n\n\n, cast('' as TEXT) as source_relation\n\n\n\n \n from base\n),\n\nfinal as (\n \n select \n choice_data_export_tag,\n key,\n question_id,\n survey_id,\n text,\n _fivetran_deleted as is_deleted,\n _fivetran_synced,\n source_relation\n \n from fields\n)\n\nselect *\nfrom final", "relation_name": "\"postgres\".\"qualtrics_source_integration_tests_qualtrics_source\".\"stg_qualtrics__sub_question\""}, {"status": "success", "timing": [{"name": "compile", "started_at": "2024-03-22T19:55:40.178210Z", "completed_at": "2024-03-22T19:55:40.490277Z"}, {"name": "execute", "started_at": "2024-03-22T19:55:40.491111Z", "completed_at": "2024-03-22T19:55:40.491118Z"}], "thread_id": "Thread-2 (worker)", "execution_time": 0.3392817974090576, "adapter_response": {}, "message": null, "failures": null, "unique_id": "model.qualtrics_source.stg_qualtrics__survey", "compiled": true, "compiled_code": "with base as (\n\n select * \n from \"postgres\".\"qualtrics_source_integration_tests_qualtrics_source\".\"stg_qualtrics__survey_tmp\"\n),\n\nfields as (\n\n select\n \n \n \n _fivetran_deleted\n \n as \n \n _fivetran_deleted\n \n, \n \n \n _fivetran_synced\n \n as \n \n _fivetran_synced\n \n, \n \n \n auto_scoring_category\n \n as \n \n auto_scoring_category\n \n, \n \n \n brand_base_url\n \n as \n \n brand_base_url\n \n, \n \n \n brand_id\n \n as \n \n brand_id\n \n, \n \n \n bundle_short_name\n \n as \n \n bundle_short_name\n \n, \n \n \n composition_type\n \n as \n \n composition_type\n \n, \n \n \n creator_id\n \n as \n \n creator_id\n \n, \n \n \n default_scoring_category\n \n as \n \n default_scoring_category\n \n, \n \n \n division_id\n \n as \n \n division_id\n \n, \n \n \n id\n \n as \n \n id\n \n, \n \n \n last_accessed\n \n as \n \n last_accessed\n \n, \n \n \n last_activated\n \n as \n \n last_activated\n \n, \n \n \n last_modified\n \n as \n \n last_modified\n \n, \n \n \n owner_id\n \n as \n \n owner_id\n \n, \n \n \n project_category\n \n as \n \n project_category\n \n, \n \n \n project_type\n \n as \n \n project_type\n \n, \n \n \n registry_sha\n \n as \n \n registry_sha\n \n, \n \n \n registry_version\n \n as \n \n registry_version\n \n, \n \n \n schema_version\n \n as \n \n schema_version\n \n, \n \n \n scoring_summary_after_questions\n \n as \n \n scoring_summary_after_questions\n \n, \n \n \n scoring_summary_after_survey\n \n as \n \n scoring_summary_after_survey\n \n, \n \n \n scoring_summary_category\n \n as \n \n scoring_summary_category\n \n, \n \n \n survey_name\n \n as \n \n survey_name\n \n, \n \n \n survey_status\n \n as \n \n survey_status\n \n\n\n\n\n \n\n\n, cast('' as TEXT) as source_relation\n\n\n\n \n from base\n),\n\nfinal as (\n \n select \n id as survey_id,\n survey_name,\n survey_status,\n brand_base_url,\n brand_id,\n bundle_short_name,\n composition_type,\n auto_scoring_category,\n default_scoring_category,\n division_id,\n creator_id as creator_user_id,\n owner_id as owner_user_id,\n project_category,\n project_type,\n registry_sha,\n registry_version,\n schema_version,\n scoring_summary_after_questions,\n scoring_summary_after_survey,\n scoring_summary_category,\n cast(last_accessed as timestamp) as last_accessed_at,\n cast(last_activated as timestamp) as last_activated_at,\n cast(last_modified as timestamp) as last_modified_at,\n _fivetran_deleted as is_deleted,\n _fivetran_synced,\n source_relation\n\n \n\n\n\n\n\n from fields\n)\n\nselect *\nfrom final", "relation_name": "\"postgres\".\"qualtrics_source_integration_tests_qualtrics_source\".\"stg_qualtrics__survey\""}, {"status": "success", "timing": [{"name": "compile", "started_at": "2024-03-22T19:55:40.185862Z", "completed_at": "2024-03-22T19:55:40.491929Z"}, {"name": "execute", "started_at": "2024-03-22T19:55:40.493532Z", "completed_at": "2024-03-22T19:55:40.493535Z"}], "thread_id": "Thread-4 (worker)", "execution_time": 0.3384261131286621, "adapter_response": {}, "message": null, "failures": null, "unique_id": "model.qualtrics_source.stg_qualtrics__survey_response", "compiled": true, "compiled_code": "with base as (\n\n select * \n from \"postgres\".\"qualtrics_source_integration_tests_qualtrics_source\".\"stg_qualtrics__survey_response_tmp\"\n),\n\nfields as (\n\n select\n \n \n \n _fivetran_synced\n \n as \n \n _fivetran_synced\n \n, \n \n \n distribution_channel\n \n as \n \n distribution_channel\n \n, \n \n \n duration_in_seconds\n \n as \n \n duration_in_seconds\n \n, \n \n \n end_date\n \n as \n \n end_date\n \n, \n \n \n finished\n \n as \n \n finished\n \n, \n \n \n id\n \n as \n \n id\n \n, \n \n \n ip_address\n \n as \n \n ip_address\n \n, \n \n \n last_modified_date\n \n as \n \n last_modified_date\n \n, \n \n \n location_latitude\n \n as \n \n location_latitude\n \n, \n \n \n location_longitude\n \n as \n \n location_longitude\n \n, \n \n \n progress\n \n as \n \n progress\n \n, \n \n \n recipient_email\n \n as \n \n recipient_email\n \n, \n \n \n recipient_first_name\n \n as \n \n recipient_first_name\n \n, \n \n \n recipient_last_name\n \n as \n \n recipient_last_name\n \n, \n \n \n recorded_date\n \n as \n \n recorded_date\n \n, \n \n \n start_date\n \n as \n \n start_date\n \n, \n \n \n status\n \n as \n \n status\n \n, \n \n \n survey_id\n \n as \n \n survey_id\n \n, \n \n \n user_language\n \n as \n \n user_language\n \n\n\n\n\n \n\n\n, cast('' as TEXT) as source_relation\n\n\n\n \n from base\n),\n\nfinal as (\n \n select \n distribution_channel,\n duration_in_seconds,\n cast(end_date as timestamp) as finished_at,\n cast(finished as boolean) as is_finished,\n id as response_id,\n ip_address,\n cast(last_modified_date as timestamp) as last_modified_at,\n location_latitude,\n location_longitude,\n progress,\n lower(recipient_email) as recipient_email,\n recipient_first_name,\n recipient_last_name,\n recorded_date,\n cast(start_date as timestamp) as started_at,\n status,\n survey_id,\n user_language,\n _fivetran_synced,\n source_relation\n \n from fields\n)\n\nselect *\nfrom final", "relation_name": "\"postgres\".\"qualtrics_source_integration_tests_qualtrics_source\".\"stg_qualtrics__survey_response\""}, {"status": "success", "timing": [{"name": "compile", "started_at": "2024-03-22T19:55:40.160654Z", "completed_at": "2024-03-22T19:55:40.491661Z"}, {"name": "execute", "started_at": "2024-03-22T19:55:40.493016Z", "completed_at": "2024-03-22T19:55:40.493020Z"}], "thread_id": "Thread-3 (worker)", "execution_time": 0.3719139099121094, "adapter_response": {}, "message": null, "failures": null, "unique_id": "model.qualtrics_source.stg_qualtrics__question", "compiled": true, "compiled_code": "with base as (\n\n select * \n from \"postgres\".\"qualtrics_source_integration_tests_qualtrics_source\".\"stg_qualtrics__question_tmp\"\n),\n\nfields as (\n\n select\n \n \n \n _fivetran_deleted\n \n as \n \n _fivetran_deleted\n \n, \n \n \n _fivetran_synced\n \n as \n \n _fivetran_synced\n \n, \n \n \n data_export_tag\n \n as \n \n data_export_tag\n \n, \n \n \n data_visibility_hidden\n \n as \n \n data_visibility_hidden\n \n, \n \n \n data_visibility_private\n \n as \n \n data_visibility_private\n \n, \n \n \n id\n \n as \n \n id\n \n, \n \n \n next_answer_id\n \n as \n \n next_answer_id\n \n, \n \n \n next_choice_id\n \n as \n \n next_choice_id\n \n, \n \n \n question_description\n \n as \n \n question_description\n \n, \n \n \n question_description_option\n \n as \n \n question_description_option\n \n, \n \n \n question_text\n \n as \n \n question_text\n \n, \n \n \n question_text_unsafe\n \n as \n \n question_text_unsafe\n \n, \n \n \n question_type\n \n as \n \n question_type\n \n, \n \n \n selector\n \n as \n \n selector\n \n, \n \n \n sub_selector\n \n as \n \n sub_selector\n \n, \n \n \n survey_id\n \n as \n \n survey_id\n \n, \n \n \n validation_setting_force_response\n \n as \n \n validation_setting_force_response\n \n, \n \n \n validation_setting_force_response_type\n \n as \n \n validation_setting_force_response_type\n \n, \n \n \n validation_setting_type\n \n as \n \n validation_setting_type\n \n\n\n\n\n \n\n\n, cast('' as TEXT) as source_relation\n\n\n\n \n from base\n),\n\nfinal as (\n \n select \n data_export_tag,\n data_visibility_hidden as is_data_hidden,\n data_visibility_private as is_data_private,\n id as question_id,\n next_answer_id,\n next_choice_id,\n question_description,\n question_description_option,\n question_text,\n question_text_unsafe,\n question_type,\n selector,\n sub_selector,\n survey_id,\n validation_setting_force_response,\n validation_setting_force_response_type,\n validation_setting_type,\n _fivetran_deleted as is_deleted,\n _fivetran_synced,\n source_relation\n from fields\n)\n\nselect *\nfrom final", "relation_name": "\"postgres\".\"qualtrics_source_integration_tests_qualtrics_source\".\"stg_qualtrics__question\""}, {"status": "success", "timing": [{"name": "compile", "started_at": "2024-03-22T19:55:40.164884Z", "completed_at": "2024-03-22T19:55:40.492494Z"}, {"name": "execute", "started_at": "2024-03-22T19:55:40.494050Z", "completed_at": "2024-03-22T19:55:40.494053Z"}], "thread_id": "Thread-1 (worker)", "execution_time": 0.371920108795166, "adapter_response": {}, "message": null, "failures": null, "unique_id": "model.qualtrics_source.stg_qualtrics__survey_embedded_data", "compiled": true, "compiled_code": "with base as (\n\n select * \n from \"postgres\".\"qualtrics_source_integration_tests_qualtrics_source\".\"stg_qualtrics__survey_embedded_data_tmp\"\n),\n\nfields as (\n\n select\n \n \n \n _fivetran_synced\n \n as \n \n _fivetran_synced\n \n, \n \n \n import_id\n \n as \n \n import_id\n \n, \n \n \n key\n \n as \n \n key\n \n, \n \n \n response_id\n \n as \n \n response_id\n \n, \n \n \n value\n \n as \n \n value\n \n\n\n\n\n \n\n\n, cast('' as TEXT) as source_relation\n\n\n\n \n from base\n),\n\nfinal as (\n \n select \n import_id,\n key,\n response_id,\n value,\n _fivetran_synced,\n source_relation\n \n from fields\n)\n\nselect *\nfrom final", "relation_name": "\"postgres\".\"qualtrics_source_integration_tests_qualtrics_source\".\"stg_qualtrics__survey_embedded_data\""}, {"status": "success", "timing": [{"name": "compile", "started_at": "2024-03-22T19:55:40.534146Z", "completed_at": "2024-03-22T19:55:40.546040Z"}, {"name": "execute", "started_at": "2024-03-22T19:55:40.547114Z", "completed_at": "2024-03-22T19:55:40.547125Z"}], "thread_id": "Thread-3 (worker)", "execution_time": 0.015290975570678711, "adapter_response": {}, "message": null, "failures": null, "unique_id": "test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__block_block_id__survey_id__source_relation.9105cad472", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n block_id, survey_id, source_relation\n from \"postgres\".\"qualtrics_source_integration_tests_qualtrics_source\".\"stg_qualtrics__block\"\n group by block_id, survey_id, source_relation\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "relation_name": null}, {"status": "success", "timing": [{"name": "compile", "started_at": "2024-03-22T19:55:40.542322Z", "completed_at": "2024-03-22T19:55:40.546780Z"}, {"name": "execute", "started_at": "2024-03-22T19:55:40.548459Z", "completed_at": "2024-03-22T19:55:40.548464Z"}], "thread_id": "Thread-1 (worker)", "execution_time": 0.015990018844604492, "adapter_response": {}, "message": null, "failures": null, "unique_id": "test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__block_question_block_id__question_id__survey_id__source_relation.2fd7c420b5", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n block_id, question_id, survey_id, source_relation\n from \"postgres\".\"qualtrics_source_integration_tests_qualtrics_source\".\"stg_qualtrics__block_question\"\n group by block_id, question_id, survey_id, source_relation\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "relation_name": null}, {"status": "success", "timing": [{"name": "compile", "started_at": "2024-03-22T19:55:40.550959Z", "completed_at": "2024-03-22T19:55:40.558867Z"}, {"name": "execute", "started_at": "2024-03-22T19:55:40.559561Z", "completed_at": "2024-03-22T19:55:40.559568Z"}], "thread_id": "Thread-3 (worker)", "execution_time": 0.010441064834594727, "adapter_response": {}, "message": null, "failures": null, "unique_id": "test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__directory_contact_contact_id__directory_id__source_relation.a3dc488ebf", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n contact_id, directory_id, source_relation\n from \"postgres\".\"qualtrics_source_integration_tests_qualtrics_source\".\"stg_qualtrics__directory_contact\"\n group by contact_id, directory_id, source_relation\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "relation_name": null}, {"status": "success", "timing": [{"name": "compile", "started_at": "2024-03-22T19:55:40.555560Z", "completed_at": "2024-03-22T19:55:40.560382Z"}, {"name": "execute", "started_at": "2024-03-22T19:55:40.561630Z", "completed_at": "2024-03-22T19:55:40.561634Z"}], "thread_id": "Thread-1 (worker)", "execution_time": 0.011728048324584961, "adapter_response": {}, "message": null, "failures": null, "unique_id": "test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__contact_mailing_list_membership_contact_lookup_id__source_relation.943f4b419c", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n contact_lookup_id, source_relation\n from \"postgres\".\"qualtrics_source_integration_tests_qualtrics_source\".\"stg_qualtrics__contact_mailing_list_membership\"\n group by contact_lookup_id, source_relation\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "relation_name": null}, {"status": "success", "timing": [{"name": "compile", "started_at": "2024-03-22T19:55:40.562608Z", "completed_at": "2024-03-22T19:55:40.571855Z"}, {"name": "execute", "started_at": "2024-03-22T19:55:40.572389Z", "completed_at": "2024-03-22T19:55:40.572396Z"}], "thread_id": "Thread-3 (worker)", "execution_time": 0.011677026748657227, "adapter_response": {}, "message": null, "failures": null, "unique_id": "test.qualtrics_source.not_null_stg_qualtrics__contact_mailing_list_membership_contact_lookup_id.32d4d7bbf5", "compiled": true, "compiled_code": "\n \n \n\n\n\nselect contact_lookup_id\nfrom \"postgres\".\"qualtrics_source_integration_tests_qualtrics_source\".\"stg_qualtrics__contact_mailing_list_membership\"\nwhere contact_lookup_id is null\n\n\n", "relation_name": null}, {"status": "success", "timing": [{"name": "compile", "started_at": "2024-03-22T19:55:40.568825Z", "completed_at": "2024-03-22T19:55:40.577462Z"}, {"name": "execute", "started_at": "2024-03-22T19:55:40.578067Z", "completed_at": "2024-03-22T19:55:40.578072Z"}], "thread_id": "Thread-1 (worker)", "execution_time": 0.010807991027832031, "adapter_response": {}, "message": null, "failures": null, "unique_id": "test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__distribution_contact_contact_id__distribution_id__source_relation.b40826e6b2", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n contact_id, distribution_id, source_relation\n from \"postgres\".\"qualtrics_source_integration_tests_qualtrics_source\".\"stg_qualtrics__distribution_contact\"\n group by contact_id, distribution_id, source_relation\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "relation_name": null}, {"status": "success", "timing": [{"name": "compile", "started_at": "2024-03-22T19:55:40.574136Z", "completed_at": "2024-03-22T19:55:40.578341Z"}, {"name": "execute", "started_at": "2024-03-22T19:55:40.580000Z", "completed_at": "2024-03-22T19:55:40.580004Z"}], "thread_id": "Thread-3 (worker)", "execution_time": 0.0073337554931640625, "adapter_response": {}, "message": null, "failures": null, "unique_id": "test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__directory_mailing_list_mailing_list_id__directory_id__source_relation.24870adb73", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n mailing_list_id, directory_id, source_relation\n from \"postgres\".\"qualtrics_source_integration_tests_qualtrics_source\".\"stg_qualtrics__directory_mailing_list\"\n group by mailing_list_id, directory_id, source_relation\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "relation_name": null}, {"status": "success", "timing": [{"name": "compile", "started_at": "2024-03-22T19:55:40.581724Z", "completed_at": "2024-03-22T19:55:40.589361Z"}, {"name": "execute", "started_at": "2024-03-22T19:55:40.589956Z", "completed_at": "2024-03-22T19:55:40.589963Z"}], "thread_id": "Thread-1 (worker)", "execution_time": 0.010435819625854492, "adapter_response": {}, "message": null, "failures": null, "unique_id": "test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__distribution_distribution_id__source_relation.312f709e9c", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n distribution_id, source_relation\n from \"postgres\".\"qualtrics_source_integration_tests_qualtrics_source\".\"stg_qualtrics__distribution\"\n group by distribution_id, source_relation\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "relation_name": null}, {"status": "success", "timing": [{"name": "compile", "started_at": "2024-03-22T19:55:40.586400Z", "completed_at": "2024-03-22T19:55:40.590235Z"}, {"name": "execute", "started_at": "2024-03-22T19:55:40.591591Z", "completed_at": "2024-03-22T19:55:40.591594Z"}], "thread_id": "Thread-3 (worker)", "execution_time": 0.006901979446411133, "adapter_response": {}, "message": null, "failures": null, "unique_id": "test.qualtrics_source.not_null_stg_qualtrics__distribution_distribution_id.6158e414ed", "compiled": true, "compiled_code": "\n \n \n\n\n\nselect distribution_id\nfrom \"postgres\".\"qualtrics_source_integration_tests_qualtrics_source\".\"stg_qualtrics__distribution\"\nwhere distribution_id is null\n\n\n", "relation_name": null}, {"status": "success", "timing": [{"name": "compile", "started_at": "2024-03-22T19:55:40.593377Z", "completed_at": "2024-03-22T19:55:40.600864Z"}, {"name": "execute", "started_at": "2024-03-22T19:55:40.601429Z", "completed_at": "2024-03-22T19:55:40.601435Z"}], "thread_id": "Thread-1 (worker)", "execution_time": 0.009999990463256836, "adapter_response": {}, "message": null, "failures": null, "unique_id": "test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__question_option_question_id__survey_id__key__source_relation.af5af3057f", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n question_id, survey_id, key, source_relation\n from \"postgres\".\"qualtrics_source_integration_tests_qualtrics_source\".\"stg_qualtrics__question_option\"\n group by question_id, survey_id, key, source_relation\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "relation_name": null}, {"status": "success", "timing": [{"name": "compile", "started_at": "2024-03-22T19:55:40.597839Z", "completed_at": "2024-03-22T19:55:40.603142Z"}, {"name": "execute", "started_at": "2024-03-22T19:55:40.606765Z", "completed_at": "2024-03-22T19:55:40.606771Z"}], "thread_id": "Thread-3 (worker)", "execution_time": 0.010303974151611328, "adapter_response": {}, "message": null, "failures": null, "unique_id": "test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__directory_directory_id__source_relation.9c637ae3e0", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n directory_id, source_relation\n from \"postgres\".\"qualtrics_source_integration_tests_qualtrics_source\".\"stg_qualtrics__directory\"\n group by directory_id, source_relation\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "relation_name": null}, {"status": "success", "timing": [{"name": "compile", "started_at": "2024-03-22T19:55:40.603445Z", "completed_at": "2024-03-22T19:55:40.607839Z"}, {"name": "execute", "started_at": "2024-03-22T19:55:40.609102Z", "completed_at": "2024-03-22T19:55:40.609106Z"}], "thread_id": "Thread-1 (worker)", "execution_time": 0.010896921157836914, "adapter_response": {}, "message": null, "failures": null, "unique_id": "test.qualtrics_source.not_null_stg_qualtrics__directory_directory_id.65413cdcf7", "compiled": true, "compiled_code": "\n \n \n\n\n\nselect directory_id\nfrom \"postgres\".\"qualtrics_source_integration_tests_qualtrics_source\".\"stg_qualtrics__directory\"\nwhere directory_id is null\n\n\n", "relation_name": null}, {"status": "success", "timing": [{"name": "compile", "started_at": "2024-03-22T19:55:40.609375Z", "completed_at": "2024-03-22T19:55:40.614749Z"}, {"name": "execute", "started_at": "2024-03-22T19:55:40.618293Z", "completed_at": "2024-03-22T19:55:40.618298Z"}], "thread_id": "Thread-3 (worker)", "execution_time": 0.010606050491333008, "adapter_response": {}, "message": null, "failures": null, "unique_id": "test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__question_response__fivetran_id__source_relation.2e0556a912", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n _fivetran_id, source_relation\n from \"postgres\".\"qualtrics_source_integration_tests_qualtrics_source\".\"stg_qualtrics__question_response\"\n group by _fivetran_id, source_relation\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "relation_name": null}, {"status": "success", "timing": [{"name": "compile", "started_at": "2024-03-22T19:55:40.615093Z", "completed_at": "2024-03-22T19:55:40.619943Z"}, {"name": "execute", "started_at": "2024-03-22T19:55:40.623601Z", "completed_at": "2024-03-22T19:55:40.623608Z"}], "thread_id": "Thread-1 (worker)", "execution_time": 0.009961843490600586, "adapter_response": {}, "message": null, "failures": null, "unique_id": "test.qualtrics_source.not_null_stg_qualtrics__question_response__fivetran_id.6e47cc53d7", "compiled": true, "compiled_code": "\n \n \n\n\n\nselect _fivetran_id\nfrom \"postgres\".\"qualtrics_source_integration_tests_qualtrics_source\".\"stg_qualtrics__question_response\"\nwhere _fivetran_id is null\n\n\n", "relation_name": null}, {"status": "success", "timing": [{"name": "compile", "started_at": "2024-03-22T19:55:40.620231Z", "completed_at": "2024-03-22T19:55:40.628203Z"}, {"name": "execute", "started_at": "2024-03-22T19:55:40.628793Z", "completed_at": "2024-03-22T19:55:40.628798Z"}], "thread_id": "Thread-3 (worker)", "execution_time": 0.009918928146362305, "adapter_response": {}, "message": null, "failures": null, "unique_id": "test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__sub_question_question_id__survey_id__key__source_relation.12c68e2ef2", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n question_id, survey_id, key, source_relation\n from \"postgres\".\"qualtrics_source_integration_tests_qualtrics_source\".\"stg_qualtrics__sub_question\"\n group by question_id, survey_id, key, source_relation\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "relation_name": null}, {"status": "success", "timing": [{"name": "compile", "started_at": "2024-03-22T19:55:40.625282Z", "completed_at": "2024-03-22T19:55:40.629548Z"}, {"name": "execute", "started_at": "2024-03-22T19:55:40.630793Z", "completed_at": "2024-03-22T19:55:40.630797Z"}], "thread_id": "Thread-1 (worker)", "execution_time": 0.006831169128417969, "adapter_response": {}, "message": null, "failures": null, "unique_id": "test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__survey_survey_id__source_relation.a1fd5a2968", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n survey_id, source_relation\n from \"postgres\".\"qualtrics_source_integration_tests_qualtrics_source\".\"stg_qualtrics__survey\"\n group by survey_id, source_relation\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "relation_name": null}, {"status": "success", "timing": [{"name": "compile", "started_at": "2024-03-22T19:55:40.631830Z", "completed_at": "2024-03-22T19:55:40.639387Z"}, {"name": "execute", "started_at": "2024-03-22T19:55:40.639937Z", "completed_at": "2024-03-22T19:55:40.639943Z"}], "thread_id": "Thread-3 (worker)", "execution_time": 0.010237932205200195, "adapter_response": {}, "message": null, "failures": null, "unique_id": "test.qualtrics_source.not_null_stg_qualtrics__survey_survey_id.2796651e04", "compiled": true, "compiled_code": "\n \n \n\n\n\nselect survey_id\nfrom \"postgres\".\"qualtrics_source_integration_tests_qualtrics_source\".\"stg_qualtrics__survey\"\nwhere survey_id is null\n\n\n", "relation_name": null}, {"status": "success", "timing": [{"name": "compile", "started_at": "2024-03-22T19:55:40.635660Z", "completed_at": "2024-03-22T19:55:40.640182Z"}, {"name": "execute", "started_at": "2024-03-22T19:55:40.641431Z", "completed_at": "2024-03-22T19:55:40.641434Z"}], "thread_id": "Thread-1 (worker)", "execution_time": 0.007214069366455078, "adapter_response": {}, "message": null, "failures": null, "unique_id": "test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__survey_response_response_id__source_relation.c97ddff72b", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n response_id, source_relation\n from \"postgres\".\"qualtrics_source_integration_tests_qualtrics_source\".\"stg_qualtrics__survey_response\"\n group by response_id, source_relation\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "relation_name": null}, {"status": "success", "timing": [{"name": "compile", "started_at": "2024-03-22T19:55:40.643094Z", "completed_at": "2024-03-22T19:55:40.649361Z"}, {"name": "execute", "started_at": "2024-03-22T19:55:40.649924Z", "completed_at": "2024-03-22T19:55:40.649929Z"}], "thread_id": "Thread-3 (worker)", "execution_time": 0.008651971817016602, "adapter_response": {}, "message": null, "failures": null, "unique_id": "test.qualtrics_source.not_null_stg_qualtrics__survey_response_response_id.864d3a83e3", "compiled": true, "compiled_code": "\n \n \n\n\n\nselect response_id\nfrom \"postgres\".\"qualtrics_source_integration_tests_qualtrics_source\".\"stg_qualtrics__survey_response\"\nwhere response_id is null\n\n\n", "relation_name": null}, {"status": "success", "timing": [{"name": "compile", "started_at": "2024-03-22T19:55:40.646637Z", "completed_at": "2024-03-22T19:55:40.651509Z"}, {"name": "execute", "started_at": "2024-03-22T19:55:40.655322Z", "completed_at": "2024-03-22T19:55:40.655327Z"}], "thread_id": "Thread-1 (worker)", "execution_time": 0.009869813919067383, "adapter_response": {}, "message": null, "failures": null, "unique_id": "test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__question_question_id__survey_id__source_relation.1e5f78924a", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n question_id, survey_id, source_relation\n from \"postgres\".\"qualtrics_source_integration_tests_qualtrics_source\".\"stg_qualtrics__question\"\n group by question_id, survey_id, source_relation\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "relation_name": null}, {"status": "success", "timing": [{"name": "compile", "started_at": "2024-03-22T19:55:40.651818Z", "completed_at": "2024-03-22T19:55:40.656183Z"}, {"name": "execute", "started_at": "2024-03-22T19:55:40.656711Z", "completed_at": "2024-03-22T19:55:40.656715Z"}], "thread_id": "Thread-3 (worker)", "execution_time": 0.0061931610107421875, "adapter_response": {}, "message": null, "failures": null, "unique_id": "test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__survey_embedded_data_import_id__response_id__key__value__source_relation.73ba345920", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n import_id, response_id, key, value, source_relation\n from \"postgres\".\"qualtrics_source_integration_tests_qualtrics_source\".\"stg_qualtrics__survey_embedded_data\"\n group by import_id, response_id, key, value, source_relation\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "relation_name": null}, {"status": "success", "timing": [{"name": "compile", "started_at": "2024-03-22T19:55:40.525651Z", "completed_at": "2024-03-22T19:55:40.787096Z"}, {"name": "execute", "started_at": "2024-03-22T19:55:40.787709Z", "completed_at": "2024-03-22T19:55:40.787715Z"}], "thread_id": "Thread-4 (worker)", "execution_time": 0.28804469108581543, "adapter_response": {}, "message": null, "failures": null, "unique_id": "model.qualtrics_source.stg_qualtrics__user", "compiled": true, "compiled_code": "with base as (\n\n select * \n from \"postgres\".\"qualtrics_source_integration_tests_qualtrics_source\".\"stg_qualtrics__user_tmp\"\n),\n\nfields as (\n\n select\n \n \n \n _fivetran_deleted\n \n as \n \n _fivetran_deleted\n \n, \n \n \n _fivetran_synced\n \n as \n \n _fivetran_synced\n \n, \n \n \n account_creation_date\n \n as \n \n account_creation_date\n \n, \n \n \n account_expiration_date\n \n as \n \n account_expiration_date\n \n, \n \n \n account_status\n \n as \n \n account_status\n \n, \n \n \n division_id\n \n as \n \n division_id\n \n, \n \n \n email\n \n as \n \n email\n \n, \n \n \n first_name\n \n as \n \n first_name\n \n, \n \n \n id\n \n as \n \n id\n \n, \n \n \n language\n \n as \n \n language\n \n, \n \n \n last_login_date\n \n as \n \n last_login_date\n \n, \n \n \n last_name\n \n as \n \n last_name\n \n, \n \n \n organization_id\n \n as \n \n organization_id\n \n, \n \n \n password_expiration_date\n \n as \n \n password_expiration_date\n \n, \n \n \n password_last_changed_date\n \n as \n \n password_last_changed_date\n \n, \n \n \n response_count_auditable\n \n as \n \n response_count_auditable\n \n, \n \n \n response_count_deleted\n \n as \n \n response_count_deleted\n \n, \n \n \n response_count_generated\n \n as \n \n response_count_generated\n \n, \n \n \n time_zone\n \n as \n \n time_zone\n \n, \n \n \n unsubscribed\n \n as \n \n unsubscribed\n \n, \n \n \n user_type\n \n as \n \n user_type\n \n, \n \n \n username\n \n as \n \n username\n \n\n\n\n\n \n\n\n, cast('' as TEXT) as source_relation\n\n\n\n \n from base\n),\n\nfinal as (\n \n select \n cast(account_creation_date as timestamp) as account_created_at,\n cast(account_expiration_date as timestamp) as account_expires_at,\n account_status,\n division_id,\n email,\n first_name,\n id as user_id,\n language,\n cast(last_login_date as timestamp) as last_login_at,\n last_name,\n organization_id,\n cast(password_expiration_date as timestamp) as password_expires_at,\n cast(password_last_changed_date as timestamp) as password_last_changed_at,\n response_count_auditable,\n response_count_deleted,\n response_count_generated,\n time_zone,\n unsubscribed as is_unsubscribed,\n user_type,\n username,\n _fivetran_deleted as is_deleted,\n _fivetran_synced,\n source_relation\n from fields\n)\n\nselect *\nfrom final", "relation_name": "\"postgres\".\"qualtrics_source_integration_tests_qualtrics_source\".\"stg_qualtrics__user\""}, {"status": "success", "timing": [{"name": "compile", "started_at": "2024-03-22T19:55:40.518571Z", "completed_at": "2024-03-22T19:55:40.796023Z"}, {"name": "execute", "started_at": "2024-03-22T19:55:40.796550Z", "completed_at": "2024-03-22T19:55:40.796555Z"}], "thread_id": "Thread-2 (worker)", "execution_time": 0.3425748348236084, "adapter_response": {}, "message": null, "failures": null, "unique_id": "model.qualtrics_source.stg_qualtrics__survey_version", "compiled": true, "compiled_code": "with base as (\n\n select * \n from \"postgres\".\"qualtrics_source_integration_tests_qualtrics_source\".\"stg_qualtrics__survey_version_tmp\"\n),\n\nfields as (\n\n select\n \n \n \n _fivetran_deleted\n \n as \n \n _fivetran_deleted\n \n, \n \n \n _fivetran_synced\n \n as \n \n _fivetran_synced\n \n, \n \n \n creation_date\n \n as \n \n creation_date\n \n, \n \n \n description\n \n as \n \n description\n \n, \n \n \n id\n \n as \n \n id\n \n, \n \n \n published\n \n as \n \n published\n \n, \n \n \n survey_id\n \n as \n \n survey_id\n \n, \n \n \n user_id\n \n as \n \n user_id\n \n, \n \n \n version_number\n \n as \n \n version_number\n \n, \n \n \n was_published\n \n as \n \n was_published\n \n\n\n\n\n \n\n\n, cast('' as TEXT) as source_relation\n\n\n\n \n from base\n),\n\nfinal as (\n \n select \n cast(creation_date as timestamp) as created_at,\n description as version_description,\n id as version_id,\n published as is_published,\n survey_id,\n user_id as publisher_user_id,\n version_number,\n was_published,\n _fivetran_deleted as is_deleted,\n _fivetran_synced,\n source_relation\n \n from fields\n)\n\nselect *\nfrom final", "relation_name": "\"postgres\".\"qualtrics_source_integration_tests_qualtrics_source\".\"stg_qualtrics__survey_version\""}, {"status": "success", "timing": [{"name": "compile", "started_at": "2024-03-22T19:55:40.814304Z", "completed_at": "2024-03-22T19:55:40.861088Z"}, {"name": "execute", "started_at": "2024-03-22T19:55:40.861632Z", "completed_at": "2024-03-22T19:55:40.861637Z"}], "thread_id": "Thread-1 (worker)", "execution_time": 0.048358917236328125, "adapter_response": {}, "message": null, "failures": null, "unique_id": "test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__user_user_id__source_relation.73c4de157d", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n user_id, source_relation\n from \"postgres\".\"qualtrics_source_integration_tests_qualtrics_source\".\"stg_qualtrics__user\"\n group by user_id, source_relation\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "relation_name": null}, {"status": "success", "timing": [{"name": "compile", "started_at": "2024-03-22T19:55:40.857589Z", "completed_at": "2024-03-22T19:55:40.863389Z"}, {"name": "execute", "started_at": "2024-03-22T19:55:40.867316Z", "completed_at": "2024-03-22T19:55:40.867321Z"}], "thread_id": "Thread-3 (worker)", "execution_time": 0.011037111282348633, "adapter_response": {}, "message": null, "failures": null, "unique_id": "test.qualtrics_source.not_null_stg_qualtrics__user_user_id.816e912ff9", "compiled": true, "compiled_code": "\n \n \n\n\n\nselect user_id\nfrom \"postgres\".\"qualtrics_source_integration_tests_qualtrics_source\".\"stg_qualtrics__user\"\nwhere user_id is null\n\n\n", "relation_name": null}, {"status": "success", "timing": [{"name": "compile", "started_at": "2024-03-22T19:55:40.863684Z", "completed_at": "2024-03-22T19:55:40.868173Z"}, {"name": "execute", "started_at": "2024-03-22T19:55:40.868671Z", "completed_at": "2024-03-22T19:55:40.868674Z"}], "thread_id": "Thread-4 (worker)", "execution_time": 0.006310939788818359, "adapter_response": {}, "message": null, "failures": null, "unique_id": "test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__survey_version_version_id__survey_id__source_relation.513ef528c1", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n version_id, survey_id, source_relation\n from \"postgres\".\"qualtrics_source_integration_tests_qualtrics_source\".\"stg_qualtrics__survey_version\"\n group by version_id, survey_id, source_relation\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "relation_name": null}], "elapsed_time": 2.9644808769226074, "args": {"partial_parse_file_diff": true, "empty_catalog": false, "select": [], "use_colors": true, "warn_error_options": {"include": [], "exclude": []}, "static": false, "cache_selected_only": false, "introspect": true, "enable_legacy_logger": false, "version_check": true, "static_parser": true, "print": true, "log_format_file": "debug", "write_json": true, "compile": true, "partial_parse": true, "printer_width": 80, "vars": {}, "invocation_command": "dbt docs generate -t postgres", "populate_cache": true, "send_anonymous_usage_stats": true, "strict_mode": false, "log_format": "default", "indirect_selection": "eager", "macro_debugging": false, "quiet": false, "log_level": "info", "log_level_file": "debug", "show_resource_report": false, "target": "postgres", "log_path": "/Users/joseph.markiewicz/Documents/dbt_packages/qualtrics/dbt_qualtrics_source/integration_tests/logs", "favor_state": false, "which": "generate", "profiles_dir": "/Users/joseph.markiewicz/.dbt", "project_dir": "/Users/joseph.markiewicz/Documents/dbt_packages/qualtrics/dbt_qualtrics_source/integration_tests", "use_colors_file": true, "log_file_max_bytes": 10485760, "exclude": [], "defer": false}} +{"metadata": {"dbt_schema_version": "https://schemas.getdbt.com/dbt/run-results/v5.json", "dbt_version": "1.7.9", "generated_at": "2024-04-29T19:41:40.823893Z", "invocation_id": "7c825524-c0d9-4b0e-91ee-7162e7b83981", "env": {}}, "results": [{"status": "success", "timing": [{"name": "compile", "started_at": "2024-04-29T19:41:37.860513Z", "completed_at": "2024-04-29T19:41:37.901465Z"}, {"name": "execute", "started_at": "2024-04-29T19:41:37.913238Z", "completed_at": "2024-04-29T19:41:37.913250Z"}], "thread_id": "Thread-1", "execution_time": 0.060854196548461914, "adapter_response": {}, "message": null, "failures": null, "unique_id": "model.qualtrics_source.stg_qualtrics__block_question_tmp", "compiled": true, "compiled_code": "\n \n \n \n \n \n \n \n select * \n from \"postgres\".\"qualtrics_source_integration_tests_702\".\"block_question\"", "relation_name": "\"postgres\".\"qualtrics_source_integration_tests_702_qualtrics_source\".\"stg_qualtrics__block_question_tmp\""}, {"status": "success", "timing": [{"name": "compile", "started_at": "2024-04-29T19:41:37.886309Z", "completed_at": "2024-04-29T19:41:37.910650Z"}, {"name": "execute", "started_at": "2024-04-29T19:41:37.914847Z", "completed_at": "2024-04-29T19:41:37.914850Z"}], "thread_id": "Thread-2", "execution_time": 0.06173586845397949, "adapter_response": {}, "message": null, "failures": null, "unique_id": "model.qualtrics_source.stg_qualtrics__block_tmp", "compiled": true, "compiled_code": "\n \n \n \n \n \n \n \n select * \n from \"postgres\".\"qualtrics_source_integration_tests_702\".\"block\"", "relation_name": "\"postgres\".\"qualtrics_source_integration_tests_702_qualtrics_source\".\"stg_qualtrics__block_tmp\""}, {"status": "success", "timing": [{"name": "compile", "started_at": "2024-04-29T19:41:37.897918Z", "completed_at": "2024-04-29T19:41:37.911526Z"}, {"name": "execute", "started_at": "2024-04-29T19:41:37.916224Z", "completed_at": "2024-04-29T19:41:37.916227Z"}], "thread_id": "Thread-5", "execution_time": 0.05967211723327637, "adapter_response": {}, "message": null, "failures": null, "unique_id": "model.qualtrics_source.stg_qualtrics__core_mailing_list_tmp", "compiled": true, "compiled_code": "\n-- can disable\n\n \n \n \n \n \n \n \n select * \n from \"postgres\".\"qualtrics_source_integration_tests_702\".\"core_mailing_list\"", "relation_name": "\"postgres\".\"qualtrics_source_integration_tests_702_qualtrics_source\".\"stg_qualtrics__core_mailing_list_tmp\""}, {"status": "success", "timing": [{"name": "compile", "started_at": "2024-04-29T19:41:37.894287Z", "completed_at": "2024-04-29T19:41:37.911946Z"}, {"name": "execute", "started_at": "2024-04-29T19:41:37.916514Z", "completed_at": "2024-04-29T19:41:37.916525Z"}], "thread_id": "Thread-4", "execution_time": 0.060964107513427734, "adapter_response": {}, "message": null, "failures": null, "unique_id": "model.qualtrics_source.stg_qualtrics__core_contact_tmp", "compiled": true, "compiled_code": "\n-- can disable \n\n \n \n \n \n \n \n \n select * \n from \"postgres\".\"qualtrics_source_integration_tests_702\".\"core_contact\"", "relation_name": "\"postgres\".\"qualtrics_source_integration_tests_702_qualtrics_source\".\"stg_qualtrics__core_contact_tmp\""}, {"status": "success", "timing": [{"name": "compile", "started_at": "2024-04-29T19:41:37.890595Z", "completed_at": "2024-04-29T19:41:37.912307Z"}, {"name": "execute", "started_at": "2024-04-29T19:41:37.917084Z", "completed_at": "2024-04-29T19:41:37.917087Z"}], "thread_id": "Thread-3", "execution_time": 0.06233406066894531, "adapter_response": {}, "message": null, "failures": null, "unique_id": "model.qualtrics_source.stg_qualtrics__contact_mailing_list_membership_tmp", "compiled": true, "compiled_code": "\n \n \n \n \n \n \n \n select * \n from \"postgres\".\"qualtrics_source_integration_tests_702\".\"contact_mailing_list_membership\"", "relation_name": "\"postgres\".\"qualtrics_source_integration_tests_702_qualtrics_source\".\"stg_qualtrics__contact_mailing_list_membership_tmp\""}, {"status": "success", "timing": [{"name": "compile", "started_at": "2024-04-29T19:41:37.901896Z", "completed_at": "2024-04-29T19:41:37.912912Z"}, {"name": "execute", "started_at": "2024-04-29T19:41:37.917937Z", "completed_at": "2024-04-29T19:41:37.917940Z"}], "thread_id": "Thread-6", "execution_time": 0.06141471862792969, "adapter_response": {}, "message": null, "failures": null, "unique_id": "model.qualtrics_source.stg_qualtrics__directory_contact_tmp", "compiled": true, "compiled_code": "\n \n \n \n \n \n \n \n select * \n from \"postgres\".\"qualtrics_source_integration_tests_702\".\"directory_contact\"", "relation_name": "\"postgres\".\"qualtrics_source_integration_tests_702_qualtrics_source\".\"stg_qualtrics__directory_contact_tmp\""}, {"status": "success", "timing": [{"name": "compile", "started_at": "2024-04-29T19:41:37.905077Z", "completed_at": "2024-04-29T19:41:37.913544Z"}, {"name": "execute", "started_at": "2024-04-29T19:41:37.918491Z", "completed_at": "2024-04-29T19:41:37.918494Z"}], "thread_id": "Thread-7", "execution_time": 0.0490269660949707, "adapter_response": {}, "message": null, "failures": null, "unique_id": "model.qualtrics_source.stg_qualtrics__directory_mailing_list_tmp", "compiled": true, "compiled_code": "\n \n \n \n \n \n \n \n select * \n from \"postgres\".\"qualtrics_source_integration_tests_702\".\"directory_mailing_list\"", "relation_name": "\"postgres\".\"qualtrics_source_integration_tests_702_qualtrics_source\".\"stg_qualtrics__directory_mailing_list_tmp\""}, {"status": "success", "timing": [{"name": "compile", "started_at": "2024-04-29T19:41:37.907935Z", "completed_at": "2024-04-29T19:41:37.914329Z"}, {"name": "execute", "started_at": "2024-04-29T19:41:37.919897Z", "completed_at": "2024-04-29T19:41:37.919900Z"}], "thread_id": "Thread-8", "execution_time": 0.03804492950439453, "adapter_response": {}, "message": null, "failures": null, "unique_id": "model.qualtrics_source.stg_qualtrics__directory_tmp", "compiled": true, "compiled_code": "\n \n \n \n \n \n \n \n select * \n from \"postgres\".\"qualtrics_source_integration_tests_702\".\"directory\"", "relation_name": "\"postgres\".\"qualtrics_source_integration_tests_702_qualtrics_source\".\"stg_qualtrics__directory_tmp\""}, {"status": "success", "timing": [{"name": "compile", "started_at": "2024-04-29T19:41:37.927334Z", "completed_at": "2024-04-29T19:41:37.941442Z"}, {"name": "execute", "started_at": "2024-04-29T19:41:37.956249Z", "completed_at": "2024-04-29T19:41:37.956256Z"}], "thread_id": "Thread-1", "execution_time": 0.03682994842529297, "adapter_response": {}, "message": null, "failures": null, "unique_id": "model.qualtrics_source.stg_qualtrics__distribution_contact_tmp", "compiled": true, "compiled_code": "\n \n \n \n \n \n \n \n select * \n from \"postgres\".\"qualtrics_source_integration_tests_702\".\"distribution_contact\"", "relation_name": "\"postgres\".\"qualtrics_source_integration_tests_702_qualtrics_source\".\"stg_qualtrics__distribution_contact_tmp\""}, {"status": "success", "timing": [{"name": "compile", "started_at": "2024-04-29T19:41:37.932660Z", "completed_at": "2024-04-29T19:41:37.953711Z"}, {"name": "execute", "started_at": "2024-04-29T19:41:37.957775Z", "completed_at": "2024-04-29T19:41:37.957779Z"}], "thread_id": "Thread-2", "execution_time": 0.03649711608886719, "adapter_response": {}, "message": null, "failures": null, "unique_id": "model.qualtrics_source.stg_qualtrics__distribution_tmp", "compiled": true, "compiled_code": "\n \n \n \n \n \n \n \n select * \n from \"postgres\".\"qualtrics_source_integration_tests_702\".\"distribution\"", "relation_name": "\"postgres\".\"qualtrics_source_integration_tests_702_qualtrics_source\".\"stg_qualtrics__distribution_tmp\""}, {"status": "success", "timing": [{"name": "compile", "started_at": "2024-04-29T19:41:37.938332Z", "completed_at": "2024-04-29T19:41:37.954475Z"}, {"name": "execute", "started_at": "2024-04-29T19:41:37.959184Z", "completed_at": "2024-04-29T19:41:37.959187Z"}], "thread_id": "Thread-4", "execution_time": 0.03633999824523926, "adapter_response": {}, "message": null, "failures": null, "unique_id": "model.qualtrics_source.stg_qualtrics__question_response_tmp", "compiled": true, "compiled_code": "\n \n \n \n \n \n \n \n select * \n from \"postgres\".\"qualtrics_source_integration_tests_702\".\"question_response\"", "relation_name": "\"postgres\".\"qualtrics_source_integration_tests_702_qualtrics_source\".\"stg_qualtrics__question_response_tmp\""}, {"status": "success", "timing": [{"name": "compile", "started_at": "2024-04-29T19:41:37.935734Z", "completed_at": "2024-04-29T19:41:37.954761Z"}, {"name": "execute", "started_at": "2024-04-29T19:41:37.959459Z", "completed_at": "2024-04-29T19:41:37.959462Z"}], "thread_id": "Thread-5", "execution_time": 0.03725886344909668, "adapter_response": {}, "message": null, "failures": null, "unique_id": "model.qualtrics_source.stg_qualtrics__question_option_tmp", "compiled": true, "compiled_code": "\n \n \n \n \n \n \n \n select * \n from \"postgres\".\"qualtrics_source_integration_tests_702\".\"question_option\"", "relation_name": "\"postgres\".\"qualtrics_source_integration_tests_702_qualtrics_source\".\"stg_qualtrics__question_option_tmp\""}, {"status": "success", "timing": [{"name": "compile", "started_at": "2024-04-29T19:41:37.941726Z", "completed_at": "2024-04-29T19:41:37.955111Z"}, {"name": "execute", "started_at": "2024-04-29T19:41:37.959735Z", "completed_at": "2024-04-29T19:41:37.959738Z"}], "thread_id": "Thread-3", "execution_time": 0.036715030670166016, "adapter_response": {}, "message": null, "failures": null, "unique_id": "model.qualtrics_source.stg_qualtrics__question_tmp", "compiled": true, "compiled_code": "\n \n \n \n \n \n \n \n select * \n from \"postgres\".\"qualtrics_source_integration_tests_702\".\"question\"", "relation_name": "\"postgres\".\"qualtrics_source_integration_tests_702_qualtrics_source\".\"stg_qualtrics__question_tmp\""}, {"status": "success", "timing": [{"name": "compile", "started_at": "2024-04-29T19:41:37.944624Z", "completed_at": "2024-04-29T19:41:37.955437Z"}, {"name": "execute", "started_at": "2024-04-29T19:41:37.960003Z", "completed_at": "2024-04-29T19:41:37.960006Z"}], "thread_id": "Thread-6", "execution_time": 0.036536216735839844, "adapter_response": {}, "message": null, "failures": null, "unique_id": "model.qualtrics_source.stg_qualtrics__sub_question_tmp", "compiled": true, "compiled_code": "\n \n \n \n \n \n \n \n select * \n from \"postgres\".\"qualtrics_source_integration_tests_702\".\"sub_question\"", "relation_name": "\"postgres\".\"qualtrics_source_integration_tests_702_qualtrics_source\".\"stg_qualtrics__sub_question_tmp\""}, {"status": "success", "timing": [{"name": "compile", "started_at": "2024-04-29T19:41:37.948213Z", "completed_at": "2024-04-29T19:41:37.955960Z"}, {"name": "execute", "started_at": "2024-04-29T19:41:37.960847Z", "completed_at": "2024-04-29T19:41:37.960850Z"}], "thread_id": "Thread-7", "execution_time": 0.03307318687438965, "adapter_response": {}, "message": null, "failures": null, "unique_id": "model.qualtrics_source.stg_qualtrics__survey_embedded_data_tmp", "compiled": true, "compiled_code": "\n \n \n \n \n \n \n \n select * \n from \"postgres\".\"qualtrics_source_integration_tests_702\".\"survey_embedded_data\"", "relation_name": "\"postgres\".\"qualtrics_source_integration_tests_702_qualtrics_source\".\"stg_qualtrics__survey_embedded_data_tmp\""}, {"status": "success", "timing": [{"name": "compile", "started_at": "2024-04-29T19:41:37.951102Z", "completed_at": "2024-04-29T19:41:37.956543Z"}, {"name": "execute", "started_at": "2024-04-29T19:41:37.961483Z", "completed_at": "2024-04-29T19:41:37.961486Z"}], "thread_id": "Thread-8", "execution_time": 0.03317618370056152, "adapter_response": {}, "message": null, "failures": null, "unique_id": "model.qualtrics_source.stg_qualtrics__survey_response_tmp", "compiled": true, "compiled_code": "\n \n \n \n \n \n \n \n select * \n from \"postgres\".\"qualtrics_source_integration_tests_702\".\"survey_response\"", "relation_name": "\"postgres\".\"qualtrics_source_integration_tests_702_qualtrics_source\".\"stg_qualtrics__survey_response_tmp\""}, {"status": "success", "timing": [{"name": "compile", "started_at": "2024-04-29T19:41:37.981518Z", "completed_at": "2024-04-29T19:41:37.982910Z"}, {"name": "execute", "started_at": "2024-04-29T19:41:37.991557Z", "completed_at": "2024-04-29T19:41:37.991563Z"}], "thread_id": "Thread-5", "execution_time": 0.02527165412902832, "adapter_response": {}, "message": null, "failures": null, "unique_id": "seed.qualtrics_source_integration_tests.block", "compiled": null, "compiled_code": null, "relation_name": null}, {"status": "success", "timing": [{"name": "compile", "started_at": "2024-04-29T19:41:37.983326Z", "completed_at": "2024-04-29T19:41:37.984394Z"}, {"name": "execute", "started_at": "2024-04-29T19:41:37.992045Z", "completed_at": "2024-04-29T19:41:37.992048Z"}], "thread_id": "Thread-3", "execution_time": 0.02591705322265625, "adapter_response": {}, "message": null, "failures": null, "unique_id": "seed.qualtrics_source_integration_tests.block_question", "compiled": null, "compiled_code": null, "relation_name": null}, {"status": "success", "timing": [{"name": "compile", "started_at": "2024-04-29T19:41:37.984712Z", "completed_at": "2024-04-29T19:41:37.985741Z"}, {"name": "execute", "started_at": "2024-04-29T19:41:37.992297Z", "completed_at": "2024-04-29T19:41:37.992299Z"}], "thread_id": "Thread-6", "execution_time": 0.0260927677154541, "adapter_response": {}, "message": null, "failures": null, "unique_id": "seed.qualtrics_source_integration_tests.contact_mailing_list_membership", "compiled": null, "compiled_code": null, "relation_name": null}, {"status": "success", "timing": [{"name": "compile", "started_at": "2024-04-29T19:41:37.970379Z", "completed_at": "2024-04-29T19:41:37.986105Z"}, {"name": "execute", "started_at": "2024-04-29T19:41:37.992789Z", "completed_at": "2024-04-29T19:41:37.992793Z"}], "thread_id": "Thread-1", "execution_time": 0.03170204162597656, "adapter_response": {}, "message": null, "failures": null, "unique_id": "model.qualtrics_source.stg_qualtrics__survey_tmp", "compiled": true, "compiled_code": "\n \n \n \n \n \n \n \n select * \n from \"postgres\".\"qualtrics_source_integration_tests_702\".\"survey\"", "relation_name": "\"postgres\".\"qualtrics_source_integration_tests_702_qualtrics_source\".\"stg_qualtrics__survey_tmp\""}, {"status": "success", "timing": [{"name": "compile", "started_at": "2024-04-29T19:41:37.986524Z", "completed_at": "2024-04-29T19:41:37.987645Z"}, {"name": "execute", "started_at": "2024-04-29T19:41:37.993062Z", "completed_at": "2024-04-29T19:41:37.993064Z"}], "thread_id": "Thread-7", "execution_time": 0.026852846145629883, "adapter_response": {}, "message": null, "failures": null, "unique_id": "seed.qualtrics_source_integration_tests.core_contact", "compiled": null, "compiled_code": null, "relation_name": null}, {"status": "success", "timing": [{"name": "compile", "started_at": "2024-04-29T19:41:37.988022Z", "completed_at": "2024-04-29T19:41:37.989129Z"}, {"name": "execute", "started_at": "2024-04-29T19:41:37.993324Z", "completed_at": "2024-04-29T19:41:37.993327Z"}], "thread_id": "Thread-8", "execution_time": 0.023954153060913086, "adapter_response": {}, "message": null, "failures": null, "unique_id": "seed.qualtrics_source_integration_tests.core_mailing_list", "compiled": null, "compiled_code": null, "relation_name": null}, {"status": "success", "timing": [{"name": "compile", "started_at": "2024-04-29T19:41:37.974626Z", "completed_at": "2024-04-29T19:41:37.989781Z"}, {"name": "execute", "started_at": "2024-04-29T19:41:37.994351Z", "completed_at": "2024-04-29T19:41:37.994359Z"}], "thread_id": "Thread-2", "execution_time": 0.03127288818359375, "adapter_response": {}, "message": null, "failures": null, "unique_id": "model.qualtrics_source.stg_qualtrics__survey_version_tmp", "compiled": true, "compiled_code": "\n \n \n \n \n \n \n \n select * \n from \"postgres\".\"qualtrics_source_integration_tests_702\".\"survey_version\"", "relation_name": "\"postgres\".\"qualtrics_source_integration_tests_702_qualtrics_source\".\"stg_qualtrics__survey_version_tmp\""}, {"status": "success", "timing": [{"name": "compile", "started_at": "2024-04-29T19:41:37.977703Z", "completed_at": "2024-04-29T19:41:37.990582Z"}, {"name": "execute", "started_at": "2024-04-29T19:41:37.995824Z", "completed_at": "2024-04-29T19:41:37.995827Z"}], "thread_id": "Thread-4", "execution_time": 0.031026840209960938, "adapter_response": {}, "message": null, "failures": null, "unique_id": "model.qualtrics_source.stg_qualtrics__user_tmp", "compiled": true, "compiled_code": "\n \n \n \n \n \n \n \n select * \n from \"postgres\".\"qualtrics_source_integration_tests_702\".\"user\"", "relation_name": "\"postgres\".\"qualtrics_source_integration_tests_702_qualtrics_source\".\"stg_qualtrics__user_tmp\""}, {"status": "success", "timing": [{"name": "compile", "started_at": "2024-04-29T19:41:38.005628Z", "completed_at": "2024-04-29T19:41:38.007729Z"}, {"name": "execute", "started_at": "2024-04-29T19:41:38.020801Z", "completed_at": "2024-04-29T19:41:38.020815Z"}], "thread_id": "Thread-5", "execution_time": 0.022967100143432617, "adapter_response": {}, "message": null, "failures": null, "unique_id": "seed.qualtrics_source_integration_tests.directory", "compiled": null, "compiled_code": null, "relation_name": null}, {"status": "success", "timing": [{"name": "compile", "started_at": "2024-04-29T19:41:38.008329Z", "completed_at": "2024-04-29T19:41:38.009620Z"}, {"name": "execute", "started_at": "2024-04-29T19:41:38.021544Z", "completed_at": "2024-04-29T19:41:38.021548Z"}], "thread_id": "Thread-3", "execution_time": 0.023041963577270508, "adapter_response": {}, "message": null, "failures": null, "unique_id": "seed.qualtrics_source_integration_tests.directory_contact", "compiled": null, "compiled_code": null, "relation_name": null}, {"status": "success", "timing": [{"name": "compile", "started_at": "2024-04-29T19:41:38.010003Z", "completed_at": "2024-04-29T19:41:38.011028Z"}, {"name": "execute", "started_at": "2024-04-29T19:41:38.021845Z", "completed_at": "2024-04-29T19:41:38.021852Z"}], "thread_id": "Thread-6", "execution_time": 0.023128986358642578, "adapter_response": {}, "message": null, "failures": null, "unique_id": "seed.qualtrics_source_integration_tests.directory_mailing_list", "compiled": null, "compiled_code": null, "relation_name": null}, {"status": "success", "timing": [{"name": "compile", "started_at": "2024-04-29T19:41:38.011579Z", "completed_at": "2024-04-29T19:41:38.012731Z"}, {"name": "execute", "started_at": "2024-04-29T19:41:38.022379Z", "completed_at": "2024-04-29T19:41:38.022386Z"}], "thread_id": "Thread-1", "execution_time": 0.023182153701782227, "adapter_response": {}, "message": null, "failures": null, "unique_id": "seed.qualtrics_source_integration_tests.distribution", "compiled": null, "compiled_code": null, "relation_name": null}, {"status": "success", "timing": [{"name": "compile", "started_at": "2024-04-29T19:41:38.013083Z", "completed_at": "2024-04-29T19:41:38.014367Z"}, {"name": "execute", "started_at": "2024-04-29T19:41:38.022645Z", "completed_at": "2024-04-29T19:41:38.022647Z"}], "thread_id": "Thread-7", "execution_time": 0.023262977600097656, "adapter_response": {}, "message": null, "failures": null, "unique_id": "seed.qualtrics_source_integration_tests.distribution_contact", "compiled": null, "compiled_code": null, "relation_name": null}, {"status": "success", "timing": [{"name": "compile", "started_at": "2024-04-29T19:41:38.014690Z", "completed_at": "2024-04-29T19:41:38.015764Z"}, {"name": "execute", "started_at": "2024-04-29T19:41:38.022903Z", "completed_at": "2024-04-29T19:41:38.022906Z"}], "thread_id": "Thread-8", "execution_time": 0.02337479591369629, "adapter_response": {}, "message": null, "failures": null, "unique_id": "seed.qualtrics_source_integration_tests.question", "compiled": null, "compiled_code": null, "relation_name": null}, {"status": "success", "timing": [{"name": "compile", "started_at": "2024-04-29T19:41:38.016280Z", "completed_at": "2024-04-29T19:41:38.018121Z"}, {"name": "execute", "started_at": "2024-04-29T19:41:38.023753Z", "completed_at": "2024-04-29T19:41:38.023756Z"}], "thread_id": "Thread-2", "execution_time": 0.023500919342041016, "adapter_response": {}, "message": null, "failures": null, "unique_id": "seed.qualtrics_source_integration_tests.question_option", "compiled": null, "compiled_code": null, "relation_name": null}, {"status": "success", "timing": [{"name": "compile", "started_at": "2024-04-29T19:41:38.018836Z", "completed_at": "2024-04-29T19:41:38.019815Z"}, {"name": "execute", "started_at": "2024-04-29T19:41:38.024966Z", "completed_at": "2024-04-29T19:41:38.024969Z"}], "thread_id": "Thread-4", "execution_time": 0.023427724838256836, "adapter_response": {}, "message": null, "failures": null, "unique_id": "seed.qualtrics_source_integration_tests.question_response", "compiled": null, "compiled_code": null, "relation_name": null}, {"status": "success", "timing": [{"name": "compile", "started_at": "2024-04-29T19:41:38.033882Z", "completed_at": "2024-04-29T19:41:38.035382Z"}, {"name": "execute", "started_at": "2024-04-29T19:41:38.057960Z", "completed_at": "2024-04-29T19:41:38.057966Z"}], "thread_id": "Thread-5", "execution_time": 0.031075716018676758, "adapter_response": {}, "message": null, "failures": null, "unique_id": "seed.qualtrics_source_integration_tests.sub_question", "compiled": null, "compiled_code": null, "relation_name": null}, {"status": "success", "timing": [{"name": "compile", "started_at": "2024-04-29T19:41:38.036052Z", "completed_at": "2024-04-29T19:41:38.037153Z"}, {"name": "execute", "started_at": "2024-04-29T19:41:38.058468Z", "completed_at": "2024-04-29T19:41:38.058471Z"}], "thread_id": "Thread-3", "execution_time": 0.03111720085144043, "adapter_response": {}, "message": null, "failures": null, "unique_id": "seed.qualtrics_source_integration_tests.survey", "compiled": null, "compiled_code": null, "relation_name": null}, {"status": "success", "timing": [{"name": "compile", "started_at": "2024-04-29T19:41:38.037441Z", "completed_at": "2024-04-29T19:41:38.038459Z"}, {"name": "execute", "started_at": "2024-04-29T19:41:38.058720Z", "completed_at": "2024-04-29T19:41:38.058723Z"}], "thread_id": "Thread-6", "execution_time": 0.031221866607666016, "adapter_response": {}, "message": null, "failures": null, "unique_id": "seed.qualtrics_source_integration_tests.survey_embedded_data", "compiled": null, "compiled_code": null, "relation_name": null}, {"status": "success", "timing": [{"name": "compile", "started_at": "2024-04-29T19:41:38.038948Z", "completed_at": "2024-04-29T19:41:38.039977Z"}, {"name": "execute", "started_at": "2024-04-29T19:41:38.059187Z", "completed_at": "2024-04-29T19:41:38.059190Z"}], "thread_id": "Thread-1", "execution_time": 0.03138470649719238, "adapter_response": {}, "message": null, "failures": null, "unique_id": "seed.qualtrics_source_integration_tests.survey_response", "compiled": null, "compiled_code": null, "relation_name": null}, {"status": "success", "timing": [{"name": "compile", "started_at": "2024-04-29T19:41:38.041363Z", "completed_at": "2024-04-29T19:41:38.042467Z"}, {"name": "execute", "started_at": "2024-04-29T19:41:38.059438Z", "completed_at": "2024-04-29T19:41:38.059440Z"}], "thread_id": "Thread-7", "execution_time": 0.03153109550476074, "adapter_response": {}, "message": null, "failures": null, "unique_id": "seed.qualtrics_source_integration_tests.survey_version", "compiled": null, "compiled_code": null, "relation_name": null}, {"status": "success", "timing": [{"name": "compile", "started_at": "2024-04-29T19:41:38.042839Z", "completed_at": "2024-04-29T19:41:38.044015Z"}, {"name": "execute", "started_at": "2024-04-29T19:41:38.059697Z", "completed_at": "2024-04-29T19:41:38.059701Z"}], "thread_id": "Thread-8", "execution_time": 0.0316617488861084, "adapter_response": {}, "message": null, "failures": null, "unique_id": "seed.qualtrics_source_integration_tests.user", "compiled": null, "compiled_code": null, "relation_name": null}, {"status": "success", "timing": [{"name": "compile", "started_at": "2024-04-29T19:41:38.044602Z", "completed_at": "2024-04-29T19:41:39.055491Z"}, {"name": "execute", "started_at": "2024-04-29T19:41:39.057073Z", "completed_at": "2024-04-29T19:41:39.057081Z"}], "thread_id": "Thread-2", "execution_time": 1.0838069915771484, "adapter_response": {}, "message": null, "failures": null, "unique_id": "model.qualtrics_source.stg_qualtrics__block_question", "compiled": true, "compiled_code": "with base as (\n\n select * \n from \"postgres\".\"qualtrics_source_integration_tests_702_qualtrics_source\".\"stg_qualtrics__block_question_tmp\"\n),\n\nfields as (\n\n select\n \n \n \n _fivetran_deleted\n \n as \n \n _fivetran_deleted\n \n, \n \n \n _fivetran_synced\n \n as \n \n _fivetran_synced\n \n, \n \n \n block_id\n \n as \n \n block_id\n \n, \n \n \n question_id\n \n as \n \n question_id\n \n, \n \n \n survey_id\n \n as \n \n survey_id\n \n\n\n\n\n \n\n\n, cast('' as TEXT) as source_relation\n\n\n\n\n from base\n),\n\nfinal as (\n \n select \n block_id,\n question_id,\n survey_id,\n _fivetran_deleted as is_deleted,\n _fivetran_synced,\n source_relation\n \n from fields\n)\n\nselect *\nfrom final", "relation_name": "\"postgres\".\"qualtrics_source_integration_tests_702_qualtrics_source\".\"stg_qualtrics__block_question\""}, {"status": "success", "timing": [{"name": "compile", "started_at": "2024-04-29T19:41:38.052019Z", "completed_at": "2024-04-29T19:41:39.055938Z"}, {"name": "execute", "started_at": "2024-04-29T19:41:39.057454Z", "completed_at": "2024-04-29T19:41:39.057458Z"}], "thread_id": "Thread-4", "execution_time": 1.0854511260986328, "adapter_response": {}, "message": null, "failures": null, "unique_id": "model.qualtrics_source.stg_qualtrics__block", "compiled": true, "compiled_code": "with base as (\n\n select * \n from \"postgres\".\"qualtrics_source_integration_tests_702_qualtrics_source\".\"stg_qualtrics__block_tmp\"\n),\n\nfields as (\n\n select\n \n \n \n _fivetran_deleted\n \n as \n \n _fivetran_deleted\n \n, \n \n \n _fivetran_synced\n \n as \n \n _fivetran_synced\n \n, \n \n \n block_locking\n \n as \n \n block_locking\n \n, \n \n \n block_visibility\n \n as \n \n block_visibility\n \n, \n \n \n description\n \n as \n \n description\n \n, \n \n \n id\n \n as \n \n id\n \n, \n \n \n randomize_questions\n \n as \n \n randomize_questions\n \n, \n \n \n survey_id\n \n as \n \n survey_id\n \n, \n \n \n type\n \n as \n \n type\n \n\n\n\n\n \n\n\n, cast('' as TEXT) as source_relation\n\n\n\n\n from base\n),\n\nfinal as (\n \n select \n block_locking as is_locked,\n block_visibility,\n description,\n id as block_id,\n randomize_questions,\n survey_id,\n type,\n _fivetran_deleted as is_deleted,\n _fivetran_synced,\n source_relation\n\n from fields\n)\n\nselect *\nfrom final", "relation_name": "\"postgres\".\"qualtrics_source_integration_tests_702_qualtrics_source\".\"stg_qualtrics__block\""}, {"status": "success", "timing": [{"name": "compile", "started_at": "2024-04-29T19:41:38.119772Z", "completed_at": "2024-04-29T19:41:39.162201Z"}, {"name": "execute", "started_at": "2024-04-29T19:41:39.162828Z", "completed_at": "2024-04-29T19:41:39.162836Z"}], "thread_id": "Thread-7", "execution_time": 1.1405060291290283, "adapter_response": {}, "message": null, "failures": null, "unique_id": "model.qualtrics_source.stg_qualtrics__directory_mailing_list", "compiled": true, "compiled_code": "with base as (\n\n select * \n from \"postgres\".\"qualtrics_source_integration_tests_702_qualtrics_source\".\"stg_qualtrics__directory_mailing_list_tmp\"\n),\n\nfields as (\n\n select\n \n \n \n _fivetran_deleted\n \n as \n \n _fivetran_deleted\n \n, \n \n \n _fivetran_synced\n \n as \n \n _fivetran_synced\n \n, \n \n \n creation_date\n \n as \n \n creation_date\n \n, \n \n \n directory_id\n \n as \n \n directory_id\n \n, \n \n \n id\n \n as \n \n id\n \n, \n \n \n last_modified_date\n \n as \n \n last_modified_date\n \n, \n \n \n name\n \n as \n \n name\n \n, \n \n \n owner_id\n \n as \n \n owner_id\n \n\n\n\n\n \n\n\n, cast('' as TEXT) as source_relation\n\n\n\n \n from base\n),\n\nfinal as (\n \n select \n cast(creation_date as timestamp) as created_at,\n directory_id,\n id as mailing_list_id,\n cast(last_modified_date as timestamp) as last_modified_at,\n name,\n owner_id as owner_user_id,\n _fivetran_deleted as is_deleted,\n _fivetran_synced,\n source_relation\n\n from fields\n)\n\nselect *\nfrom final", "relation_name": "\"postgres\".\"qualtrics_source_integration_tests_702_qualtrics_source\".\"stg_qualtrics__directory_mailing_list\""}, {"status": "success", "timing": [{"name": "compile", "started_at": "2024-04-29T19:41:38.114912Z", "completed_at": "2024-04-29T19:41:39.262848Z"}, {"name": "execute", "started_at": "2024-04-29T19:41:39.264901Z", "completed_at": "2024-04-29T19:41:39.264908Z"}], "thread_id": "Thread-1", "execution_time": 1.2460002899169922, "adapter_response": {}, "message": null, "failures": null, "unique_id": "model.qualtrics_source.stg_qualtrics__directory_contact", "compiled": true, "compiled_code": "with base as (\n\n select * \n from \"postgres\".\"qualtrics_source_integration_tests_702_qualtrics_source\".\"stg_qualtrics__directory_contact_tmp\"\n),\n\nfields as (\n\n select\n \n \n \n _fivetran_synced\n \n as \n \n _fivetran_synced\n \n, \n \n \n creation_date\n \n as \n \n creation_date\n \n, \n \n \n directory_id\n \n as \n \n directory_id\n \n, \n \n \n directory_unsubscribe_date\n \n as \n \n directory_unsubscribe_date\n \n, \n \n \n directory_unsubscribed\n \n as \n \n directory_unsubscribed\n \n, \n \n \n email\n \n as \n \n email\n \n, \n \n \n email_domain\n \n as \n \n email_domain\n \n, \n \n \n ext_ref\n \n as \n \n ext_ref\n \n, \n \n \n first_name\n \n as \n \n first_name\n \n, \n \n \n id\n \n as \n \n id\n \n, \n \n \n language\n \n as \n \n language\n \n, \n \n \n last_modified\n \n as \n \n last_modified\n \n, \n \n \n last_name\n \n as \n \n last_name\n \n, \n \n \n phone\n \n as \n \n phone\n \n\n\n\n\n \n\n\n, cast('' as TEXT) as source_relation\n\n\n\n \n from base\n),\n\nfinal as (\n \n select \n cast(creation_date as timestamp) as created_at,\n directory_id,\n cast(directory_unsubscribe_date as timestamp) as unsubscribed_from_directory_at,\n directory_unsubscribed as is_unsubscribed_from_directory,\n lower(email) as email,\n lower(email_domain) as email_domain,\n ext_ref,\n first_name,\n last_name,\n REGEXP_REPLACE(phone, '[^0-9]', '') AS phone, -- remove any non-numeric chars\n id as contact_id,\n language,\n cast(last_modified as timestamp) as last_modified_at,\n _fivetran_synced,\n source_relation\n\n \n\n\n\n\n\n from fields\n)\n\nselect *\nfrom final", "relation_name": "\"postgres\".\"qualtrics_source_integration_tests_702_qualtrics_source\".\"stg_qualtrics__directory_contact\""}, {"status": "success", "timing": [{"name": "compile", "started_at": "2024-04-29T19:41:38.125095Z", "completed_at": "2024-04-29T19:41:39.263214Z"}, {"name": "execute", "started_at": "2024-04-29T19:41:39.265456Z", "completed_at": "2024-04-29T19:41:39.265459Z"}], "thread_id": "Thread-8", "execution_time": 1.2472360134124756, "adapter_response": {}, "message": null, "failures": null, "unique_id": "model.qualtrics_source.stg_qualtrics__directory", "compiled": true, "compiled_code": "with base as (\n\n select * \n from \"postgres\".\"qualtrics_source_integration_tests_702_qualtrics_source\".\"stg_qualtrics__directory_tmp\"\n),\n\nfields as (\n\n select\n \n \n \n _fivetran_deleted\n \n as \n \n _fivetran_deleted\n \n, \n \n \n _fivetran_synced\n \n as \n \n _fivetran_synced\n \n, \n \n \n deduplication_criteria_email\n \n as \n \n deduplication_criteria_email\n \n, \n \n \n deduplication_criteria_external_data_reference\n \n as \n \n deduplication_criteria_external_data_reference\n \n, \n \n \n deduplication_criteria_first_name\n \n as \n \n deduplication_criteria_first_name\n \n, \n \n \n deduplication_criteria_last_name\n \n as \n \n deduplication_criteria_last_name\n \n, \n \n \n deduplication_criteria_phone\n \n as \n \n deduplication_criteria_phone\n \n, \n \n \n id\n \n as \n \n id\n \n, \n \n \n is_default\n \n as \n \n is_default\n \n, \n \n \n name\n \n as \n \n name\n \n\n\n\n\n \n\n\n, cast('' as TEXT) as source_relation\n\n\n\n \n from base\n),\n\nfinal as (\n \n select \n deduplication_criteria_email as is_deduped_on_email,\n deduplication_criteria_external_data_reference as is_deduped_on_ext_ref,\n deduplication_criteria_first_name as is_deduped_on_first_name,\n deduplication_criteria_last_name as is_deduped_on_last_name,\n deduplication_criteria_phone as is_deduped_on_phone,\n id as directory_id,\n is_default,\n name,\n _fivetran_deleted as is_deleted,\n _fivetran_synced,\n source_relation\n\n \n\n\n\n\n\n from fields\n)\n\nselect *\nfrom final", "relation_name": "\"postgres\".\"qualtrics_source_integration_tests_702_qualtrics_source\".\"stg_qualtrics__directory\""}, {"status": "success", "timing": [{"name": "compile", "started_at": "2024-04-29T19:41:38.074057Z", "completed_at": "2024-04-29T19:41:39.263570Z"}, {"name": "execute", "started_at": "2024-04-29T19:41:39.265964Z", "completed_at": "2024-04-29T19:41:39.265967Z"}], "thread_id": "Thread-3", "execution_time": 1.256289005279541, "adapter_response": {}, "message": null, "failures": null, "unique_id": "model.qualtrics_source.stg_qualtrics__core_mailing_list", "compiled": true, "compiled_code": "\n\nwith base as (\n\n select * \n from \"postgres\".\"qualtrics_source_integration_tests_702_qualtrics_source\".\"stg_qualtrics__core_mailing_list_tmp\"\n),\n\nfields as (\n\n select\n \n \n \n _fivetran_deleted\n \n as \n \n _fivetran_deleted\n \n, \n \n \n _fivetran_synced\n \n as \n \n _fivetran_synced\n \n, \n \n \n id\n \n as \n \n id\n \n, \n \n \n library_id\n \n as \n \n library_id\n \n, \n \n \n name\n \n as \n \n name\n \n, \n \n \n category\n \n as \n \n category\n \n, \n \n \n folder\n \n as \n \n folder\n \n\n\n\n\n \n\n\n, cast('' as TEXT) as source_relation\n\n\n\n \n from base\n),\n\nfinal as (\n \n select \n id as mailing_list_id,\n library_id,\n name,\n category,\n folder,\n _fivetran_deleted as is_deleted,\n _fivetran_synced,\n source_relation\n\n from fields\n)\n\nselect *\nfrom final", "relation_name": "\"postgres\".\"qualtrics_source_integration_tests_702_qualtrics_source\".\"stg_qualtrics__core_mailing_list\""}, {"status": "success", "timing": [{"name": "compile", "started_at": "2024-04-29T19:41:38.078173Z", "completed_at": "2024-04-29T19:41:39.265178Z"}, {"name": "execute", "started_at": "2024-04-29T19:41:39.267547Z", "completed_at": "2024-04-29T19:41:39.267551Z"}], "thread_id": "Thread-6", "execution_time": 1.264549970626831, "adapter_response": {}, "message": null, "failures": null, "unique_id": "model.qualtrics_source.stg_qualtrics__contact_mailing_list_membership", "compiled": true, "compiled_code": "with base as (\n\n select * \n from \"postgres\".\"qualtrics_source_integration_tests_702_qualtrics_source\".\"stg_qualtrics__contact_mailing_list_membership_tmp\"\n),\n\nfields as (\n\n select\n \n \n \n _fivetran_synced\n \n as \n \n _fivetran_synced\n \n, \n \n \n contact_id\n \n as \n \n contact_id\n \n, \n \n \n contact_lookup_id\n \n as \n \n contact_lookup_id\n \n, \n \n \n directory_id\n \n as \n \n directory_id\n \n, \n \n \n mailing_list_id\n \n as \n \n mailing_list_id\n \n, \n \n \n name\n \n as \n \n name\n \n, \n \n \n owner_id\n \n as \n \n owner_id\n \n, \n \n \n unsubscribe_date\n \n as \n \n unsubscribe_date\n \n, \n \n \n unsubscribed\n \n as \n \n unsubscribed\n \n\n\n\n\n \n\n\n, cast('' as TEXT) as source_relation\n\n\n\n \n from base\n),\n\nfinal as (\n \n select \n contact_id,\n contact_lookup_id,\n directory_id,\n mailing_list_id,\n name,\n owner_id as owner_user_id,\n cast(unsubscribe_date as timestamp) as unsubscribed_at,\n unsubscribed as is_unsubscribed,\n _fivetran_synced,\n source_relation\n\n from fields\n)\n\nselect *\nfrom final", "relation_name": "\"postgres\".\"qualtrics_source_integration_tests_702_qualtrics_source\".\"stg_qualtrics__contact_mailing_list_membership\""}, {"status": "success", "timing": [{"name": "compile", "started_at": "2024-04-29T19:41:38.068906Z", "completed_at": "2024-04-29T19:41:39.265712Z"}, {"name": "execute", "started_at": "2024-04-29T19:41:39.267864Z", "completed_at": "2024-04-29T19:41:39.267868Z"}], "thread_id": "Thread-5", "execution_time": 1.2660889625549316, "adapter_response": {}, "message": null, "failures": null, "unique_id": "model.qualtrics_source.stg_qualtrics__core_contact", "compiled": true, "compiled_code": "\n\nwith base as (\n\n select * \n from \"postgres\".\"qualtrics_source_integration_tests_702_qualtrics_source\".\"stg_qualtrics__core_contact_tmp\"\n),\n\nfields as (\n\n select\n \n \n \n _fivetran_synced\n \n as \n \n _fivetran_synced\n \n, \n \n \n id\n \n as \n \n id\n \n, \n \n \n mailing_list_id\n \n as \n \n mailing_list_id\n \n, \n \n \n first_name\n \n as \n \n first_name\n \n, \n \n \n last_name\n \n as \n \n last_name\n \n, \n \n \n email\n \n as \n \n email\n \n, \n \n \n external_data_reference\n \n as \n \n external_data_reference\n \n, \n \n \n language\n \n as \n \n language\n \n, \n \n \n unsubscribed\n \n as \n \n unsubscribed\n \n, \n \n \n _fivetran_deleted\n \n as \n \n _fivetran_deleted\n \n\n\n\n \n \n\n\n, cast('' as TEXT) as source_relation\n\n\n\n \n from base\n),\n\nfinal as (\n \n select \n id as contact_id,\n mailing_list_id,\n first_name,\n last_name,\n lower(email) as email,\n \n\n \n \n\n split_part(\n email,\n '@',\n 2\n )\n\n\n \n\n as email_domain,\n external_data_reference,\n language,\n unsubscribed as is_unsubscribed,\n _fivetran_deleted as is_deleted,\n _fivetran_synced,\n source_relation\n\n \n\n\n\n\n\n from fields\n)\n\nselect *\nfrom final", "relation_name": "\"postgres\".\"qualtrics_source_integration_tests_702_qualtrics_source\".\"stg_qualtrics__core_contact\""}, {"status": "success", "timing": [{"name": "compile", "started_at": "2024-04-29T19:41:39.119540Z", "completed_at": "2024-04-29T19:41:39.701101Z"}, {"name": "execute", "started_at": "2024-04-29T19:41:39.702288Z", "completed_at": "2024-04-29T19:41:39.702302Z"}], "thread_id": "Thread-2", "execution_time": 0.6325819492340088, "adapter_response": {}, "message": null, "failures": null, "unique_id": "model.qualtrics_source.stg_qualtrics__distribution_contact", "compiled": true, "compiled_code": "with base as (\n\n select * \n from \"postgres\".\"qualtrics_source_integration_tests_702_qualtrics_source\".\"stg_qualtrics__distribution_contact_tmp\"\n),\n\nfields as (\n\n select\n \n \n \n _fivetran_synced\n \n as \n \n _fivetran_synced\n \n, \n \n \n contact_frequency_rule_id\n \n as \n \n contact_frequency_rule_id\n \n, \n \n \n contact_id\n \n as \n \n contact_id\n \n, \n \n \n contact_lookup_id\n \n as \n \n contact_lookup_id\n \n, \n \n \n distribution_id\n \n as \n \n distribution_id\n \n, \n \n \n opened_at\n \n as \n \n opened_at\n \n, \n \n \n response_completed_at\n \n as \n \n response_completed_at\n \n, \n \n \n response_id\n \n as \n \n response_id\n \n, \n \n \n response_started_at\n \n as \n \n response_started_at\n \n, \n \n \n sent_at\n \n as \n \n sent_at\n \n, \n \n \n status\n \n as \n \n status\n \n, \n \n \n survey_link\n \n as \n \n survey_link\n \n, \n \n \n survey_session_id\n \n as \n \n survey_session_id\n \n\n\n\n\n \n\n\n, cast('' as TEXT) as source_relation\n\n\n\n \n from base\n),\n\nfinal as (\n \n select \n contact_frequency_rule_id,\n contact_id,\n contact_lookup_id,\n distribution_id,\n cast(opened_at as timestamp) as opened_at,\n cast(response_completed_at as timestamp) as response_completed_at,\n response_id,\n cast(response_started_at as timestamp) as response_started_at,\n cast(sent_at as timestamp) as sent_at,\n status,\n survey_link,\n survey_session_id,\n _fivetran_synced,\n source_relation\n\n from fields\n)\n\nselect *\nfrom final", "relation_name": "\"postgres\".\"qualtrics_source_integration_tests_702_qualtrics_source\".\"stg_qualtrics__distribution_contact\""}, {"status": "success", "timing": [{"name": "compile", "started_at": "2024-04-29T19:41:39.128992Z", "completed_at": "2024-04-29T19:41:39.744112Z"}, {"name": "execute", "started_at": "2024-04-29T19:41:39.744846Z", "completed_at": "2024-04-29T19:41:39.744853Z"}], "thread_id": "Thread-4", "execution_time": 0.6653928756713867, "adapter_response": {}, "message": null, "failures": null, "unique_id": "model.qualtrics_source.stg_qualtrics__distribution", "compiled": true, "compiled_code": "with base as (\n\n select * \n from \"postgres\".\"qualtrics_source_integration_tests_702_qualtrics_source\".\"stg_qualtrics__distribution_tmp\"\n),\n\nfields as (\n\n select\n \n \n \n _fivetran_deleted\n \n as \n \n _fivetran_deleted\n \n, \n \n \n _fivetran_synced\n \n as \n \n _fivetran_synced\n \n, \n \n \n created_date\n \n as \n \n created_date\n \n, \n \n \n header_from_email\n \n as \n \n header_from_email\n \n, \n \n \n header_from_name\n \n as \n \n header_from_name\n \n, \n \n \n header_reply_to_email\n \n as \n \n header_reply_to_email\n \n, \n \n \n header_subject\n \n as \n \n header_subject\n \n, \n \n \n id\n \n as \n \n id\n \n, \n \n \n message_library_id\n \n as \n \n message_library_id\n \n, \n \n \n message_message_id\n \n as \n \n message_message_id\n \n, \n \n \n message_message_text\n \n as \n \n message_message_text\n \n, \n \n \n modified_date\n \n as \n \n modified_date\n \n, \n \n \n organization_id\n \n as \n \n organization_id\n \n, \n \n \n owner_id\n \n as \n \n owner_id\n \n, \n \n \n parent_distribution_id\n \n as \n \n parent_distribution_id\n \n, \n \n \n recipient_contact_id\n \n as \n \n recipient_contact_id\n \n, \n \n \n recipient_library_id\n \n as \n \n recipient_library_id\n \n, \n \n \n recipient_mailing_list_id\n \n as \n \n recipient_mailing_list_id\n \n, \n \n \n recipient_sample_id\n \n as \n \n recipient_sample_id\n \n, \n \n \n request_status\n \n as \n \n request_status\n \n, \n \n \n request_type\n \n as \n \n request_type\n \n, \n \n \n send_date\n \n as \n \n send_date\n \n, \n \n \n survey_link_expiration_date\n \n as \n \n survey_link_expiration_date\n \n, \n \n \n survey_link_link_type\n \n as \n \n survey_link_link_type\n \n, \n \n \n survey_link_survey_id\n \n as \n \n survey_link_survey_id\n \n\n\n\n\n \n\n\n, cast('' as TEXT) as source_relation\n\n\n\n \n from base\n),\n\nfinal as (\n \n select \n cast(created_date as timestamp) as created_at,\n header_from_email,\n header_from_name,\n header_reply_to_email,\n header_subject,\n id as distribution_id,\n message_library_id,\n message_message_id as message_id,\n message_message_text as message_text,\n cast(modified_date as timestamp) as last_modified_at,\n organization_id,\n owner_id as owner_user_id,\n parent_distribution_id,\n recipient_contact_id,\n recipient_library_id,\n recipient_mailing_list_id,\n recipient_sample_id,\n request_status,\n request_type,\n cast(send_date as timestamp) as send_at,\n cast(survey_link_expiration_date as timestamp) as survey_link_expires_at,\n survey_link_link_type as survey_link_type,\n survey_link_survey_id as survey_id,\n _fivetran_deleted as is_deleted,\n _fivetran_synced,\n source_relation\n\n \n\n\n\n\n\n from fields\n)\n\nselect *\nfrom final", "relation_name": "\"postgres\".\"qualtrics_source_integration_tests_702_qualtrics_source\".\"stg_qualtrics__distribution\""}, {"status": "success", "timing": [{"name": "compile", "started_at": "2024-04-29T19:41:39.339036Z", "completed_at": "2024-04-29T19:41:39.968365Z"}, {"name": "execute", "started_at": "2024-04-29T19:41:40.012710Z", "completed_at": "2024-04-29T19:41:40.012719Z"}], "thread_id": "Thread-6", "execution_time": 0.7817280292510986, "adapter_response": {}, "message": null, "failures": null, "unique_id": "model.qualtrics_source.stg_qualtrics__survey_embedded_data", "compiled": true, "compiled_code": "with base as (\n\n select * \n from \"postgres\".\"qualtrics_source_integration_tests_702_qualtrics_source\".\"stg_qualtrics__survey_embedded_data_tmp\"\n),\n\nfields as (\n\n select\n \n \n \n _fivetran_synced\n \n as \n \n _fivetran_synced\n \n, \n \n \n import_id\n \n as \n \n import_id\n \n, \n \n \n key\n \n as \n \n key\n \n, \n \n \n response_id\n \n as \n \n response_id\n \n, \n \n \n value\n \n as \n \n value\n \n\n\n\n\n \n\n\n, cast('' as TEXT) as source_relation\n\n\n\n \n from base\n),\n\nfinal as (\n \n select \n import_id,\n key,\n response_id,\n value,\n _fivetran_synced,\n source_relation\n \n from fields\n)\n\nselect *\nfrom final", "relation_name": "\"postgres\".\"qualtrics_source_integration_tests_702_qualtrics_source\".\"stg_qualtrics__survey_embedded_data\""}, {"status": "success", "timing": [{"name": "compile", "started_at": "2024-04-29T19:41:39.209345Z", "completed_at": "2024-04-29T19:41:39.978698Z"}, {"name": "execute", "started_at": "2024-04-29T19:41:40.013104Z", "completed_at": "2024-04-29T19:41:40.013109Z"}], "thread_id": "Thread-7", "execution_time": 0.9198720455169678, "adapter_response": {}, "message": null, "failures": null, "unique_id": "model.qualtrics_source.stg_qualtrics__question_response", "compiled": true, "compiled_code": "with base as (\n\n select * \n from \"postgres\".\"qualtrics_source_integration_tests_702_qualtrics_source\".\"stg_qualtrics__question_response_tmp\"\n),\n\nfields as (\n\n select\n \n \n \n _fivetran_id\n \n as \n \n _fivetran_id\n \n, \n \n \n _fivetran_synced\n \n as \n \n _fivetran_synced\n \n, \n \n \n loop_id\n \n as \n \n loop_id\n \n, \n \n \n question\n \n as \n \n question\n \n, \n \n \n question_id\n \n as \n \n question_id\n \n, \n \n \n question_option_key\n \n as \n \n question_option_key\n \n, \n \n \n response_id\n \n as \n \n response_id\n \n, \n \n \n sub_question_key\n \n as \n \n sub_question_key\n \n, \n \n \n sub_question_text\n \n as \n \n sub_question_text\n \n, \n \n \n value\n \n as \n \n value\n \n\n\n\n \n \n\n\n, cast('' as TEXT) as source_relation\n\n\n\n \n from base\n),\n\nfinal as (\n \n select \n _fivetran_id,\n loop_id,\n question_id,\n question,\n question_option_key,\n response_id,\n sub_question_key,\n sub_question_text,\n value,\n _fivetran_synced,\n source_relation\n \n from fields\n)\n\nselect *\nfrom final", "relation_name": "\"postgres\".\"qualtrics_source_integration_tests_702_qualtrics_source\".\"stg_qualtrics__question_response\""}, {"status": "success", "timing": [{"name": "compile", "started_at": "2024-04-29T19:41:39.315611Z", "completed_at": "2024-04-29T19:41:39.982203Z"}, {"name": "execute", "started_at": "2024-04-29T19:41:40.013695Z", "completed_at": "2024-04-29T19:41:40.013699Z"}], "thread_id": "Thread-1", "execution_time": 0.8150458335876465, "adapter_response": {}, "message": null, "failures": null, "unique_id": "model.qualtrics_source.stg_qualtrics__question_option", "compiled": true, "compiled_code": "with base as (\n\n select * \n from \"postgres\".\"qualtrics_source_integration_tests_702_qualtrics_source\".\"stg_qualtrics__question_option_tmp\"\n),\n\nfields as (\n\n select\n \n \n \n _fivetran_deleted\n \n as \n \n _fivetran_deleted\n \n, \n \n \n _fivetran_synced\n \n as \n \n _fivetran_synced\n \n, \n \n \n key\n \n as \n \n key\n \n, \n \n \n question_id\n \n as \n \n question_id\n \n, \n \n \n recode_value\n \n as \n \n recode_value\n \n, \n \n \n survey_id\n \n as \n \n survey_id\n \n, \n \n \n text\n \n as \n \n text\n \n\n\n\n\n \n\n\n, cast('' as TEXT) as source_relation\n\n\n\n \n from base\n),\n\nfinal as (\n \n select \n question_id,\n survey_id,\n key,\n recode_value,\n text,\n _fivetran_deleted as is_deleted,\n _fivetran_synced,\n source_relation\n \n from fields\n)\n\nselect *\nfrom final", "relation_name": "\"postgres\".\"qualtrics_source_integration_tests_702_qualtrics_source\".\"stg_qualtrics__question_option\""}, {"status": "success", "timing": [{"name": "compile", "started_at": "2024-04-29T19:41:39.343753Z", "completed_at": "2024-04-29T19:41:40.015710Z"}, {"name": "execute", "started_at": "2024-04-29T19:41:40.019106Z", "completed_at": "2024-04-29T19:41:40.019125Z"}], "thread_id": "Thread-5", "execution_time": 0.7916128635406494, "adapter_response": {}, "message": null, "failures": null, "unique_id": "model.qualtrics_source.stg_qualtrics__survey_response", "compiled": true, "compiled_code": "with base as (\n\n select * \n from \"postgres\".\"qualtrics_source_integration_tests_702_qualtrics_source\".\"stg_qualtrics__survey_response_tmp\"\n),\n\nfields as (\n\n select\n \n \n \n _fivetran_synced\n \n as \n \n _fivetran_synced\n \n, \n \n \n distribution_channel\n \n as \n \n distribution_channel\n \n, \n \n \n duration_in_seconds\n \n as \n \n duration_in_seconds\n \n, \n \n \n end_date\n \n as \n \n end_date\n \n, \n \n \n finished\n \n as \n \n finished\n \n, \n \n \n id\n \n as \n \n id\n \n, \n \n \n ip_address\n \n as \n \n ip_address\n \n, \n \n \n last_modified_date\n \n as \n \n last_modified_date\n \n, \n \n \n location_latitude\n \n as \n \n location_latitude\n \n, \n \n \n location_longitude\n \n as \n \n location_longitude\n \n, \n \n \n progress\n \n as \n \n progress\n \n, \n \n \n recipient_email\n \n as \n \n recipient_email\n \n, \n \n \n recipient_first_name\n \n as \n \n recipient_first_name\n \n, \n \n \n recipient_last_name\n \n as \n \n recipient_last_name\n \n, \n \n \n recorded_date\n \n as \n \n recorded_date\n \n, \n \n \n start_date\n \n as \n \n start_date\n \n, \n \n \n status\n \n as \n \n status\n \n, \n \n \n survey_id\n \n as \n \n survey_id\n \n, \n \n \n user_language\n \n as \n \n user_language\n \n\n\n\n\n \n\n\n, cast('' as TEXT) as source_relation\n\n\n\n \n from base\n),\n\nfinal as (\n \n select \n distribution_channel,\n duration_in_seconds,\n cast(end_date as timestamp) as finished_at,\n cast(case when finished = 1 then true else false end as boolean) as is_finished,\n id as response_id,\n ip_address,\n cast(last_modified_date as timestamp) as last_modified_at,\n location_latitude,\n location_longitude,\n progress,\n lower(recipient_email) as recipient_email,\n recipient_first_name,\n recipient_last_name,\n cast(recorded_date as timestamp) as recorded_date,\n cast(start_date as timestamp) as started_at,\n status,\n survey_id,\n user_language,\n _fivetran_synced,\n source_relation\n \n from fields\n)\n\nselect *\nfrom final", "relation_name": "\"postgres\".\"qualtrics_source_integration_tests_702_qualtrics_source\".\"stg_qualtrics__survey_response\""}, {"status": "success", "timing": [{"name": "compile", "started_at": "2024-04-29T19:41:39.323470Z", "completed_at": "2024-04-29T19:41:40.012342Z"}, {"name": "execute", "started_at": "2024-04-29T19:41:40.016936Z", "completed_at": "2024-04-29T19:41:40.016942Z"}], "thread_id": "Thread-8", "execution_time": 0.8087987899780273, "adapter_response": {}, "message": null, "failures": null, "unique_id": "model.qualtrics_source.stg_qualtrics__question", "compiled": true, "compiled_code": "with base as (\n\n select * \n from \"postgres\".\"qualtrics_source_integration_tests_702_qualtrics_source\".\"stg_qualtrics__question_tmp\"\n),\n\nfields as (\n\n select\n \n \n \n _fivetran_deleted\n \n as \n \n _fivetran_deleted\n \n, \n \n \n _fivetran_synced\n \n as \n \n _fivetran_synced\n \n, \n \n \n data_export_tag\n \n as \n \n data_export_tag\n \n, \n \n \n data_visibility_hidden\n \n as \n \n data_visibility_hidden\n \n, \n \n \n data_visibility_private\n \n as \n \n data_visibility_private\n \n, \n \n \n id\n \n as \n \n id\n \n, \n \n \n next_answer_id\n \n as \n \n next_answer_id\n \n, \n \n \n next_choice_id\n \n as \n \n next_choice_id\n \n, \n \n \n question_description\n \n as \n \n question_description\n \n, \n \n \n question_description_option\n \n as \n \n question_description_option\n \n, \n \n \n question_text\n \n as \n \n question_text\n \n, \n \n \n question_text_unsafe\n \n as \n \n question_text_unsafe\n \n, \n \n \n question_type\n \n as \n \n question_type\n \n, \n \n \n selector\n \n as \n \n selector\n \n, \n \n \n sub_selector\n \n as \n \n sub_selector\n \n, \n \n \n survey_id\n \n as \n \n survey_id\n \n, \n \n \n validation_setting_force_response\n \n as \n \n validation_setting_force_response\n \n, \n \n \n validation_setting_force_response_type\n \n as \n \n validation_setting_force_response_type\n \n, \n \n \n validation_setting_type\n \n as \n \n validation_setting_type\n \n\n\n\n\n \n\n\n, cast('' as TEXT) as source_relation\n\n\n\n \n from base\n),\n\nfinal as (\n \n select \n data_export_tag,\n data_visibility_hidden as is_data_hidden,\n data_visibility_private as is_data_private,\n id as question_id,\n next_answer_id,\n next_choice_id,\n question_description,\n question_description_option,\n question_text,\n question_text_unsafe,\n question_type,\n selector,\n sub_selector,\n survey_id,\n validation_setting_force_response,\n validation_setting_force_response_type,\n validation_setting_type,\n _fivetran_deleted as is_deleted,\n _fivetran_synced,\n source_relation\n from fields\n)\n\nselect *\nfrom final", "relation_name": "\"postgres\".\"qualtrics_source_integration_tests_702_qualtrics_source\".\"stg_qualtrics__question\""}, {"status": "success", "timing": [{"name": "compile", "started_at": "2024-04-29T19:41:39.331739Z", "completed_at": "2024-04-29T19:41:40.014292Z"}, {"name": "execute", "started_at": "2024-04-29T19:41:40.017734Z", "completed_at": "2024-04-29T19:41:40.017744Z"}], "thread_id": "Thread-3", "execution_time": 0.801447868347168, "adapter_response": {}, "message": null, "failures": null, "unique_id": "model.qualtrics_source.stg_qualtrics__sub_question", "compiled": true, "compiled_code": "with base as (\n\n select * \n from \"postgres\".\"qualtrics_source_integration_tests_702_qualtrics_source\".\"stg_qualtrics__sub_question_tmp\"\n),\n\nfields as (\n\n select\n \n \n \n _fivetran_deleted\n \n as \n \n _fivetran_deleted\n \n, \n \n \n _fivetran_synced\n \n as \n \n _fivetran_synced\n \n, \n \n \n choice_data_export_tag\n \n as \n \n choice_data_export_tag\n \n, \n \n \n key\n \n as \n \n key\n \n, \n \n \n question_id\n \n as \n \n question_id\n \n, \n \n \n survey_id\n \n as \n \n survey_id\n \n, \n \n \n text\n \n as \n \n text\n \n\n\n\n\n \n\n\n, cast('' as TEXT) as source_relation\n\n\n\n \n from base\n),\n\nfinal as (\n \n select \n choice_data_export_tag,\n key,\n question_id,\n survey_id,\n text,\n _fivetran_deleted as is_deleted,\n _fivetran_synced,\n source_relation\n \n from fields\n)\n\nselect *\nfrom final", "relation_name": "\"postgres\".\"qualtrics_source_integration_tests_702_qualtrics_source\".\"stg_qualtrics__sub_question\""}, {"status": "success", "timing": [{"name": "compile", "started_at": "2024-04-29T19:41:40.145814Z", "completed_at": "2024-04-29T19:41:40.159279Z"}, {"name": "execute", "started_at": "2024-04-29T19:41:40.161621Z", "completed_at": "2024-04-29T19:41:40.161628Z"}], "thread_id": "Thread-1", "execution_time": 0.030161142349243164, "adapter_response": {}, "message": null, "failures": null, "unique_id": "test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__block_block_id__survey_id__source_relation.9105cad472", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n block_id, survey_id, source_relation\n from \"postgres\".\"qualtrics_source_integration_tests_702_qualtrics_source\".\"stg_qualtrics__block\"\n group by block_id, survey_id, source_relation\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "relation_name": null}, {"status": "success", "timing": [{"name": "compile", "started_at": "2024-04-29T19:41:40.135754Z", "completed_at": "2024-04-29T19:41:40.159593Z"}, {"name": "execute", "started_at": "2024-04-29T19:41:40.162113Z", "completed_at": "2024-04-29T19:41:40.162116Z"}], "thread_id": "Thread-7", "execution_time": 0.03141307830810547, "adapter_response": {}, "message": null, "failures": null, "unique_id": "test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__block_question_block_id__question_id__survey_id__source_relation.2fd7c420b5", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n block_id, question_id, survey_id, source_relation\n from \"postgres\".\"qualtrics_source_integration_tests_702_qualtrics_source\".\"stg_qualtrics__block_question\"\n group by block_id, question_id, survey_id, source_relation\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "relation_name": null}, {"status": "success", "timing": [{"name": "compile", "started_at": "2024-04-29T19:41:40.152942Z", "completed_at": "2024-04-29T19:41:40.159981Z"}, {"name": "execute", "started_at": "2024-04-29T19:41:40.162596Z", "completed_at": "2024-04-29T19:41:40.162598Z"}], "thread_id": "Thread-8", "execution_time": 0.030953168869018555, "adapter_response": {}, "message": null, "failures": null, "unique_id": "test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__directory_contact_contact_id__directory_id__source_relation.a3dc488ebf", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n contact_id, directory_id, source_relation\n from \"postgres\".\"qualtrics_source_integration_tests_702_qualtrics_source\".\"stg_qualtrics__directory_contact\"\n group by contact_id, directory_id, source_relation\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "relation_name": null}, {"status": "success", "timing": [{"name": "compile", "started_at": "2024-04-29T19:41:40.149366Z", "completed_at": "2024-04-29T19:41:40.160526Z"}, {"name": "execute", "started_at": "2024-04-29T19:41:40.163477Z", "completed_at": "2024-04-29T19:41:40.163480Z"}], "thread_id": "Thread-5", "execution_time": 0.03224301338195801, "adapter_response": {}, "message": null, "failures": null, "unique_id": "test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__directory_mailing_list_mailing_list_id__directory_id__source_relation.24870adb73", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n mailing_list_id, directory_id, source_relation\n from \"postgres\".\"qualtrics_source_integration_tests_702_qualtrics_source\".\"stg_qualtrics__directory_mailing_list\"\n group by mailing_list_id, directory_id, source_relation\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "relation_name": null}, {"status": "success", "timing": [{"name": "compile", "started_at": "2024-04-29T19:41:40.156061Z", "completed_at": "2024-04-29T19:41:40.161117Z"}, {"name": "execute", "started_at": "2024-04-29T19:41:40.164229Z", "completed_at": "2024-04-29T19:41:40.164232Z"}], "thread_id": "Thread-3", "execution_time": 0.03230404853820801, "adapter_response": {}, "message": null, "failures": null, "unique_id": "test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__directory_directory_id__source_relation.9c637ae3e0", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n directory_id, source_relation\n from \"postgres\".\"qualtrics_source_integration_tests_702_qualtrics_source\".\"stg_qualtrics__directory\"\n group by directory_id, source_relation\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "relation_name": null}, {"status": "success", "timing": [{"name": "compile", "started_at": "2024-04-29T19:41:40.170334Z", "completed_at": "2024-04-29T19:41:40.190008Z"}, {"name": "execute", "started_at": "2024-04-29T19:41:40.190573Z", "completed_at": "2024-04-29T19:41:40.190580Z"}], "thread_id": "Thread-1", "execution_time": 0.023923158645629883, "adapter_response": {}, "message": null, "failures": null, "unique_id": "test.qualtrics_source.not_null_stg_qualtrics__directory_directory_id.65413cdcf7", "compiled": true, "compiled_code": "\n \n \n\n\n\nselect directory_id\nfrom \"postgres\".\"qualtrics_source_integration_tests_702_qualtrics_source\".\"stg_qualtrics__directory\"\nwhere directory_id is null\n\n\n", "relation_name": null}, {"status": "success", "timing": [{"name": "compile", "started_at": "2024-04-29T19:41:40.177522Z", "completed_at": "2024-04-29T19:41:40.192372Z"}, {"name": "execute", "started_at": "2024-04-29T19:41:40.197469Z", "completed_at": "2024-04-29T19:41:40.197474Z"}], "thread_id": "Thread-7", "execution_time": 0.031175851821899414, "adapter_response": {}, "message": null, "failures": null, "unique_id": "test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__core_mailing_list_mailing_list_id__source_relation.fcd78a8fd6", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n mailing_list_id, source_relation\n from \"postgres\".\"qualtrics_source_integration_tests_702_qualtrics_source\".\"stg_qualtrics__core_mailing_list\"\n group by mailing_list_id, source_relation\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "relation_name": null}, {"status": "success", "timing": [{"name": "compile", "started_at": "2024-04-29T19:41:40.180733Z", "completed_at": "2024-04-29T19:41:40.195703Z"}, {"name": "execute", "started_at": "2024-04-29T19:41:40.198232Z", "completed_at": "2024-04-29T19:41:40.198235Z"}], "thread_id": "Thread-8", "execution_time": 0.031579017639160156, "adapter_response": {}, "message": null, "failures": null, "unique_id": "test.qualtrics_source.not_null_stg_qualtrics__core_mailing_list_mailing_list_id.344fbdd6dc", "compiled": true, "compiled_code": "\n \n \n\n\n\nselect mailing_list_id\nfrom \"postgres\".\"qualtrics_source_integration_tests_702_qualtrics_source\".\"stg_qualtrics__core_mailing_list\"\nwhere mailing_list_id is null\n\n\n", "relation_name": null}, {"status": "success", "timing": [{"name": "compile", "started_at": "2024-04-29T19:41:40.183465Z", "completed_at": "2024-04-29T19:41:40.196051Z"}, {"name": "execute", "started_at": "2024-04-29T19:41:40.198488Z", "completed_at": "2024-04-29T19:41:40.198492Z"}], "thread_id": "Thread-5", "execution_time": 0.03149819374084473, "adapter_response": {}, "message": null, "failures": null, "unique_id": "test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__contact_mailing_list_membership_contact_lookup_id__source_relation.943f4b419c", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n contact_lookup_id, source_relation\n from \"postgres\".\"qualtrics_source_integration_tests_702_qualtrics_source\".\"stg_qualtrics__contact_mailing_list_membership\"\n group by contact_lookup_id, source_relation\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "relation_name": null}, {"status": "success", "timing": [{"name": "compile", "started_at": "2024-04-29T19:41:40.186698Z", "completed_at": "2024-04-29T19:41:40.196632Z"}, {"name": "execute", "started_at": "2024-04-29T19:41:40.199558Z", "completed_at": "2024-04-29T19:41:40.199561Z"}], "thread_id": "Thread-3", "execution_time": 0.032070159912109375, "adapter_response": {}, "message": null, "failures": null, "unique_id": "test.qualtrics_source.not_null_stg_qualtrics__contact_mailing_list_membership_contact_lookup_id.32d4d7bbf5", "compiled": true, "compiled_code": "\n \n \n\n\n\nselect contact_lookup_id\nfrom \"postgres\".\"qualtrics_source_integration_tests_702_qualtrics_source\".\"stg_qualtrics__contact_mailing_list_membership\"\nwhere contact_lookup_id is null\n\n\n", "relation_name": null}, {"status": "success", "timing": [{"name": "compile", "started_at": "2024-04-29T19:41:40.192687Z", "completed_at": "2024-04-29T19:41:40.197734Z"}, {"name": "execute", "started_at": "2024-04-29T19:41:40.201301Z", "completed_at": "2024-04-29T19:41:40.201307Z"}], "thread_id": "Thread-1", "execution_time": 0.011748075485229492, "adapter_response": {}, "message": null, "failures": null, "unique_id": "test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__core_contact_contact_id__mailing_list_id__source_relation.fbdaf339c9", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n contact_id, mailing_list_id, source_relation\n from \"postgres\".\"qualtrics_source_integration_tests_702_qualtrics_source\".\"stg_qualtrics__core_contact\"\n group by contact_id, mailing_list_id, source_relation\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "relation_name": null}, {"status": "success", "timing": [{"name": "compile", "started_at": "2024-04-29T19:41:40.206287Z", "completed_at": "2024-04-29T19:41:40.225244Z"}, {"name": "execute", "started_at": "2024-04-29T19:41:40.227743Z", "completed_at": "2024-04-29T19:41:40.227754Z"}], "thread_id": "Thread-7", "execution_time": 0.026641845703125, "adapter_response": {}, "message": null, "failures": null, "unique_id": "test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__distribution_contact_contact_id__distribution_id__source_relation.b40826e6b2", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n contact_id, distribution_id, source_relation\n from \"postgres\".\"qualtrics_source_integration_tests_702_qualtrics_source\".\"stg_qualtrics__distribution_contact\"\n group by contact_id, distribution_id, source_relation\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "relation_name": null}, {"status": "success", "timing": [{"name": "compile", "started_at": "2024-04-29T19:41:40.211466Z", "completed_at": "2024-04-29T19:41:40.225728Z"}, {"name": "execute", "started_at": "2024-04-29T19:41:40.228042Z", "completed_at": "2024-04-29T19:41:40.228046Z"}], "thread_id": "Thread-8", "execution_time": 0.025927066802978516, "adapter_response": {}, "message": null, "failures": null, "unique_id": "test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__distribution_distribution_id__source_relation.312f709e9c", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n distribution_id, source_relation\n from \"postgres\".\"qualtrics_source_integration_tests_702_qualtrics_source\".\"stg_qualtrics__distribution\"\n group by distribution_id, source_relation\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "relation_name": null}, {"status": "success", "timing": [{"name": "compile", "started_at": "2024-04-29T19:41:40.214849Z", "completed_at": "2024-04-29T19:41:40.226056Z"}, {"name": "execute", "started_at": "2024-04-29T19:41:40.228868Z", "completed_at": "2024-04-29T19:41:40.228872Z"}], "thread_id": "Thread-5", "execution_time": 0.026654958724975586, "adapter_response": {}, "message": null, "failures": null, "unique_id": "test.qualtrics_source.not_null_stg_qualtrics__distribution_distribution_id.6158e414ed", "compiled": true, "compiled_code": "\n \n \n\n\n\nselect distribution_id\nfrom \"postgres\".\"qualtrics_source_integration_tests_702_qualtrics_source\".\"stg_qualtrics__distribution\"\nwhere distribution_id is null\n\n\n", "relation_name": null}, {"status": "success", "timing": [{"name": "compile", "started_at": "2024-04-29T19:41:40.218064Z", "completed_at": "2024-04-29T19:41:40.226915Z"}, {"name": "execute", "started_at": "2024-04-29T19:41:40.230368Z", "completed_at": "2024-04-29T19:41:40.230373Z"}], "thread_id": "Thread-3", "execution_time": 0.026863813400268555, "adapter_response": {}, "message": null, "failures": null, "unique_id": "test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__survey_embedded_data_import_id__response_id__key__value__source_relation.73ba345920", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n import_id, response_id, key, value, source_relation\n from \"postgres\".\"qualtrics_source_integration_tests_702_qualtrics_source\".\"stg_qualtrics__survey_embedded_data\"\n group by import_id, response_id, key, value, source_relation\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "relation_name": null}, {"status": "success", "timing": [{"name": "compile", "started_at": "2024-04-29T19:41:40.222199Z", "completed_at": "2024-04-29T19:41:40.227213Z"}, {"name": "execute", "started_at": "2024-04-29T19:41:40.230677Z", "completed_at": "2024-04-29T19:41:40.230681Z"}], "thread_id": "Thread-1", "execution_time": 0.02210521697998047, "adapter_response": {}, "message": null, "failures": null, "unique_id": "test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__question_option_question_id__survey_id__key__source_relation.af5af3057f", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n question_id, survey_id, key, source_relation\n from \"postgres\".\"qualtrics_source_integration_tests_702_qualtrics_source\".\"stg_qualtrics__question_option\"\n group by question_id, survey_id, key, source_relation\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "relation_name": null}, {"status": "success", "timing": [{"name": "compile", "started_at": "2024-04-29T19:41:40.237056Z", "completed_at": "2024-04-29T19:41:40.294343Z"}, {"name": "execute", "started_at": "2024-04-29T19:41:40.296205Z", "completed_at": "2024-04-29T19:41:40.296212Z"}], "thread_id": "Thread-7", "execution_time": 0.0643918514251709, "adapter_response": {}, "message": null, "failures": null, "unique_id": "test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__question_response__fivetran_id__source_relation.2e0556a912", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n _fivetran_id, source_relation\n from \"postgres\".\"qualtrics_source_integration_tests_702_qualtrics_source\".\"stg_qualtrics__question_response\"\n group by _fivetran_id, source_relation\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "relation_name": null}, {"status": "success", "timing": [{"name": "compile", "started_at": "2024-04-29T19:41:40.281803Z", "completed_at": "2024-04-29T19:41:40.294713Z"}, {"name": "execute", "started_at": "2024-04-29T19:41:40.297048Z", "completed_at": "2024-04-29T19:41:40.297051Z"}], "thread_id": "Thread-8", "execution_time": 0.06505393981933594, "adapter_response": {}, "message": null, "failures": null, "unique_id": "test.qualtrics_source.not_null_stg_qualtrics__question_response__fivetran_id.6e47cc53d7", "compiled": true, "compiled_code": "\n \n \n\n\n\nselect _fivetran_id\nfrom \"postgres\".\"qualtrics_source_integration_tests_702_qualtrics_source\".\"stg_qualtrics__question_response\"\nwhere _fivetran_id is null\n\n\n", "relation_name": null}, {"status": "success", "timing": [{"name": "compile", "started_at": "2024-04-29T19:41:40.285050Z", "completed_at": "2024-04-29T19:41:40.295371Z"}, {"name": "execute", "started_at": "2024-04-29T19:41:40.298421Z", "completed_at": "2024-04-29T19:41:40.298424Z"}], "thread_id": "Thread-5", "execution_time": 0.065155029296875, "adapter_response": {}, "message": null, "failures": null, "unique_id": "test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__question_question_id__survey_id__source_relation.1e5f78924a", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n question_id, survey_id, source_relation\n from \"postgres\".\"qualtrics_source_integration_tests_702_qualtrics_source\".\"stg_qualtrics__question\"\n group by question_id, survey_id, source_relation\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "relation_name": null}, {"status": "success", "timing": [{"name": "compile", "started_at": "2024-04-29T19:41:40.288324Z", "completed_at": "2024-04-29T19:41:40.295906Z"}, {"name": "execute", "started_at": "2024-04-29T19:41:40.299189Z", "completed_at": "2024-04-29T19:41:40.299193Z"}], "thread_id": "Thread-3", "execution_time": 0.06476497650146484, "adapter_response": {}, "message": null, "failures": null, "unique_id": "test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__survey_response_response_id__source_relation.c97ddff72b", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n response_id, source_relation\n from \"postgres\".\"qualtrics_source_integration_tests_702_qualtrics_source\".\"stg_qualtrics__survey_response\"\n group by response_id, source_relation\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "relation_name": null}, {"status": "success", "timing": [{"name": "compile", "started_at": "2024-04-29T19:41:40.291386Z", "completed_at": "2024-04-29T19:41:40.296502Z"}, {"name": "execute", "started_at": "2024-04-29T19:41:40.299795Z", "completed_at": "2024-04-29T19:41:40.299797Z"}], "thread_id": "Thread-1", "execution_time": 0.06524419784545898, "adapter_response": {}, "message": null, "failures": null, "unique_id": "test.qualtrics_source.not_null_stg_qualtrics__survey_response_response_id.864d3a83e3", "compiled": true, "compiled_code": "\n \n \n\n\n\nselect response_id\nfrom \"postgres\".\"qualtrics_source_integration_tests_702_qualtrics_source\".\"stg_qualtrics__survey_response\"\nwhere response_id is null\n\n\n", "relation_name": null}, {"status": "success", "timing": [{"name": "compile", "started_at": "2024-04-29T19:41:40.302387Z", "completed_at": "2024-04-29T19:41:40.306647Z"}, {"name": "execute", "started_at": "2024-04-29T19:41:40.307181Z", "completed_at": "2024-04-29T19:41:40.307186Z"}], "thread_id": "Thread-7", "execution_time": 0.006488800048828125, "adapter_response": {}, "message": null, "failures": null, "unique_id": "test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__sub_question_question_id__survey_id__key__source_relation.12c68e2ef2", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n question_id, survey_id, key, source_relation\n from \"postgres\".\"qualtrics_source_integration_tests_702_qualtrics_source\".\"stg_qualtrics__sub_question\"\n group by question_id, survey_id, key, source_relation\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "relation_name": null}, {"status": "success", "timing": [{"name": "compile", "started_at": "2024-04-29T19:41:39.751906Z", "completed_at": "2024-04-29T19:41:40.510977Z"}, {"name": "execute", "started_at": "2024-04-29T19:41:40.511722Z", "completed_at": "2024-04-29T19:41:40.511729Z"}], "thread_id": "Thread-2", "execution_time": 0.8269410133361816, "adapter_response": {}, "message": null, "failures": null, "unique_id": "model.qualtrics_source.stg_qualtrics__survey", "compiled": true, "compiled_code": "with base as (\n\n select * \n from \"postgres\".\"qualtrics_source_integration_tests_702_qualtrics_source\".\"stg_qualtrics__survey_tmp\"\n),\n\nfields as (\n\n select\n \n \n \n _fivetran_deleted\n \n as \n \n _fivetran_deleted\n \n, \n \n \n _fivetran_synced\n \n as \n \n _fivetran_synced\n \n, \n \n \n auto_scoring_category\n \n as \n \n auto_scoring_category\n \n, \n \n \n brand_base_url\n \n as \n \n brand_base_url\n \n, \n \n \n brand_id\n \n as \n \n brand_id\n \n, \n \n \n bundle_short_name\n \n as \n \n bundle_short_name\n \n, \n \n \n composition_type\n \n as \n \n composition_type\n \n, \n \n \n creator_id\n \n as \n \n creator_id\n \n, \n \n \n default_scoring_category\n \n as \n \n default_scoring_category\n \n, \n \n \n division_id\n \n as \n \n division_id\n \n, \n \n \n id\n \n as \n \n id\n \n, \n \n \n last_accessed\n \n as \n \n last_accessed\n \n, \n \n \n last_activated\n \n as \n \n last_activated\n \n, \n \n \n last_modified\n \n as \n \n last_modified\n \n, \n \n \n owner_id\n \n as \n \n owner_id\n \n, \n \n \n project_category\n \n as \n \n project_category\n \n, \n \n \n project_type\n \n as \n \n project_type\n \n, \n \n \n registry_sha\n \n as \n \n registry_sha\n \n, \n \n \n registry_version\n \n as \n \n registry_version\n \n, \n \n \n schema_version\n \n as \n \n schema_version\n \n, \n \n \n scoring_summary_after_questions\n \n as \n \n scoring_summary_after_questions\n \n, \n \n \n scoring_summary_after_survey\n \n as \n \n scoring_summary_after_survey\n \n, \n \n \n scoring_summary_category\n \n as \n \n scoring_summary_category\n \n, \n \n \n survey_name\n \n as \n \n survey_name\n \n, \n \n \n survey_status\n \n as \n \n survey_status\n \n\n\n\n\n \n\n\n, cast('' as TEXT) as source_relation\n\n\n\n \n from base\n),\n\nfinal as (\n \n select \n id as survey_id,\n survey_name,\n survey_status,\n brand_base_url,\n brand_id,\n bundle_short_name,\n composition_type,\n auto_scoring_category,\n default_scoring_category,\n division_id,\n creator_id as creator_user_id,\n owner_id as owner_user_id,\n project_category,\n project_type,\n registry_sha,\n registry_version,\n schema_version,\n scoring_summary_after_questions,\n scoring_summary_after_survey,\n scoring_summary_category,\n cast(last_accessed as timestamp) as last_accessed_at,\n cast(last_activated as timestamp) as last_activated_at,\n cast(last_modified as timestamp) as last_modified_at,\n _fivetran_deleted as is_deleted,\n _fivetran_synced,\n source_relation\n\n \n\n\n\n\n\n from fields\n)\n\nselect *\nfrom final", "relation_name": "\"postgres\".\"qualtrics_source_integration_tests_702_qualtrics_source\".\"stg_qualtrics__survey\""}, {"status": "success", "timing": [{"name": "compile", "started_at": "2024-04-29T19:41:39.794632Z", "completed_at": "2024-04-29T19:41:40.530263Z"}, {"name": "execute", "started_at": "2024-04-29T19:41:40.531217Z", "completed_at": "2024-04-29T19:41:40.531223Z"}], "thread_id": "Thread-4", "execution_time": 0.7932002544403076, "adapter_response": {}, "message": null, "failures": null, "unique_id": "model.qualtrics_source.stg_qualtrics__survey_version", "compiled": true, "compiled_code": "with base as (\n\n select * \n from \"postgres\".\"qualtrics_source_integration_tests_702_qualtrics_source\".\"stg_qualtrics__survey_version_tmp\"\n),\n\nfields as (\n\n select\n \n \n \n _fivetran_deleted\n \n as \n \n _fivetran_deleted\n \n, \n \n \n _fivetran_synced\n \n as \n \n _fivetran_synced\n \n, \n \n \n creation_date\n \n as \n \n creation_date\n \n, \n \n \n description\n \n as \n \n description\n \n, \n \n \n id\n \n as \n \n id\n \n, \n \n \n published\n \n as \n \n published\n \n, \n \n \n survey_id\n \n as \n \n survey_id\n \n, \n \n \n user_id\n \n as \n \n user_id\n \n, \n \n \n version_number\n \n as \n \n version_number\n \n, \n \n \n was_published\n \n as \n \n was_published\n \n\n\n\n\n \n\n\n, cast('' as TEXT) as source_relation\n\n\n\n \n from base\n),\n\nfinal as (\n \n select \n cast(creation_date as timestamp) as created_at,\n description as version_description,\n id as version_id,\n published as is_published,\n survey_id,\n user_id as publisher_user_id,\n version_number,\n was_published,\n _fivetran_deleted as is_deleted,\n _fivetran_synced,\n source_relation\n \n from fields\n)\n\nselect *\nfrom final", "relation_name": "\"postgres\".\"qualtrics_source_integration_tests_702_qualtrics_source\".\"stg_qualtrics__survey_version\""}, {"status": "success", "timing": [{"name": "compile", "started_at": "2024-04-29T19:41:40.581962Z", "completed_at": "2024-04-29T19:41:40.592710Z"}, {"name": "execute", "started_at": "2024-04-29T19:41:40.598303Z", "completed_at": "2024-04-29T19:41:40.598311Z"}], "thread_id": "Thread-8", "execution_time": 0.02039504051208496, "adapter_response": {}, "message": null, "failures": null, "unique_id": "test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__survey_survey_id__source_relation.a1fd5a2968", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n survey_id, source_relation\n from \"postgres\".\"qualtrics_source_integration_tests_702_qualtrics_source\".\"stg_qualtrics__survey\"\n group by survey_id, source_relation\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "relation_name": null}, {"status": "success", "timing": [{"name": "compile", "started_at": "2024-04-29T19:41:40.587340Z", "completed_at": "2024-04-29T19:41:40.597240Z"}, {"name": "execute", "started_at": "2024-04-29T19:41:40.598668Z", "completed_at": "2024-04-29T19:41:40.598672Z"}], "thread_id": "Thread-5", "execution_time": 0.02030205726623535, "adapter_response": {}, "message": null, "failures": null, "unique_id": "test.qualtrics_source.not_null_stg_qualtrics__survey_survey_id.2796651e04", "compiled": true, "compiled_code": "\n \n \n\n\n\nselect survey_id\nfrom \"postgres\".\"qualtrics_source_integration_tests_702_qualtrics_source\".\"stg_qualtrics__survey\"\nwhere survey_id is null\n\n\n", "relation_name": null}, {"status": "success", "timing": [{"name": "compile", "started_at": "2024-04-29T19:41:40.593089Z", "completed_at": "2024-04-29T19:41:40.599018Z"}, {"name": "execute", "started_at": "2024-04-29T19:41:40.601362Z", "completed_at": "2024-04-29T19:41:40.601366Z"}], "thread_id": "Thread-1", "execution_time": 0.010272026062011719, "adapter_response": {}, "message": null, "failures": null, "unique_id": "test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__survey_version_version_id__survey_id__source_relation.513ef528c1", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n version_id, survey_id, source_relation\n from \"postgres\".\"qualtrics_source_integration_tests_702_qualtrics_source\".\"stg_qualtrics__survey_version\"\n group by version_id, survey_id, source_relation\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "relation_name": null}, {"status": "success", "timing": [{"name": "compile", "started_at": "2024-04-29T19:41:40.120474Z", "completed_at": "2024-04-29T19:41:40.751462Z"}, {"name": "execute", "started_at": "2024-04-29T19:41:40.752277Z", "completed_at": "2024-04-29T19:41:40.752285Z"}], "thread_id": "Thread-6", "execution_time": 0.6817660331726074, "adapter_response": {}, "message": null, "failures": null, "unique_id": "model.qualtrics_source.stg_qualtrics__user", "compiled": true, "compiled_code": "with base as (\n\n select * \n from \"postgres\".\"qualtrics_source_integration_tests_702_qualtrics_source\".\"stg_qualtrics__user_tmp\"\n),\n\nfields as (\n\n select\n \n \n \n _fivetran_deleted\n \n as \n \n _fivetran_deleted\n \n, \n \n \n _fivetran_synced\n \n as \n \n _fivetran_synced\n \n, \n \n \n account_creation_date\n \n as \n \n account_creation_date\n \n, \n \n \n account_expiration_date\n \n as \n \n account_expiration_date\n \n, \n \n \n account_status\n \n as \n \n account_status\n \n, \n \n \n division_id\n \n as \n \n division_id\n \n, \n \n \n email\n \n as \n \n email\n \n, \n \n \n first_name\n \n as \n \n first_name\n \n, \n \n \n id\n \n as \n \n id\n \n, \n \n \n language\n \n as \n \n language\n \n, \n \n \n last_login_date\n \n as \n \n last_login_date\n \n, \n \n \n last_name\n \n as \n \n last_name\n \n, \n \n \n organization_id\n \n as \n \n organization_id\n \n, \n \n \n password_expiration_date\n \n as \n \n password_expiration_date\n \n, \n \n \n password_last_changed_date\n \n as \n \n password_last_changed_date\n \n, \n \n \n response_count_auditable\n \n as \n \n response_count_auditable\n \n, \n \n \n response_count_deleted\n \n as \n \n response_count_deleted\n \n, \n \n \n response_count_generated\n \n as \n \n response_count_generated\n \n, \n \n \n time_zone\n \n as \n \n time_zone\n \n, \n \n \n unsubscribed\n \n as \n \n unsubscribed\n \n, \n \n \n user_type\n \n as \n \n user_type\n \n, \n \n \n username\n \n as \n \n username\n \n\n\n\n\n \n\n\n, cast('' as TEXT) as source_relation\n\n\n\n \n from base\n),\n\nfinal as (\n \n select \n cast(account_creation_date as timestamp) as account_created_at,\n cast(account_expiration_date as timestamp) as account_expires_at,\n account_status,\n division_id,\n email,\n first_name,\n id as user_id,\n language,\n cast(last_login_date as timestamp) as last_login_at,\n last_name,\n organization_id,\n cast(password_expiration_date as timestamp) as password_expires_at,\n cast(password_last_changed_date as timestamp) as password_last_changed_at,\n response_count_auditable,\n response_count_deleted,\n response_count_generated,\n time_zone,\n unsubscribed as is_unsubscribed,\n user_type,\n username,\n _fivetran_deleted as is_deleted,\n _fivetran_synced,\n source_relation\n from fields\n)\n\nselect *\nfrom final", "relation_name": "\"postgres\".\"qualtrics_source_integration_tests_702_qualtrics_source\".\"stg_qualtrics__user\""}, {"status": "success", "timing": [{"name": "compile", "started_at": "2024-04-29T19:41:40.811855Z", "completed_at": "2024-04-29T19:41:40.816755Z"}, {"name": "execute", "started_at": "2024-04-29T19:41:40.818072Z", "completed_at": "2024-04-29T19:41:40.818080Z"}], "thread_id": "Thread-3", "execution_time": 0.014581918716430664, "adapter_response": {}, "message": null, "failures": null, "unique_id": "test.qualtrics_source.not_null_stg_qualtrics__user_user_id.816e912ff9", "compiled": true, "compiled_code": "\n \n \n\n\n\nselect user_id\nfrom \"postgres\".\"qualtrics_source_integration_tests_702_qualtrics_source\".\"stg_qualtrics__user\"\nwhere user_id is null\n\n\n", "relation_name": null}, {"status": "success", "timing": [{"name": "compile", "started_at": "2024-04-29T19:41:40.806049Z", "completed_at": "2024-04-29T19:41:40.817623Z"}, {"name": "execute", "started_at": "2024-04-29T19:41:40.819591Z", "completed_at": "2024-04-29T19:41:40.819595Z"}], "thread_id": "Thread-2", "execution_time": 0.0166168212890625, "adapter_response": {}, "message": null, "failures": null, "unique_id": "test.qualtrics_source.dbt_utils_unique_combination_of_columns_stg_qualtrics__user_user_id__source_relation.73c4de157d", "compiled": true, "compiled_code": "\n\n\n\n\n\nwith validation_errors as (\n\n select\n user_id, source_relation\n from \"postgres\".\"qualtrics_source_integration_tests_702_qualtrics_source\".\"stg_qualtrics__user\"\n group by user_id, source_relation\n having count(*) > 1\n\n)\n\nselect *\nfrom validation_errors\n\n\n", "relation_name": null}], "elapsed_time": 4.747949838638306, "args": {"introspect": true, "partial_parse": true, "favor_state": false, "static": false, "print": true, "enable_legacy_logger": false, "invocation_command": "dbt docs generate", "project_dir": "/Users/catherinefritz/Documents/dbt_packages/qualtrics/dbt_qualtrics_source/integration_tests", "log_format_file": "debug", "compile": true, "show_resource_report": false, "indirect_selection": "eager", "defer": false, "warn_error_options": {"include": [], "exclude": []}, "log_file_max_bytes": 10485760, "quiet": false, "use_colors": true, "exclude": [], "log_path": "/Users/catherinefritz/Documents/dbt_packages/qualtrics/dbt_qualtrics_source/integration_tests/logs", "cache_selected_only": false, "partial_parse_file_diff": true, "vars": {}, "select": [], "printer_width": 80, "send_anonymous_usage_stats": true, "log_format": "default", "use_colors_file": true, "which": "generate", "populate_cache": true, "static_parser": true, "macro_debugging": false, "write_json": true, "log_level_file": "debug", "profiles_dir": "/Users/catherinefritz/.dbt", "strict_mode": false, "version_check": true, "empty_catalog": false, "log_level": "info"}} \ No newline at end of file