From f687bb7c0e7b45467fc2b430c7d7d0eb6bbc9f38 Mon Sep 17 00:00:00 2001 From: Joe Markiewicz <74217849+fivetran-joemarkiewicz@users.noreply.github.com> Date: Fri, 22 Mar 2024 14:21:34 -0500 Subject: [PATCH 1/8] bugfix/timestamp-without-time-zone --- .../maintainer_pull_request_template.md | 45 +++++------------- .github/workflows/auto-release.yml | 13 +++++ CHANGELOG.md | 47 ++++++++++++++++++- README.md | 2 +- dbt_project.yml | 2 +- integration_tests/dbt_project.yml | 2 +- models/stg_qualtrics__directory_contact.sql | 6 +-- .../stg_qualtrics__directory_mailing_list.sql | 4 +- models/stg_qualtrics__distribution.sql | 8 ++-- .../stg_qualtrics__distribution_contact.sql | 8 ++-- models/stg_qualtrics__survey.sql | 6 +-- models/stg_qualtrics__survey_response.sql | 6 +-- models/stg_qualtrics__survey_version.sql | 2 +- models/stg_qualtrics__user.sql | 10 ++-- 14 files changed, 99 insertions(+), 62 deletions(-) create mode 100644 .github/workflows/auto-release.yml diff --git a/.github/PULL_REQUEST_TEMPLATE/maintainer_pull_request_template.md b/.github/PULL_REQUEST_TEMPLATE/maintainer_pull_request_template.md index 768ac3f..45317d2 100644 --- a/.github/PULL_REQUEST_TEMPLATE/maintainer_pull_request_template.md +++ b/.github/PULL_REQUEST_TEMPLATE/maintainer_pull_request_template.md @@ -4,48 +4,27 @@ **This PR will result in the following new package version:** -**Please detail what change(s) this PR introduces and any additional information that should be known during the review of this PR:** +**Please provide the finalized CHANGELOG entry which details the relevant changes included in this PR:** + ## PR Checklist ### Basic Validation Please acknowledge that you have successfully performed the following commands locally: -- [ ] dbt compile -- [ ] dbt run –full-refresh -- [ ] dbt run -- [ ] dbt test -- [ ] dbt run –vars (if applicable) +- [ ] dbt run –full-refresh && dbt test +- [ ] dbt run (if incremental models are present) Before marking this PR as "ready for review" the following have been applied: -- [ ] The appropriate issue has been linked and tagged -- [ ] You are assigned to the corresponding issue and this PR -- [ ] BuildKite integration tests are passing +- [ ] The appropriate issue has been linked, tagged, and properly assigned. +- [ ] All necessary documentation and version upgrades have been applied. + +- [ ] docs were regenerated (unless this PR does not include any code or yml updates). +- [ ] BuildKite integration tests are passing. +- [ ] Detailed validation steps have been provided below. ### Detailed Validation -Please acknowledge that the following validation checks have been performed prior to marking this PR as "ready for review": -- [ ] You have validated these changes and assure this PR will address the respective Issue/Feature. -- [ ] You are reasonably confident these changes will not impact any other components of this package or any dependent packages. -- [ ] You have provided details below around the validation steps performed to gain confidence in these changes. +Please share any and all of your validation steps: -### Standard Updates -Please acknowledge that your PR contains the following standard updates: -- Package versioning has been appropriately indexed in the following locations: - - [ ] indexed within dbt_project.yml - - [ ] indexed within integration_tests/dbt_project.yml -- [ ] CHANGELOG has individual entries for each respective change in this PR - -- [ ] README updates have been applied (if applicable) - -- [ ] DECISIONLOG updates have been updated (if applicable) -- [ ] Appropriate yml documentation has been added (if applicable) - -### dbt Docs -Please acknowledge that after the above were all completed the below were applied to your branch: -- [ ] docs were regenerated (unless this PR does not include any code or yml updates) - ### If you had to summarize this PR in an emoji, which would it be? -:dancer: +💃 \ No newline at end of file diff --git a/.github/workflows/auto-release.yml b/.github/workflows/auto-release.yml new file mode 100644 index 0000000..8ed5853 --- /dev/null +++ b/.github/workflows/auto-release.yml @@ -0,0 +1,13 @@ +name: 'auto release' +on: + pull_request: + types: + - closed + branches: + - main + +jobs: + call-workflow-passing-data: + if: github.event.pull_request.merged + uses: fivetran/dbt_package_automations/.github/workflows/auto-release.yml@main + secrets: inherit \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index a17df5a..9c85fce 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,2 +1,47 @@ -# dbt_qualtrics_source +# v0.2.0 dbt_qualtrics_source + +## 🚨 Breaking Changes: Bug Fixes 🚨 +- Casted the following timestamp fields in the below models using the `dbt.type_timestamp()` macro. This is necessary to ensure all timestamps are consistently casted and do not experience datatype mismatches in downstream transformations. + - stg_qualtrics__directory_contact + - created_at + - unsubscribed_from_directory_at + - last_modified_at + - stg_qualtrics__directory_mailing_list + - created_at + - last_modified_at + - stg_qualtrics__distribution_contact + - opened_at + - response_completed_at + - response_started_at + - sent_at + - stg_qualtrics__distribution + - created_at + - last_modified_at + - send_at + - survey_link_expires_at + - stg_qualtrics__survey_response + - finished_at + - is_finished + - last_modified_at + - started_at + - stg_qualtrics__survey_version + - created_at + - stg_qualtrics__survey + - last_accessed_at + - last_activated_at + - last_modified_at + - stg_qualtrics__user + - account_created_at + - account_expires_at + - last_login_at + - password_expires_at + - password_last_changed_at + +> Please note: this update will likely only impact Redshift destinations as it was found the connector synced these fields as `timestamp with time zone` when in fact they were without. Most users will not see any changes following this release. But we marked this as breaking to ensure no possible datatype conflicts downstream. + +## Under the Hood +- Updated the maintainer PR template to resemble the most up to date format. +- Added the auto release GitHub Action for easier deployment. + +# v0.1.0 dbt_qualtrics_source Initial release! \ No newline at end of file diff --git a/README.md b/README.md index 88b66c1..687e4f7 100644 --- a/README.md +++ b/README.md @@ -45,7 +45,7 @@ If you are **not** using the [Qualtrics transformation package](https://github. ```yml packages: - package: fivetran/qualtrics_source - version: [">=0.1.0", "<0.2.0"] # we recommend using ranges to capture non-breaking changes automatically + version: [">=0.2.0", "<0.3.0"] # we recommend using ranges to capture non-breaking changes automatically ``` ## Step 3: Define database and schema variables diff --git a/dbt_project.yml b/dbt_project.yml index d5b74a6..7ec5177 100644 --- a/dbt_project.yml +++ b/dbt_project.yml @@ -1,5 +1,5 @@ name: 'qualtrics_source' -version: '0.1.0' +version: '0.2.0' 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 851a814..4fd81f9 100644 --- a/integration_tests/dbt_project.yml +++ b/integration_tests/dbt_project.yml @@ -1,5 +1,5 @@ name: 'qualtrics_source_integration_tests' -version: '0.1.0' +version: '0.2.0' profile: 'integration_tests' config-version: 2 diff --git a/models/stg_qualtrics__directory_contact.sql b/models/stg_qualtrics__directory_contact.sql index e7c81be..671cc04 100644 --- a/models/stg_qualtrics__directory_contact.sql +++ b/models/stg_qualtrics__directory_contact.sql @@ -26,9 +26,9 @@ fields as ( final as ( select - creation_date as created_at, + cast(creation_date as {{ dbt.type_timestamp() }}) as created_at, directory_id, - directory_unsubscribe_date as unsubscribed_from_directory_at, + cast(directory_unsubscribe_date as {{ dbt.type_timestamp() }}) as unsubscribed_from_directory_at, directory_unsubscribed as is_unsubscribed_from_directory, lower(email) as email, lower(email_domain) as email_domain, @@ -38,7 +38,7 @@ final as ( REGEXP_REPLACE(phone, '[^0-9]', '') AS phone, -- remove any non-numeric chars id as contact_id, language, - last_modified as last_modified_at, + cast(last_modified as {{ dbt.type_timestamp() }}) as last_modified_at, _fivetran_synced, source_relation diff --git a/models/stg_qualtrics__directory_mailing_list.sql b/models/stg_qualtrics__directory_mailing_list.sql index 0ca552c..7e97a99 100644 --- a/models/stg_qualtrics__directory_mailing_list.sql +++ b/models/stg_qualtrics__directory_mailing_list.sql @@ -26,10 +26,10 @@ fields as ( final as ( select - creation_date as created_at, + cast(creation_date as {{ dbt.type_timestamp() }}) as created_at, directory_id, id as mailing_list_id, - last_modified_date as last_modified_at, + cast(last_modified_date as {{ dbt.type_timestamp() }}) as last_modified_at, name, owner_id as owner_user_id, _fivetran_deleted as is_deleted, diff --git a/models/stg_qualtrics__distribution.sql b/models/stg_qualtrics__distribution.sql index a81f110..8c5e03e 100644 --- a/models/stg_qualtrics__distribution.sql +++ b/models/stg_qualtrics__distribution.sql @@ -26,7 +26,7 @@ fields as ( final as ( select - created_date as created_at, + cast(created_date as {{ dbt.type_timestamp() }}) as created_at, header_from_email, header_from_name, header_reply_to_email, @@ -35,7 +35,7 @@ final as ( message_library_id, message_message_id as message_id, message_message_text as message_text, - modified_date as last_modified_at, + cast(modified_date as {{ dbt.type_timestamp() }}) as last_modified_at, organization_id, owner_id as owner_user_id, parent_distribution_id, @@ -45,8 +45,8 @@ final as ( recipient_sample_id, request_status, request_type, - send_date as send_at, - survey_link_expiration_date as survey_link_expires_at, + cast(send_date as {{ dbt.type_timestamp() }}) as send_at, + cast(survey_link_expiration_date as {{ dbt.type_timestamp() }}) as survey_link_expires_at, survey_link_link_type as survey_link_type, survey_link_survey_id as survey_id, _fivetran_deleted as is_deleted, diff --git a/models/stg_qualtrics__distribution_contact.sql b/models/stg_qualtrics__distribution_contact.sql index 4e070a2..2562bde 100644 --- a/models/stg_qualtrics__distribution_contact.sql +++ b/models/stg_qualtrics__distribution_contact.sql @@ -30,11 +30,11 @@ final as ( contact_id, contact_lookup_id, distribution_id, - opened_at, - response_completed_at, + cast(opened_at as {{ dbt.type_timestamp() }}) as opened_at, + cast(response_completed_at as {{ dbt.type_timestamp() }}) as response_completed_at, response_id, - response_started_at, - sent_at, + cast(response_started_at as {{ dbt.type_timestamp() }}) as response_started_at, + cast(sent_at as {{ dbt.type_timestamp() }}) as sent_at, status, survey_link, survey_session_id, diff --git a/models/stg_qualtrics__survey.sql b/models/stg_qualtrics__survey.sql index b719f2a..b944d75 100644 --- a/models/stg_qualtrics__survey.sql +++ b/models/stg_qualtrics__survey.sql @@ -46,9 +46,9 @@ final as ( scoring_summary_after_questions, scoring_summary_after_survey, scoring_summary_category, - last_accessed as last_accessed_at, - last_activated as last_activated_at, - last_modified as last_modified_at, + cast(last_accessed as {{ dbt.type_timestamp() }}) as last_accessed_at, + cast(last_activated as {{ dbt.type_timestamp() }}) as last_activated_at, + cast(last_modified as {{ dbt.type_timestamp() }}) as last_modified_at, _fivetran_deleted as is_deleted, _fivetran_synced, source_relation diff --git a/models/stg_qualtrics__survey_response.sql b/models/stg_qualtrics__survey_response.sql index a027d21..c004097 100644 --- a/models/stg_qualtrics__survey_response.sql +++ b/models/stg_qualtrics__survey_response.sql @@ -28,11 +28,11 @@ final as ( select distribution_channel, duration_in_seconds, - end_date as finished_at, + cast(end_date as {{ dbt.type_timestamp() }}) as finished_at, cast(finished as {{ dbt.type_boolean() }}) as is_finished, id as response_id, ip_address, - last_modified_date as last_modified_at, + cast(last_modified_date as {{ dbt.type_timestamp() }}) as last_modified_at, location_latitude, location_longitude, progress, @@ -40,7 +40,7 @@ final as ( recipient_first_name, recipient_last_name, recorded_date, - start_date as started_at, + cast(start_date as {{ dbt.type_timestamp() }}) as started_at, status, survey_id, user_language, diff --git a/models/stg_qualtrics__survey_version.sql b/models/stg_qualtrics__survey_version.sql index eb13c02..04455e5 100644 --- a/models/stg_qualtrics__survey_version.sql +++ b/models/stg_qualtrics__survey_version.sql @@ -26,7 +26,7 @@ fields as ( final as ( select - creation_date as created_at, + cast(creation_date as {{ dbt.type_timestamp() }}) as created_at, description as version_description, id as version_id, published as is_published, diff --git a/models/stg_qualtrics__user.sql b/models/stg_qualtrics__user.sql index 0062ee2..b9e67e1 100644 --- a/models/stg_qualtrics__user.sql +++ b/models/stg_qualtrics__user.sql @@ -26,19 +26,19 @@ fields as ( final as ( select - account_creation_date as account_created_at, - account_expiration_date as account_expires_at, + cast(account_creation_date as {{ dbt.type_timestamp() }}) as account_created_at, + cast(account_expiration_date as {{ dbt.type_timestamp() }}) as account_expires_at, account_status, division_id, email, first_name, id as user_id, language, - last_login_date as last_login_at, + cast(last_login_date as {{ dbt.type_timestamp() }}) as last_login_at, last_name, organization_id, - password_expiration_date as password_expires_at, - password_last_changed_date as password_last_changed_at, + cast(password_expiration_date as {{ dbt.type_timestamp() }}) as password_expires_at, + cast(password_last_changed_date as {{ dbt.type_timestamp() }}) as password_last_changed_at, response_count_auditable, response_count_deleted, response_count_generated, From f3542a384ade6e4e7249843a7a09172774cd2ed4 Mon Sep 17 00:00:00 2001 From: Joe Markiewicz <74217849+fivetran-joemarkiewicz@users.noreply.github.com> Date: Fri, 22 Mar 2024 14:22:56 -0500 Subject: [PATCH 2/8] Template links in PR form --- .github/pull_request_template.md | 51 ++++++++++---------------------- 1 file changed, 16 insertions(+), 35 deletions(-) diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md index 50ee0df..b4e7e8e 100644 --- a/.github/pull_request_template.md +++ b/.github/pull_request_template.md @@ -1,48 +1,24 @@ -**Are you a current Fivetran customer?** - +**Please provide your name and company** -**What change(s) does this PR introduce?** - +**Link the issue/feature request which this PR is meant to address** + -**Did you update the CHANGELOG?** +**Detail what changes this PR introduces and how this addresses the issue/feature request linked above.** + +**How did you validate the changes introduced within this PR?** + +**Which warehouse did you use to develop these changes?** + +**Did you update the CHANGELOG?** - [ ] Yes -**Does this PR introduce a breaking change?** - - -- [ ] Yes (please provide breaking change details below.) -- [ ] No (please provide an explanation as to how the change is non-breaking below.) - -**Did you update the dbt_project.yml files with the version upgrade (please leverage standard semantic versioning)? (In both your main project and integration_tests)** +**Did you update the dbt_project.yml files with the version upgrade (please leverage standard semantic versioning)? (In both your main project and integration_tests)** - [ ] Yes -**Is this PR in response to a previously created Bug or Feature Request** - - -- [ ] Yes, Issue/Feature [link bug/feature number here] -- [ ] No - -**How did you test the PR changes?** - - - -- [ ] Buildkite -- [ ] Local (please provide additional testing details below) - -**Select which warehouse(s) were used to test the PR** - - -- [ ] BigQuery -- [ ] Redshift -- [ ] Snowflake -- [ ] Postgres -- [ ] Databricks -- [ ] Other (provide details below) - **Provide an emoji that best describes your current mood** :dancer: @@ -50,3 +26,8 @@ **Feedback** We are so excited you decided to contribute to the Fivetran community dbt package! We continue to work to improve the packages and would greatly appreciate your [feedback](https://www.surveymonkey.com/r/DQ7K7WW) on our existing dbt packages or what you'd like to see next. + +**PR Template** +- [Community Pull Request Template](?expand=1&template=pull_request_template.md) (default) + +- [Maintainer Pull Request Template](?expand=1&template=maintainer_pull_request_template.md) (to be used by maintainers) From 11f6e1eb52c4a8cdcef579155d207de53f0370da Mon Sep 17 00:00:00 2001 From: Joe Markiewicz <74217849+fivetran-joemarkiewicz@users.noreply.github.com> Date: Fri, 22 Mar 2024 15:00:44 -0500 Subject: [PATCH 3/8] docs regen --- .gitignore | 3 ++- CHANGELOG.md | 2 ++ docs/catalog.json | 2 +- docs/index.html | 24 ++++++++++++------------ docs/manifest.json | 2 +- docs/run_results.json | 2 +- integration_tests/dbt_project.yml | 9 +++++++++ 7 files changed, 28 insertions(+), 16 deletions(-) diff --git a/.gitignore b/.gitignore index 2710741..ef06de6 100644 --- a/.gitignore +++ b/.gitignore @@ -2,5 +2,6 @@ target/ dbt_modules/ logs/ - +env/ +package-lock.yml dbt_packages/ \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 9c85fce..58d1d00 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,7 @@ # v0.2.0 dbt_qualtrics_source +[PR #5](https://github.com/fivetran/dbt_qualtrics_source/pull/5) includes the following updates: + ## 🚨 Breaking Changes: Bug Fixes 🚨 - Casted the following timestamp fields in the below models using the `dbt.type_timestamp()` macro. This is necessary to ensure all timestamps are consistently casted and do not experience datatype mismatches in downstream transformations. - stg_qualtrics__directory_contact diff --git a/docs/catalog.json b/docs/catalog.json index 083e0dc..00e7886 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.5.1", "generated_at": "2023-06-14T21:09:44.645520Z", "invocation_id": "843f835e-0449-4226-a98f-b7f45b05819e", "env": {}}, "nodes": {"model.qualtrics_source.stg_qualtrics__contact_mailing_list_membership_tmp": {"metadata": {"type": "view", "schema": "zz_dbt_jamie_final", "name": "stg_qualtrics__contact_mailing_list_membership_tmp", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"contact_lookup_id": {"type": "STRING", "index": 1, "name": "contact_lookup_id", "comment": null}, "_fivetran_synced": {"type": "TIMESTAMP", "index": 2, "name": "_fivetran_synced", "comment": null}, "contact_id": {"type": "STRING", "index": 3, "name": "contact_id", "comment": null}, "directory_id": {"type": "STRING", "index": 4, "name": "directory_id", "comment": null}, "mailing_list_id": {"type": "STRING", "index": 5, "name": "mailing_list_id", "comment": null}, "name": {"type": "STRING", "index": 6, "name": "name", "comment": null}, "owner_id": {"type": "STRING", "index": 7, "name": "owner_id", "comment": null}, "unsubscribe_date": {"type": "TIMESTAMP", "index": 8, "name": "unsubscribe_date", "comment": null}, "unsubscribed": {"type": "BOOL", "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_contact": {"metadata": {"type": "table", "schema": "zz_dbt_jamie_final", "name": "stg_qualtrics__directory_contact", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"created_at": {"type": "TIMESTAMP", "index": 1, "name": "created_at", "comment": null}, "directory_id": {"type": "STRING", "index": 2, "name": "directory_id", "comment": null}, "unsubscribed_from_directory_at": {"type": "TIMESTAMP", "index": 3, "name": "unsubscribed_from_directory_at", "comment": null}, "is_unsubscribed_from_directory": {"type": "BOOL", "index": 4, "name": "is_unsubscribed_from_directory", "comment": null}, "email": {"type": "STRING", "index": 5, "name": "email", "comment": null}, "email_domain": {"type": "STRING", "index": 6, "name": "email_domain", "comment": null}, "ext_ref": {"type": "STRING", "index": 7, "name": "ext_ref", "comment": null}, "first_name": {"type": "STRING", "index": 8, "name": "first_name", "comment": null}, "last_name": {"type": "STRING", "index": 9, "name": "last_name", "comment": null}, "phone": {"type": "STRING", "index": 10, "name": "phone", "comment": null}, "contact_id": {"type": "STRING", "index": 11, "name": "contact_id", "comment": null}, "language": {"type": "STRING", "index": 12, "name": "language", "comment": null}, "last_modified_at": {"type": "TIMESTAMP", "index": 13, "name": "last_modified_at", "comment": null}, "can_write_blanks": {"type": "BOOL", "index": 14, "name": "can_write_blanks", "comment": null}, "_fivetran_synced": {"type": "TIMESTAMP", "index": 15, "name": "_fivetran_synced", "comment": null}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 12.0, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 1368.0, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "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__block_question_tmp": {"metadata": {"type": "view", "schema": "zz_dbt_jamie_final", "name": "stg_qualtrics__block_question_tmp", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"block_id": {"type": "STRING", "index": 1, "name": "block_id", "comment": null}, "question_id": {"type": "STRING", "index": 2, "name": "question_id", "comment": null}, "survey_id": {"type": "STRING", "index": 3, "name": "survey_id", "comment": null}, "_fivetran_deleted": {"type": "BOOL", "index": 4, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "TIMESTAMP", "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__sub_question_tmp": {"metadata": {"type": "view", "schema": "zz_dbt_jamie_final", "name": "stg_qualtrics__sub_question_tmp", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"key": {"type": "STRING", "index": 1, "name": "key", "comment": null}, "question_id": {"type": "STRING", "index": 2, "name": "question_id", "comment": null}, "survey_id": {"type": "STRING", "index": 3, "name": "survey_id", "comment": null}, "_fivetran_deleted": {"type": "BOOL", "index": 4, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "TIMESTAMP", "index": 5, "name": "_fivetran_synced", "comment": null}, "choice_data_export_tag": {"type": "STRING", "index": 6, "name": "choice_data_export_tag", "comment": null}, "text": {"type": "STRING", "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__question_option": {"metadata": {"type": "table", "schema": "zz_dbt_jamie_final", "name": "stg_qualtrics__question_option", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"question_id": {"type": "STRING", "index": 1, "name": "question_id", "comment": null}, "survey_id": {"type": "STRING", "index": 2, "name": "survey_id", "comment": null}, "key": {"type": "STRING", "index": 3, "name": "key", "comment": null}, "recode_value": {"type": "STRING", "index": 4, "name": "recode_value", "comment": null}, "text": {"type": "STRING", "index": 5, "name": "text", "comment": null}, "is_deleted": {"type": "BOOL", "index": 6, "name": "is_deleted", "comment": null}, "_fivetran_synced": {"type": "TIMESTAMP", "index": 7, "name": "_fivetran_synced", "comment": null}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 886.0, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 52164.0, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "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__survey_version_tmp": {"metadata": {"type": "view", "schema": "zz_dbt_jamie_final", "name": "stg_qualtrics__survey_version_tmp", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"id": {"type": "STRING", "index": 1, "name": "id", "comment": null}, "survey_id": {"type": "STRING", "index": 2, "name": "survey_id", "comment": null}, "_fivetran_deleted": {"type": "BOOL", "index": 3, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "TIMESTAMP", "index": 4, "name": "_fivetran_synced", "comment": null}, "creation_date": {"type": "TIMESTAMP", "index": 5, "name": "creation_date", "comment": null}, "description": {"type": "STRING", "index": 6, "name": "description", "comment": null}, "published": {"type": "BOOL", "index": 7, "name": "published", "comment": null}, "user_id": {"type": "STRING", "index": 8, "name": "user_id", "comment": null}, "version_number": {"type": "INT64", "index": 9, "name": "version_number", "comment": null}, "was_published": {"type": "BOOL", "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__distribution_contact": {"metadata": {"type": "table", "schema": "zz_dbt_jamie_final", "name": "stg_qualtrics__distribution_contact", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"contact_frequency_rule_id": {"type": "STRING", "index": 1, "name": "contact_frequency_rule_id", "comment": null}, "contact_id": {"type": "STRING", "index": 2, "name": "contact_id", "comment": null}, "contact_lookup_id": {"type": "STRING", "index": 3, "name": "contact_lookup_id", "comment": null}, "distribution_id": {"type": "STRING", "index": 4, "name": "distribution_id", "comment": null}, "opened_at": {"type": "TIMESTAMP", "index": 5, "name": "opened_at", "comment": null}, "response_completed_at": {"type": "TIMESTAMP", "index": 6, "name": "response_completed_at", "comment": null}, "response_id": {"type": "STRING", "index": 7, "name": "response_id", "comment": null}, "response_started_at": {"type": "TIMESTAMP", "index": 8, "name": "response_started_at", "comment": null}, "sent_at": {"type": "TIMESTAMP", "index": 9, "name": "sent_at", "comment": null}, "status": {"type": "STRING", "index": 10, "name": "status", "comment": null}, "survey_link": {"type": "STRING", "index": 11, "name": "survey_link", "comment": null}, "survey_session_id": {"type": "STRING", "index": 12, "name": "survey_session_id", "comment": null}, "_fivetran_synced": {"type": "TIMESTAMP", "index": 13, "name": "_fivetran_synced", "comment": null}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 37.0, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 9866.0, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "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__user": {"metadata": {"type": "table", "schema": "zz_dbt_jamie_final", "name": "stg_qualtrics__user", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"account_created_at": {"type": "TIMESTAMP", "index": 1, "name": "account_created_at", "comment": null}, "account_expires_at": {"type": "TIMESTAMP", "index": 2, "name": "account_expires_at", "comment": null}, "account_status": {"type": "STRING", "index": 3, "name": "account_status", "comment": null}, "division_id": {"type": "STRING", "index": 4, "name": "division_id", "comment": null}, "email": {"type": "STRING", "index": 5, "name": "email", "comment": null}, "first_name": {"type": "STRING", "index": 6, "name": "first_name", "comment": null}, "user_id": {"type": "STRING", "index": 7, "name": "user_id", "comment": null}, "language": {"type": "STRING", "index": 8, "name": "language", "comment": null}, "last_login_at": {"type": "TIMESTAMP", "index": 9, "name": "last_login_at", "comment": null}, "last_name": {"type": "STRING", "index": 10, "name": "last_name", "comment": null}, "organization_id": {"type": "STRING", "index": 11, "name": "organization_id", "comment": null}, "password_expires_at": {"type": "TIMESTAMP", "index": 12, "name": "password_expires_at", "comment": null}, "password_last_changed_at": {"type": "TIMESTAMP", "index": 13, "name": "password_last_changed_at", "comment": null}, "response_count_auditable": {"type": "INT64", "index": 14, "name": "response_count_auditable", "comment": null}, "response_count_deleted": {"type": "INT64", "index": 15, "name": "response_count_deleted", "comment": null}, "response_count_generated": {"type": "INT64", "index": 16, "name": "response_count_generated", "comment": null}, "time_zone": {"type": "STRING", "index": 17, "name": "time_zone", "comment": null}, "is_unsubscribed": {"type": "BOOL", "index": 18, "name": "is_unsubscribed", "comment": null}, "user_type": {"type": "STRING", "index": 19, "name": "user_type", "comment": null}, "username": {"type": "STRING", "index": 20, "name": "username", "comment": null}, "is_deleted": {"type": "BOOL", "index": 21, "name": "is_deleted", "comment": null}, "_fivetran_synced": {"type": "TIMESTAMP", "index": 22, "name": "_fivetran_synced", "comment": null}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 2.0, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 229.0, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.qualtrics_source.stg_qualtrics__user"}, "model.qualtrics_source.stg_qualtrics__directory": {"metadata": {"type": "table", "schema": "zz_dbt_jamie_final", "name": "stg_qualtrics__directory", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"is_deduped_on_email": {"type": "BOOL", "index": 1, "name": "is_deduped_on_email", "comment": null}, "is_deduped_on_ext_ref": {"type": "BOOL", "index": 2, "name": "is_deduped_on_ext_ref", "comment": null}, "is_deduped_on_first_name": {"type": "BOOL", "index": 3, "name": "is_deduped_on_first_name", "comment": null}, "is_deduped_on_last_name": {"type": "BOOL", "index": 4, "name": "is_deduped_on_last_name", "comment": null}, "is_deduped_on_phone": {"type": "BOOL", "index": 5, "name": "is_deduped_on_phone", "comment": null}, "directory_id": {"type": "STRING", "index": 6, "name": "directory_id", "comment": null}, "is_default": {"type": "BOOL", "index": 7, "name": "is_default", "comment": null}, "name": {"type": "STRING", "index": 8, "name": "name", "comment": null}, "is_deleted": {"type": "BOOL", "index": 9, "name": "is_deleted", "comment": null}, "_fivetran_synced": {"type": "TIMESTAMP", "index": 10, "name": "_fivetran_synced", "comment": null}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 1.0, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 53.0, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.qualtrics_source.stg_qualtrics__directory"}, "model.qualtrics_source.stg_qualtrics__user_tmp": {"metadata": {"type": "view", "schema": "zz_dbt_jamie_final", "name": "stg_qualtrics__user_tmp", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"id": {"type": "STRING", "index": 1, "name": "id", "comment": null}, "_fivetran_deleted": {"type": "BOOL", "index": 2, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "TIMESTAMP", "index": 3, "name": "_fivetran_synced", "comment": null}, "account_creation_date": {"type": "TIMESTAMP", "index": 4, "name": "account_creation_date", "comment": null}, "account_expiration_date": {"type": "TIMESTAMP", "index": 5, "name": "account_expiration_date", "comment": null}, "account_status": {"type": "STRING", "index": 6, "name": "account_status", "comment": null}, "division_id": {"type": "STRING", "index": 7, "name": "division_id", "comment": null}, "email": {"type": "STRING", "index": 8, "name": "email", "comment": null}, "first_name": {"type": "STRING", "index": 9, "name": "first_name", "comment": null}, "language": {"type": "STRING", "index": 10, "name": "language", "comment": null}, "last_login_date": {"type": "TIMESTAMP", "index": 11, "name": "last_login_date", "comment": null}, "last_name": {"type": "STRING", "index": 12, "name": "last_name", "comment": null}, "organization_id": {"type": "STRING", "index": 13, "name": "organization_id", "comment": null}, "password_expiration_date": {"type": "TIMESTAMP", "index": 14, "name": "password_expiration_date", "comment": null}, "password_last_changed_date": {"type": "TIMESTAMP", "index": 15, "name": "password_last_changed_date", "comment": null}, "response_count_auditable": {"type": "INT64", "index": 16, "name": "response_count_auditable", "comment": null}, "response_count_deleted": {"type": "INT64", "index": 17, "name": "response_count_deleted", "comment": null}, "response_count_generated": {"type": "INT64", "index": 18, "name": "response_count_generated", "comment": null}, "time_zone": {"type": "STRING", "index": 19, "name": "time_zone", "comment": null}, "unsubscribed": {"type": "BOOL", "index": 20, "name": "unsubscribed", "comment": null}, "user_type": {"type": "STRING", "index": 21, "name": "user_type", "comment": null}, "username": {"type": "STRING", "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"}, "model.qualtrics_source.stg_qualtrics__question": {"metadata": {"type": "table", "schema": "zz_dbt_jamie_final", "name": "stg_qualtrics__question", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"data_export_tag": {"type": "STRING", "index": 1, "name": "data_export_tag", "comment": null}, "data_visibility_hidden": {"type": "BOOL", "index": 2, "name": "data_visibility_hidden", "comment": null}, "data_visibility_private": {"type": "BOOL", "index": 3, "name": "data_visibility_private", "comment": null}, "question_id": {"type": "STRING", "index": 4, "name": "question_id", "comment": null}, "next_answer_id": {"type": "INT64", "index": 5, "name": "next_answer_id", "comment": null}, "next_choice_id": {"type": "INT64", "index": 6, "name": "next_choice_id", "comment": null}, "question_description": {"type": "STRING", "index": 7, "name": "question_description", "comment": null}, "question_description_option": {"type": "STRING", "index": 8, "name": "question_description_option", "comment": null}, "question_text": {"type": "STRING", "index": 9, "name": "question_text", "comment": null}, "question_text_unsafe": {"type": "STRING", "index": 10, "name": "question_text_unsafe", "comment": null}, "question_type": {"type": "STRING", "index": 11, "name": "question_type", "comment": null}, "selector": {"type": "STRING", "index": 12, "name": "selector", "comment": null}, "sub_selector": {"type": "STRING", "index": 13, "name": "sub_selector", "comment": null}, "survey_id": {"type": "STRING", "index": 14, "name": "survey_id", "comment": null}, "validation_setting_force_response": {"type": "STRING", "index": 15, "name": "validation_setting_force_response", "comment": null}, "validation_setting_force_response_type": {"type": "STRING", "index": 16, "name": "validation_setting_force_response_type", "comment": null}, "validation_setting_type": {"type": "STRING", "index": 17, "name": "validation_setting_type", "comment": null}, "is_deleted": {"type": "BOOL", "index": 18, "name": "is_deleted", "comment": null}, "_fivetran_synced": {"type": "TIMESTAMP", "index": 19, "name": "_fivetran_synced", "comment": null}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 219.0, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 46494.0, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "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_tmp": {"metadata": {"type": "view", "schema": "zz_dbt_jamie_final", "name": "stg_qualtrics__question_option_tmp", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"key": {"type": "STRING", "index": 1, "name": "key", "comment": null}, "question_id": {"type": "STRING", "index": 2, "name": "question_id", "comment": null}, "survey_id": {"type": "STRING", "index": 3, "name": "survey_id", "comment": null}, "_fivetran_deleted": {"type": "BOOL", "index": 4, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "TIMESTAMP", "index": 5, "name": "_fivetran_synced", "comment": null}, "recode_value": {"type": "STRING", "index": 6, "name": "recode_value", "comment": null}, "text": {"type": "STRING", "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_tmp": {"metadata": {"type": "view", "schema": "zz_dbt_jamie_final", "name": "stg_qualtrics__question_tmp", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"id": {"type": "STRING", "index": 1, "name": "id", "comment": null}, "survey_id": {"type": "STRING", "index": 2, "name": "survey_id", "comment": null}, "_fivetran_deleted": {"type": "BOOL", "index": 3, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "TIMESTAMP", "index": 4, "name": "_fivetran_synced", "comment": null}, "data_export_tag": {"type": "STRING", "index": 5, "name": "data_export_tag", "comment": null}, "data_visibility_hidden": {"type": "BOOL", "index": 6, "name": "data_visibility_hidden", "comment": null}, "data_visibility_private": {"type": "BOOL", "index": 7, "name": "data_visibility_private", "comment": null}, "next_answer_id": {"type": "INT64", "index": 8, "name": "next_answer_id", "comment": null}, "next_choice_id": {"type": "INT64", "index": 9, "name": "next_choice_id", "comment": null}, "question_description": {"type": "STRING", "index": 10, "name": "question_description", "comment": null}, "question_description_option": {"type": "STRING", "index": 11, "name": "question_description_option", "comment": null}, "question_text": {"type": "STRING", "index": 12, "name": "question_text", "comment": null}, "question_text_unsafe": {"type": "STRING", "index": 13, "name": "question_text_unsafe", "comment": null}, "question_type": {"type": "STRING", "index": 14, "name": "question_type", "comment": null}, "selector": {"type": "STRING", "index": 15, "name": "selector", "comment": null}, "sub_selector": {"type": "STRING", "index": 16, "name": "sub_selector", "comment": null}, "validation_setting_force_response": {"type": "STRING", "index": 17, "name": "validation_setting_force_response", "comment": null}, "validation_setting_force_response_type": {"type": "STRING", "index": 18, "name": "validation_setting_force_response_type", "comment": null}, "validation_setting_type": {"type": "STRING", "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__survey_response_tmp": {"metadata": {"type": "view", "schema": "zz_dbt_jamie_final", "name": "stg_qualtrics__survey_response_tmp", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"id": {"type": "STRING", "index": 1, "name": "id", "comment": null}, "_fivetran_synced": {"type": "TIMESTAMP", "index": 2, "name": "_fivetran_synced", "comment": null}, "distribution_channel": {"type": "STRING", "index": 3, "name": "distribution_channel", "comment": null}, "duration_in_seconds": {"type": "INT64", "index": 4, "name": "duration_in_seconds", "comment": null}, "end_date": {"type": "TIMESTAMP", "index": 5, "name": "end_date", "comment": null}, "finished": {"type": "INT64", "index": 6, "name": "finished", "comment": null}, "ip_address": {"type": "STRING", "index": 7, "name": "ip_address", "comment": null}, "last_modified_date": {"type": "TIMESTAMP", "index": 8, "name": "last_modified_date", "comment": null}, "location_latitude": {"type": "FLOAT64", "index": 9, "name": "location_latitude", "comment": null}, "location_longitude": {"type": "FLOAT64", "index": 10, "name": "location_longitude", "comment": null}, "progress": {"type": "INT64", "index": 11, "name": "progress", "comment": null}, "recipient_email": {"type": "STRING", "index": 12, "name": "recipient_email", "comment": null}, "recipient_first_name": {"type": "STRING", "index": 13, "name": "recipient_first_name", "comment": null}, "recipient_last_name": {"type": "STRING", "index": 14, "name": "recipient_last_name", "comment": null}, "recorded_date": {"type": "TIMESTAMP", "index": 15, "name": "recorded_date", "comment": null}, "start_date": {"type": "TIMESTAMP", "index": 16, "name": "start_date", "comment": null}, "status": {"type": "INT64", "index": 17, "name": "status", "comment": null}, "survey_id": {"type": "STRING", "index": 18, "name": "survey_id", "comment": null}, "user_language": {"type": "STRING", "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__directory_contact_tmp": {"metadata": {"type": "view", "schema": "zz_dbt_jamie_final", "name": "stg_qualtrics__directory_contact_tmp", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"directory_id": {"type": "STRING", "index": 1, "name": "directory_id", "comment": null}, "id": {"type": "STRING", "index": 2, "name": "id", "comment": null}, "_fivetran_synced": {"type": "TIMESTAMP", "index": 3, "name": "_fivetran_synced", "comment": null}, "creation_date": {"type": "TIMESTAMP", "index": 4, "name": "creation_date", "comment": null}, "directory_unsubscribe_date": {"type": "TIMESTAMP", "index": 5, "name": "directory_unsubscribe_date", "comment": null}, "directory_unsubscribed": {"type": "BOOL", "index": 6, "name": "directory_unsubscribed", "comment": null}, "email": {"type": "STRING", "index": 7, "name": "email", "comment": null}, "email_domain": {"type": "STRING", "index": 8, "name": "email_domain", "comment": null}, "embedded_data_last_active_time": {"type": "DATETIME", "index": 9, "name": "embedded_data_last_active_time", "comment": null}, "embedded_data_last_response_date": {"type": "DATE", "index": 10, "name": "embedded_data_last_response_date", "comment": null}, "embedded_data_login_date": {"type": "TIMESTAMP", "index": 11, "name": "embedded_data_login_date", "comment": null}, "ext_ref": {"type": "STRING", "index": 12, "name": "ext_ref", "comment": null}, "first_name": {"type": "STRING", "index": 13, "name": "first_name", "comment": null}, "language": {"type": "STRING", "index": 14, "name": "language", "comment": null}, "last_modified": {"type": "TIMESTAMP", "index": 15, "name": "last_modified", "comment": null}, "last_name": {"type": "STRING", "index": 16, "name": "last_name", "comment": null}, "phone": {"type": "STRING", "index": 17, "name": "phone", "comment": null}, "write_blanks": {"type": "BOOL", "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_tmp": {"metadata": {"type": "view", "schema": "zz_dbt_jamie_final", "name": "stg_qualtrics__directory_tmp", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"id": {"type": "STRING", "index": 1, "name": "id", "comment": null}, "_fivetran_deleted": {"type": "BOOL", "index": 2, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "TIMESTAMP", "index": 3, "name": "_fivetran_synced", "comment": null}, "deduplication_criteria_email": {"type": "BOOL", "index": 4, "name": "deduplication_criteria_email", "comment": null}, "deduplication_criteria_external_data_reference": {"type": "BOOL", "index": 5, "name": "deduplication_criteria_external_data_reference", "comment": null}, "deduplication_criteria_first_name": {"type": "BOOL", "index": 6, "name": "deduplication_criteria_first_name", "comment": null}, "deduplication_criteria_last_name": {"type": "BOOL", "index": 7, "name": "deduplication_criteria_last_name", "comment": null}, "deduplication_criteria_phone": {"type": "BOOL", "index": 8, "name": "deduplication_criteria_phone", "comment": null}, "is_default": {"type": "BOOL", "index": 9, "name": "is_default", "comment": null}, "name": {"type": "STRING", "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__contact_mailing_list_membership": {"metadata": {"type": "table", "schema": "zz_dbt_jamie_final", "name": "stg_qualtrics__contact_mailing_list_membership", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"contact_id": {"type": "STRING", "index": 1, "name": "contact_id", "comment": null}, "contact_lookup_id": {"type": "STRING", "index": 2, "name": "contact_lookup_id", "comment": null}, "directory_id": {"type": "STRING", "index": 3, "name": "directory_id", "comment": null}, "mailing_list_id": {"type": "STRING", "index": 4, "name": "mailing_list_id", "comment": null}, "name": {"type": "STRING", "index": 5, "name": "name", "comment": null}, "owner_user_id": {"type": "STRING", "index": 6, "name": "owner_user_id", "comment": null}, "unsubscribed_at": {"type": "TIMESTAMP", "index": 7, "name": "unsubscribed_at", "comment": null}, "is_unsubscribed": {"type": "BOOL", "index": 8, "name": "is_unsubscribed", "comment": null}, "_fivetran_synced": {"type": "TIMESTAMP", "index": 9, "name": "_fivetran_synced", "comment": null}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 20.0, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 2608.0, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "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__survey_embedded_data_tmp": {"metadata": {"type": "view", "schema": "zz_dbt_jamie_final", "name": "stg_qualtrics__survey_embedded_data_tmp", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"import_id": {"type": "STRING", "index": 1, "name": "import_id", "comment": null}, "key": {"type": "STRING", "index": 2, "name": "key", "comment": null}, "response_id": {"type": "STRING", "index": 3, "name": "response_id", "comment": null}, "value": {"type": "STRING", "index": 4, "name": "value", "comment": null}, "_fivetran_synced": {"type": "TIMESTAMP", "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": "table", "schema": "zz_dbt_jamie_final", "name": "stg_qualtrics__survey_response", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"distribution_channel": {"type": "STRING", "index": 1, "name": "distribution_channel", "comment": null}, "duration_in_seconds": {"type": "INT64", "index": 2, "name": "duration_in_seconds", "comment": null}, "finished_at": {"type": "TIMESTAMP", "index": 3, "name": "finished_at", "comment": null}, "is_finished": {"type": "BOOL", "index": 4, "name": "is_finished", "comment": null}, "response_id": {"type": "STRING", "index": 5, "name": "response_id", "comment": null}, "ip_address": {"type": "STRING", "index": 6, "name": "ip_address", "comment": null}, "last_modified_at": {"type": "TIMESTAMP", "index": 7, "name": "last_modified_at", "comment": null}, "location_latitude": {"type": "FLOAT64", "index": 8, "name": "location_latitude", "comment": null}, "location_longitude": {"type": "FLOAT64", "index": 9, "name": "location_longitude", "comment": null}, "progress": {"type": "INT64", "index": 10, "name": "progress", "comment": null}, "recipient_email": {"type": "STRING", "index": 11, "name": "recipient_email", "comment": null}, "recipient_first_name": {"type": "STRING", "index": 12, "name": "recipient_first_name", "comment": null}, "recipient_last_name": {"type": "STRING", "index": 13, "name": "recipient_last_name", "comment": null}, "recorded_date": {"type": "TIMESTAMP", "index": 14, "name": "recorded_date", "comment": null}, "started_at": {"type": "TIMESTAMP", "index": 15, "name": "started_at", "comment": null}, "status": {"type": "INT64", "index": 16, "name": "status", "comment": null}, "survey_id": {"type": "STRING", "index": 17, "name": "survey_id", "comment": null}, "user_language": {"type": "STRING", "index": 18, "name": "user_language", "comment": null}, "_fivetran_synced": {"type": "TIMESTAMP", "index": 19, "name": "_fivetran_synced", "comment": null}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 76.0, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 11959.0, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "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_tmp": {"metadata": {"type": "view", "schema": "zz_dbt_jamie_final", "name": "stg_qualtrics__survey_tmp", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"id": {"type": "STRING", "index": 1, "name": "id", "comment": null}, "_fivetran_deleted": {"type": "BOOL", "index": 2, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "TIMESTAMP", "index": 3, "name": "_fivetran_synced", "comment": null}, "auto_scoring_category": {"type": "STRING", "index": 4, "name": "auto_scoring_category", "comment": null}, "brand_base_url": {"type": "STRING", "index": 5, "name": "brand_base_url", "comment": null}, "brand_id": {"type": "STRING", "index": 6, "name": "brand_id", "comment": null}, "bundle_short_name": {"type": "STRING", "index": 7, "name": "bundle_short_name", "comment": null}, "composition_type": {"type": "STRING", "index": 8, "name": "composition_type", "comment": null}, "creator_id": {"type": "STRING", "index": 9, "name": "creator_id", "comment": null}, "default_scoring_category": {"type": "STRING", "index": 10, "name": "default_scoring_category", "comment": null}, "division_id": {"type": "STRING", "index": 11, "name": "division_id", "comment": null}, "is_active": {"type": "BOOL", "index": 12, "name": "is_active", "comment": null}, "last_accessed": {"type": "TIMESTAMP", "index": 13, "name": "last_accessed", "comment": null}, "last_activated": {"type": "TIMESTAMP", "index": 14, "name": "last_activated", "comment": null}, "last_modified": {"type": "TIMESTAMP", "index": 15, "name": "last_modified", "comment": null}, "option_active_response_set": {"type": "STRING", "index": 16, "name": "option_active_response_set", "comment": null}, "option_anonymize_response": {"type": "STRING", "index": 17, "name": "option_anonymize_response", "comment": null}, "option_auto_confirm_start": {"type": "BOOL", "index": 18, "name": "option_auto_confirm_start", "comment": null}, "option_autoadvance": {"type": "BOOL", "index": 19, "name": "option_autoadvance", "comment": null}, "option_autoadvance_pages": {"type": "BOOL", "index": 20, "name": "option_autoadvance_pages", "comment": null}, "option_autofocus": {"type": "BOOL", "index": 21, "name": "option_autofocus", "comment": null}, "option_available_languages": {"type": "STRING", "index": 22, "name": "option_available_languages", "comment": null}, "option_back_button": {"type": "BOOL", "index": 23, "name": "option_back_button", "comment": null}, "option_ballot_box_stuffing_prevention": {"type": "BOOL", "index": 24, "name": "option_ballot_box_stuffing_prevention", "comment": null}, "option_collect_geo_location": {"type": "BOOL", "index": 25, "name": "option_collect_geo_location", "comment": null}, "option_confirm_start": {"type": "BOOL", "index": 26, "name": "option_confirm_start", "comment": null}, "option_custom_styles": {"type": "STRING", "index": 27, "name": "option_custom_styles", "comment": null}, "option_email_thank_you": {"type": "BOOL", "index": 28, "name": "option_email_thank_you", "comment": null}, "option_eosredirect_url": {"type": "STRING", "index": 29, "name": "option_eosredirect_url", "comment": null}, "option_highlight_questions": {"type": "STRING", "index": 30, "name": "option_highlight_questions", "comment": null}, "option_inactive_survey": {"type": "STRING", "index": 31, "name": "option_inactive_survey", "comment": null}, "option_new_scoring": {"type": "INT64", "index": 32, "name": "option_new_scoring", "comment": null}, "option_next_button": {"type": "STRING", "index": 33, "name": "option_next_button", "comment": null}, "option_no_index": {"type": "STRING", "index": 34, "name": "option_no_index", "comment": null}, "option_page_transition": {"type": "STRING", "index": 35, "name": "option_page_transition", "comment": null}, "option_partial_data": {"type": "STRING", "index": 36, "name": "option_partial_data", "comment": null}, "option_partial_data_close_after": {"type": "STRING", "index": 37, "name": "option_partial_data_close_after", "comment": null}, "option_password_protection": {"type": "STRING", "index": 38, "name": "option_password_protection", "comment": null}, "option_previous_button": {"type": "STRING", "index": 39, "name": "option_previous_button", "comment": null}, "option_progress_bar_display": {"type": "STRING", "index": 40, "name": "option_progress_bar_display", "comment": null}, "option_protect_selection_ids": {"type": "BOOL", "index": 41, "name": "option_protect_selection_ids", "comment": null}, "option_recaptcha_v_3": {"type": "BOOL", "index": 42, "name": "option_recaptcha_v_3", "comment": null}, "option_referer_check": {"type": "STRING", "index": 43, "name": "option_referer_check", "comment": null}, "option_referer_url": {"type": "STRING", "index": 44, "name": "option_referer_url", "comment": null}, "option_relevant_id": {"type": "BOOL", "index": 45, "name": "option_relevant_id", "comment": null}, "option_relevant_idlockout_period": {"type": "STRING", "index": 46, "name": "option_relevant_idlockout_period", "comment": null}, "option_response_summary": {"type": "STRING", "index": 47, "name": "option_response_summary", "comment": null}, "option_save_and_continue": {"type": "BOOL", "index": 48, "name": "option_save_and_continue", "comment": null}, "option_secure_response_files": {"type": "BOOL", "index": 49, "name": "option_secure_response_files", "comment": null}, "option_show_export_tags": {"type": "BOOL", "index": 50, "name": "option_show_export_tags", "comment": null}, "option_skin": {"type": "STRING", "index": 51, "name": "option_skin", "comment": null}, "option_skin_library": {"type": "STRING", "index": 52, "name": "option_skin_library", "comment": null}, "option_skin_question_width": {"type": "INT64", "index": 53, "name": "option_skin_question_width", "comment": null}, "option_skin_type": {"type": "STRING", "index": 54, "name": "option_skin_type", "comment": null}, "option_survey_creation_date": {"type": "TIMESTAMP", "index": 55, "name": "option_survey_creation_date", "comment": null}, "option_survey_expiration": {"type": "STRING", "index": 56, "name": "option_survey_expiration", "comment": null}, "option_survey_language": {"type": "STRING", "index": 57, "name": "option_survey_language", "comment": null}, "option_survey_meta_description": {"type": "STRING", "index": 58, "name": "option_survey_meta_description", "comment": null}, "option_survey_name": {"type": "STRING", "index": 59, "name": "option_survey_name", "comment": null}, "option_survey_protection": {"type": "STRING", "index": 60, "name": "option_survey_protection", "comment": null}, "option_survey_termination": {"type": "STRING", "index": 61, "name": "option_survey_termination", "comment": null}, "option_survey_title": {"type": "STRING", "index": 62, "name": "option_survey_title", "comment": null}, "option_validate_message": {"type": "BOOL", "index": 63, "name": "option_validate_message", "comment": null}, "owner_id": {"type": "STRING", "index": 64, "name": "owner_id", "comment": null}, "project_category": {"type": "STRING", "index": 65, "name": "project_category", "comment": null}, "project_type": {"type": "STRING", "index": 66, "name": "project_type", "comment": null}, "registry_sha": {"type": "STRING", "index": 67, "name": "registry_sha", "comment": null}, "registry_version": {"type": "STRING", "index": 68, "name": "registry_version", "comment": null}, "schema_version": {"type": "STRING", "index": 69, "name": "schema_version", "comment": null}, "scoring_summary_after_questions": {"type": "BOOL", "index": 70, "name": "scoring_summary_after_questions", "comment": null}, "scoring_summary_after_survey": {"type": "BOOL", "index": 71, "name": "scoring_summary_after_survey", "comment": null}, "scoring_summary_category": {"type": "STRING", "index": 72, "name": "scoring_summary_category", "comment": null}, "survey_name": {"type": "STRING", "index": 73, "name": "survey_name", "comment": null}, "survey_status": {"type": "STRING", "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__distribution_contact_tmp": {"metadata": {"type": "view", "schema": "zz_dbt_jamie_final", "name": "stg_qualtrics__distribution_contact_tmp", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"contact_id": {"type": "STRING", "index": 1, "name": "contact_id", "comment": null}, "distribution_id": {"type": "STRING", "index": 2, "name": "distribution_id", "comment": null}, "_fivetran_synced": {"type": "TIMESTAMP", "index": 3, "name": "_fivetran_synced", "comment": null}, "contact_frequency_rule_id": {"type": "STRING", "index": 4, "name": "contact_frequency_rule_id", "comment": null}, "contact_lookup_id": {"type": "STRING", "index": 5, "name": "contact_lookup_id", "comment": null}, "opened_at": {"type": "TIMESTAMP", "index": 6, "name": "opened_at", "comment": null}, "response_completed_at": {"type": "TIMESTAMP", "index": 7, "name": "response_completed_at", "comment": null}, "response_id": {"type": "STRING", "index": 8, "name": "response_id", "comment": null}, "response_started_at": {"type": "TIMESTAMP", "index": 9, "name": "response_started_at", "comment": null}, "sent_at": {"type": "TIMESTAMP", "index": 10, "name": "sent_at", "comment": null}, "status": {"type": "STRING", "index": 11, "name": "status", "comment": null}, "survey_link": {"type": "STRING", "index": 12, "name": "survey_link", "comment": null}, "survey_session_id": {"type": "STRING", "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__question_response_tmp": {"metadata": {"type": "view", "schema": "zz_dbt_jamie_final", "name": "stg_qualtrics__question_response_tmp", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"_fivetran_id": {"type": "STRING", "index": 1, "name": "_fivetran_id", "comment": null}, "_fivetran_synced": {"type": "TIMESTAMP", "index": 2, "name": "_fivetran_synced", "comment": null}, "loop_id": {"type": "STRING", "index": 3, "name": "loop_id", "comment": null}, "question": {"type": "STRING", "index": 4, "name": "question", "comment": null}, "question_id": {"type": "STRING", "index": 5, "name": "question_id", "comment": null}, "question_option_key": {"type": "STRING", "index": 6, "name": "question_option_key", "comment": null}, "response_id": {"type": "STRING", "index": 7, "name": "response_id", "comment": null}, "sub_question_key": {"type": "STRING", "index": 8, "name": "sub_question_key", "comment": null}, "sub_question_text": {"type": "STRING", "index": 9, "name": "sub_question_text", "comment": null}, "value": {"type": "STRING", "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__survey": {"metadata": {"type": "table", "schema": "zz_dbt_jamie_final", "name": "stg_qualtrics__survey", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"auto_scoring_category": {"type": "STRING", "index": 1, "name": "auto_scoring_category", "comment": null}, "brand_base_url": {"type": "STRING", "index": 2, "name": "brand_base_url", "comment": null}, "brand_id": {"type": "STRING", "index": 3, "name": "brand_id", "comment": null}, "bundle_short_name": {"type": "STRING", "index": 4, "name": "bundle_short_name", "comment": null}, "composition_type": {"type": "STRING", "index": 5, "name": "composition_type", "comment": null}, "creator_user_id": {"type": "STRING", "index": 6, "name": "creator_user_id", "comment": null}, "default_scoring_category": {"type": "STRING", "index": 7, "name": "default_scoring_category", "comment": null}, "division_id": {"type": "STRING", "index": 8, "name": "division_id", "comment": null}, "survey_id": {"type": "STRING", "index": 9, "name": "survey_id", "comment": null}, "last_accessed_at": {"type": "TIMESTAMP", "index": 10, "name": "last_accessed_at", "comment": null}, "last_activated_at": {"type": "TIMESTAMP", "index": 11, "name": "last_activated_at", "comment": null}, "last_modified_at": {"type": "TIMESTAMP", "index": 12, "name": "last_modified_at", "comment": null}, "owner_user_id": {"type": "STRING", "index": 13, "name": "owner_user_id", "comment": null}, "project_category": {"type": "STRING", "index": 14, "name": "project_category", "comment": null}, "project_type": {"type": "STRING", "index": 15, "name": "project_type", "comment": null}, "registry_sha": {"type": "STRING", "index": 16, "name": "registry_sha", "comment": null}, "registry_version": {"type": "STRING", "index": 17, "name": "registry_version", "comment": null}, "schema_version": {"type": "STRING", "index": 18, "name": "schema_version", "comment": null}, "scoring_summary_after_questions": {"type": "BOOL", "index": 19, "name": "scoring_summary_after_questions", "comment": null}, "scoring_summary_after_survey": {"type": "BOOL", "index": 20, "name": "scoring_summary_after_survey", "comment": null}, "scoring_summary_category": {"type": "STRING", "index": 21, "name": "scoring_summary_category", "comment": null}, "survey_name": {"type": "STRING", "index": 22, "name": "survey_name", "comment": null}, "survey_status": {"type": "STRING", "index": 23, "name": "survey_status", "comment": null}, "is_deleted": {"type": "BOOL", "index": 24, "name": "is_deleted", "comment": null}, "_fivetran_synced": {"type": "TIMESTAMP", "index": 25, "name": "_fivetran_synced", "comment": null}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 16.0, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 2402.0, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.qualtrics_source.stg_qualtrics__survey"}, "model.qualtrics_source.stg_qualtrics__block_tmp": {"metadata": {"type": "view", "schema": "zz_dbt_jamie_final", "name": "stg_qualtrics__block_tmp", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"id": {"type": "STRING", "index": 1, "name": "id", "comment": null}, "survey_id": {"type": "STRING", "index": 2, "name": "survey_id", "comment": null}, "_fivetran_deleted": {"type": "BOOL", "index": 3, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "TIMESTAMP", "index": 4, "name": "_fivetran_synced", "comment": null}, "block_locking": {"type": "STRING", "index": 5, "name": "block_locking", "comment": null}, "block_visibility": {"type": "STRING", "index": 6, "name": "block_visibility", "comment": null}, "description": {"type": "STRING", "index": 7, "name": "description", "comment": null}, "randomize_questions": {"type": "STRING", "index": 8, "name": "randomize_questions", "comment": null}, "type": {"type": "STRING", "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__sub_question": {"metadata": {"type": "table", "schema": "zz_dbt_jamie_final", "name": "stg_qualtrics__sub_question", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"choice_data_export_tag": {"type": "STRING", "index": 1, "name": "choice_data_export_tag", "comment": null}, "key": {"type": "STRING", "index": 2, "name": "key", "comment": null}, "question_id": {"type": "STRING", "index": 3, "name": "question_id", "comment": null}, "survey_id": {"type": "STRING", "index": 4, "name": "survey_id", "comment": null}, "text": {"type": "STRING", "index": 5, "name": "text", "comment": null}, "is_deleted": {"type": "BOOL", "index": 6, "name": "is_deleted", "comment": null}, "_fivetran_synced": {"type": "TIMESTAMP", "index": 7, "name": "_fivetran_synced", "comment": null}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 291.0, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 15481.0, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "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__block_question": {"metadata": {"type": "table", "schema": "zz_dbt_jamie_final", "name": "stg_qualtrics__block_question", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"block_id": {"type": "STRING", "index": 1, "name": "block_id", "comment": null}, "question_id": {"type": "STRING", "index": 2, "name": "question_id", "comment": null}, "survey_id": {"type": "STRING", "index": 3, "name": "survey_id", "comment": null}, "is_deleted": {"type": "BOOL", "index": 4, "name": "is_deleted", "comment": null}, "_fivetran_synced": {"type": "TIMESTAMP", "index": 5, "name": "_fivetran_synced", "comment": null}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 207.0, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 11735.0, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "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__distribution": {"metadata": {"type": "table", "schema": "zz_dbt_jamie_final", "name": "stg_qualtrics__distribution", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"created_at": {"type": "TIMESTAMP", "index": 1, "name": "created_at", "comment": null}, "header_from_email": {"type": "STRING", "index": 2, "name": "header_from_email", "comment": null}, "header_from_name": {"type": "STRING", "index": 3, "name": "header_from_name", "comment": null}, "header_reply_to_email": {"type": "STRING", "index": 4, "name": "header_reply_to_email", "comment": null}, "header_subject": {"type": "STRING", "index": 5, "name": "header_subject", "comment": null}, "distribution_id": {"type": "STRING", "index": 6, "name": "distribution_id", "comment": null}, "message_library_id": {"type": "STRING", "index": 7, "name": "message_library_id", "comment": null}, "message_id": {"type": "STRING", "index": 8, "name": "message_id", "comment": null}, "message_text": {"type": "STRING", "index": 9, "name": "message_text", "comment": null}, "last_modified_at": {"type": "TIMESTAMP", "index": 10, "name": "last_modified_at", "comment": null}, "organization_id": {"type": "STRING", "index": 11, "name": "organization_id", "comment": null}, "owner_user_id": {"type": "STRING", "index": 12, "name": "owner_user_id", "comment": null}, "parent_distribution_id": {"type": "STRING", "index": 13, "name": "parent_distribution_id", "comment": null}, "recipient_contact_id": {"type": "STRING", "index": 14, "name": "recipient_contact_id", "comment": null}, "recipient_library_id": {"type": "STRING", "index": 15, "name": "recipient_library_id", "comment": null}, "recipient_mailing_list_id": {"type": "STRING", "index": 16, "name": "recipient_mailing_list_id", "comment": null}, "recipient_sample_id": {"type": "STRING", "index": 17, "name": "recipient_sample_id", "comment": null}, "request_status": {"type": "STRING", "index": 18, "name": "request_status", "comment": null}, "request_type": {"type": "STRING", "index": 19, "name": "request_type", "comment": null}, "send_at": {"type": "TIMESTAMP", "index": 20, "name": "send_at", "comment": null}, "survey_link_expires_at": {"type": "TIMESTAMP", "index": 21, "name": "survey_link_expires_at", "comment": null}, "survey_link_type": {"type": "STRING", "index": 22, "name": "survey_link_type", "comment": null}, "survey_id": {"type": "STRING", "index": 23, "name": "survey_id", "comment": null}, "is_deleted": {"type": "BOOL", "index": 24, "name": "is_deleted", "comment": null}, "_fivetran_synced": {"type": "TIMESTAMP", "index": 25, "name": "_fivetran_synced", "comment": null}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 26.0, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 6930.0, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "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_tmp": {"metadata": {"type": "view", "schema": "zz_dbt_jamie_final", "name": "stg_qualtrics__distribution_tmp", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"id": {"type": "STRING", "index": 1, "name": "id", "comment": null}, "_fivetran_deleted": {"type": "BOOL", "index": 2, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "TIMESTAMP", "index": 3, "name": "_fivetran_synced", "comment": null}, "created_date": {"type": "TIMESTAMP", "index": 4, "name": "created_date", "comment": null}, "header_from_email": {"type": "STRING", "index": 5, "name": "header_from_email", "comment": null}, "header_from_name": {"type": "STRING", "index": 6, "name": "header_from_name", "comment": null}, "header_reply_to_email": {"type": "STRING", "index": 7, "name": "header_reply_to_email", "comment": null}, "header_subject": {"type": "STRING", "index": 8, "name": "header_subject", "comment": null}, "message_library_id": {"type": "STRING", "index": 9, "name": "message_library_id", "comment": null}, "message_message_id": {"type": "STRING", "index": 10, "name": "message_message_id", "comment": null}, "message_message_text": {"type": "STRING", "index": 11, "name": "message_message_text", "comment": null}, "modified_date": {"type": "TIMESTAMP", "index": 12, "name": "modified_date", "comment": null}, "organization_id": {"type": "STRING", "index": 13, "name": "organization_id", "comment": null}, "owner_id": {"type": "STRING", "index": 14, "name": "owner_id", "comment": null}, "parent_distribution_id": {"type": "STRING", "index": 15, "name": "parent_distribution_id", "comment": null}, "recipient_contact_id": {"type": "STRING", "index": 16, "name": "recipient_contact_id", "comment": null}, "recipient_library_id": {"type": "STRING", "index": 17, "name": "recipient_library_id", "comment": null}, "recipient_mailing_list_id": {"type": "STRING", "index": 18, "name": "recipient_mailing_list_id", "comment": null}, "recipient_sample_id": {"type": "STRING", "index": 19, "name": "recipient_sample_id", "comment": null}, "request_status": {"type": "STRING", "index": 20, "name": "request_status", "comment": null}, "request_type": {"type": "STRING", "index": 21, "name": "request_type", "comment": null}, "send_date": {"type": "TIMESTAMP", "index": 22, "name": "send_date", "comment": null}, "survey_link_expiration_date": {"type": "TIMESTAMP", "index": 23, "name": "survey_link_expiration_date", "comment": null}, "survey_link_link_type": {"type": "STRING", "index": 24, "name": "survey_link_link_type", "comment": null}, "survey_link_survey_id": {"type": "STRING", "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_response": {"metadata": {"type": "table", "schema": "zz_dbt_jamie_final", "name": "stg_qualtrics__question_response", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"_fivetran_id": {"type": "STRING", "index": 1, "name": "_fivetran_id", "comment": null}, "loop_id": {"type": "STRING", "index": 2, "name": "loop_id", "comment": null}, "question_id": {"type": "STRING", "index": 3, "name": "question_id", "comment": null}, "question": {"type": "STRING", "index": 4, "name": "question", "comment": null}, "question_option_key": {"type": "STRING", "index": 5, "name": "question_option_key", "comment": null}, "response_id": {"type": "STRING", "index": 6, "name": "response_id", "comment": null}, "sub_question_key": {"type": "STRING", "index": 7, "name": "sub_question_key", "comment": null}, "sub_question_text": {"type": "STRING", "index": 8, "name": "sub_question_text", "comment": null}, "value": {"type": "STRING", "index": 9, "name": "value", "comment": null}, "_fivetran_synced": {"type": "TIMESTAMP", "index": 10, "name": "_fivetran_synced", "comment": null}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 10540.0, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 1421938.0, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "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__directory_mailing_list": {"metadata": {"type": "table", "schema": "zz_dbt_jamie_final", "name": "stg_qualtrics__directory_mailing_list", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"created_at": {"type": "TIMESTAMP", "index": 1, "name": "created_at", "comment": null}, "directory_id": {"type": "STRING", "index": 2, "name": "directory_id", "comment": null}, "mailing_list_id": {"type": "STRING", "index": 3, "name": "mailing_list_id", "comment": null}, "last_modified_at": {"type": "TIMESTAMP", "index": 4, "name": "last_modified_at", "comment": null}, "name": {"type": "STRING", "index": 5, "name": "name", "comment": null}, "owner_user_id": {"type": "STRING", "index": 6, "name": "owner_user_id", "comment": null}, "is_deleted": {"type": "BOOL", "index": 7, "name": "is_deleted", "comment": null}, "_fivetran_synced": {"type": "TIMESTAMP", "index": 8, "name": "_fivetran_synced", "comment": null}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 10.0, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 1044.0, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "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__survey_embedded_data": {"metadata": {"type": "table", "schema": "zz_dbt_jamie_final", "name": "stg_qualtrics__survey_embedded_data", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"import_id": {"type": "STRING", "index": 1, "name": "import_id", "comment": null}, "key": {"type": "STRING", "index": 2, "name": "key", "comment": null}, "response_id": {"type": "STRING", "index": 3, "name": "response_id", "comment": null}, "value": {"type": "STRING", "index": 4, "name": "value", "comment": null}, "_fivetran_synced": {"type": "TIMESTAMP", "index": 5, "name": "_fivetran_synced", "comment": null}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 167.0, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 10442.0, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "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_version": {"metadata": {"type": "table", "schema": "zz_dbt_jamie_final", "name": "stg_qualtrics__survey_version", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"created_at": {"type": "TIMESTAMP", "index": 1, "name": "created_at", "comment": null}, "version_description": {"type": "STRING", "index": 2, "name": "version_description", "comment": null}, "version_id": {"type": "STRING", "index": 3, "name": "version_id", "comment": null}, "is_published": {"type": "BOOL", "index": 4, "name": "is_published", "comment": null}, "survey_id": {"type": "STRING", "index": 5, "name": "survey_id", "comment": null}, "publisher_user_id": {"type": "STRING", "index": 6, "name": "publisher_user_id", "comment": null}, "version_number": {"type": "INT64", "index": 7, "name": "version_number", "comment": null}, "was_published": {"type": "BOOL", "index": 8, "name": "was_published", "comment": null}, "is_deleted": {"type": "BOOL", "index": 9, "name": "is_deleted", "comment": null}, "_fivetran_synced": {"type": "TIMESTAMP", "index": 10, "name": "_fivetran_synced", "comment": null}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 249.0, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 25250.0, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "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__block": {"metadata": {"type": "table", "schema": "zz_dbt_jamie_final", "name": "stg_qualtrics__block", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"is_locked": {"type": "STRING", "index": 1, "name": "is_locked", "comment": null}, "block_visibility": {"type": "STRING", "index": 2, "name": "block_visibility", "comment": null}, "description": {"type": "STRING", "index": 3, "name": "description", "comment": null}, "block_id": {"type": "STRING", "index": 4, "name": "block_id", "comment": null}, "randomize_questions": {"type": "STRING", "index": 5, "name": "randomize_questions", "comment": null}, "survey_id": {"type": "STRING", "index": 6, "name": "survey_id", "comment": null}, "type": {"type": "STRING", "index": 7, "name": "type", "comment": null}, "is_deleted": {"type": "BOOL", "index": 8, "name": "is_deleted", "comment": null}, "_fivetran_synced": {"type": "TIMESTAMP", "index": 9, "name": "_fivetran_synced", "comment": null}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 49.0, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 4365.0, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.qualtrics_source.stg_qualtrics__block"}, "model.qualtrics_source.stg_qualtrics__directory_mailing_list_tmp": {"metadata": {"type": "view", "schema": "zz_dbt_jamie_final", "name": "stg_qualtrics__directory_mailing_list_tmp", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"directory_id": {"type": "STRING", "index": 1, "name": "directory_id", "comment": null}, "id": {"type": "STRING", "index": 2, "name": "id", "comment": null}, "_fivetran_deleted": {"type": "BOOL", "index": 3, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "TIMESTAMP", "index": 4, "name": "_fivetran_synced", "comment": null}, "creation_date": {"type": "TIMESTAMP", "index": 5, "name": "creation_date", "comment": null}, "last_modified_date": {"type": "TIMESTAMP", "index": 6, "name": "last_modified_date", "comment": null}, "name": {"type": "STRING", "index": 7, "name": "name", "comment": null}, "owner_id": {"type": "STRING", "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"}}, "sources": {"source.qualtrics_source.qualtrics.contact_mailing_list_membership": {"metadata": {"type": "table", "schema": "qualtrics", "name": "contact_mailing_list_membership", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"contact_lookup_id": {"type": "STRING", "index": 1, "name": "contact_lookup_id", "comment": null}, "_fivetran_synced": {"type": "TIMESTAMP", "index": 2, "name": "_fivetran_synced", "comment": null}, "contact_id": {"type": "STRING", "index": 3, "name": "contact_id", "comment": null}, "directory_id": {"type": "STRING", "index": 4, "name": "directory_id", "comment": null}, "mailing_list_id": {"type": "STRING", "index": 5, "name": "mailing_list_id", "comment": null}, "name": {"type": "STRING", "index": 6, "name": "name", "comment": null}, "owner_id": {"type": "STRING", "index": 7, "name": "owner_id", "comment": null}, "unsubscribe_date": {"type": "TIMESTAMP", "index": 8, "name": "unsubscribe_date", "comment": null}, "unsubscribed": {"type": "BOOL", "index": 9, "name": "unsubscribed", "comment": null}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 20.0, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 2608.0, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "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.survey_version": {"metadata": {"type": "table", "schema": "qualtrics", "name": "survey_version", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"id": {"type": "STRING", "index": 1, "name": "id", "comment": null}, "survey_id": {"type": "STRING", "index": 2, "name": "survey_id", "comment": null}, "_fivetran_deleted": {"type": "BOOL", "index": 3, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "TIMESTAMP", "index": 4, "name": "_fivetran_synced", "comment": null}, "creation_date": {"type": "TIMESTAMP", "index": 5, "name": "creation_date", "comment": null}, "description": {"type": "STRING", "index": 6, "name": "description", "comment": null}, "published": {"type": "BOOL", "index": 7, "name": "published", "comment": null}, "user_id": {"type": "STRING", "index": 8, "name": "user_id", "comment": null}, "version_number": {"type": "INT64", "index": 9, "name": "version_number", "comment": null}, "was_published": {"type": "BOOL", "index": 10, "name": "was_published", "comment": null}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 249.0, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 25250.0, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.qualtrics_source.qualtrics.survey_version"}, "source.qualtrics_source.qualtrics.distribution_contact": {"metadata": {"type": "table", "schema": "qualtrics", "name": "distribution_contact", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"contact_id": {"type": "STRING", "index": 1, "name": "contact_id", "comment": null}, "distribution_id": {"type": "STRING", "index": 2, "name": "distribution_id", "comment": null}, "_fivetran_synced": {"type": "TIMESTAMP", "index": 3, "name": "_fivetran_synced", "comment": null}, "contact_frequency_rule_id": {"type": "STRING", "index": 4, "name": "contact_frequency_rule_id", "comment": null}, "contact_lookup_id": {"type": "STRING", "index": 5, "name": "contact_lookup_id", "comment": null}, "opened_at": {"type": "TIMESTAMP", "index": 6, "name": "opened_at", "comment": null}, "response_completed_at": {"type": "TIMESTAMP", "index": 7, "name": "response_completed_at", "comment": null}, "response_id": {"type": "STRING", "index": 8, "name": "response_id", "comment": null}, "response_started_at": {"type": "TIMESTAMP", "index": 9, "name": "response_started_at", "comment": null}, "sent_at": {"type": "TIMESTAMP", "index": 10, "name": "sent_at", "comment": null}, "status": {"type": "STRING", "index": 11, "name": "status", "comment": null}, "survey_link": {"type": "STRING", "index": 12, "name": "survey_link", "comment": null}, "survey_session_id": {"type": "STRING", "index": 13, "name": "survey_session_id", "comment": null}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 37.0, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 9866.0, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.qualtrics_source.qualtrics.distribution_contact"}, "source.qualtrics_source.qualtrics.survey": {"metadata": {"type": "table", "schema": "qualtrics", "name": "survey", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"id": {"type": "STRING", "index": 1, "name": "id", "comment": null}, "_fivetran_deleted": {"type": "BOOL", "index": 2, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "TIMESTAMP", "index": 3, "name": "_fivetran_synced", "comment": null}, "auto_scoring_category": {"type": "STRING", "index": 4, "name": "auto_scoring_category", "comment": null}, "brand_base_url": {"type": "STRING", "index": 5, "name": "brand_base_url", "comment": null}, "brand_id": {"type": "STRING", "index": 6, "name": "brand_id", "comment": null}, "bundle_short_name": {"type": "STRING", "index": 7, "name": "bundle_short_name", "comment": null}, "composition_type": {"type": "STRING", "index": 8, "name": "composition_type", "comment": null}, "creator_id": {"type": "STRING", "index": 9, "name": "creator_id", "comment": null}, "default_scoring_category": {"type": "STRING", "index": 10, "name": "default_scoring_category", "comment": null}, "division_id": {"type": "STRING", "index": 11, "name": "division_id", "comment": null}, "is_active": {"type": "BOOL", "index": 12, "name": "is_active", "comment": null}, "last_accessed": {"type": "TIMESTAMP", "index": 13, "name": "last_accessed", "comment": null}, "last_activated": {"type": "TIMESTAMP", "index": 14, "name": "last_activated", "comment": null}, "last_modified": {"type": "TIMESTAMP", "index": 15, "name": "last_modified", "comment": null}, "option_active_response_set": {"type": "STRING", "index": 16, "name": "option_active_response_set", "comment": null}, "option_anonymize_response": {"type": "STRING", "index": 17, "name": "option_anonymize_response", "comment": null}, "option_auto_confirm_start": {"type": "BOOL", "index": 18, "name": "option_auto_confirm_start", "comment": null}, "option_autoadvance": {"type": "BOOL", "index": 19, "name": "option_autoadvance", "comment": null}, "option_autoadvance_pages": {"type": "BOOL", "index": 20, "name": "option_autoadvance_pages", "comment": null}, "option_autofocus": {"type": "BOOL", "index": 21, "name": "option_autofocus", "comment": null}, "option_available_languages": {"type": "STRING", "index": 22, "name": "option_available_languages", "comment": null}, "option_back_button": {"type": "BOOL", "index": 23, "name": "option_back_button", "comment": null}, "option_ballot_box_stuffing_prevention": {"type": "BOOL", "index": 24, "name": "option_ballot_box_stuffing_prevention", "comment": null}, "option_collect_geo_location": {"type": "BOOL", "index": 25, "name": "option_collect_geo_location", "comment": null}, "option_confirm_start": {"type": "BOOL", "index": 26, "name": "option_confirm_start", "comment": null}, "option_custom_styles": {"type": "STRING", "index": 27, "name": "option_custom_styles", "comment": null}, "option_email_thank_you": {"type": "BOOL", "index": 28, "name": "option_email_thank_you", "comment": null}, "option_eosredirect_url": {"type": "STRING", "index": 29, "name": "option_eosredirect_url", "comment": null}, "option_highlight_questions": {"type": "STRING", "index": 30, "name": "option_highlight_questions", "comment": null}, "option_inactive_survey": {"type": "STRING", "index": 31, "name": "option_inactive_survey", "comment": null}, "option_new_scoring": {"type": "INT64", "index": 32, "name": "option_new_scoring", "comment": null}, "option_next_button": {"type": "STRING", "index": 33, "name": "option_next_button", "comment": null}, "option_no_index": {"type": "STRING", "index": 34, "name": "option_no_index", "comment": null}, "option_page_transition": {"type": "STRING", "index": 35, "name": "option_page_transition", "comment": null}, "option_partial_data": {"type": "STRING", "index": 36, "name": "option_partial_data", "comment": null}, "option_partial_data_close_after": {"type": "STRING", "index": 37, "name": "option_partial_data_close_after", "comment": null}, "option_password_protection": {"type": "STRING", "index": 38, "name": "option_password_protection", "comment": null}, "option_previous_button": {"type": "STRING", "index": 39, "name": "option_previous_button", "comment": null}, "option_progress_bar_display": {"type": "STRING", "index": 40, "name": "option_progress_bar_display", "comment": null}, "option_protect_selection_ids": {"type": "BOOL", "index": 41, "name": "option_protect_selection_ids", "comment": null}, "option_recaptcha_v_3": {"type": "BOOL", "index": 42, "name": "option_recaptcha_v_3", "comment": null}, "option_referer_check": {"type": "STRING", "index": 43, "name": "option_referer_check", "comment": null}, "option_referer_url": {"type": "STRING", "index": 44, "name": "option_referer_url", "comment": null}, "option_relevant_id": {"type": "BOOL", "index": 45, "name": "option_relevant_id", "comment": null}, "option_relevant_idlockout_period": {"type": "STRING", "index": 46, "name": "option_relevant_idlockout_period", "comment": null}, "option_response_summary": {"type": "STRING", "index": 47, "name": "option_response_summary", "comment": null}, "option_save_and_continue": {"type": "BOOL", "index": 48, "name": "option_save_and_continue", "comment": null}, "option_secure_response_files": {"type": "BOOL", "index": 49, "name": "option_secure_response_files", "comment": null}, "option_show_export_tags": {"type": "BOOL", "index": 50, "name": "option_show_export_tags", "comment": null}, "option_skin": {"type": "STRING", "index": 51, "name": "option_skin", "comment": null}, "option_skin_library": {"type": "STRING", "index": 52, "name": "option_skin_library", "comment": null}, "option_skin_question_width": {"type": "INT64", "index": 53, "name": "option_skin_question_width", "comment": null}, "option_skin_type": {"type": "STRING", "index": 54, "name": "option_skin_type", "comment": null}, "option_survey_creation_date": {"type": "TIMESTAMP", "index": 55, "name": "option_survey_creation_date", "comment": null}, "option_survey_expiration": {"type": "STRING", "index": 56, "name": "option_survey_expiration", "comment": null}, "option_survey_language": {"type": "STRING", "index": 57, "name": "option_survey_language", "comment": null}, "option_survey_meta_description": {"type": "STRING", "index": 58, "name": "option_survey_meta_description", "comment": null}, "option_survey_name": {"type": "STRING", "index": 59, "name": "option_survey_name", "comment": null}, "option_survey_protection": {"type": "STRING", "index": 60, "name": "option_survey_protection", "comment": null}, "option_survey_termination": {"type": "STRING", "index": 61, "name": "option_survey_termination", "comment": null}, "option_survey_title": {"type": "STRING", "index": 62, "name": "option_survey_title", "comment": null}, "option_validate_message": {"type": "BOOL", "index": 63, "name": "option_validate_message", "comment": null}, "owner_id": {"type": "STRING", "index": 64, "name": "owner_id", "comment": null}, "project_category": {"type": "STRING", "index": 65, "name": "project_category", "comment": null}, "project_type": {"type": "STRING", "index": 66, "name": "project_type", "comment": null}, "registry_sha": {"type": "STRING", "index": 67, "name": "registry_sha", "comment": null}, "registry_version": {"type": "STRING", "index": 68, "name": "registry_version", "comment": null}, "schema_version": {"type": "STRING", "index": 69, "name": "schema_version", "comment": null}, "scoring_summary_after_questions": {"type": "BOOL", "index": 70, "name": "scoring_summary_after_questions", "comment": null}, "scoring_summary_after_survey": {"type": "BOOL", "index": 71, "name": "scoring_summary_after_survey", "comment": null}, "scoring_summary_category": {"type": "STRING", "index": 72, "name": "scoring_summary_category", "comment": null}, "survey_name": {"type": "STRING", "index": 73, "name": "survey_name", "comment": null}, "survey_status": {"type": "STRING", "index": 74, "name": "survey_status", "comment": null}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 16.0, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 11526.0, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.qualtrics_source.qualtrics.survey"}, "source.qualtrics_source.qualtrics.directory_mailing_list": {"metadata": {"type": "table", "schema": "qualtrics", "name": "directory_mailing_list", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"directory_id": {"type": "STRING", "index": 1, "name": "directory_id", "comment": null}, "id": {"type": "STRING", "index": 2, "name": "id", "comment": null}, "_fivetran_deleted": {"type": "BOOL", "index": 3, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "TIMESTAMP", "index": 4, "name": "_fivetran_synced", "comment": null}, "creation_date": {"type": "TIMESTAMP", "index": 5, "name": "creation_date", "comment": null}, "last_modified_date": {"type": "TIMESTAMP", "index": 6, "name": "last_modified_date", "comment": null}, "name": {"type": "STRING", "index": 7, "name": "name", "comment": null}, "owner_id": {"type": "STRING", "index": 8, "name": "owner_id", "comment": null}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 10.0, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 1044.0, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.qualtrics_source.qualtrics.directory_mailing_list"}, "source.qualtrics_source.qualtrics.user": {"metadata": {"type": "table", "schema": "qualtrics", "name": "user", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"id": {"type": "STRING", "index": 1, "name": "id", "comment": null}, "_fivetran_deleted": {"type": "BOOL", "index": 2, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "TIMESTAMP", "index": 3, "name": "_fivetran_synced", "comment": null}, "account_creation_date": {"type": "TIMESTAMP", "index": 4, "name": "account_creation_date", "comment": null}, "account_expiration_date": {"type": "TIMESTAMP", "index": 5, "name": "account_expiration_date", "comment": null}, "account_status": {"type": "STRING", "index": 6, "name": "account_status", "comment": null}, "division_id": {"type": "STRING", "index": 7, "name": "division_id", "comment": null}, "email": {"type": "STRING", "index": 8, "name": "email", "comment": null}, "first_name": {"type": "STRING", "index": 9, "name": "first_name", "comment": null}, "language": {"type": "STRING", "index": 10, "name": "language", "comment": null}, "last_login_date": {"type": "TIMESTAMP", "index": 11, "name": "last_login_date", "comment": null}, "last_name": {"type": "STRING", "index": 12, "name": "last_name", "comment": null}, "organization_id": {"type": "STRING", "index": 13, "name": "organization_id", "comment": null}, "password_expiration_date": {"type": "TIMESTAMP", "index": 14, "name": "password_expiration_date", "comment": null}, "password_last_changed_date": {"type": "TIMESTAMP", "index": 15, "name": "password_last_changed_date", "comment": null}, "response_count_auditable": {"type": "INT64", "index": 16, "name": "response_count_auditable", "comment": null}, "response_count_deleted": {"type": "INT64", "index": 17, "name": "response_count_deleted", "comment": null}, "response_count_generated": {"type": "INT64", "index": 18, "name": "response_count_generated", "comment": null}, "time_zone": {"type": "STRING", "index": 19, "name": "time_zone", "comment": null}, "unsubscribed": {"type": "BOOL", "index": 20, "name": "unsubscribed", "comment": null}, "user_type": {"type": "STRING", "index": 21, "name": "user_type", "comment": null}, "username": {"type": "STRING", "index": 22, "name": "username", "comment": null}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 2.0, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 229.0, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.qualtrics_source.qualtrics.user"}, "source.qualtrics_source.qualtrics.question": {"metadata": {"type": "table", "schema": "qualtrics", "name": "question", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"id": {"type": "STRING", "index": 1, "name": "id", "comment": null}, "survey_id": {"type": "STRING", "index": 2, "name": "survey_id", "comment": null}, "_fivetran_deleted": {"type": "BOOL", "index": 3, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "TIMESTAMP", "index": 4, "name": "_fivetran_synced", "comment": null}, "data_export_tag": {"type": "STRING", "index": 5, "name": "data_export_tag", "comment": null}, "data_visibility_hidden": {"type": "BOOL", "index": 6, "name": "data_visibility_hidden", "comment": null}, "data_visibility_private": {"type": "BOOL", "index": 7, "name": "data_visibility_private", "comment": null}, "next_answer_id": {"type": "INT64", "index": 8, "name": "next_answer_id", "comment": null}, "next_choice_id": {"type": "INT64", "index": 9, "name": "next_choice_id", "comment": null}, "question_description": {"type": "STRING", "index": 10, "name": "question_description", "comment": null}, "question_description_option": {"type": "STRING", "index": 11, "name": "question_description_option", "comment": null}, "question_text": {"type": "STRING", "index": 12, "name": "question_text", "comment": null}, "question_text_unsafe": {"type": "STRING", "index": 13, "name": "question_text_unsafe", "comment": null}, "question_type": {"type": "STRING", "index": 14, "name": "question_type", "comment": null}, "selector": {"type": "STRING", "index": 15, "name": "selector", "comment": null}, "sub_selector": {"type": "STRING", "index": 16, "name": "sub_selector", "comment": null}, "validation_setting_force_response": {"type": "STRING", "index": 17, "name": "validation_setting_force_response", "comment": null}, "validation_setting_force_response_type": {"type": "STRING", "index": 18, "name": "validation_setting_force_response_type", "comment": null}, "validation_setting_type": {"type": "STRING", "index": 19, "name": "validation_setting_type", "comment": null}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 219.0, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 46494.0, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.qualtrics_source.qualtrics.question"}, "source.qualtrics_source.qualtrics.directory": {"metadata": {"type": "table", "schema": "qualtrics", "name": "directory", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"id": {"type": "STRING", "index": 1, "name": "id", "comment": null}, "_fivetran_deleted": {"type": "BOOL", "index": 2, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "TIMESTAMP", "index": 3, "name": "_fivetran_synced", "comment": null}, "deduplication_criteria_email": {"type": "BOOL", "index": 4, "name": "deduplication_criteria_email", "comment": null}, "deduplication_criteria_external_data_reference": {"type": "BOOL", "index": 5, "name": "deduplication_criteria_external_data_reference", "comment": null}, "deduplication_criteria_first_name": {"type": "BOOL", "index": 6, "name": "deduplication_criteria_first_name", "comment": null}, "deduplication_criteria_last_name": {"type": "BOOL", "index": 7, "name": "deduplication_criteria_last_name", "comment": null}, "deduplication_criteria_phone": {"type": "BOOL", "index": 8, "name": "deduplication_criteria_phone", "comment": null}, "is_default": {"type": "BOOL", "index": 9, "name": "is_default", "comment": null}, "name": {"type": "STRING", "index": 10, "name": "name", "comment": null}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 1.0, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 53.0, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.qualtrics_source.qualtrics.directory"}, "source.qualtrics_source.qualtrics.survey_response": {"metadata": {"type": "table", "schema": "qualtrics", "name": "survey_response", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"id": {"type": "STRING", "index": 1, "name": "id", "comment": null}, "_fivetran_synced": {"type": "TIMESTAMP", "index": 2, "name": "_fivetran_synced", "comment": null}, "distribution_channel": {"type": "STRING", "index": 3, "name": "distribution_channel", "comment": null}, "duration_in_seconds": {"type": "INT64", "index": 4, "name": "duration_in_seconds", "comment": null}, "end_date": {"type": "TIMESTAMP", "index": 5, "name": "end_date", "comment": null}, "finished": {"type": "INT64", "index": 6, "name": "finished", "comment": null}, "ip_address": {"type": "STRING", "index": 7, "name": "ip_address", "comment": null}, "last_modified_date": {"type": "TIMESTAMP", "index": 8, "name": "last_modified_date", "comment": null}, "location_latitude": {"type": "FLOAT64", "index": 9, "name": "location_latitude", "comment": null}, "location_longitude": {"type": "FLOAT64", "index": 10, "name": "location_longitude", "comment": null}, "progress": {"type": "INT64", "index": 11, "name": "progress", "comment": null}, "recipient_email": {"type": "STRING", "index": 12, "name": "recipient_email", "comment": null}, "recipient_first_name": {"type": "STRING", "index": 13, "name": "recipient_first_name", "comment": null}, "recipient_last_name": {"type": "STRING", "index": 14, "name": "recipient_last_name", "comment": null}, "recorded_date": {"type": "TIMESTAMP", "index": 15, "name": "recorded_date", "comment": null}, "start_date": {"type": "TIMESTAMP", "index": 16, "name": "start_date", "comment": null}, "status": {"type": "INT64", "index": 17, "name": "status", "comment": null}, "survey_id": {"type": "STRING", "index": 18, "name": "survey_id", "comment": null}, "user_language": {"type": "STRING", "index": 19, "name": "user_language", "comment": null}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 76.0, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 12491.0, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.qualtrics_source.qualtrics.survey_response"}, "source.qualtrics_source.qualtrics.question_response": {"metadata": {"type": "table", "schema": "qualtrics", "name": "question_response", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"_fivetran_id": {"type": "STRING", "index": 1, "name": "_fivetran_id", "comment": null}, "_fivetran_synced": {"type": "TIMESTAMP", "index": 2, "name": "_fivetran_synced", "comment": null}, "loop_id": {"type": "STRING", "index": 3, "name": "loop_id", "comment": null}, "question": {"type": "STRING", "index": 4, "name": "question", "comment": null}, "question_id": {"type": "STRING", "index": 5, "name": "question_id", "comment": null}, "question_option_key": {"type": "STRING", "index": 6, "name": "question_option_key", "comment": null}, "response_id": {"type": "STRING", "index": 7, "name": "response_id", "comment": null}, "sub_question_key": {"type": "STRING", "index": 8, "name": "sub_question_key", "comment": null}, "sub_question_text": {"type": "STRING", "index": 9, "name": "sub_question_text", "comment": null}, "value": {"type": "STRING", "index": 10, "name": "value", "comment": null}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 10540.0, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 1421938.0, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.qualtrics_source.qualtrics.question_response"}, "source.qualtrics_source.qualtrics.question_option": {"metadata": {"type": "table", "schema": "qualtrics", "name": "question_option", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"key": {"type": "STRING", "index": 1, "name": "key", "comment": null}, "question_id": {"type": "STRING", "index": 2, "name": "question_id", "comment": null}, "survey_id": {"type": "STRING", "index": 3, "name": "survey_id", "comment": null}, "_fivetran_deleted": {"type": "BOOL", "index": 4, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "TIMESTAMP", "index": 5, "name": "_fivetran_synced", "comment": null}, "recode_value": {"type": "STRING", "index": 6, "name": "recode_value", "comment": null}, "text": {"type": "STRING", "index": 7, "name": "text", "comment": null}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 886.0, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 52164.0, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.qualtrics_source.qualtrics.question_option"}, "source.qualtrics_source.qualtrics.block": {"metadata": {"type": "table", "schema": "qualtrics", "name": "block", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"id": {"type": "STRING", "index": 1, "name": "id", "comment": null}, "survey_id": {"type": "STRING", "index": 2, "name": "survey_id", "comment": null}, "_fivetran_deleted": {"type": "BOOL", "index": 3, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "TIMESTAMP", "index": 4, "name": "_fivetran_synced", "comment": null}, "block_locking": {"type": "STRING", "index": 5, "name": "block_locking", "comment": null}, "block_visibility": {"type": "STRING", "index": 6, "name": "block_visibility", "comment": null}, "description": {"type": "STRING", "index": 7, "name": "description", "comment": null}, "randomize_questions": {"type": "STRING", "index": 8, "name": "randomize_questions", "comment": null}, "type": {"type": "STRING", "index": 9, "name": "type", "comment": null}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 49.0, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 4365.0, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.qualtrics_source.qualtrics.block"}, "source.qualtrics_source.qualtrics.sub_question": {"metadata": {"type": "table", "schema": "qualtrics", "name": "sub_question", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"key": {"type": "STRING", "index": 1, "name": "key", "comment": null}, "question_id": {"type": "STRING", "index": 2, "name": "question_id", "comment": null}, "survey_id": {"type": "STRING", "index": 3, "name": "survey_id", "comment": null}, "_fivetran_deleted": {"type": "BOOL", "index": 4, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "TIMESTAMP", "index": 5, "name": "_fivetran_synced", "comment": null}, "choice_data_export_tag": {"type": "STRING", "index": 6, "name": "choice_data_export_tag", "comment": null}, "text": {"type": "STRING", "index": 7, "name": "text", "comment": null}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 291.0, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 15481.0, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.qualtrics_source.qualtrics.sub_question"}, "source.qualtrics_source.qualtrics.survey_embedded_data": {"metadata": {"type": "table", "schema": "qualtrics", "name": "survey_embedded_data", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"import_id": {"type": "STRING", "index": 1, "name": "import_id", "comment": null}, "key": {"type": "STRING", "index": 2, "name": "key", "comment": null}, "response_id": {"type": "STRING", "index": 3, "name": "response_id", "comment": null}, "value": {"type": "STRING", "index": 4, "name": "value", "comment": null}, "_fivetran_synced": {"type": "TIMESTAMP", "index": 5, "name": "_fivetran_synced", "comment": null}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 167.0, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 10442.0, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.qualtrics_source.qualtrics.survey_embedded_data"}, "source.qualtrics_source.qualtrics.directory_contact": {"metadata": {"type": "table", "schema": "qualtrics", "name": "directory_contact", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"directory_id": {"type": "STRING", "index": 1, "name": "directory_id", "comment": null}, "id": {"type": "STRING", "index": 2, "name": "id", "comment": null}, "_fivetran_synced": {"type": "TIMESTAMP", "index": 3, "name": "_fivetran_synced", "comment": null}, "creation_date": {"type": "TIMESTAMP", "index": 4, "name": "creation_date", "comment": null}, "directory_unsubscribe_date": {"type": "TIMESTAMP", "index": 5, "name": "directory_unsubscribe_date", "comment": null}, "directory_unsubscribed": {"type": "BOOL", "index": 6, "name": "directory_unsubscribed", "comment": null}, "email": {"type": "STRING", "index": 7, "name": "email", "comment": null}, "email_domain": {"type": "STRING", "index": 8, "name": "email_domain", "comment": null}, "embedded_data_last_active_time": {"type": "DATETIME", "index": 9, "name": "embedded_data_last_active_time", "comment": null}, "embedded_data_last_response_date": {"type": "DATE", "index": 10, "name": "embedded_data_last_response_date", "comment": null}, "embedded_data_login_date": {"type": "TIMESTAMP", "index": 11, "name": "embedded_data_login_date", "comment": null}, "ext_ref": {"type": "STRING", "index": 12, "name": "ext_ref", "comment": null}, "first_name": {"type": "STRING", "index": 13, "name": "first_name", "comment": null}, "language": {"type": "STRING", "index": 14, "name": "language", "comment": null}, "last_modified": {"type": "TIMESTAMP", "index": 15, "name": "last_modified", "comment": null}, "last_name": {"type": "STRING", "index": 16, "name": "last_name", "comment": null}, "phone": {"type": "STRING", "index": 17, "name": "phone", "comment": null}, "write_blanks": {"type": "BOOL", "index": 18, "name": "write_blanks", "comment": null}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 12.0, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 1392.0, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.qualtrics_source.qualtrics.directory_contact"}, "source.qualtrics_source.qualtrics.distribution": {"metadata": {"type": "table", "schema": "qualtrics", "name": "distribution", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"id": {"type": "STRING", "index": 1, "name": "id", "comment": null}, "_fivetran_deleted": {"type": "BOOL", "index": 2, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "TIMESTAMP", "index": 3, "name": "_fivetran_synced", "comment": null}, "created_date": {"type": "TIMESTAMP", "index": 4, "name": "created_date", "comment": null}, "header_from_email": {"type": "STRING", "index": 5, "name": "header_from_email", "comment": null}, "header_from_name": {"type": "STRING", "index": 6, "name": "header_from_name", "comment": null}, "header_reply_to_email": {"type": "STRING", "index": 7, "name": "header_reply_to_email", "comment": null}, "header_subject": {"type": "STRING", "index": 8, "name": "header_subject", "comment": null}, "message_library_id": {"type": "STRING", "index": 9, "name": "message_library_id", "comment": null}, "message_message_id": {"type": "STRING", "index": 10, "name": "message_message_id", "comment": null}, "message_message_text": {"type": "STRING", "index": 11, "name": "message_message_text", "comment": null}, "modified_date": {"type": "TIMESTAMP", "index": 12, "name": "modified_date", "comment": null}, "organization_id": {"type": "STRING", "index": 13, "name": "organization_id", "comment": null}, "owner_id": {"type": "STRING", "index": 14, "name": "owner_id", "comment": null}, "parent_distribution_id": {"type": "STRING", "index": 15, "name": "parent_distribution_id", "comment": null}, "recipient_contact_id": {"type": "STRING", "index": 16, "name": "recipient_contact_id", "comment": null}, "recipient_library_id": {"type": "STRING", "index": 17, "name": "recipient_library_id", "comment": null}, "recipient_mailing_list_id": {"type": "STRING", "index": 18, "name": "recipient_mailing_list_id", "comment": null}, "recipient_sample_id": {"type": "STRING", "index": 19, "name": "recipient_sample_id", "comment": null}, "request_status": {"type": "STRING", "index": 20, "name": "request_status", "comment": null}, "request_type": {"type": "STRING", "index": 21, "name": "request_type", "comment": null}, "send_date": {"type": "TIMESTAMP", "index": 22, "name": "send_date", "comment": null}, "survey_link_expiration_date": {"type": "TIMESTAMP", "index": 23, "name": "survey_link_expiration_date", "comment": null}, "survey_link_link_type": {"type": "STRING", "index": 24, "name": "survey_link_link_type", "comment": null}, "survey_link_survey_id": {"type": "STRING", "index": 25, "name": "survey_link_survey_id", "comment": null}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 26.0, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 6930.0, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.qualtrics_source.qualtrics.distribution"}, "source.qualtrics_source.qualtrics.block_question": {"metadata": {"type": "table", "schema": "qualtrics", "name": "block_question", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"block_id": {"type": "STRING", "index": 1, "name": "block_id", "comment": null}, "question_id": {"type": "STRING", "index": 2, "name": "question_id", "comment": null}, "survey_id": {"type": "STRING", "index": 3, "name": "survey_id", "comment": null}, "_fivetran_deleted": {"type": "BOOL", "index": 4, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "TIMESTAMP", "index": 5, "name": "_fivetran_synced", "comment": null}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 207.0, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 11735.0, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.qualtrics_source.qualtrics.block_question"}}, "errors": null} \ No newline at end of file +{"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} \ No newline at end of file diff --git a/docs/index.html b/docs/index.html index 5631ac6..ca1e6f8 100644 --- a/docs/index.html +++ b/docs/index.html @@ -24,7 +24,7 @@
-