From 681612f50c186f78cfaa7195e7ea8e699c91512f Mon Sep 17 00:00:00 2001 From: Jamie Rodriguez <65564846+fivetran-jamie@users.noreply.github.com> Date: Tue, 19 Dec 2023 12:12:45 -0800 Subject: [PATCH 1/5] send to buildskite --- .buildkite/scripts/run_models.sh | 2 +- models/qualtrics__daily_breakdown.sql | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.buildkite/scripts/run_models.sh b/.buildkite/scripts/run_models.sh index 90214c9..a236940 100644 --- a/.buildkite/scripts/run_models.sh +++ b/.buildkite/scripts/run_models.sh @@ -16,7 +16,7 @@ db=$1 echo `pwd` cd integration_tests dbt deps -dbt seed --target "$db" --full-refresh +dbt seed --target "$db" --full-refresh --exclude "distribution_contact" dbt run --target "$db" --full-refresh dbt test --target "$db" dbt run --vars '{qualtrics__using_core_contacts: true, qualtrics__using_core_mailing_lists: true}' --target "$db" diff --git a/models/qualtrics__daily_breakdown.sql b/models/qualtrics__daily_breakdown.sql index 4fe0098..cd4e90c 100644 --- a/models/qualtrics__daily_breakdown.sql +++ b/models/qualtrics__daily_breakdown.sql @@ -26,7 +26,7 @@ spine as ( {% if execute %} {% set first_date_query %} - select min( sent_at ) as min_date from {{ var('distribution_contact') }} + select coalesce( min( sent_at ), '2016-01-01') as min_date from {{ var('distribution_contact') }} {% endset %} {% set first_date = run_query(first_date_query).columns[0][0]|string %} From 31b1d8929712b84051cca69ba1f724fbdbdcd314 Mon Sep 17 00:00:00 2001 From: Jamie Rodriguez <65564846+fivetran-jamie@users.noreply.github.com> Date: Tue, 19 Dec 2023 12:43:59 -0800 Subject: [PATCH 2/5] changes --- .buildkite/scripts/run_models.sh | 2 +- CHANGELOG.md | 6 ++++++ dbt_project.yml | 2 +- integration_tests/dbt_project.yml | 2 +- 4 files changed, 9 insertions(+), 3 deletions(-) diff --git a/.buildkite/scripts/run_models.sh b/.buildkite/scripts/run_models.sh index a236940..90214c9 100644 --- a/.buildkite/scripts/run_models.sh +++ b/.buildkite/scripts/run_models.sh @@ -16,7 +16,7 @@ db=$1 echo `pwd` cd integration_tests dbt deps -dbt seed --target "$db" --full-refresh --exclude "distribution_contact" +dbt seed --target "$db" --full-refresh dbt run --target "$db" --full-refresh dbt test --target "$db" dbt run --vars '{qualtrics__using_core_contacts: true, qualtrics__using_core_mailing_lists: true}' --target "$db" diff --git a/CHANGELOG.md b/CHANGELOG.md index 3132d4a..0f4073c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +# dbt_qualtrics v0.1.1 + +## Bug Fix +- Ensures that date spine in `qualtrics__daily_breakdown` always has a non-null start date, even if you do not have the `distribution_contact` source table, whose `min(created_at)` we base the date spine off of. + - If no `distribution_contact` table is present in your Qualtrics connector(s), the minimum date will be set to `2016-01-01`. + # dbt_qualtrics v0.1.0 This is the initial release of the Qualtrics dbt package! diff --git a/dbt_project.yml b/dbt_project.yml index 478f7eb..11f8b3c 100644 --- a/dbt_project.yml +++ b/dbt_project.yml @@ -1,5 +1,5 @@ name: 'qualtrics' -version: '0.1.0' +version: '0.1.1' config-version: 2 require-dbt-version: [">=1.3.0", "<2.0.0"] diff --git a/integration_tests/dbt_project.yml b/integration_tests/dbt_project.yml index 5fc5042..b48c5f8 100644 --- a/integration_tests/dbt_project.yml +++ b/integration_tests/dbt_project.yml @@ -1,5 +1,5 @@ name: 'qualtrics_integration_tests' -version: '0.1.0' +version: '0.1.1' profile: 'integration_tests' config-version: 2 From c38b36f5f733fc14eae30dcb18e43381a912cbbd Mon Sep 17 00:00:00 2001 From: Jamie Rodriguez <65564846+fivetran-jamie@users.noreply.github.com> Date: Tue, 19 Dec 2023 12:59:19 -0800 Subject: [PATCH 3/5] add other stuff --- .../maintainer_pull_request_template.md | 45 +++++-------------- .github/workflows/auto-release.yml | 13 ++++++ .gitignore | 5 ++- CHANGELOG.md | 6 +++ docs/catalog.json | 2 +- docs/index.html | 24 +++++----- docs/manifest.json | 2 +- docs/run_results.json | 2 +- 8 files changed, 49 insertions(+), 50 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/.gitignore b/.gitignore index 2710741..28d9843 100644 --- a/.gitignore +++ b/.gitignore @@ -2,5 +2,6 @@ target/ dbt_modules/ logs/ - -dbt_packages/ \ No newline at end of file +package-lock.yml +dbt_packages/ +integration_tests/package-lock.yml \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 0f4073c..2de47a3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,9 +1,15 @@ # dbt_qualtrics v0.1.1 +[PR #6](https://github.com/fivetran/dbt_qualtrics/pull/6) applies the following changes: + ## Bug Fix - Ensures that date spine in `qualtrics__daily_breakdown` always has a non-null start date, even if you do not have the `distribution_contact` source table, whose `min(created_at)` we base the date spine off of. - If no `distribution_contact` table is present in your Qualtrics connector(s), the minimum date will be set to `2016-01-01`. +## Under the Hood +- Updated the pull request [templates](/.github). +- Included auto-releaser GitHub Actions workflow to automate future releases. + # dbt_qualtrics v0.1.0 This is the initial release of the Qualtrics dbt package! diff --git a/docs/catalog.json b/docs/catalog.json index d0a27de..0dcb025 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.3", "generated_at": "2023-07-28T17:31:00.232436Z", "invocation_id": "8af2cd23-f47f-4149-be35-6f46472a50d4", "env": {}}, "nodes": {"model.qualtrics.qualtrics__survey": {"metadata": {"type": "table", "schema": "qualtrics_integration_tests_qualtrics", "name": "qualtrics__survey", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"survey_id": {"type": "STRING", "index": 1, "name": "survey_id", "comment": null}, "survey_name": {"type": "STRING", "index": 2, "name": "survey_name", "comment": null}, "survey_status": {"type": "STRING", "index": 3, "name": "survey_status", "comment": null}, "brand_base_url": {"type": "STRING", "index": 4, "name": "brand_base_url", "comment": null}, "brand_id": {"type": "STRING", "index": 5, "name": "brand_id", "comment": null}, "bundle_short_name": {"type": "INT64", "index": 6, "name": "bundle_short_name", "comment": null}, "composition_type": {"type": "INT64", "index": 7, "name": "composition_type", "comment": null}, "auto_scoring_category": {"type": "INT64", "index": 8, "name": "auto_scoring_category", "comment": null}, "default_scoring_category": {"type": "INT64", "index": 9, "name": "default_scoring_category", "comment": null}, "division_id": {"type": "INT64", "index": 10, "name": "division_id", "comment": null}, "creator_user_id": {"type": "STRING", "index": 11, "name": "creator_user_id", "comment": null}, "owner_user_id": {"type": "STRING", "index": 12, "name": "owner_user_id", "comment": null}, "project_category": {"type": "STRING", "index": 13, "name": "project_category", "comment": null}, "project_type": {"type": "STRING", "index": 14, "name": "project_type", "comment": null}, "registry_sha": {"type": "INT64", "index": 15, "name": "registry_sha", "comment": null}, "registry_version": {"type": "INT64", "index": 16, "name": "registry_version", "comment": null}, "schema_version": {"type": "INT64", "index": 17, "name": "schema_version", "comment": null}, "scoring_summary_after_questions": {"type": "BOOL", "index": 18, "name": "scoring_summary_after_questions", "comment": null}, "scoring_summary_after_survey": {"type": "BOOL", "index": 19, "name": "scoring_summary_after_survey", "comment": null}, "scoring_summary_category": {"type": "INT64", "index": 20, "name": "scoring_summary_category", "comment": null}, "last_accessed_at": {"type": "INT64", "index": 21, "name": "last_accessed_at", "comment": null}, "last_activated_at": {"type": "STRING", "index": 22, "name": "last_activated_at", "comment": null}, "last_modified_at": {"type": "STRING", "index": 23, "name": "last_modified_at", "comment": null}, "is_deleted": {"type": "BOOL", "index": 24, "name": "is_deleted", "comment": null}, "_fivetran_synced": {"type": "TIMESTAMP", "index": 25, "name": "_fivetran_synced", "comment": null}, "source_relation": {"type": "STRING", "index": 26, "name": "source_relation", "comment": null}, "version_id": {"type": "INT64", "index": 27, "name": "version_id", "comment": null}, "version_number": {"type": "INT64", "index": 28, "name": "version_number", "comment": null}, "version_description": {"type": "STRING", "index": 29, "name": "version_description", "comment": null}, "survey_version_created_at": {"type": "STRING", "index": 30, "name": "survey_version_created_at", "comment": null}, "count_published_versions": {"type": "INT64", "index": 31, "name": "count_published_versions", "comment": null}, "publisher_user_id": {"type": "STRING", "index": 32, "name": "publisher_user_id", "comment": null}, "publisher_email": {"type": "STRING", "index": 33, "name": "publisher_email", "comment": null}, "creator_email": {"type": "STRING", "index": 34, "name": "creator_email", "comment": null}, "owner_email": {"type": "STRING", "index": 35, "name": "owner_email", "comment": null}, "count_questions": {"type": "INT64", "index": 36, "name": "count_questions", "comment": null}, "avg_response_duration_in_seconds": {"type": "FLOAT64", "index": 37, "name": "avg_response_duration_in_seconds", "comment": null}, "median_response_duration_in_seconds": {"type": "FLOAT64", "index": 38, "name": "median_response_duration_in_seconds", "comment": null}, "avg_survey_progress_pct": {"type": "FLOAT64", "index": 39, "name": "avg_survey_progress_pct", "comment": null}, "median_survey_progress_pct": {"type": "FLOAT64", "index": 40, "name": "median_survey_progress_pct", "comment": null}, "count_survey_responses": {"type": "INT64", "index": 41, "name": "count_survey_responses", "comment": null}, "count_completed_survey_responses": {"type": "INT64", "index": 42, "name": "count_completed_survey_responses", "comment": null}, "count_survey_responses_30d": {"type": "INT64", "index": 43, "name": "count_survey_responses_30d", "comment": null}, "count_completed_survey_responses_30d": {"type": "INT64", "index": 44, "name": "count_completed_survey_responses_30d", "comment": null}, "count_anonymous_survey_responses": {"type": "INT64", "index": 45, "name": "count_anonymous_survey_responses", "comment": null}, "count_anonymous_completed_survey_responses": {"type": "INT64", "index": 46, "name": "count_anonymous_completed_survey_responses", "comment": null}, "count_social_media_survey_responses": {"type": "INT64", "index": 47, "name": "count_social_media_survey_responses", "comment": null}, "count_social_media_completed_survey_responses": {"type": "INT64", "index": 48, "name": "count_social_media_completed_survey_responses", "comment": null}, "count_personal_link_survey_responses": {"type": "INT64", "index": 49, "name": "count_personal_link_survey_responses", "comment": null}, "count_personal_link_completed_survey_responses": {"type": "INT64", "index": 50, "name": "count_personal_link_completed_survey_responses", "comment": null}, "count_qr_code_survey_responses": {"type": "INT64", "index": 51, "name": "count_qr_code_survey_responses", "comment": null}, "count_qr_code_completed_survey_responses": {"type": "INT64", "index": 52, "name": "count_qr_code_completed_survey_responses", "comment": null}, "count_email_survey_responses": {"type": "INT64", "index": 53, "name": "count_email_survey_responses", "comment": null}, "count_email_completed_survey_responses": {"type": "INT64", "index": 54, "name": "count_email_completed_survey_responses", "comment": null}, "count_sms_survey_responses": {"type": "INT64", "index": 55, "name": "count_sms_survey_responses", "comment": null}, "count_sms_completed_survey_responses": {"type": "INT64", "index": 56, "name": "count_sms_completed_survey_responses", "comment": null}, "count_uncategorized_survey_responses": {"type": "INT64", "index": 57, "name": "count_uncategorized_survey_responses", "comment": null}, "count_uncategorized_completed_survey_responses": {"type": "INT64", "index": 58, "name": "count_uncategorized_completed_survey_responses", "comment": null}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 5.0, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 1749.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.qualtrics__survey"}, "model.qualtrics.qualtrics__distribution": {"metadata": {"type": "table", "schema": "qualtrics_integration_tests_qualtrics", "name": "qualtrics__distribution", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"created_at": {"type": "STRING", "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": "INT64", "index": 7, "name": "message_library_id", "comment": null}, "message_id": {"type": "INT64", "index": 8, "name": "message_id", "comment": null}, "message_text": {"type": "INT64", "index": 9, "name": "message_text", "comment": null}, "last_modified_at": {"type": "STRING", "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": "STRING", "index": 20, "name": "send_at", "comment": null}, "survey_link_expires_at": {"type": "STRING", "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}, "source_relation": {"type": "STRING", "index": 26, "name": "source_relation", "comment": null}, "parent_distribution_header_subject": {"type": "STRING", "index": 27, "name": "parent_distribution_header_subject", "comment": null}, "recipient_mailing_list_name": {"type": "STRING", "index": 28, "name": "recipient_mailing_list_name", "comment": null}, "owner_email": {"type": "STRING", "index": 29, "name": "owner_email", "comment": null}, "owner_first_name": {"type": "STRING", "index": 30, "name": "owner_first_name", "comment": null}, "owner_last_name": {"type": "STRING", "index": 31, "name": "owner_last_name", "comment": null}, "current_count_surveys_pending": {"type": "INT64", "index": 32, "name": "current_count_surveys_pending", "comment": null}, "current_count_surveys_success": {"type": "INT64", "index": 33, "name": "current_count_surveys_success", "comment": null}, "current_count_surveys_error": {"type": "INT64", "index": 34, "name": "current_count_surveys_error", "comment": null}, "current_count_surveys_opened": {"type": "INT64", "index": 35, "name": "current_count_surveys_opened", "comment": null}, "current_count_surveys_complaint": {"type": "INT64", "index": 36, "name": "current_count_surveys_complaint", "comment": null}, "current_count_surveys_skipped": {"type": "INT64", "index": 37, "name": "current_count_surveys_skipped", "comment": null}, "current_count_surveys_blocked": {"type": "INT64", "index": 38, "name": "current_count_surveys_blocked", "comment": null}, "current_count_surveys_failure": {"type": "INT64", "index": 39, "name": "current_count_surveys_failure", "comment": null}, "current_count_surveys_unknown": {"type": "INT64", "index": 40, "name": "current_count_surveys_unknown", "comment": null}, "current_count_surveys_softbounce": {"type": "INT64", "index": 41, "name": "current_count_surveys_softbounce", "comment": null}, "current_count_surveys_hardbounce": {"type": "INT64", "index": 42, "name": "current_count_surveys_hardbounce", "comment": null}, "current_count_surveys_surveystarted": {"type": "INT64", "index": 43, "name": "current_count_surveys_surveystarted", "comment": null}, "current_count_surveys_surveypartiallyfinished": {"type": "INT64", "index": 44, "name": "current_count_surveys_surveypartiallyfinished", "comment": null}, "current_count_surveys_surveyfinished": {"type": "INT64", "index": 45, "name": "current_count_surveys_surveyfinished", "comment": null}, "current_count_surveys_surveyscreenedout": {"type": "INT64", "index": 46, "name": "current_count_surveys_surveyscreenedout", "comment": null}, "current_count_surveys_sessionexpired": {"type": "INT64", "index": 47, "name": "current_count_surveys_sessionexpired", "comment": null}, "total_count_contacts": {"type": "INT64", "index": 48, "name": "total_count_contacts", "comment": null}, "count_contacts_sent_surveys": {"type": "INT64", "index": 49, "name": "count_contacts_sent_surveys", "comment": null}, "count_contacts_opened_surveys": {"type": "INT64", "index": 50, "name": "count_contacts_opened_surveys", "comment": null}, "count_contacts_started_surveys": {"type": "INT64", "index": 51, "name": "count_contacts_started_surveys", "comment": null}, "count_contacts_completed_surveys": {"type": "INT64", "index": 52, "name": "count_contacts_completed_surveys", "comment": null}, "first_survey_sent_at": {"type": "TIMESTAMP", "index": 53, "name": "first_survey_sent_at", "comment": null}, "last_survey_sent_at": {"type": "TIMESTAMP", "index": 54, "name": "last_survey_sent_at", "comment": null}, "first_survey_opened_at": {"type": "TIMESTAMP", "index": 55, "name": "first_survey_opened_at", "comment": null}, "last_survey_opened_at": {"type": "TIMESTAMP", "index": 56, "name": "last_survey_opened_at", "comment": null}, "first_response_completed_at": {"type": "TIMESTAMP", "index": 57, "name": "first_response_completed_at", "comment": null}, "last_response_completed_at": {"type": "TIMESTAMP", "index": 58, "name": "last_response_completed_at", "comment": null}, "avg_time_to_open_in_seconds": {"type": "FLOAT64", "index": 59, "name": "avg_time_to_open_in_seconds", "comment": null}, "avg_time_to_start_in_seconds": {"type": "FLOAT64", "index": 60, "name": "avg_time_to_start_in_seconds", "comment": null}, "avg_time_to_complete_in_seconds": {"type": "FLOAT64", "index": 61, "name": "avg_time_to_complete_in_seconds", "comment": null}, "median_time_to_open_in_seconds": {"type": "FLOAT64", "index": 62, "name": "median_time_to_open_in_seconds", "comment": null}, "median_time_to_start_in_seconds": {"type": "FLOAT64", "index": 63, "name": "median_time_to_start_in_seconds", "comment": null}, "median_time_to_complete_in_seconds": {"type": "FLOAT64", "index": 64, "name": "median_time_to_complete_in_seconds", "comment": null}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 5.0, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 2454.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.qualtrics__distribution"}, "model.qualtrics.qualtrics__directory": {"metadata": {"type": "table", "schema": "qualtrics_integration_tests_qualtrics", "name": "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}, "source_relation": {"type": "STRING", "index": 11, "name": "source_relation", "comment": null}, "count_distinct_emails": {"type": "INT64", "index": 12, "name": "count_distinct_emails", "comment": null}, "count_distinct_phones": {"type": "INT64", "index": 13, "name": "count_distinct_phones", "comment": null}, "total_count_contacts": {"type": "INT64", "index": 14, "name": "total_count_contacts", "comment": null}, "total_count_unsubscribed_contacts": {"type": "INT64", "index": 15, "name": "total_count_unsubscribed_contacts", "comment": null}, "count_contacts_created_30d": {"type": "INT64", "index": 16, "name": "count_contacts_created_30d", "comment": null}, "count_contacts_unsubscribed_30d": {"type": "INT64", "index": 17, "name": "count_contacts_unsubscribed_30d", "comment": null}, "count_contacts_sent_survey_30d": {"type": "INT64", "index": 18, "name": "count_contacts_sent_survey_30d", "comment": null}, "count_contacts_opened_survey_30d": {"type": "INT64", "index": 19, "name": "count_contacts_opened_survey_30d", "comment": null}, "count_contacts_started_survey_30d": {"type": "INT64", "index": 20, "name": "count_contacts_started_survey_30d", "comment": null}, "count_contacts_completed_survey_30d": {"type": "INT64", "index": 21, "name": "count_contacts_completed_survey_30d", "comment": null}, "count_surveys_sent_30d": {"type": "INT64", "index": 22, "name": "count_surveys_sent_30d", "comment": null}, "count_mailing_lists": {"type": "INT64", "index": 23, "name": "count_mailing_lists", "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": 151.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.qualtrics__directory"}, "model.qualtrics.qualtrics__contact": {"metadata": {"type": "table", "schema": "qualtrics_integration_tests_qualtrics", "name": "qualtrics__contact", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"contact_id": {"type": "STRING", "index": 1, "name": "contact_id", "comment": null}, "is_xm_directory_contact": {"type": "BOOL", "index": 2, "name": "is_xm_directory_contact", "comment": null}, "is_research_core_contact": {"type": "BOOL", "index": 3, "name": "is_research_core_contact", "comment": null}, "directory_id": {"type": "STRING", "index": 4, "name": "directory_id", "comment": null}, "email": {"type": "STRING", "index": 5, "name": "email", "comment": null}, "email_domain": {"type": "STRING", "index": 6, "name": "email_domain", "comment": null}, "first_name": {"type": "STRING", "index": 7, "name": "first_name", "comment": null}, "last_name": {"type": "STRING", "index": 8, "name": "last_name", "comment": null}, "external_data_reference": {"type": "STRING", "index": 9, "name": "external_data_reference", "comment": null}, "language": {"type": "STRING", "index": 10, "name": "language", "comment": null}, "is_unsubscribed_from_directory": {"type": "BOOL", "index": 11, "name": "is_unsubscribed_from_directory", "comment": null}, "unsubscribed_from_directory_at": {"type": "TIMESTAMP", "index": 12, "name": "unsubscribed_from_directory_at", "comment": null}, "last_modified_at": {"type": "STRING", "index": 13, "name": "last_modified_at", "comment": null}, "mailing_list_ids": {"type": "STRING", "index": 14, "name": "mailing_list_ids", "comment": null}, "count_mailing_lists_subscribed_to": {"type": "INT64", "index": 15, "name": "count_mailing_lists_subscribed_to", "comment": null}, "count_mailing_lists_unsubscribed_from": {"type": "INT64", "index": 16, "name": "count_mailing_lists_unsubscribed_from", "comment": null}, "created_at": {"type": "TIMESTAMP", "index": 17, "name": "created_at", "comment": null}, "source_relation": {"type": "STRING", "index": 18, "name": "source_relation", "comment": null}, "count_surveys_sent_email": {"type": "INT64", "index": 19, "name": "count_surveys_sent_email", "comment": null}, "count_surveys_sent_sms": {"type": "INT64", "index": 20, "name": "count_surveys_sent_sms", "comment": null}, "count_surveys_opened_email": {"type": "INT64", "index": 21, "name": "count_surveys_opened_email", "comment": null}, "count_surveys_opened_sms": {"type": "INT64", "index": 22, "name": "count_surveys_opened_sms", "comment": null}, "count_surveys_started_email": {"type": "INT64", "index": 23, "name": "count_surveys_started_email", "comment": null}, "count_surveys_started_sms": {"type": "INT64", "index": 24, "name": "count_surveys_started_sms", "comment": null}, "count_surveys_completed_email": {"type": "INT64", "index": 25, "name": "count_surveys_completed_email", "comment": null}, "count_surveys_completed_sms": {"type": "INT64", "index": 26, "name": "count_surveys_completed_sms", "comment": null}, "total_count_surveys": {"type": "INT64", "index": 27, "name": "total_count_surveys", "comment": null}, "total_count_completed_surveys": {"type": "INT64", "index": 28, "name": "total_count_completed_surveys", "comment": null}, "avg_survey_progress_pct": {"type": "FLOAT64", "index": 29, "name": "avg_survey_progress_pct", "comment": null}, "avg_survey_duration_in_seconds": {"type": "FLOAT64", "index": 30, "name": "avg_survey_duration_in_seconds", "comment": null}, "median_survey_progress_pct": {"type": "FLOAT64", "index": 31, "name": "median_survey_progress_pct", "comment": null}, "median_survey_duration_in_seconds": {"type": "FLOAT64", "index": 32, "name": "median_survey_duration_in_seconds", "comment": null}, "last_survey_response_recorded_at": {"type": "TIMESTAMP", "index": 33, "name": "last_survey_response_recorded_at", "comment": null}, "first_survey_response_recorded_at": {"type": "TIMESTAMP", "index": 34, "name": "first_survey_response_recorded_at", "comment": null}, "directory_name": {"type": "STRING", "index": 35, "name": "directory_name", "comment": null}, "is_in_default_directory": {"type": "BOOL", "index": 36, "name": "is_in_default_directory", "comment": null}, "is_directory_deleted": {"type": "BOOL", "index": 37, "name": "is_directory_deleted", "comment": null}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 6.0, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 1457.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.qualtrics__contact"}, "model.qualtrics.qualtrics__daily_breakdown": {"metadata": {"type": "table", "schema": "qualtrics_integration_tests_qualtrics", "name": "qualtrics__daily_breakdown", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"source_relation": {"type": "STRING", "index": 1, "name": "source_relation", "comment": null}, "date_day": {"type": "DATETIME", "index": 2, "name": "date_day", "comment": null}, "count_contacts_created": {"type": "INT64", "index": 3, "name": "count_contacts_created", "comment": null}, "count_contacts_unsubscribed_from_directory": {"type": "INT64", "index": 4, "name": "count_contacts_unsubscribed_from_directory", "comment": null}, "count_contacts_unsubscribed_from_mailing_list": {"type": "INT64", "index": 5, "name": "count_contacts_unsubscribed_from_mailing_list", "comment": null}, "count_contacts_sent_surveys": {"type": "INT64", "index": 6, "name": "count_contacts_sent_surveys", "comment": null}, "count_contacts_opened_sent_surveys": {"type": "INT64", "index": 7, "name": "count_contacts_opened_sent_surveys", "comment": null}, "count_contacts_started_sent_surveys": {"type": "INT64", "index": 8, "name": "count_contacts_started_sent_surveys", "comment": null}, "count_contacts_completed_sent_surveys": {"type": "INT64", "index": 9, "name": "count_contacts_completed_sent_surveys", "comment": null}, "count_distinct_surveys_responded_to": {"type": "INT64", "index": 10, "name": "count_distinct_surveys_responded_to", "comment": null}, "total_count_survey_responses": {"type": "INT64", "index": 11, "name": "total_count_survey_responses", "comment": null}, "total_count_completed_survey_responses": {"type": "INT64", "index": 12, "name": "total_count_completed_survey_responses", "comment": null}, "count_anonymous_survey_responses": {"type": "INT64", "index": 13, "name": "count_anonymous_survey_responses", "comment": null}, "count_anonymous_completed_survey_responses": {"type": "INT64", "index": 14, "name": "count_anonymous_completed_survey_responses", "comment": null}, "count_social_media_survey_responses": {"type": "INT64", "index": 15, "name": "count_social_media_survey_responses", "comment": null}, "count_social_media_completed_survey_responses": {"type": "INT64", "index": 16, "name": "count_social_media_completed_survey_responses", "comment": null}, "count_personal_link_survey_responses": {"type": "INT64", "index": 17, "name": "count_personal_link_survey_responses", "comment": null}, "count_personal_link_completed_survey_responses": {"type": "INT64", "index": 18, "name": "count_personal_link_completed_survey_responses", "comment": null}, "count_qr_code_survey_responses": {"type": "INT64", "index": 19, "name": "count_qr_code_survey_responses", "comment": null}, "count_qr_code_completed_survey_responses": {"type": "INT64", "index": 20, "name": "count_qr_code_completed_survey_responses", "comment": null}, "count_email_survey_responses": {"type": "INT64", "index": 21, "name": "count_email_survey_responses", "comment": null}, "count_email_completed_survey_responses": {"type": "INT64", "index": 22, "name": "count_email_completed_survey_responses", "comment": null}, "count_sms_survey_responses": {"type": "INT64", "index": 23, "name": "count_sms_survey_responses", "comment": null}, "count_sms_completed_survey_responses": {"type": "INT64", "index": 24, "name": "count_sms_completed_survey_responses", "comment": null}, "count_uncategorized_survey_responses": {"type": "INT64", "index": 25, "name": "count_uncategorized_survey_responses", "comment": null}, "count_uncategorized_completed_survey_responses": {"type": "INT64", "index": 26, "name": "count_uncategorized_completed_survey_responses", "comment": null}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 485.0, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 97970.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.qualtrics__daily_breakdown"}, "model.qualtrics.qualtrics__response": {"metadata": {"type": "table", "schema": "qualtrics_integration_tests_qualtrics", "name": "qualtrics__response", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"question_response_id": {"type": "STRING", "index": 1, "name": "question_response_id", "comment": null}, "survey_response_id": {"type": "STRING", "index": 2, "name": "survey_response_id", "comment": null}, "survey_id": {"type": "STRING", "index": 3, "name": "survey_id", "comment": null}, "question_id": {"type": "STRING", "index": 4, "name": "question_id", "comment": null}, "question_text": {"type": "STRING", "index": 5, "name": "question_text", "comment": null}, "sub_question_key": {"type": "INT64", "index": 6, "name": "sub_question_key", "comment": null}, "sub_question_text": {"type": "INT64", "index": 7, "name": "sub_question_text", "comment": null}, "question_option_key": {"type": "INT64", "index": 8, "name": "question_option_key", "comment": null}, "value": {"type": "INT64", "index": 9, "name": "value", "comment": null}, "loop_id": {"type": "INT64", "index": 10, "name": "loop_id", "comment": null}, "distribution_channel": {"type": "STRING", "index": 11, "name": "distribution_channel", "comment": null}, "survey_response_status": {"type": "INT64", "index": 12, "name": "survey_response_status", "comment": null}, "survey_progress": {"type": "INT64", "index": 13, "name": "survey_progress", "comment": null}, "duration_in_seconds": {"type": "INT64", "index": 14, "name": "duration_in_seconds", "comment": null}, "is_finished_with_survey": {"type": "BOOL", "index": 15, "name": "is_finished_with_survey", "comment": null}, "survey_finished_at": {"type": "STRING", "index": 16, "name": "survey_finished_at", "comment": null}, "survey_response_last_modified_at": {"type": "STRING", "index": 17, "name": "survey_response_last_modified_at", "comment": null}, "survey_response_recorded_at": {"type": "TIMESTAMP", "index": 18, "name": "survey_response_recorded_at", "comment": null}, "survey_response_started_at": {"type": "TIMESTAMP", "index": 19, "name": "survey_response_started_at", "comment": null}, "recipient_email": {"type": "STRING", "index": 20, "name": "recipient_email", "comment": null}, "recipient_first_name": {"type": "STRING", "index": 21, "name": "recipient_first_name", "comment": null}, "recipient_last_name": {"type": "STRING", "index": 22, "name": "recipient_last_name", "comment": null}, "user_language": {"type": "STRING", "index": 23, "name": "user_language", "comment": null}, "ip_address": {"type": "STRING", "index": 24, "name": "ip_address", "comment": null}, "location_latitude": {"type": "INT64", "index": 25, "name": "location_latitude", "comment": null}, "location_longitude": {"type": "INT64", "index": 26, "name": "location_longitude", "comment": null}, "source_relation": {"type": "STRING", "index": 27, "name": "source_relation", "comment": null}, "recode_value": {"type": "INT64", "index": 28, "name": "recode_value", "comment": null}, "question_option_text": {"type": "STRING", "index": 29, "name": "question_option_text", "comment": null}, "first_name": {"type": "STRING", "index": 30, "name": "first_name", "comment": null}, "last_name": {"type": "STRING", "index": 31, "name": "last_name", "comment": null}, "email_domain": {"type": "STRING", "index": 32, "name": "email_domain", "comment": null}, "contact_language": {"type": "STRING", "index": 33, "name": "contact_language", "comment": null}, "contact_external_data_reference": {"type": "STRING", "index": 34, "name": "contact_external_data_reference", "comment": null}, "is_xm_directory_contact": {"type": "BOOL", "index": 35, "name": "is_xm_directory_contact", "comment": null}, "is_research_core_contact": {"type": "BOOL", "index": 36, "name": "is_research_core_contact", "comment": null}, "embedded_data": {"type": "STRING", "index": 37, "name": "embedded_data", "comment": null}, "survey_name": {"type": "STRING", "index": 38, "name": "survey_name", "comment": null}, "survey_status": {"type": "STRING", "index": 39, "name": "survey_status", "comment": null}, "project_category": {"type": "STRING", "index": 40, "name": "project_category", "comment": null}, "project_type": {"type": "STRING", "index": 41, "name": "project_type", "comment": null}, "brand_base_url": {"type": "STRING", "index": 42, "name": "brand_base_url", "comment": null}, "question_description": {"type": "STRING", "index": 43, "name": "question_description", "comment": null}, "question_type": {"type": "STRING", "index": 44, "name": "question_type", "comment": null}, "block_id": {"type": "STRING", "index": 45, "name": "block_id", "comment": null}, "block_description": {"type": "STRING", "index": 46, "name": "block_description", "comment": null}, "block_question_randomization": {"type": "INT64", "index": 47, "name": "block_question_randomization", "comment": null}, "block_type": {"type": "STRING", "index": 48, "name": "block_type", "comment": null}, "block_visibility": {"type": "INT64", "index": 49, "name": "block_visibility", "comment": null}, "validation_setting_force_response": {"type": "INT64", "index": 50, "name": "validation_setting_force_response", "comment": null}, "validation_setting_force_response_type": {"type": "INT64", "index": 51, "name": "validation_setting_force_response_type", "comment": null}, "validation_setting_type": {"type": "STRING", "index": 52, "name": "validation_setting_type", "comment": null}, "is_question_deleted": {"type": "BOOL", "index": 53, "name": "is_question_deleted", "comment": null}, "is_block_deleted": {"type": "BOOL", "index": 54, "name": "is_block_deleted", "comment": null}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 0.0, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 0.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.qualtrics__response"}, "seed.qualtrics_integration_tests.survey_embedded_data": {"metadata": {"type": "table", "schema": "qualtrics_integration_tests", "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": "INT64", "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": 5.0, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 225.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": "seed.qualtrics_integration_tests.survey_embedded_data"}, "seed.qualtrics_integration_tests.directory": {"metadata": {"type": "table", "schema": "qualtrics_integration_tests", "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": "seed.qualtrics_integration_tests.directory"}, "seed.qualtrics_integration_tests.question": {"metadata": {"type": "table", "schema": "qualtrics_integration_tests", "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": "INT64", "index": 17, "name": "validation_setting_force_response", "comment": null}, "validation_setting_force_response_type": {"type": "INT64", "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": 5.0, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 677.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": "seed.qualtrics_integration_tests.question"}, "seed.qualtrics_integration_tests.question_response": {"metadata": {"type": "table", "schema": "qualtrics_integration_tests", "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": "INT64", "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": "INT64", "index": 6, "name": "question_option_key", "comment": null}, "response_id": {"type": "STRING", "index": 7, "name": "response_id", "comment": null}, "sub_question_key": {"type": "INT64", "index": 8, "name": "sub_question_key", "comment": null}, "sub_question_text": {"type": "INT64", "index": 9, "name": "sub_question_text", "comment": null}, "value": {"type": "INT64", "index": 10, "name": "value", "comment": null}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 5.0, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 383.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": "seed.qualtrics_integration_tests.question_response"}, "seed.qualtrics_integration_tests.distribution_contact": {"metadata": {"type": "table", "schema": "qualtrics_integration_tests", "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": "INT64", "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": "INT64", "index": 13, "name": "survey_session_id", "comment": null}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 5.0, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 1165.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": "seed.qualtrics_integration_tests.distribution_contact"}, "seed.qualtrics_integration_tests.survey": {"metadata": {"type": "table", "schema": "qualtrics_integration_tests", "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": "INT64", "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": "INT64", "index": 7, "name": "bundle_short_name", "comment": null}, "composition_type": {"type": "INT64", "index": 8, "name": "composition_type", "comment": null}, "creator_id": {"type": "STRING", "index": 9, "name": "creator_id", "comment": null}, "default_scoring_category": {"type": "INT64", "index": 10, "name": "default_scoring_category", "comment": null}, "division_id": {"type": "INT64", "index": 11, "name": "division_id", "comment": null}, "is_active": {"type": "INT64", "index": 12, "name": "is_active", "comment": null}, "last_accessed": {"type": "INT64", "index": 13, "name": "last_accessed", "comment": null}, "last_activated": {"type": "STRING", "index": 14, "name": "last_activated", "comment": null}, "last_modified": {"type": "STRING", "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": "INT64", "index": 17, "name": "option_anonymize_response", "comment": null}, "option_auto_confirm_start": {"type": "INT64", "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": "INT64", "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": "INT64", "index": 25, "name": "option_collect_geo_location", "comment": null}, "option_confirm_start": {"type": "INT64", "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": "INT64", "index": 28, "name": "option_email_thank_you", "comment": null}, "option_eosredirect_url": {"type": "INT64", "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": "INT64", "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": "INT64", "index": 37, "name": "option_partial_data_close_after", "comment": null}, "option_password_protection": {"type": "INT64", "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": "INT64", "index": 41, "name": "option_protect_selection_ids", "comment": null}, "option_recaptcha_v_3": {"type": "INT64", "index": 42, "name": "option_recaptcha_v_3", "comment": null}, "option_referer_check": {"type": "INT64", "index": 43, "name": "option_referer_check", "comment": null}, "option_referer_url": {"type": "INT64", "index": 44, "name": "option_referer_url", "comment": null}, "option_relevant_id": {"type": "INT64", "index": 45, "name": "option_relevant_id", "comment": null}, "option_relevant_idlockout_period": {"type": "INT64", "index": 46, "name": "option_relevant_idlockout_period", "comment": null}, "option_response_summary": {"type": "INT64", "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": "INT64", "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": "STRING", "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": "INT64", "index": 58, "name": "option_survey_meta_description", "comment": null}, "option_survey_name": {"type": "INT64", "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": "INT64", "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": "INT64", "index": 67, "name": "registry_sha", "comment": null}, "registry_version": {"type": "INT64", "index": 68, "name": "registry_version", "comment": null}, "schema_version": {"type": "INT64", "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": "INT64", "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": 5.0, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 5503.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": "seed.qualtrics_integration_tests.survey"}, "seed.qualtrics_integration_tests.user": {"metadata": {"type": "table", "schema": "qualtrics_integration_tests", "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": "INT64", "index": 4, "name": "account_creation_date", "comment": null}, "account_expiration_date": {"type": "INT64", "index": 5, "name": "account_expiration_date", "comment": null}, "account_status": {"type": "STRING", "index": 6, "name": "account_status", "comment": null}, "division_id": {"type": "INT64", "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": "INT64", "index": 10, "name": "language", "comment": null}, "last_login_date": {"type": "INT64", "index": 11, "name": "last_login_date", "comment": null}, "last_name": {"type": "STRING", "index": 12, "name": "last_name", "comment": null}, "organization_id": {"type": "INT64", "index": 13, "name": "organization_id", "comment": null}, "password_expiration_date": {"type": "INT64", "index": 14, "name": "password_expiration_date", "comment": null}, "password_last_changed_date": {"type": "INT64", "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": "INT64", "index": 19, "name": "time_zone", "comment": null}, "unsubscribed": {"type": "INT64", "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": 219.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": "seed.qualtrics_integration_tests.user"}, "seed.qualtrics_integration_tests.contact_mailing_list_membership": {"metadata": {"type": "table", "schema": "qualtrics_integration_tests", "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": 5.0, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 615.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": "seed.qualtrics_integration_tests.contact_mailing_list_membership"}, "seed.qualtrics_integration_tests.sub_question": {"metadata": {"type": "table", "schema": "qualtrics_integration_tests", "name": "sub_question", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"key": {"type": "INT64", "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": "INT64", "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": 5.0, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 246.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": "seed.qualtrics_integration_tests.sub_question"}, "seed.qualtrics_integration_tests.core_contact": {"metadata": {"type": "table", "schema": "qualtrics_integration_tests", "name": "core_contact", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"_fivetran_synced": {"type": "TIMESTAMP", "index": 1, "name": "_fivetran_synced", "comment": null}, "id": {"type": "STRING", "index": 2, "name": "id", "comment": null}, "mailing_list_id": {"type": "STRING", "index": 3, "name": "mailing_list_id", "comment": null}, "first_name": {"type": "STRING", "index": 4, "name": "first_name", "comment": null}, "last_name": {"type": "STRING", "index": 5, "name": "last_name", "comment": null}, "email": {"type": "STRING", "index": 6, "name": "email", "comment": null}, "external_data_reference": {"type": "STRING", "index": 7, "name": "external_data_reference", "comment": null}, "language": {"type": "STRING", "index": 8, "name": "language", "comment": null}, "unsubscribed": {"type": "BOOL", "index": 9, "name": "unsubscribed", "comment": null}, "_fivetran_deleted": {"type": "BOOL", "index": 10, "name": "_fivetran_deleted", "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": 84.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": "seed.qualtrics_integration_tests.core_contact"}, "seed.qualtrics_integration_tests.distribution": {"metadata": {"type": "table", "schema": "qualtrics_integration_tests", "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": "STRING", "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": "INT64", "index": 9, "name": "message_library_id", "comment": null}, "message_message_id": {"type": "INT64", "index": 10, "name": "message_message_id", "comment": null}, "message_message_text": {"type": "INT64", "index": 11, "name": "message_message_text", "comment": null}, "modified_date": {"type": "STRING", "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": "STRING", "index": 22, "name": "send_date", "comment": null}, "survey_link_expiration_date": {"type": "STRING", "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": 5.0, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 1383.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": "seed.qualtrics_integration_tests.distribution"}, "seed.qualtrics_integration_tests.directory_mailing_list": {"metadata": {"type": "table", "schema": "qualtrics_integration_tests", "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": "STRING", "index": 5, "name": "creation_date", "comment": null}, "last_modified_date": {"type": "STRING", "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": 5.0, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 747.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": "seed.qualtrics_integration_tests.directory_mailing_list"}, "seed.qualtrics_integration_tests.survey_version": {"metadata": {"type": "table", "schema": "qualtrics_integration_tests", "name": "survey_version", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"id": {"type": "INT64", "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": "STRING", "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": 5.0, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 570.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": "seed.qualtrics_integration_tests.survey_version"}, "seed.qualtrics_integration_tests.question_option": {"metadata": {"type": "table", "schema": "qualtrics_integration_tests", "name": "question_option", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"key": {"type": "INT64", "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": "INT64", "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": 5.0, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 366.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": "seed.qualtrics_integration_tests.question_option"}, "seed.qualtrics_integration_tests.block": {"metadata": {"type": "table", "schema": "qualtrics_integration_tests", "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": "INT64", "index": 5, "name": "block_locking", "comment": null}, "block_visibility": {"type": "INT64", "index": 6, "name": "block_visibility", "comment": null}, "description": {"type": "STRING", "index": 7, "name": "description", "comment": null}, "randomize_questions": {"type": "INT64", "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": 5.0, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 354.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": "seed.qualtrics_integration_tests.block"}, "seed.qualtrics_integration_tests.survey_response": {"metadata": {"type": "table", "schema": "qualtrics_integration_tests", "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": "STRING", "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": "STRING", "index": 8, "name": "last_modified_date", "comment": null}, "location_latitude": {"type": "INT64", "index": 9, "name": "location_latitude", "comment": null}, "location_longitude": {"type": "INT64", "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": 5.0, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 979.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": "seed.qualtrics_integration_tests.survey_response"}, "seed.qualtrics_integration_tests.directory_contact": {"metadata": {"type": "table", "schema": "qualtrics_integration_tests", "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": "INT64", "index": 9, "name": "embedded_data_last_active_time", "comment": null}, "embedded_data_last_response_date": {"type": "INT64", "index": 10, "name": "embedded_data_last_response_date", "comment": null}, "embedded_data_login_date": {"type": "INT64", "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": "STRING", "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": "INT64", "index": 18, "name": "write_blanks", "comment": null}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 5.0, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 639.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": "seed.qualtrics_integration_tests.directory_contact"}, "seed.qualtrics_integration_tests.block_question": {"metadata": {"type": "table", "schema": "qualtrics_integration_tests", "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": 5.0, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 280.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": "seed.qualtrics_integration_tests.block_question"}, "seed.qualtrics_integration_tests.core_mailing_list": {"metadata": {"type": "table", "schema": "qualtrics_integration_tests", "name": "core_mailing_list", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"_fivetran_synced": {"type": "TIMESTAMP", "index": 1, "name": "_fivetran_synced", "comment": null}, "id": {"type": "STRING", "index": 2, "name": "id", "comment": null}, "library_id": {"type": "STRING", "index": 3, "name": "library_id", "comment": null}, "name": {"type": "STRING", "index": 4, "name": "name", "comment": null}, "category": {"type": "STRING", "index": 5, "name": "category", "comment": null}, "folder": {"type": "STRING", "index": 6, "name": "folder", "comment": null}, "_fivetran_deleted": {"type": "BOOL", "index": 7, "name": "_fivetran_deleted", "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": 85.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": "seed.qualtrics_integration_tests.core_mailing_list"}, "model.qualtrics_source.stg_qualtrics__survey_response": {"metadata": {"type": "table", "schema": "qualtrics_integration_tests_qualtrics_source", "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": "STRING", "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": "STRING", "index": 7, "name": "last_modified_at", "comment": null}, "location_latitude": {"type": "INT64", "index": 8, "name": "location_latitude", "comment": null}, "location_longitude": {"type": "INT64", "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}, "source_relation": {"type": "STRING", "index": 20, "name": "source_relation", "comment": null}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 5.0, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 954.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__question_option": {"metadata": {"type": "table", "schema": "qualtrics_integration_tests_qualtrics_source", "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": "INT64", "index": 3, "name": "key", "comment": null}, "recode_value": {"type": "INT64", "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}, "source_relation": {"type": "STRING", "index": 8, "name": "source_relation", "comment": null}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 5.0, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 376.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__sub_question_tmp": {"metadata": {"type": "view", "schema": "qualtrics_integration_tests_qualtrics_source", "name": "stg_qualtrics__sub_question_tmp", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"key": {"type": "INT64", "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": "INT64", "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__core_contact": {"metadata": {"type": "table", "schema": "qualtrics_integration_tests_qualtrics_source", "name": "stg_qualtrics__core_contact", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"contact_id": {"type": "STRING", "index": 1, "name": "contact_id", "comment": null}, "mailing_list_id": {"type": "STRING", "index": 2, "name": "mailing_list_id", "comment": null}, "first_name": {"type": "STRING", "index": 3, "name": "first_name", "comment": null}, "last_name": {"type": "STRING", "index": 4, "name": "last_name", "comment": null}, "email": {"type": "STRING", "index": 5, "name": "email", "comment": null}, "email_domain": {"type": "STRING", "index": 6, "name": "email_domain", "comment": null}, "external_data_reference": {"type": "STRING", "index": 7, "name": "external_data_reference", "comment": null}, "language": {"type": "STRING", "index": 8, "name": "language", "comment": null}, "is_unsubscribed": {"type": "BOOL", "index": 9, "name": "is_unsubscribed", "comment": null}, "is_deleted": {"type": "BOOL", "index": 10, "name": "is_deleted", "comment": null}, "_fivetran_synced": {"type": "TIMESTAMP", "index": 11, "name": "_fivetran_synced", "comment": null}, "source_relation": {"type": "STRING", "index": 12, "name": "source_relation", "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": 97.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__core_contact"}, "model.qualtrics_source.stg_qualtrics__user_tmp": {"metadata": {"type": "view", "schema": "qualtrics_integration_tests_qualtrics_source", "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": "INT64", "index": 4, "name": "account_creation_date", "comment": null}, "account_expiration_date": {"type": "INT64", "index": 5, "name": "account_expiration_date", "comment": null}, "account_status": {"type": "STRING", "index": 6, "name": "account_status", "comment": null}, "division_id": {"type": "INT64", "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": "INT64", "index": 10, "name": "language", "comment": null}, "last_login_date": {"type": "INT64", "index": 11, "name": "last_login_date", "comment": null}, "last_name": {"type": "STRING", "index": 12, "name": "last_name", "comment": null}, "organization_id": {"type": "INT64", "index": 13, "name": "organization_id", "comment": null}, "password_expiration_date": {"type": "INT64", "index": 14, "name": "password_expiration_date", "comment": null}, "password_last_changed_date": {"type": "INT64", "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": "INT64", "index": 19, "name": "time_zone", "comment": null}, "unsubscribed": {"type": "INT64", "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__contact_mailing_list_membership_tmp": {"metadata": {"type": "view", "schema": "qualtrics_integration_tests_qualtrics_source", "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__block_question": {"metadata": {"type": "table", "schema": "qualtrics_integration_tests_qualtrics_source", "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}, "source_relation": {"type": "STRING", "index": 6, "name": "source_relation", "comment": null}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 5.0, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 290.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__core_mailing_list_tmp": {"metadata": {"type": "view", "schema": "qualtrics_integration_tests_qualtrics_source", "name": "stg_qualtrics__core_mailing_list_tmp", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"_fivetran_synced": {"type": "TIMESTAMP", "index": 1, "name": "_fivetran_synced", "comment": null}, "id": {"type": "STRING", "index": 2, "name": "id", "comment": null}, "library_id": {"type": "STRING", "index": 3, "name": "library_id", "comment": null}, "name": {"type": "STRING", "index": 4, "name": "name", "comment": null}, "category": {"type": "STRING", "index": 5, "name": "category", "comment": null}, "folder": {"type": "STRING", "index": 6, "name": "folder", "comment": null}, "_fivetran_deleted": {"type": "BOOL", "index": 7, "name": "_fivetran_deleted", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.qualtrics_source.stg_qualtrics__core_mailing_list_tmp"}, "model.qualtrics_source.stg_qualtrics__core_mailing_list": {"metadata": {"type": "table", "schema": "qualtrics_integration_tests_qualtrics_source", "name": "stg_qualtrics__core_mailing_list", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"mailing_list_id": {"type": "STRING", "index": 1, "name": "mailing_list_id", "comment": null}, "library_id": {"type": "STRING", "index": 2, "name": "library_id", "comment": null}, "name": {"type": "STRING", "index": 3, "name": "name", "comment": null}, "category": {"type": "STRING", "index": 4, "name": "category", "comment": null}, "folder": {"type": "STRING", "index": 5, "name": "folder", "comment": null}, "is_deleted": {"type": "BOOL", "index": 6, "name": "is_deleted", "comment": null}, "_fivetran_synced": {"type": "TIMESTAMP", "index": 7, "name": "_fivetran_synced", "comment": null}, "source_relation": {"type": "STRING", "index": 8, "name": "source_relation", "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": 87.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__core_mailing_list"}, "model.qualtrics_source.stg_qualtrics__directory_tmp": {"metadata": {"type": "view", "schema": "qualtrics_integration_tests_qualtrics_source", "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__block_question_tmp": {"metadata": {"type": "view", "schema": "qualtrics_integration_tests_qualtrics_source", "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__directory_mailing_list": {"metadata": {"type": "table", "schema": "qualtrics_integration_tests_qualtrics_source", "name": "stg_qualtrics__directory_mailing_list", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"created_at": {"type": "STRING", "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": "STRING", "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}, "source_relation": {"type": "STRING", "index": 9, "name": "source_relation", "comment": null}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 5.0, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 757.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__distribution_tmp": {"metadata": {"type": "view", "schema": "qualtrics_integration_tests_qualtrics_source", "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": "STRING", "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": "INT64", "index": 9, "name": "message_library_id", "comment": null}, "message_message_id": {"type": "INT64", "index": 10, "name": "message_message_id", "comment": null}, "message_message_text": {"type": "INT64", "index": 11, "name": "message_message_text", "comment": null}, "modified_date": {"type": "STRING", "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": "STRING", "index": 22, "name": "send_date", "comment": null}, "survey_link_expiration_date": {"type": "STRING", "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__survey_embedded_data": {"metadata": {"type": "table", "schema": "qualtrics_integration_tests_qualtrics_source", "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": "INT64", "index": 4, "name": "value", "comment": null}, "_fivetran_synced": {"type": "TIMESTAMP", "index": 5, "name": "_fivetran_synced", "comment": null}, "source_relation": {"type": "STRING", "index": 6, "name": "source_relation", "comment": null}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 5.0, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 235.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__directory_mailing_list_tmp": {"metadata": {"type": "view", "schema": "qualtrics_integration_tests_qualtrics_source", "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": "STRING", "index": 5, "name": "creation_date", "comment": null}, "last_modified_date": {"type": "STRING", "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"}, "model.qualtrics_source.stg_qualtrics__sub_question": {"metadata": {"type": "table", "schema": "qualtrics_integration_tests_qualtrics_source", "name": "stg_qualtrics__sub_question", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"choice_data_export_tag": {"type": "INT64", "index": 1, "name": "choice_data_export_tag", "comment": null}, "key": {"type": "INT64", "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}, "source_relation": {"type": "STRING", "index": 8, "name": "source_relation", "comment": null}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 5.0, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 256.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__survey_tmp": {"metadata": {"type": "view", "schema": "qualtrics_integration_tests_qualtrics_source", "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": "INT64", "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": "INT64", "index": 7, "name": "bundle_short_name", "comment": null}, "composition_type": {"type": "INT64", "index": 8, "name": "composition_type", "comment": null}, "creator_id": {"type": "STRING", "index": 9, "name": "creator_id", "comment": null}, "default_scoring_category": {"type": "INT64", "index": 10, "name": "default_scoring_category", "comment": null}, "division_id": {"type": "INT64", "index": 11, "name": "division_id", "comment": null}, "is_active": {"type": "INT64", "index": 12, "name": "is_active", "comment": null}, "last_accessed": {"type": "INT64", "index": 13, "name": "last_accessed", "comment": null}, "last_activated": {"type": "STRING", "index": 14, "name": "last_activated", "comment": null}, "last_modified": {"type": "STRING", "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": "INT64", "index": 17, "name": "option_anonymize_response", "comment": null}, "option_auto_confirm_start": {"type": "INT64", "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": "INT64", "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": "INT64", "index": 25, "name": "option_collect_geo_location", "comment": null}, "option_confirm_start": {"type": "INT64", "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": "INT64", "index": 28, "name": "option_email_thank_you", "comment": null}, "option_eosredirect_url": {"type": "INT64", "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": "INT64", "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": "INT64", "index": 37, "name": "option_partial_data_close_after", "comment": null}, "option_password_protection": {"type": "INT64", "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": "INT64", "index": 41, "name": "option_protect_selection_ids", "comment": null}, "option_recaptcha_v_3": {"type": "INT64", "index": 42, "name": "option_recaptcha_v_3", "comment": null}, "option_referer_check": {"type": "INT64", "index": 43, "name": "option_referer_check", "comment": null}, "option_referer_url": {"type": "INT64", "index": 44, "name": "option_referer_url", "comment": null}, "option_relevant_id": {"type": "INT64", "index": 45, "name": "option_relevant_id", "comment": null}, "option_relevant_idlockout_period": {"type": "INT64", "index": 46, "name": "option_relevant_idlockout_period", "comment": null}, "option_response_summary": {"type": "INT64", "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": "INT64", "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": "STRING", "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": "INT64", "index": 58, "name": "option_survey_meta_description", "comment": null}, "option_survey_name": {"type": "INT64", "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": "INT64", "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": "INT64", "index": 67, "name": "registry_sha", "comment": null}, "registry_version": {"type": "INT64", "index": 68, "name": "registry_version", "comment": null}, "schema_version": {"type": "INT64", "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": "INT64", "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__survey": {"metadata": {"type": "table", "schema": "qualtrics_integration_tests_qualtrics_source", "name": "stg_qualtrics__survey", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"survey_id": {"type": "STRING", "index": 1, "name": "survey_id", "comment": null}, "survey_name": {"type": "STRING", "index": 2, "name": "survey_name", "comment": null}, "survey_status": {"type": "STRING", "index": 3, "name": "survey_status", "comment": null}, "brand_base_url": {"type": "STRING", "index": 4, "name": "brand_base_url", "comment": null}, "brand_id": {"type": "STRING", "index": 5, "name": "brand_id", "comment": null}, "bundle_short_name": {"type": "INT64", "index": 6, "name": "bundle_short_name", "comment": null}, "composition_type": {"type": "INT64", "index": 7, "name": "composition_type", "comment": null}, "auto_scoring_category": {"type": "INT64", "index": 8, "name": "auto_scoring_category", "comment": null}, "default_scoring_category": {"type": "INT64", "index": 9, "name": "default_scoring_category", "comment": null}, "division_id": {"type": "INT64", "index": 10, "name": "division_id", "comment": null}, "creator_user_id": {"type": "STRING", "index": 11, "name": "creator_user_id", "comment": null}, "owner_user_id": {"type": "STRING", "index": 12, "name": "owner_user_id", "comment": null}, "project_category": {"type": "STRING", "index": 13, "name": "project_category", "comment": null}, "project_type": {"type": "STRING", "index": 14, "name": "project_type", "comment": null}, "registry_sha": {"type": "INT64", "index": 15, "name": "registry_sha", "comment": null}, "registry_version": {"type": "INT64", "index": 16, "name": "registry_version", "comment": null}, "schema_version": {"type": "INT64", "index": 17, "name": "schema_version", "comment": null}, "scoring_summary_after_questions": {"type": "BOOL", "index": 18, "name": "scoring_summary_after_questions", "comment": null}, "scoring_summary_after_survey": {"type": "BOOL", "index": 19, "name": "scoring_summary_after_survey", "comment": null}, "scoring_summary_category": {"type": "INT64", "index": 20, "name": "scoring_summary_category", "comment": null}, "last_accessed_at": {"type": "INT64", "index": 21, "name": "last_accessed_at", "comment": null}, "last_activated_at": {"type": "STRING", "index": 22, "name": "last_activated_at", "comment": null}, "last_modified_at": {"type": "STRING", "index": 23, "name": "last_modified_at", "comment": null}, "is_deleted": {"type": "BOOL", "index": 24, "name": "is_deleted", "comment": null}, "_fivetran_synced": {"type": "TIMESTAMP", "index": 25, "name": "_fivetran_synced", "comment": null}, "source_relation": {"type": "STRING", "index": 26, "name": "source_relation", "comment": null}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 5.0, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 879.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__distribution": {"metadata": {"type": "table", "schema": "qualtrics_integration_tests_qualtrics_source", "name": "stg_qualtrics__distribution", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"created_at": {"type": "STRING", "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": "INT64", "index": 7, "name": "message_library_id", "comment": null}, "message_id": {"type": "INT64", "index": 8, "name": "message_id", "comment": null}, "message_text": {"type": "INT64", "index": 9, "name": "message_text", "comment": null}, "last_modified_at": {"type": "STRING", "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": "STRING", "index": 20, "name": "send_at", "comment": null}, "survey_link_expires_at": {"type": "STRING", "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}, "source_relation": {"type": "STRING", "index": 26, "name": "source_relation", "comment": null}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 5.0, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 1393.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__block_tmp": {"metadata": {"type": "view", "schema": "qualtrics_integration_tests_qualtrics_source", "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": "INT64", "index": 5, "name": "block_locking", "comment": null}, "block_visibility": {"type": "INT64", "index": 6, "name": "block_visibility", "comment": null}, "description": {"type": "STRING", "index": 7, "name": "description", "comment": null}, "randomize_questions": {"type": "INT64", "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__question_response_tmp": {"metadata": {"type": "view", "schema": "qualtrics_integration_tests_qualtrics_source", "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": "INT64", "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": "INT64", "index": 6, "name": "question_option_key", "comment": null}, "response_id": {"type": "STRING", "index": 7, "name": "response_id", "comment": null}, "sub_question_key": {"type": "INT64", "index": 8, "name": "sub_question_key", "comment": null}, "sub_question_text": {"type": "INT64", "index": 9, "name": "sub_question_text", "comment": null}, "value": {"type": "INT64", "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__core_contact_tmp": {"metadata": {"type": "view", "schema": "qualtrics_integration_tests_qualtrics_source", "name": "stg_qualtrics__core_contact_tmp", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"_fivetran_synced": {"type": "TIMESTAMP", "index": 1, "name": "_fivetran_synced", "comment": null}, "id": {"type": "STRING", "index": 2, "name": "id", "comment": null}, "mailing_list_id": {"type": "STRING", "index": 3, "name": "mailing_list_id", "comment": null}, "first_name": {"type": "STRING", "index": 4, "name": "first_name", "comment": null}, "last_name": {"type": "STRING", "index": 5, "name": "last_name", "comment": null}, "email": {"type": "STRING", "index": 6, "name": "email", "comment": null}, "external_data_reference": {"type": "STRING", "index": 7, "name": "external_data_reference", "comment": null}, "language": {"type": "STRING", "index": 8, "name": "language", "comment": null}, "unsubscribed": {"type": "BOOL", "index": 9, "name": "unsubscribed", "comment": null}, "_fivetran_deleted": {"type": "BOOL", "index": 10, "name": "_fivetran_deleted", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.qualtrics_source.stg_qualtrics__core_contact_tmp"}, "model.qualtrics_source.stg_qualtrics__distribution_contact_tmp": {"metadata": {"type": "view", "schema": "qualtrics_integration_tests_qualtrics_source", "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": "INT64", "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": "INT64", "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__survey_version_tmp": {"metadata": {"type": "view", "schema": "qualtrics_integration_tests_qualtrics_source", "name": "stg_qualtrics__survey_version_tmp", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"id": {"type": "INT64", "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": "STRING", "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__directory_contact_tmp": {"metadata": {"type": "view", "schema": "qualtrics_integration_tests_qualtrics_source", "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": "INT64", "index": 9, "name": "embedded_data_last_active_time", "comment": null}, "embedded_data_last_response_date": {"type": "INT64", "index": 10, "name": "embedded_data_last_response_date", "comment": null}, "embedded_data_login_date": {"type": "INT64", "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": "STRING", "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": "INT64", "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__distribution_contact": {"metadata": {"type": "table", "schema": "qualtrics_integration_tests_qualtrics_source", "name": "stg_qualtrics__distribution_contact", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"contact_frequency_rule_id": {"type": "INT64", "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": "INT64", "index": 12, "name": "survey_session_id", "comment": null}, "_fivetran_synced": {"type": "TIMESTAMP", "index": 13, "name": "_fivetran_synced", "comment": null}, "source_relation": {"type": "STRING", "index": 14, "name": "source_relation", "comment": null}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 5.0, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 1175.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__block": {"metadata": {"type": "table", "schema": "qualtrics_integration_tests_qualtrics_source", "name": "stg_qualtrics__block", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"is_locked": {"type": "INT64", "index": 1, "name": "is_locked", "comment": null}, "block_visibility": {"type": "INT64", "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": "INT64", "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}, "source_relation": {"type": "STRING", "index": 10, "name": "source_relation", "comment": null}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 5.0, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 364.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__question_option_tmp": {"metadata": {"type": "view", "schema": "qualtrics_integration_tests_qualtrics_source", "name": "stg_qualtrics__question_option_tmp", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"key": {"type": "INT64", "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": "INT64", "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__survey_version": {"metadata": {"type": "table", "schema": "qualtrics_integration_tests_qualtrics_source", "name": "stg_qualtrics__survey_version", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"created_at": {"type": "STRING", "index": 1, "name": "created_at", "comment": null}, "version_description": {"type": "STRING", "index": 2, "name": "version_description", "comment": null}, "version_id": {"type": "INT64", "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}, "source_relation": {"type": "STRING", "index": 11, "name": "source_relation", "comment": null}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 5.0, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 580.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__directory": {"metadata": {"type": "table", "schema": "qualtrics_integration_tests_qualtrics_source", "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}, "source_relation": {"type": "STRING", "index": 11, "name": "source_relation", "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": 55.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__question_response": {"metadata": {"type": "table", "schema": "qualtrics_integration_tests_qualtrics_source", "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": "INT64", "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": "INT64", "index": 5, "name": "question_option_key", "comment": null}, "response_id": {"type": "STRING", "index": 6, "name": "response_id", "comment": null}, "sub_question_key": {"type": "INT64", "index": 7, "name": "sub_question_key", "comment": null}, "sub_question_text": {"type": "INT64", "index": 8, "name": "sub_question_text", "comment": null}, "value": {"type": "INT64", "index": 9, "name": "value", "comment": null}, "_fivetran_synced": {"type": "TIMESTAMP", "index": 10, "name": "_fivetran_synced", "comment": null}, "source_relation": {"type": "STRING", "index": 11, "name": "source_relation", "comment": null}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 5.0, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 393.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__survey_embedded_data_tmp": {"metadata": {"type": "view", "schema": "qualtrics_integration_tests_qualtrics_source", "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": "INT64", "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_tmp": {"metadata": {"type": "view", "schema": "qualtrics_integration_tests_qualtrics_source", "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": "STRING", "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": "STRING", "index": 8, "name": "last_modified_date", "comment": null}, "location_latitude": {"type": "INT64", "index": 9, "name": "location_latitude", "comment": null}, "location_longitude": {"type": "INT64", "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__question_tmp": {"metadata": {"type": "view", "schema": "qualtrics_integration_tests_qualtrics_source", "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": "INT64", "index": 17, "name": "validation_setting_force_response", "comment": null}, "validation_setting_force_response_type": {"type": "INT64", "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__contact_mailing_list_membership": {"metadata": {"type": "table", "schema": "qualtrics_integration_tests_qualtrics_source", "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}, "source_relation": {"type": "STRING", "index": 10, "name": "source_relation", "comment": null}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 5.0, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 625.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__user": {"metadata": {"type": "table", "schema": "qualtrics_integration_tests_qualtrics_source", "name": "stg_qualtrics__user", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"account_created_at": {"type": "INT64", "index": 1, "name": "account_created_at", "comment": null}, "account_expires_at": {"type": "INT64", "index": 2, "name": "account_expires_at", "comment": null}, "account_status": {"type": "STRING", "index": 3, "name": "account_status", "comment": null}, "division_id": {"type": "INT64", "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": "INT64", "index": 8, "name": "language", "comment": null}, "last_login_at": {"type": "INT64", "index": 9, "name": "last_login_at", "comment": null}, "last_name": {"type": "STRING", "index": 10, "name": "last_name", "comment": null}, "organization_id": {"type": "INT64", "index": 11, "name": "organization_id", "comment": null}, "password_expires_at": {"type": "INT64", "index": 12, "name": "password_expires_at", "comment": null}, "password_last_changed_at": {"type": "INT64", "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": "INT64", "index": 17, "name": "time_zone", "comment": null}, "is_unsubscribed": {"type": "INT64", "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}, "source_relation": {"type": "STRING", "index": 23, "name": "source_relation", "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": 223.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__question": {"metadata": {"type": "table", "schema": "qualtrics_integration_tests_qualtrics_source", "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}, "is_data_hidden": {"type": "BOOL", "index": 2, "name": "is_data_hidden", "comment": null}, "is_data_private": {"type": "BOOL", "index": 3, "name": "is_data_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": "INT64", "index": 15, "name": "validation_setting_force_response", "comment": null}, "validation_setting_force_response_type": {"type": "INT64", "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}, "source_relation": {"type": "STRING", "index": 20, "name": "source_relation", "comment": null}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 5.0, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 687.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__directory_contact": {"metadata": {"type": "table", "schema": "qualtrics_integration_tests_qualtrics_source", "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": "STRING", "index": 13, "name": "last_modified_at", "comment": null}, "_fivetran_synced": {"type": "TIMESTAMP", "index": 14, "name": "_fivetran_synced", "comment": null}, "source_relation": {"type": "STRING", "index": 15, "name": "source_relation", "comment": null}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 5.0, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 649.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"}}, "sources": {"source.qualtrics_source.qualtrics.survey_embedded_data": {"metadata": {"type": "table", "schema": "qualtrics_integration_tests", "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": "INT64", "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": 5.0, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 225.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": {"metadata": {"type": "table", "schema": "qualtrics_integration_tests", "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.question": {"metadata": {"type": "table", "schema": "qualtrics_integration_tests", "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": "INT64", "index": 17, "name": "validation_setting_force_response", "comment": null}, "validation_setting_force_response_type": {"type": "INT64", "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": 5.0, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 677.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.question_response": {"metadata": {"type": "table", "schema": "qualtrics_integration_tests", "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": "INT64", "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": "INT64", "index": 6, "name": "question_option_key", "comment": null}, "response_id": {"type": "STRING", "index": 7, "name": "response_id", "comment": null}, "sub_question_key": {"type": "INT64", "index": 8, "name": "sub_question_key", "comment": null}, "sub_question_text": {"type": "INT64", "index": 9, "name": "sub_question_text", "comment": null}, "value": {"type": "INT64", "index": 10, "name": "value", "comment": null}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 5.0, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 383.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.distribution_contact": {"metadata": {"type": "table", "schema": "qualtrics_integration_tests", "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": "INT64", "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": "INT64", "index": 13, "name": "survey_session_id", "comment": null}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 5.0, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 1165.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_integration_tests", "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": "INT64", "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": "INT64", "index": 7, "name": "bundle_short_name", "comment": null}, "composition_type": {"type": "INT64", "index": 8, "name": "composition_type", "comment": null}, "creator_id": {"type": "STRING", "index": 9, "name": "creator_id", "comment": null}, "default_scoring_category": {"type": "INT64", "index": 10, "name": "default_scoring_category", "comment": null}, "division_id": {"type": "INT64", "index": 11, "name": "division_id", "comment": null}, "is_active": {"type": "INT64", "index": 12, "name": "is_active", "comment": null}, "last_accessed": {"type": "INT64", "index": 13, "name": "last_accessed", "comment": null}, "last_activated": {"type": "STRING", "index": 14, "name": "last_activated", "comment": null}, "last_modified": {"type": "STRING", "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": "INT64", "index": 17, "name": "option_anonymize_response", "comment": null}, "option_auto_confirm_start": {"type": "INT64", "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": "INT64", "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": "INT64", "index": 25, "name": "option_collect_geo_location", "comment": null}, "option_confirm_start": {"type": "INT64", "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": "INT64", "index": 28, "name": "option_email_thank_you", "comment": null}, "option_eosredirect_url": {"type": "INT64", "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": "INT64", "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": "INT64", "index": 37, "name": "option_partial_data_close_after", "comment": null}, "option_password_protection": {"type": "INT64", "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": "INT64", "index": 41, "name": "option_protect_selection_ids", "comment": null}, "option_recaptcha_v_3": {"type": "INT64", "index": 42, "name": "option_recaptcha_v_3", "comment": null}, "option_referer_check": {"type": "INT64", "index": 43, "name": "option_referer_check", "comment": null}, "option_referer_url": {"type": "INT64", "index": 44, "name": "option_referer_url", "comment": null}, "option_relevant_id": {"type": "INT64", "index": 45, "name": "option_relevant_id", "comment": null}, "option_relevant_idlockout_period": {"type": "INT64", "index": 46, "name": "option_relevant_idlockout_period", "comment": null}, "option_response_summary": {"type": "INT64", "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": "INT64", "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": "STRING", "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": "INT64", "index": 58, "name": "option_survey_meta_description", "comment": null}, "option_survey_name": {"type": "INT64", "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": "INT64", "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": "INT64", "index": 67, "name": "registry_sha", "comment": null}, "registry_version": {"type": "INT64", "index": 68, "name": "registry_version", "comment": null}, "schema_version": {"type": "INT64", "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": "INT64", "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": 5.0, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 5503.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.user": {"metadata": {"type": "table", "schema": "qualtrics_integration_tests", "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": "INT64", "index": 4, "name": "account_creation_date", "comment": null}, "account_expiration_date": {"type": "INT64", "index": 5, "name": "account_expiration_date", "comment": null}, "account_status": {"type": "STRING", "index": 6, "name": "account_status", "comment": null}, "division_id": {"type": "INT64", "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": "INT64", "index": 10, "name": "language", "comment": null}, "last_login_date": {"type": "INT64", "index": 11, "name": "last_login_date", "comment": null}, "last_name": {"type": "STRING", "index": 12, "name": "last_name", "comment": null}, "organization_id": {"type": "INT64", "index": 13, "name": "organization_id", "comment": null}, "password_expiration_date": {"type": "INT64", "index": 14, "name": "password_expiration_date", "comment": null}, "password_last_changed_date": {"type": "INT64", "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": "INT64", "index": 19, "name": "time_zone", "comment": null}, "unsubscribed": {"type": "INT64", "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": 219.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.contact_mailing_list_membership": {"metadata": {"type": "table", "schema": "qualtrics_integration_tests", "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": 5.0, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 615.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.sub_question": {"metadata": {"type": "table", "schema": "qualtrics_integration_tests", "name": "sub_question", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"key": {"type": "INT64", "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": "INT64", "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": 5.0, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 246.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.core_contact": {"metadata": {"type": "table", "schema": "qualtrics_integration_tests", "name": "core_contact", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"_fivetran_synced": {"type": "TIMESTAMP", "index": 1, "name": "_fivetran_synced", "comment": null}, "id": {"type": "STRING", "index": 2, "name": "id", "comment": null}, "mailing_list_id": {"type": "STRING", "index": 3, "name": "mailing_list_id", "comment": null}, "first_name": {"type": "STRING", "index": 4, "name": "first_name", "comment": null}, "last_name": {"type": "STRING", "index": 5, "name": "last_name", "comment": null}, "email": {"type": "STRING", "index": 6, "name": "email", "comment": null}, "external_data_reference": {"type": "STRING", "index": 7, "name": "external_data_reference", "comment": null}, "language": {"type": "STRING", "index": 8, "name": "language", "comment": null}, "unsubscribed": {"type": "BOOL", "index": 9, "name": "unsubscribed", "comment": null}, "_fivetran_deleted": {"type": "BOOL", "index": 10, "name": "_fivetran_deleted", "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": 84.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.core_contact"}, "source.qualtrics_source.qualtrics.distribution": {"metadata": {"type": "table", "schema": "qualtrics_integration_tests", "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": "STRING", "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": "INT64", "index": 9, "name": "message_library_id", "comment": null}, "message_message_id": {"type": "INT64", "index": 10, "name": "message_message_id", "comment": null}, "message_message_text": {"type": "INT64", "index": 11, "name": "message_message_text", "comment": null}, "modified_date": {"type": "STRING", "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": "STRING", "index": 22, "name": "send_date", "comment": null}, "survey_link_expiration_date": {"type": "STRING", "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": 5.0, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 1383.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.directory_mailing_list": {"metadata": {"type": "table", "schema": "qualtrics_integration_tests", "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": "STRING", "index": 5, "name": "creation_date", "comment": null}, "last_modified_date": {"type": "STRING", "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": 5.0, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 747.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.survey_version": {"metadata": {"type": "table", "schema": "qualtrics_integration_tests", "name": "survey_version", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"id": {"type": "INT64", "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": "STRING", "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": 5.0, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 570.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.question_option": {"metadata": {"type": "table", "schema": "qualtrics_integration_tests", "name": "question_option", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"key": {"type": "INT64", "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": "INT64", "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": 5.0, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 366.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_integration_tests", "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": "INT64", "index": 5, "name": "block_locking", "comment": null}, "block_visibility": {"type": "INT64", "index": 6, "name": "block_visibility", "comment": null}, "description": {"type": "STRING", "index": 7, "name": "description", "comment": null}, "randomize_questions": {"type": "INT64", "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": 5.0, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 354.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.survey_response": {"metadata": {"type": "table", "schema": "qualtrics_integration_tests", "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": "STRING", "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": "STRING", "index": 8, "name": "last_modified_date", "comment": null}, "location_latitude": {"type": "INT64", "index": 9, "name": "location_latitude", "comment": null}, "location_longitude": {"type": "INT64", "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": 5.0, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 979.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.directory_contact": {"metadata": {"type": "table", "schema": "qualtrics_integration_tests", "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": "INT64", "index": 9, "name": "embedded_data_last_active_time", "comment": null}, "embedded_data_last_response_date": {"type": "INT64", "index": 10, "name": "embedded_data_last_response_date", "comment": null}, "embedded_data_login_date": {"type": "INT64", "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": "STRING", "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": "INT64", "index": 18, "name": "write_blanks", "comment": null}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 5.0, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 639.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.block_question": {"metadata": {"type": "table", "schema": "qualtrics_integration_tests", "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": 5.0, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 280.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"}, "source.qualtrics_source.qualtrics.core_mailing_list": {"metadata": {"type": "table", "schema": "qualtrics_integration_tests", "name": "core_mailing_list", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"_fivetran_synced": {"type": "TIMESTAMP", "index": 1, "name": "_fivetran_synced", "comment": null}, "id": {"type": "STRING", "index": 2, "name": "id", "comment": null}, "library_id": {"type": "STRING", "index": 3, "name": "library_id", "comment": null}, "name": {"type": "STRING", "index": 4, "name": "name", "comment": null}, "category": {"type": "STRING", "index": 5, "name": "category", "comment": null}, "folder": {"type": "STRING", "index": 6, "name": "folder", "comment": null}, "_fivetran_deleted": {"type": "BOOL", "index": 7, "name": "_fivetran_deleted", "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": 85.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.core_mailing_list"}}, "errors": null} \ No newline at end of file +{"metadata": {"dbt_schema_version": "https://schemas.getdbt.com/dbt/catalog/v1.json", "dbt_version": "1.7.2", "generated_at": "2023-12-19T20:57:38.766602Z", "invocation_id": "979867b9-9582-415c-8122-dfef88290fd3", "env": {}}, "nodes": {"model.qualtrics.qualtrics__contact": {"metadata": {"type": "table", "schema": "qualtrics_tests_qualtrics", "name": "qualtrics__contact", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"contact_id": {"type": "STRING", "index": 1, "name": "contact_id", "comment": null}, "is_xm_directory_contact": {"type": "BOOL", "index": 2, "name": "is_xm_directory_contact", "comment": null}, "is_research_core_contact": {"type": "BOOL", "index": 3, "name": "is_research_core_contact", "comment": null}, "directory_id": {"type": "STRING", "index": 4, "name": "directory_id", "comment": null}, "email": {"type": "STRING", "index": 5, "name": "email", "comment": null}, "email_domain": {"type": "STRING", "index": 6, "name": "email_domain", "comment": null}, "first_name": {"type": "STRING", "index": 7, "name": "first_name", "comment": null}, "last_name": {"type": "STRING", "index": 8, "name": "last_name", "comment": null}, "external_data_reference": {"type": "STRING", "index": 9, "name": "external_data_reference", "comment": null}, "language": {"type": "STRING", "index": 10, "name": "language", "comment": null}, "is_unsubscribed_from_directory": {"type": "BOOL", "index": 11, "name": "is_unsubscribed_from_directory", "comment": null}, "unsubscribed_from_directory_at": {"type": "TIMESTAMP", "index": 12, "name": "unsubscribed_from_directory_at", "comment": null}, "last_modified_at": {"type": "STRING", "index": 13, "name": "last_modified_at", "comment": null}, "mailing_list_ids": {"type": "STRING", "index": 14, "name": "mailing_list_ids", "comment": null}, "count_mailing_lists_subscribed_to": {"type": "INT64", "index": 15, "name": "count_mailing_lists_subscribed_to", "comment": null}, "count_mailing_lists_unsubscribed_from": {"type": "INT64", "index": 16, "name": "count_mailing_lists_unsubscribed_from", "comment": null}, "created_at": {"type": "TIMESTAMP", "index": 17, "name": "created_at", "comment": null}, "source_relation": {"type": "STRING", "index": 18, "name": "source_relation", "comment": null}, "count_surveys_sent_email": {"type": "INT64", "index": 19, "name": "count_surveys_sent_email", "comment": null}, "count_surveys_sent_sms": {"type": "INT64", "index": 20, "name": "count_surveys_sent_sms", "comment": null}, "count_surveys_opened_email": {"type": "INT64", "index": 21, "name": "count_surveys_opened_email", "comment": null}, "count_surveys_opened_sms": {"type": "INT64", "index": 22, "name": "count_surveys_opened_sms", "comment": null}, "count_surveys_started_email": {"type": "INT64", "index": 23, "name": "count_surveys_started_email", "comment": null}, "count_surveys_started_sms": {"type": "INT64", "index": 24, "name": "count_surveys_started_sms", "comment": null}, "count_surveys_completed_email": {"type": "INT64", "index": 25, "name": "count_surveys_completed_email", "comment": null}, "count_surveys_completed_sms": {"type": "INT64", "index": 26, "name": "count_surveys_completed_sms", "comment": null}, "total_count_surveys": {"type": "INT64", "index": 27, "name": "total_count_surveys", "comment": null}, "total_count_completed_surveys": {"type": "INT64", "index": 28, "name": "total_count_completed_surveys", "comment": null}, "avg_survey_progress_pct": {"type": "FLOAT64", "index": 29, "name": "avg_survey_progress_pct", "comment": null}, "avg_survey_duration_in_seconds": {"type": "FLOAT64", "index": 30, "name": "avg_survey_duration_in_seconds", "comment": null}, "median_survey_progress_pct": {"type": "FLOAT64", "index": 31, "name": "median_survey_progress_pct", "comment": null}, "median_survey_duration_in_seconds": {"type": "FLOAT64", "index": 32, "name": "median_survey_duration_in_seconds", "comment": null}, "last_survey_response_recorded_at": {"type": "TIMESTAMP", "index": 33, "name": "last_survey_response_recorded_at", "comment": null}, "first_survey_response_recorded_at": {"type": "TIMESTAMP", "index": 34, "name": "first_survey_response_recorded_at", "comment": null}, "directory_name": {"type": "STRING", "index": 35, "name": "directory_name", "comment": null}, "is_in_default_directory": {"type": "BOOL", "index": 36, "name": "is_in_default_directory", "comment": null}, "is_directory_deleted": {"type": "BOOL", "index": 37, "name": "is_directory_deleted", "comment": null}}, "stats": {"num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 1457, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 6, "include": true, "description": "Approximate count of rows in this table"}, "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.qualtrics__contact"}, "model.qualtrics.qualtrics__distribution": {"metadata": {"type": "table", "schema": "qualtrics_tests_qualtrics", "name": "qualtrics__distribution", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"created_at": {"type": "STRING", "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": "INT64", "index": 7, "name": "message_library_id", "comment": null}, "message_id": {"type": "INT64", "index": 8, "name": "message_id", "comment": null}, "message_text": {"type": "INT64", "index": 9, "name": "message_text", "comment": null}, "last_modified_at": {"type": "STRING", "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": "STRING", "index": 20, "name": "send_at", "comment": null}, "survey_link_expires_at": {"type": "STRING", "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}, "source_relation": {"type": "STRING", "index": 26, "name": "source_relation", "comment": null}, "parent_distribution_header_subject": {"type": "STRING", "index": 27, "name": "parent_distribution_header_subject", "comment": null}, "recipient_mailing_list_name": {"type": "STRING", "index": 28, "name": "recipient_mailing_list_name", "comment": null}, "owner_email": {"type": "STRING", "index": 29, "name": "owner_email", "comment": null}, "owner_first_name": {"type": "STRING", "index": 30, "name": "owner_first_name", "comment": null}, "owner_last_name": {"type": "STRING", "index": 31, "name": "owner_last_name", "comment": null}, "current_count_surveys_pending": {"type": "INT64", "index": 32, "name": "current_count_surveys_pending", "comment": null}, "current_count_surveys_success": {"type": "INT64", "index": 33, "name": "current_count_surveys_success", "comment": null}, "current_count_surveys_error": {"type": "INT64", "index": 34, "name": "current_count_surveys_error", "comment": null}, "current_count_surveys_opened": {"type": "INT64", "index": 35, "name": "current_count_surveys_opened", "comment": null}, "current_count_surveys_complaint": {"type": "INT64", "index": 36, "name": "current_count_surveys_complaint", "comment": null}, "current_count_surveys_skipped": {"type": "INT64", "index": 37, "name": "current_count_surveys_skipped", "comment": null}, "current_count_surveys_blocked": {"type": "INT64", "index": 38, "name": "current_count_surveys_blocked", "comment": null}, "current_count_surveys_failure": {"type": "INT64", "index": 39, "name": "current_count_surveys_failure", "comment": null}, "current_count_surveys_unknown": {"type": "INT64", "index": 40, "name": "current_count_surveys_unknown", "comment": null}, "current_count_surveys_softbounce": {"type": "INT64", "index": 41, "name": "current_count_surveys_softbounce", "comment": null}, "current_count_surveys_hardbounce": {"type": "INT64", "index": 42, "name": "current_count_surveys_hardbounce", "comment": null}, "current_count_surveys_surveystarted": {"type": "INT64", "index": 43, "name": "current_count_surveys_surveystarted", "comment": null}, "current_count_surveys_surveypartiallyfinished": {"type": "INT64", "index": 44, "name": "current_count_surveys_surveypartiallyfinished", "comment": null}, "current_count_surveys_surveyfinished": {"type": "INT64", "index": 45, "name": "current_count_surveys_surveyfinished", "comment": null}, "current_count_surveys_surveyscreenedout": {"type": "INT64", "index": 46, "name": "current_count_surveys_surveyscreenedout", "comment": null}, "current_count_surveys_sessionexpired": {"type": "INT64", "index": 47, "name": "current_count_surveys_sessionexpired", "comment": null}, "total_count_contacts": {"type": "INT64", "index": 48, "name": "total_count_contacts", "comment": null}, "count_contacts_sent_surveys": {"type": "INT64", "index": 49, "name": "count_contacts_sent_surveys", "comment": null}, "count_contacts_opened_surveys": {"type": "INT64", "index": 50, "name": "count_contacts_opened_surveys", "comment": null}, "count_contacts_started_surveys": {"type": "INT64", "index": 51, "name": "count_contacts_started_surveys", "comment": null}, "count_contacts_completed_surveys": {"type": "INT64", "index": 52, "name": "count_contacts_completed_surveys", "comment": null}, "first_survey_sent_at": {"type": "TIMESTAMP", "index": 53, "name": "first_survey_sent_at", "comment": null}, "last_survey_sent_at": {"type": "TIMESTAMP", "index": 54, "name": "last_survey_sent_at", "comment": null}, "first_survey_opened_at": {"type": "TIMESTAMP", "index": 55, "name": "first_survey_opened_at", "comment": null}, "last_survey_opened_at": {"type": "TIMESTAMP", "index": 56, "name": "last_survey_opened_at", "comment": null}, "first_response_completed_at": {"type": "TIMESTAMP", "index": 57, "name": "first_response_completed_at", "comment": null}, "last_response_completed_at": {"type": "TIMESTAMP", "index": 58, "name": "last_response_completed_at", "comment": null}, "avg_time_to_open_in_seconds": {"type": "FLOAT64", "index": 59, "name": "avg_time_to_open_in_seconds", "comment": null}, "avg_time_to_start_in_seconds": {"type": "FLOAT64", "index": 60, "name": "avg_time_to_start_in_seconds", "comment": null}, "avg_time_to_complete_in_seconds": {"type": "FLOAT64", "index": 61, "name": "avg_time_to_complete_in_seconds", "comment": null}, "median_time_to_open_in_seconds": {"type": "FLOAT64", "index": 62, "name": "median_time_to_open_in_seconds", "comment": null}, "median_time_to_start_in_seconds": {"type": "FLOAT64", "index": 63, "name": "median_time_to_start_in_seconds", "comment": null}, "median_time_to_complete_in_seconds": {"type": "FLOAT64", "index": 64, "name": "median_time_to_complete_in_seconds", "comment": null}}, "stats": {"num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 2454, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 5, "include": true, "description": "Approximate count of rows in this table"}, "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.qualtrics__distribution"}, "model.qualtrics.qualtrics__daily_breakdown": {"metadata": {"type": "table", "schema": "qualtrics_tests_qualtrics", "name": "qualtrics__daily_breakdown", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"source_relation": {"type": "STRING", "index": 1, "name": "source_relation", "comment": null}, "date_day": {"type": "DATETIME", "index": 2, "name": "date_day", "comment": null}, "count_contacts_created": {"type": "INT64", "index": 3, "name": "count_contacts_created", "comment": null}, "count_contacts_unsubscribed_from_directory": {"type": "INT64", "index": 4, "name": "count_contacts_unsubscribed_from_directory", "comment": null}, "count_contacts_unsubscribed_from_mailing_list": {"type": "INT64", "index": 5, "name": "count_contacts_unsubscribed_from_mailing_list", "comment": null}, "count_contacts_sent_surveys": {"type": "INT64", "index": 6, "name": "count_contacts_sent_surveys", "comment": null}, "count_contacts_opened_sent_surveys": {"type": "INT64", "index": 7, "name": "count_contacts_opened_sent_surveys", "comment": null}, "count_contacts_started_sent_surveys": {"type": "INT64", "index": 8, "name": "count_contacts_started_sent_surveys", "comment": null}, "count_contacts_completed_sent_surveys": {"type": "INT64", "index": 9, "name": "count_contacts_completed_sent_surveys", "comment": null}, "count_distinct_surveys_responded_to": {"type": "INT64", "index": 10, "name": "count_distinct_surveys_responded_to", "comment": null}, "total_count_survey_responses": {"type": "INT64", "index": 11, "name": "total_count_survey_responses", "comment": null}, "total_count_completed_survey_responses": {"type": "INT64", "index": 12, "name": "total_count_completed_survey_responses", "comment": null}, "count_anonymous_survey_responses": {"type": "INT64", "index": 13, "name": "count_anonymous_survey_responses", "comment": null}, "count_anonymous_completed_survey_responses": {"type": "INT64", "index": 14, "name": "count_anonymous_completed_survey_responses", "comment": null}, "count_social_media_survey_responses": {"type": "INT64", "index": 15, "name": "count_social_media_survey_responses", "comment": null}, "count_social_media_completed_survey_responses": {"type": "INT64", "index": 16, "name": "count_social_media_completed_survey_responses", "comment": null}, "count_personal_link_survey_responses": {"type": "INT64", "index": 17, "name": "count_personal_link_survey_responses", "comment": null}, "count_personal_link_completed_survey_responses": {"type": "INT64", "index": 18, "name": "count_personal_link_completed_survey_responses", "comment": null}, "count_qr_code_survey_responses": {"type": "INT64", "index": 19, "name": "count_qr_code_survey_responses", "comment": null}, "count_qr_code_completed_survey_responses": {"type": "INT64", "index": 20, "name": "count_qr_code_completed_survey_responses", "comment": null}, "count_email_survey_responses": {"type": "INT64", "index": 21, "name": "count_email_survey_responses", "comment": null}, "count_email_completed_survey_responses": {"type": "INT64", "index": 22, "name": "count_email_completed_survey_responses", "comment": null}, "count_sms_survey_responses": {"type": "INT64", "index": 23, "name": "count_sms_survey_responses", "comment": null}, "count_sms_completed_survey_responses": {"type": "INT64", "index": 24, "name": "count_sms_completed_survey_responses", "comment": null}, "count_uncategorized_survey_responses": {"type": "INT64", "index": 25, "name": "count_uncategorized_survey_responses", "comment": null}, "count_uncategorized_completed_survey_responses": {"type": "INT64", "index": 26, "name": "count_uncategorized_completed_survey_responses", "comment": null}}, "stats": {"num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 127058, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 629, "include": true, "description": "Approximate count of rows in this table"}, "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.qualtrics__daily_breakdown"}, "model.qualtrics.qualtrics__directory": {"metadata": {"type": "table", "schema": "qualtrics_tests_qualtrics", "name": "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}, "source_relation": {"type": "STRING", "index": 11, "name": "source_relation", "comment": null}, "count_distinct_emails": {"type": "INT64", "index": 12, "name": "count_distinct_emails", "comment": null}, "count_distinct_phones": {"type": "INT64", "index": 13, "name": "count_distinct_phones", "comment": null}, "total_count_contacts": {"type": "INT64", "index": 14, "name": "total_count_contacts", "comment": null}, "total_count_unsubscribed_contacts": {"type": "INT64", "index": 15, "name": "total_count_unsubscribed_contacts", "comment": null}, "count_contacts_created_30d": {"type": "INT64", "index": 16, "name": "count_contacts_created_30d", "comment": null}, "count_contacts_unsubscribed_30d": {"type": "INT64", "index": 17, "name": "count_contacts_unsubscribed_30d", "comment": null}, "count_contacts_sent_survey_30d": {"type": "INT64", "index": 18, "name": "count_contacts_sent_survey_30d", "comment": null}, "count_contacts_opened_survey_30d": {"type": "INT64", "index": 19, "name": "count_contacts_opened_survey_30d", "comment": null}, "count_contacts_started_survey_30d": {"type": "INT64", "index": 20, "name": "count_contacts_started_survey_30d", "comment": null}, "count_contacts_completed_survey_30d": {"type": "INT64", "index": 21, "name": "count_contacts_completed_survey_30d", "comment": null}, "count_surveys_sent_30d": {"type": "INT64", "index": 22, "name": "count_surveys_sent_30d", "comment": null}, "count_mailing_lists": {"type": "INT64", "index": 23, "name": "count_mailing_lists", "comment": null}}, "stats": {"num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 151, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 1, "include": true, "description": "Approximate count of rows in this table"}, "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.qualtrics__directory"}, "model.qualtrics.qualtrics__survey": {"metadata": {"type": "table", "schema": "qualtrics_tests_qualtrics", "name": "qualtrics__survey", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"survey_id": {"type": "STRING", "index": 1, "name": "survey_id", "comment": null}, "survey_name": {"type": "STRING", "index": 2, "name": "survey_name", "comment": null}, "survey_status": {"type": "STRING", "index": 3, "name": "survey_status", "comment": null}, "brand_base_url": {"type": "STRING", "index": 4, "name": "brand_base_url", "comment": null}, "brand_id": {"type": "STRING", "index": 5, "name": "brand_id", "comment": null}, "bundle_short_name": {"type": "INT64", "index": 6, "name": "bundle_short_name", "comment": null}, "composition_type": {"type": "INT64", "index": 7, "name": "composition_type", "comment": null}, "auto_scoring_category": {"type": "INT64", "index": 8, "name": "auto_scoring_category", "comment": null}, "default_scoring_category": {"type": "INT64", "index": 9, "name": "default_scoring_category", "comment": null}, "division_id": {"type": "INT64", "index": 10, "name": "division_id", "comment": null}, "creator_user_id": {"type": "STRING", "index": 11, "name": "creator_user_id", "comment": null}, "owner_user_id": {"type": "STRING", "index": 12, "name": "owner_user_id", "comment": null}, "project_category": {"type": "STRING", "index": 13, "name": "project_category", "comment": null}, "project_type": {"type": "STRING", "index": 14, "name": "project_type", "comment": null}, "registry_sha": {"type": "INT64", "index": 15, "name": "registry_sha", "comment": null}, "registry_version": {"type": "INT64", "index": 16, "name": "registry_version", "comment": null}, "schema_version": {"type": "INT64", "index": 17, "name": "schema_version", "comment": null}, "scoring_summary_after_questions": {"type": "BOOL", "index": 18, "name": "scoring_summary_after_questions", "comment": null}, "scoring_summary_after_survey": {"type": "BOOL", "index": 19, "name": "scoring_summary_after_survey", "comment": null}, "scoring_summary_category": {"type": "INT64", "index": 20, "name": "scoring_summary_category", "comment": null}, "last_accessed_at": {"type": "INT64", "index": 21, "name": "last_accessed_at", "comment": null}, "last_activated_at": {"type": "STRING", "index": 22, "name": "last_activated_at", "comment": null}, "last_modified_at": {"type": "STRING", "index": 23, "name": "last_modified_at", "comment": null}, "is_deleted": {"type": "BOOL", "index": 24, "name": "is_deleted", "comment": null}, "_fivetran_synced": {"type": "TIMESTAMP", "index": 25, "name": "_fivetran_synced", "comment": null}, "source_relation": {"type": "STRING", "index": 26, "name": "source_relation", "comment": null}, "version_id": {"type": "INT64", "index": 27, "name": "version_id", "comment": null}, "version_number": {"type": "INT64", "index": 28, "name": "version_number", "comment": null}, "version_description": {"type": "STRING", "index": 29, "name": "version_description", "comment": null}, "survey_version_created_at": {"type": "STRING", "index": 30, "name": "survey_version_created_at", "comment": null}, "count_published_versions": {"type": "INT64", "index": 31, "name": "count_published_versions", "comment": null}, "publisher_user_id": {"type": "STRING", "index": 32, "name": "publisher_user_id", "comment": null}, "publisher_email": {"type": "STRING", "index": 33, "name": "publisher_email", "comment": null}, "creator_email": {"type": "STRING", "index": 34, "name": "creator_email", "comment": null}, "owner_email": {"type": "STRING", "index": 35, "name": "owner_email", "comment": null}, "count_questions": {"type": "INT64", "index": 36, "name": "count_questions", "comment": null}, "avg_response_duration_in_seconds": {"type": "FLOAT64", "index": 37, "name": "avg_response_duration_in_seconds", "comment": null}, "median_response_duration_in_seconds": {"type": "FLOAT64", "index": 38, "name": "median_response_duration_in_seconds", "comment": null}, "avg_survey_progress_pct": {"type": "FLOAT64", "index": 39, "name": "avg_survey_progress_pct", "comment": null}, "median_survey_progress_pct": {"type": "FLOAT64", "index": 40, "name": "median_survey_progress_pct", "comment": null}, "count_survey_responses": {"type": "INT64", "index": 41, "name": "count_survey_responses", "comment": null}, "count_completed_survey_responses": {"type": "INT64", "index": 42, "name": "count_completed_survey_responses", "comment": null}, "count_survey_responses_30d": {"type": "INT64", "index": 43, "name": "count_survey_responses_30d", "comment": null}, "count_completed_survey_responses_30d": {"type": "INT64", "index": 44, "name": "count_completed_survey_responses_30d", "comment": null}, "count_anonymous_survey_responses": {"type": "INT64", "index": 45, "name": "count_anonymous_survey_responses", "comment": null}, "count_anonymous_completed_survey_responses": {"type": "INT64", "index": 46, "name": "count_anonymous_completed_survey_responses", "comment": null}, "count_social_media_survey_responses": {"type": "INT64", "index": 47, "name": "count_social_media_survey_responses", "comment": null}, "count_social_media_completed_survey_responses": {"type": "INT64", "index": 48, "name": "count_social_media_completed_survey_responses", "comment": null}, "count_personal_link_survey_responses": {"type": "INT64", "index": 49, "name": "count_personal_link_survey_responses", "comment": null}, "count_personal_link_completed_survey_responses": {"type": "INT64", "index": 50, "name": "count_personal_link_completed_survey_responses", "comment": null}, "count_qr_code_survey_responses": {"type": "INT64", "index": 51, "name": "count_qr_code_survey_responses", "comment": null}, "count_qr_code_completed_survey_responses": {"type": "INT64", "index": 52, "name": "count_qr_code_completed_survey_responses", "comment": null}, "count_email_survey_responses": {"type": "INT64", "index": 53, "name": "count_email_survey_responses", "comment": null}, "count_email_completed_survey_responses": {"type": "INT64", "index": 54, "name": "count_email_completed_survey_responses", "comment": null}, "count_sms_survey_responses": {"type": "INT64", "index": 55, "name": "count_sms_survey_responses", "comment": null}, "count_sms_completed_survey_responses": {"type": "INT64", "index": 56, "name": "count_sms_completed_survey_responses", "comment": null}, "count_uncategorized_survey_responses": {"type": "INT64", "index": 57, "name": "count_uncategorized_survey_responses", "comment": null}, "count_uncategorized_completed_survey_responses": {"type": "INT64", "index": 58, "name": "count_uncategorized_completed_survey_responses", "comment": null}}, "stats": {"num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 1749, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 5, "include": true, "description": "Approximate count of rows in this table"}, "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.qualtrics__survey"}, "model.qualtrics.qualtrics__response": {"metadata": {"type": "table", "schema": "qualtrics_tests_qualtrics", "name": "qualtrics__response", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"question_response_id": {"type": "STRING", "index": 1, "name": "question_response_id", "comment": null}, "survey_response_id": {"type": "STRING", "index": 2, "name": "survey_response_id", "comment": null}, "survey_id": {"type": "STRING", "index": 3, "name": "survey_id", "comment": null}, "question_id": {"type": "STRING", "index": 4, "name": "question_id", "comment": null}, "question_text": {"type": "STRING", "index": 5, "name": "question_text", "comment": null}, "sub_question_key": {"type": "INT64", "index": 6, "name": "sub_question_key", "comment": null}, "sub_question_text": {"type": "INT64", "index": 7, "name": "sub_question_text", "comment": null}, "question_option_key": {"type": "INT64", "index": 8, "name": "question_option_key", "comment": null}, "value": {"type": "INT64", "index": 9, "name": "value", "comment": null}, "loop_id": {"type": "INT64", "index": 10, "name": "loop_id", "comment": null}, "distribution_channel": {"type": "STRING", "index": 11, "name": "distribution_channel", "comment": null}, "survey_response_status": {"type": "INT64", "index": 12, "name": "survey_response_status", "comment": null}, "survey_progress": {"type": "INT64", "index": 13, "name": "survey_progress", "comment": null}, "duration_in_seconds": {"type": "INT64", "index": 14, "name": "duration_in_seconds", "comment": null}, "is_finished_with_survey": {"type": "BOOL", "index": 15, "name": "is_finished_with_survey", "comment": null}, "survey_finished_at": {"type": "STRING", "index": 16, "name": "survey_finished_at", "comment": null}, "survey_response_last_modified_at": {"type": "STRING", "index": 17, "name": "survey_response_last_modified_at", "comment": null}, "survey_response_recorded_at": {"type": "TIMESTAMP", "index": 18, "name": "survey_response_recorded_at", "comment": null}, "survey_response_started_at": {"type": "TIMESTAMP", "index": 19, "name": "survey_response_started_at", "comment": null}, "recipient_email": {"type": "STRING", "index": 20, "name": "recipient_email", "comment": null}, "recipient_first_name": {"type": "STRING", "index": 21, "name": "recipient_first_name", "comment": null}, "recipient_last_name": {"type": "STRING", "index": 22, "name": "recipient_last_name", "comment": null}, "user_language": {"type": "STRING", "index": 23, "name": "user_language", "comment": null}, "ip_address": {"type": "STRING", "index": 24, "name": "ip_address", "comment": null}, "location_latitude": {"type": "INT64", "index": 25, "name": "location_latitude", "comment": null}, "location_longitude": {"type": "INT64", "index": 26, "name": "location_longitude", "comment": null}, "source_relation": {"type": "STRING", "index": 27, "name": "source_relation", "comment": null}, "recode_value": {"type": "INT64", "index": 28, "name": "recode_value", "comment": null}, "question_option_text": {"type": "STRING", "index": 29, "name": "question_option_text", "comment": null}, "first_name": {"type": "STRING", "index": 30, "name": "first_name", "comment": null}, "last_name": {"type": "STRING", "index": 31, "name": "last_name", "comment": null}, "email_domain": {"type": "STRING", "index": 32, "name": "email_domain", "comment": null}, "contact_language": {"type": "STRING", "index": 33, "name": "contact_language", "comment": null}, "contact_external_data_reference": {"type": "STRING", "index": 34, "name": "contact_external_data_reference", "comment": null}, "is_xm_directory_contact": {"type": "BOOL", "index": 35, "name": "is_xm_directory_contact", "comment": null}, "is_research_core_contact": {"type": "BOOL", "index": 36, "name": "is_research_core_contact", "comment": null}, "embedded_data": {"type": "STRING", "index": 37, "name": "embedded_data", "comment": null}, "survey_name": {"type": "STRING", "index": 38, "name": "survey_name", "comment": null}, "survey_status": {"type": "STRING", "index": 39, "name": "survey_status", "comment": null}, "project_category": {"type": "STRING", "index": 40, "name": "project_category", "comment": null}, "project_type": {"type": "STRING", "index": 41, "name": "project_type", "comment": null}, "brand_base_url": {"type": "STRING", "index": 42, "name": "brand_base_url", "comment": null}, "question_description": {"type": "STRING", "index": 43, "name": "question_description", "comment": null}, "question_type": {"type": "STRING", "index": 44, "name": "question_type", "comment": null}, "block_id": {"type": "STRING", "index": 45, "name": "block_id", "comment": null}, "block_description": {"type": "STRING", "index": 46, "name": "block_description", "comment": null}, "block_question_randomization": {"type": "INT64", "index": 47, "name": "block_question_randomization", "comment": null}, "block_type": {"type": "STRING", "index": 48, "name": "block_type", "comment": null}, "block_visibility": {"type": "INT64", "index": 49, "name": "block_visibility", "comment": null}, "validation_setting_force_response": {"type": "INT64", "index": 50, "name": "validation_setting_force_response", "comment": null}, "validation_setting_force_response_type": {"type": "INT64", "index": 51, "name": "validation_setting_force_response_type", "comment": null}, "validation_setting_type": {"type": "STRING", "index": 52, "name": "validation_setting_type", "comment": null}, "is_question_deleted": {"type": "BOOL", "index": 53, "name": "is_question_deleted", "comment": null}, "is_block_deleted": {"type": "BOOL", "index": 54, "name": "is_block_deleted", "comment": null}}, "stats": {"num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 0, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 0, "include": true, "description": "Approximate count of rows in this table"}, "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.qualtrics__response"}, "model.qualtrics_source.stg_qualtrics__directory": {"metadata": {"type": "table", "schema": "qualtrics_tests_qualtrics_source", "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}, "source_relation": {"type": "STRING", "index": 11, "name": "source_relation", "comment": null}}, "stats": {"num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 55, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 1, "include": true, "description": "Approximate count of rows in this table"}, "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__survey_embedded_data_tmp": {"metadata": {"type": "view", "schema": "qualtrics_tests_qualtrics_source", "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": "INT64", "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__question_response": {"metadata": {"type": "table", "schema": "qualtrics_tests_qualtrics_source", "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": "INT64", "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": "INT64", "index": 5, "name": "question_option_key", "comment": null}, "response_id": {"type": "STRING", "index": 6, "name": "response_id", "comment": null}, "sub_question_key": {"type": "INT64", "index": 7, "name": "sub_question_key", "comment": null}, "sub_question_text": {"type": "INT64", "index": 8, "name": "sub_question_text", "comment": null}, "value": {"type": "INT64", "index": 9, "name": "value", "comment": null}, "_fivetran_synced": {"type": "TIMESTAMP", "index": 10, "name": "_fivetran_synced", "comment": null}, "source_relation": {"type": "STRING", "index": 11, "name": "source_relation", "comment": null}}, "stats": {"num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 393, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 5, "include": true, "description": "Approximate count of rows in this table"}, "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__sub_question": {"metadata": {"type": "table", "schema": "qualtrics_tests_qualtrics_source", "name": "stg_qualtrics__sub_question", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"choice_data_export_tag": {"type": "INT64", "index": 1, "name": "choice_data_export_tag", "comment": null}, "key": {"type": "INT64", "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}, "source_relation": {"type": "STRING", "index": 8, "name": "source_relation", "comment": null}}, "stats": {"num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 256, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 5, "include": true, "description": "Approximate count of rows in this table"}, "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__distribution_contact_tmp": {"metadata": {"type": "view", "schema": "qualtrics_tests_qualtrics_source", "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": "INT64", "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": "INT64", "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__directory_tmp": {"metadata": {"type": "view", "schema": "qualtrics_tests_qualtrics_source", "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__survey_version_tmp": {"metadata": {"type": "view", "schema": "qualtrics_tests_qualtrics_source", "name": "stg_qualtrics__survey_version_tmp", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"id": {"type": "INT64", "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": "STRING", "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__user": {"metadata": {"type": "table", "schema": "qualtrics_tests_qualtrics_source", "name": "stg_qualtrics__user", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"account_created_at": {"type": "INT64", "index": 1, "name": "account_created_at", "comment": null}, "account_expires_at": {"type": "INT64", "index": 2, "name": "account_expires_at", "comment": null}, "account_status": {"type": "STRING", "index": 3, "name": "account_status", "comment": null}, "division_id": {"type": "INT64", "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": "INT64", "index": 8, "name": "language", "comment": null}, "last_login_at": {"type": "INT64", "index": 9, "name": "last_login_at", "comment": null}, "last_name": {"type": "STRING", "index": 10, "name": "last_name", "comment": null}, "organization_id": {"type": "INT64", "index": 11, "name": "organization_id", "comment": null}, "password_expires_at": {"type": "INT64", "index": 12, "name": "password_expires_at", "comment": null}, "password_last_changed_at": {"type": "INT64", "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": "INT64", "index": 17, "name": "time_zone", "comment": null}, "is_unsubscribed": {"type": "INT64", "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}, "source_relation": {"type": "STRING", "index": 23, "name": "source_relation", "comment": null}}, "stats": {"num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 223, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 2, "include": true, "description": "Approximate count of rows in this table"}, "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__survey_tmp": {"metadata": {"type": "view", "schema": "qualtrics_tests_qualtrics_source", "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": "INT64", "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": "INT64", "index": 7, "name": "bundle_short_name", "comment": null}, "composition_type": {"type": "INT64", "index": 8, "name": "composition_type", "comment": null}, "creator_id": {"type": "STRING", "index": 9, "name": "creator_id", "comment": null}, "default_scoring_category": {"type": "INT64", "index": 10, "name": "default_scoring_category", "comment": null}, "division_id": {"type": "INT64", "index": 11, "name": "division_id", "comment": null}, "is_active": {"type": "INT64", "index": 12, "name": "is_active", "comment": null}, "last_accessed": {"type": "INT64", "index": 13, "name": "last_accessed", "comment": null}, "last_activated": {"type": "STRING", "index": 14, "name": "last_activated", "comment": null}, "last_modified": {"type": "STRING", "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": "INT64", "index": 17, "name": "option_anonymize_response", "comment": null}, "option_auto_confirm_start": {"type": "INT64", "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": "INT64", "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": "INT64", "index": 25, "name": "option_collect_geo_location", "comment": null}, "option_confirm_start": {"type": "INT64", "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": "INT64", "index": 28, "name": "option_email_thank_you", "comment": null}, "option_eosredirect_url": {"type": "INT64", "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": "INT64", "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": "INT64", "index": 37, "name": "option_partial_data_close_after", "comment": null}, "option_password_protection": {"type": "INT64", "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": "INT64", "index": 41, "name": "option_protect_selection_ids", "comment": null}, "option_recaptcha_v_3": {"type": "INT64", "index": 42, "name": "option_recaptcha_v_3", "comment": null}, "option_referer_check": {"type": "INT64", "index": 43, "name": "option_referer_check", "comment": null}, "option_referer_url": {"type": "INT64", "index": 44, "name": "option_referer_url", "comment": null}, "option_relevant_id": {"type": "INT64", "index": 45, "name": "option_relevant_id", "comment": null}, "option_relevant_idlockout_period": {"type": "INT64", "index": 46, "name": "option_relevant_idlockout_period", "comment": null}, "option_response_summary": {"type": "INT64", "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": "INT64", "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": "STRING", "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": "INT64", "index": 58, "name": "option_survey_meta_description", "comment": null}, "option_survey_name": {"type": "INT64", "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": "INT64", "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": "INT64", "index": 67, "name": "registry_sha", "comment": null}, "registry_version": {"type": "INT64", "index": 68, "name": "registry_version", "comment": null}, "schema_version": {"type": "INT64", "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": "INT64", "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": {"metadata": {"type": "table", "schema": "qualtrics_tests_qualtrics_source", "name": "stg_qualtrics__distribution", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"created_at": {"type": "STRING", "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": "INT64", "index": 7, "name": "message_library_id", "comment": null}, "message_id": {"type": "INT64", "index": 8, "name": "message_id", "comment": null}, "message_text": {"type": "INT64", "index": 9, "name": "message_text", "comment": null}, "last_modified_at": {"type": "STRING", "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": "STRING", "index": 20, "name": "send_at", "comment": null}, "survey_link_expires_at": {"type": "STRING", "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}, "source_relation": {"type": "STRING", "index": 26, "name": "source_relation", "comment": null}}, "stats": {"num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 1393, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 5, "include": true, "description": "Approximate count of rows in this table"}, "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__question_response_tmp": {"metadata": {"type": "view", "schema": "qualtrics_tests_qualtrics_source", "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": "INT64", "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": "INT64", "index": 6, "name": "question_option_key", "comment": null}, "response_id": {"type": "STRING", "index": 7, "name": "response_id", "comment": null}, "sub_question_key": {"type": "INT64", "index": 8, "name": "sub_question_key", "comment": null}, "sub_question_text": {"type": "INT64", "index": 9, "name": "sub_question_text", "comment": null}, "value": {"type": "INT64", "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_tests_qualtrics_source", "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": "INT64", "index": 17, "name": "validation_setting_force_response", "comment": null}, "validation_setting_force_response_type": {"type": "INT64", "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_embedded_data": {"metadata": {"type": "table", "schema": "qualtrics_tests_qualtrics_source", "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": "INT64", "index": 4, "name": "value", "comment": null}, "_fivetran_synced": {"type": "TIMESTAMP", "index": 5, "name": "_fivetran_synced", "comment": null}, "source_relation": {"type": "STRING", "index": 6, "name": "source_relation", "comment": null}}, "stats": {"num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 235, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 5, "include": true, "description": "Approximate count of rows in this table"}, "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__core_mailing_list": {"metadata": {"type": "table", "schema": "qualtrics_tests_qualtrics_source", "name": "stg_qualtrics__core_mailing_list", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"mailing_list_id": {"type": "STRING", "index": 1, "name": "mailing_list_id", "comment": null}, "library_id": {"type": "STRING", "index": 2, "name": "library_id", "comment": null}, "name": {"type": "STRING", "index": 3, "name": "name", "comment": null}, "category": {"type": "STRING", "index": 4, "name": "category", "comment": null}, "folder": {"type": "STRING", "index": 5, "name": "folder", "comment": null}, "is_deleted": {"type": "BOOL", "index": 6, "name": "is_deleted", "comment": null}, "_fivetran_synced": {"type": "TIMESTAMP", "index": 7, "name": "_fivetran_synced", "comment": null}, "source_relation": {"type": "STRING", "index": 8, "name": "source_relation", "comment": null}}, "stats": {"num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 87, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 1, "include": true, "description": "Approximate count of rows in this table"}, "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__core_mailing_list"}, "model.qualtrics_source.stg_qualtrics__question_option_tmp": {"metadata": {"type": "view", "schema": "qualtrics_tests_qualtrics_source", "name": "stg_qualtrics__question_option_tmp", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"key": {"type": "INT64", "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": "INT64", "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__contact_mailing_list_membership_tmp": {"metadata": {"type": "view", "schema": "qualtrics_tests_qualtrics_source", "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__block_question": {"metadata": {"type": "table", "schema": "qualtrics_tests_qualtrics_source", "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}, "source_relation": {"type": "STRING", "index": 6, "name": "source_relation", "comment": null}}, "stats": {"num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 290, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 5, "include": true, "description": "Approximate count of rows in this table"}, "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__directory_contact": {"metadata": {"type": "table", "schema": "qualtrics_tests_qualtrics_source", "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": "STRING", "index": 13, "name": "last_modified_at", "comment": null}, "_fivetran_synced": {"type": "TIMESTAMP", "index": 14, "name": "_fivetran_synced", "comment": null}, "source_relation": {"type": "STRING", "index": 15, "name": "source_relation", "comment": null}}, "stats": {"num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 649, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 5, "include": true, "description": "Approximate count of rows in this table"}, "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__question": {"metadata": {"type": "table", "schema": "qualtrics_tests_qualtrics_source", "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}, "is_data_hidden": {"type": "BOOL", "index": 2, "name": "is_data_hidden", "comment": null}, "is_data_private": {"type": "BOOL", "index": 3, "name": "is_data_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": "INT64", "index": 15, "name": "validation_setting_force_response", "comment": null}, "validation_setting_force_response_type": {"type": "INT64", "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}, "source_relation": {"type": "STRING", "index": 20, "name": "source_relation", "comment": null}}, "stats": {"num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 687, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 5, "include": true, "description": "Approximate count of rows in this table"}, "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__survey_response_tmp": {"metadata": {"type": "view", "schema": "qualtrics_tests_qualtrics_source", "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": "STRING", "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": "STRING", "index": 8, "name": "last_modified_date", "comment": null}, "location_latitude": {"type": "INT64", "index": 9, "name": "location_latitude", "comment": null}, "location_longitude": {"type": "INT64", "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_mailing_list_tmp": {"metadata": {"type": "view", "schema": "qualtrics_tests_qualtrics_source", "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": "STRING", "index": 5, "name": "creation_date", "comment": null}, "last_modified_date": {"type": "STRING", "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"}, "model.qualtrics_source.stg_qualtrics__core_contact_tmp": {"metadata": {"type": "view", "schema": "qualtrics_tests_qualtrics_source", "name": "stg_qualtrics__core_contact_tmp", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"_fivetran_synced": {"type": "TIMESTAMP", "index": 1, "name": "_fivetran_synced", "comment": null}, "id": {"type": "STRING", "index": 2, "name": "id", "comment": null}, "mailing_list_id": {"type": "STRING", "index": 3, "name": "mailing_list_id", "comment": null}, "first_name": {"type": "STRING", "index": 4, "name": "first_name", "comment": null}, "last_name": {"type": "STRING", "index": 5, "name": "last_name", "comment": null}, "email": {"type": "STRING", "index": 6, "name": "email", "comment": null}, "external_data_reference": {"type": "STRING", "index": 7, "name": "external_data_reference", "comment": null}, "language": {"type": "STRING", "index": 8, "name": "language", "comment": null}, "unsubscribed": {"type": "BOOL", "index": 9, "name": "unsubscribed", "comment": null}, "_fivetran_deleted": {"type": "BOOL", "index": 10, "name": "_fivetran_deleted", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.qualtrics_source.stg_qualtrics__core_contact_tmp"}, "model.qualtrics_source.stg_qualtrics__survey_response": {"metadata": {"type": "table", "schema": "qualtrics_tests_qualtrics_source", "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": "STRING", "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": "STRING", "index": 7, "name": "last_modified_at", "comment": null}, "location_latitude": {"type": "INT64", "index": 8, "name": "location_latitude", "comment": null}, "location_longitude": {"type": "INT64", "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}, "source_relation": {"type": "STRING", "index": 20, "name": "source_relation", "comment": null}}, "stats": {"num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 954, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 5, "include": true, "description": "Approximate count of rows in this table"}, "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_version": {"metadata": {"type": "table", "schema": "qualtrics_tests_qualtrics_source", "name": "stg_qualtrics__survey_version", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"created_at": {"type": "STRING", "index": 1, "name": "created_at", "comment": null}, "version_description": {"type": "STRING", "index": 2, "name": "version_description", "comment": null}, "version_id": {"type": "INT64", "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}, "source_relation": {"type": "STRING", "index": 11, "name": "source_relation", "comment": null}}, "stats": {"num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 580, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 5, "include": true, "description": "Approximate count of rows in this table"}, "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_question_tmp": {"metadata": {"type": "view", "schema": "qualtrics_tests_qualtrics_source", "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": "qualtrics_tests_qualtrics_source", "name": "stg_qualtrics__sub_question_tmp", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"key": {"type": "INT64", "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": "INT64", "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__distribution_tmp": {"metadata": {"type": "view", "schema": "qualtrics_tests_qualtrics_source", "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": "STRING", "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": "INT64", "index": 9, "name": "message_library_id", "comment": null}, "message_message_id": {"type": "INT64", "index": 10, "name": "message_message_id", "comment": null}, "message_message_text": {"type": "INT64", "index": 11, "name": "message_message_text", "comment": null}, "modified_date": {"type": "STRING", "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": "STRING", "index": 22, "name": "send_date", "comment": null}, "survey_link_expiration_date": {"type": "STRING", "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__directory_contact_tmp": {"metadata": {"type": "view", "schema": "qualtrics_tests_qualtrics_source", "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": "INT64", "index": 9, "name": "embedded_data_last_active_time", "comment": null}, "embedded_data_last_response_date": {"type": "INT64", "index": 10, "name": "embedded_data_last_response_date", "comment": null}, "embedded_data_login_date": {"type": "INT64", "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": "STRING", "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": "INT64", "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__distribution_contact": {"metadata": {"type": "table", "schema": "qualtrics_tests_qualtrics_source", "name": "stg_qualtrics__distribution_contact", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"contact_frequency_rule_id": {"type": "INT64", "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": "INT64", "index": 12, "name": "survey_session_id", "comment": null}, "_fivetran_synced": {"type": "TIMESTAMP", "index": 13, "name": "_fivetran_synced", "comment": null}, "source_relation": {"type": "STRING", "index": 14, "name": "source_relation", "comment": null}}, "stats": {"num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 1175, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 5, "include": true, "description": "Approximate count of rows in this table"}, "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_tmp": {"metadata": {"type": "view", "schema": "qualtrics_tests_qualtrics_source", "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": "INT64", "index": 4, "name": "account_creation_date", "comment": null}, "account_expiration_date": {"type": "INT64", "index": 5, "name": "account_expiration_date", "comment": null}, "account_status": {"type": "STRING", "index": 6, "name": "account_status", "comment": null}, "division_id": {"type": "INT64", "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": "INT64", "index": 10, "name": "language", "comment": null}, "last_login_date": {"type": "INT64", "index": 11, "name": "last_login_date", "comment": null}, "last_name": {"type": "STRING", "index": 12, "name": "last_name", "comment": null}, "organization_id": {"type": "INT64", "index": 13, "name": "organization_id", "comment": null}, "password_expiration_date": {"type": "INT64", "index": 14, "name": "password_expiration_date", "comment": null}, "password_last_changed_date": {"type": "INT64", "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": "INT64", "index": 19, "name": "time_zone", "comment": null}, "unsubscribed": {"type": "INT64", "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__block": {"metadata": {"type": "table", "schema": "qualtrics_tests_qualtrics_source", "name": "stg_qualtrics__block", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"is_locked": {"type": "INT64", "index": 1, "name": "is_locked", "comment": null}, "block_visibility": {"type": "INT64", "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": "INT64", "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}, "source_relation": {"type": "STRING", "index": 10, "name": "source_relation", "comment": null}}, "stats": {"num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 364, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 5, "include": true, "description": "Approximate count of rows in this table"}, "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__core_contact": {"metadata": {"type": "table", "schema": "qualtrics_tests_qualtrics_source", "name": "stg_qualtrics__core_contact", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"contact_id": {"type": "STRING", "index": 1, "name": "contact_id", "comment": null}, "mailing_list_id": {"type": "STRING", "index": 2, "name": "mailing_list_id", "comment": null}, "first_name": {"type": "STRING", "index": 3, "name": "first_name", "comment": null}, "last_name": {"type": "STRING", "index": 4, "name": "last_name", "comment": null}, "email": {"type": "STRING", "index": 5, "name": "email", "comment": null}, "email_domain": {"type": "STRING", "index": 6, "name": "email_domain", "comment": null}, "external_data_reference": {"type": "STRING", "index": 7, "name": "external_data_reference", "comment": null}, "language": {"type": "STRING", "index": 8, "name": "language", "comment": null}, "is_unsubscribed": {"type": "BOOL", "index": 9, "name": "is_unsubscribed", "comment": null}, "is_deleted": {"type": "BOOL", "index": 10, "name": "is_deleted", "comment": null}, "_fivetran_synced": {"type": "TIMESTAMP", "index": 11, "name": "_fivetran_synced", "comment": null}, "source_relation": {"type": "STRING", "index": 12, "name": "source_relation", "comment": null}}, "stats": {"num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 97, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 1, "include": true, "description": "Approximate count of rows in this table"}, "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__core_contact"}, "model.qualtrics_source.stg_qualtrics__question_option": {"metadata": {"type": "table", "schema": "qualtrics_tests_qualtrics_source", "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": "INT64", "index": 3, "name": "key", "comment": null}, "recode_value": {"type": "INT64", "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}, "source_relation": {"type": "STRING", "index": 8, "name": "source_relation", "comment": null}}, "stats": {"num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 376, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 5, "include": true, "description": "Approximate count of rows in this table"}, "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": {"metadata": {"type": "table", "schema": "qualtrics_tests_qualtrics_source", "name": "stg_qualtrics__survey", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"survey_id": {"type": "STRING", "index": 1, "name": "survey_id", "comment": null}, "survey_name": {"type": "STRING", "index": 2, "name": "survey_name", "comment": null}, "survey_status": {"type": "STRING", "index": 3, "name": "survey_status", "comment": null}, "brand_base_url": {"type": "STRING", "index": 4, "name": "brand_base_url", "comment": null}, "brand_id": {"type": "STRING", "index": 5, "name": "brand_id", "comment": null}, "bundle_short_name": {"type": "INT64", "index": 6, "name": "bundle_short_name", "comment": null}, "composition_type": {"type": "INT64", "index": 7, "name": "composition_type", "comment": null}, "auto_scoring_category": {"type": "INT64", "index": 8, "name": "auto_scoring_category", "comment": null}, "default_scoring_category": {"type": "INT64", "index": 9, "name": "default_scoring_category", "comment": null}, "division_id": {"type": "INT64", "index": 10, "name": "division_id", "comment": null}, "creator_user_id": {"type": "STRING", "index": 11, "name": "creator_user_id", "comment": null}, "owner_user_id": {"type": "STRING", "index": 12, "name": "owner_user_id", "comment": null}, "project_category": {"type": "STRING", "index": 13, "name": "project_category", "comment": null}, "project_type": {"type": "STRING", "index": 14, "name": "project_type", "comment": null}, "registry_sha": {"type": "INT64", "index": 15, "name": "registry_sha", "comment": null}, "registry_version": {"type": "INT64", "index": 16, "name": "registry_version", "comment": null}, "schema_version": {"type": "INT64", "index": 17, "name": "schema_version", "comment": null}, "scoring_summary_after_questions": {"type": "BOOL", "index": 18, "name": "scoring_summary_after_questions", "comment": null}, "scoring_summary_after_survey": {"type": "BOOL", "index": 19, "name": "scoring_summary_after_survey", "comment": null}, "scoring_summary_category": {"type": "INT64", "index": 20, "name": "scoring_summary_category", "comment": null}, "last_accessed_at": {"type": "INT64", "index": 21, "name": "last_accessed_at", "comment": null}, "last_activated_at": {"type": "STRING", "index": 22, "name": "last_activated_at", "comment": null}, "last_modified_at": {"type": "STRING", "index": 23, "name": "last_modified_at", "comment": null}, "is_deleted": {"type": "BOOL", "index": 24, "name": "is_deleted", "comment": null}, "_fivetran_synced": {"type": "TIMESTAMP", "index": 25, "name": "_fivetran_synced", "comment": null}, "source_relation": {"type": "STRING", "index": 26, "name": "source_relation", "comment": null}}, "stats": {"num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 879, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 5, "include": true, "description": "Approximate count of rows in this table"}, "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": "qualtrics_tests_qualtrics_source", "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": "INT64", "index": 5, "name": "block_locking", "comment": null}, "block_visibility": {"type": "INT64", "index": 6, "name": "block_visibility", "comment": null}, "description": {"type": "STRING", "index": 7, "name": "description", "comment": null}, "randomize_questions": {"type": "INT64", "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__directory_mailing_list": {"metadata": {"type": "table", "schema": "qualtrics_tests_qualtrics_source", "name": "stg_qualtrics__directory_mailing_list", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"created_at": {"type": "STRING", "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": "STRING", "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}, "source_relation": {"type": "STRING", "index": 9, "name": "source_relation", "comment": null}}, "stats": {"num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 757, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 5, "include": true, "description": "Approximate count of rows in this table"}, "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__core_mailing_list_tmp": {"metadata": {"type": "view", "schema": "qualtrics_tests_qualtrics_source", "name": "stg_qualtrics__core_mailing_list_tmp", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"_fivetran_synced": {"type": "TIMESTAMP", "index": 1, "name": "_fivetran_synced", "comment": null}, "id": {"type": "STRING", "index": 2, "name": "id", "comment": null}, "library_id": {"type": "STRING", "index": 3, "name": "library_id", "comment": null}, "name": {"type": "STRING", "index": 4, "name": "name", "comment": null}, "category": {"type": "STRING", "index": 5, "name": "category", "comment": null}, "folder": {"type": "STRING", "index": 6, "name": "folder", "comment": null}, "_fivetran_deleted": {"type": "BOOL", "index": 7, "name": "_fivetran_deleted", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.qualtrics_source.stg_qualtrics__core_mailing_list_tmp"}, "model.qualtrics_source.stg_qualtrics__contact_mailing_list_membership": {"metadata": {"type": "table", "schema": "qualtrics_tests_qualtrics_source", "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}, "source_relation": {"type": "STRING", "index": 10, "name": "source_relation", "comment": null}}, "stats": {"num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 625, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 5, "include": true, "description": "Approximate count of rows in this table"}, "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"}, "seed.qualtrics_integration_tests.core_mailing_list": {"metadata": {"type": "table", "schema": "qualtrics_tests", "name": "core_mailing_list", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"_fivetran_synced": {"type": "TIMESTAMP", "index": 1, "name": "_fivetran_synced", "comment": null}, "id": {"type": "STRING", "index": 2, "name": "id", "comment": null}, "library_id": {"type": "STRING", "index": 3, "name": "library_id", "comment": null}, "name": {"type": "STRING", "index": 4, "name": "name", "comment": null}, "category": {"type": "STRING", "index": 5, "name": "category", "comment": null}, "folder": {"type": "STRING", "index": 6, "name": "folder", "comment": null}, "_fivetran_deleted": {"type": "BOOL", "index": 7, "name": "_fivetran_deleted", "comment": null}}, "stats": {"num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 85, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 1, "include": true, "description": "Approximate count of rows in this table"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.qualtrics_integration_tests.core_mailing_list"}, "seed.qualtrics_integration_tests.distribution": {"metadata": {"type": "table", "schema": "qualtrics_tests", "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": "STRING", "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": "INT64", "index": 9, "name": "message_library_id", "comment": null}, "message_message_id": {"type": "INT64", "index": 10, "name": "message_message_id", "comment": null}, "message_message_text": {"type": "INT64", "index": 11, "name": "message_message_text", "comment": null}, "modified_date": {"type": "STRING", "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": "STRING", "index": 22, "name": "send_date", "comment": null}, "survey_link_expiration_date": {"type": "STRING", "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_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 1383, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 5, "include": true, "description": "Approximate count of rows in this table"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.qualtrics_integration_tests.distribution"}, "seed.qualtrics_integration_tests.directory_contact": {"metadata": {"type": "table", "schema": "qualtrics_tests", "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": "INT64", "index": 9, "name": "embedded_data_last_active_time", "comment": null}, "embedded_data_last_response_date": {"type": "INT64", "index": 10, "name": "embedded_data_last_response_date", "comment": null}, "embedded_data_login_date": {"type": "INT64", "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": "STRING", "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": "INT64", "index": 18, "name": "write_blanks", "comment": null}}, "stats": {"num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 639, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 5, "include": true, "description": "Approximate count of rows in this table"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.qualtrics_integration_tests.directory_contact"}, "seed.qualtrics_integration_tests.survey_response": {"metadata": {"type": "table", "schema": "qualtrics_tests", "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": "STRING", "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": "STRING", "index": 8, "name": "last_modified_date", "comment": null}, "location_latitude": {"type": "INT64", "index": 9, "name": "location_latitude", "comment": null}, "location_longitude": {"type": "INT64", "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_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 979, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 5, "include": true, "description": "Approximate count of rows in this table"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.qualtrics_integration_tests.survey_response"}, "seed.qualtrics_integration_tests.survey_version": {"metadata": {"type": "table", "schema": "qualtrics_tests", "name": "survey_version", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"id": {"type": "INT64", "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": "STRING", "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_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 570, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 5, "include": true, "description": "Approximate count of rows in this table"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.qualtrics_integration_tests.survey_version"}, "seed.qualtrics_integration_tests.sub_question": {"metadata": {"type": "table", "schema": "qualtrics_tests", "name": "sub_question", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"key": {"type": "INT64", "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": "INT64", "index": 6, "name": "choice_data_export_tag", "comment": null}, "text": {"type": "STRING", "index": 7, "name": "text", "comment": null}}, "stats": {"num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 246, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 5, "include": true, "description": "Approximate count of rows in this table"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.qualtrics_integration_tests.sub_question"}, "seed.qualtrics_integration_tests.directory": {"metadata": {"type": "table", "schema": "qualtrics_tests", "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_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 53, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 1, "include": true, "description": "Approximate count of rows in this table"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.qualtrics_integration_tests.directory"}, "seed.qualtrics_integration_tests.block_question": {"metadata": {"type": "table", "schema": "qualtrics_tests", "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_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 280, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 5, "include": true, "description": "Approximate count of rows in this table"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.qualtrics_integration_tests.block_question"}, "seed.qualtrics_integration_tests.core_contact": {"metadata": {"type": "table", "schema": "qualtrics_tests", "name": "core_contact", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"_fivetran_synced": {"type": "TIMESTAMP", "index": 1, "name": "_fivetran_synced", "comment": null}, "id": {"type": "STRING", "index": 2, "name": "id", "comment": null}, "mailing_list_id": {"type": "STRING", "index": 3, "name": "mailing_list_id", "comment": null}, "first_name": {"type": "STRING", "index": 4, "name": "first_name", "comment": null}, "last_name": {"type": "STRING", "index": 5, "name": "last_name", "comment": null}, "email": {"type": "STRING", "index": 6, "name": "email", "comment": null}, "external_data_reference": {"type": "STRING", "index": 7, "name": "external_data_reference", "comment": null}, "language": {"type": "STRING", "index": 8, "name": "language", "comment": null}, "unsubscribed": {"type": "BOOL", "index": 9, "name": "unsubscribed", "comment": null}, "_fivetran_deleted": {"type": "BOOL", "index": 10, "name": "_fivetran_deleted", "comment": null}}, "stats": {"num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 84, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 1, "include": true, "description": "Approximate count of rows in this table"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.qualtrics_integration_tests.core_contact"}, "seed.qualtrics_integration_tests.block": {"metadata": {"type": "table", "schema": "qualtrics_tests", "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": "INT64", "index": 5, "name": "block_locking", "comment": null}, "block_visibility": {"type": "INT64", "index": 6, "name": "block_visibility", "comment": null}, "description": {"type": "STRING", "index": 7, "name": "description", "comment": null}, "randomize_questions": {"type": "INT64", "index": 8, "name": "randomize_questions", "comment": null}, "type": {"type": "STRING", "index": 9, "name": "type", "comment": null}}, "stats": {"num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 354, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 5, "include": true, "description": "Approximate count of rows in this table"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.qualtrics_integration_tests.block"}, "seed.qualtrics_integration_tests.contact_mailing_list_membership": {"metadata": {"type": "table", "schema": "qualtrics_tests", "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_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 615, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 5, "include": true, "description": "Approximate count of rows in this table"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.qualtrics_integration_tests.contact_mailing_list_membership"}, "seed.qualtrics_integration_tests.survey": {"metadata": {"type": "table", "schema": "qualtrics_tests", "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": "INT64", "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": "INT64", "index": 7, "name": "bundle_short_name", "comment": null}, "composition_type": {"type": "INT64", "index": 8, "name": "composition_type", "comment": null}, "creator_id": {"type": "STRING", "index": 9, "name": "creator_id", "comment": null}, "default_scoring_category": {"type": "INT64", "index": 10, "name": "default_scoring_category", "comment": null}, "division_id": {"type": "INT64", "index": 11, "name": "division_id", "comment": null}, "is_active": {"type": "INT64", "index": 12, "name": "is_active", "comment": null}, "last_accessed": {"type": "INT64", "index": 13, "name": "last_accessed", "comment": null}, "last_activated": {"type": "STRING", "index": 14, "name": "last_activated", "comment": null}, "last_modified": {"type": "STRING", "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": "INT64", "index": 17, "name": "option_anonymize_response", "comment": null}, "option_auto_confirm_start": {"type": "INT64", "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": "INT64", "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": "INT64", "index": 25, "name": "option_collect_geo_location", "comment": null}, "option_confirm_start": {"type": "INT64", "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": "INT64", "index": 28, "name": "option_email_thank_you", "comment": null}, "option_eosredirect_url": {"type": "INT64", "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": "INT64", "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": "INT64", "index": 37, "name": "option_partial_data_close_after", "comment": null}, "option_password_protection": {"type": "INT64", "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": "INT64", "index": 41, "name": "option_protect_selection_ids", "comment": null}, "option_recaptcha_v_3": {"type": "INT64", "index": 42, "name": "option_recaptcha_v_3", "comment": null}, "option_referer_check": {"type": "INT64", "index": 43, "name": "option_referer_check", "comment": null}, "option_referer_url": {"type": "INT64", "index": 44, "name": "option_referer_url", "comment": null}, "option_relevant_id": {"type": "INT64", "index": 45, "name": "option_relevant_id", "comment": null}, "option_relevant_idlockout_period": {"type": "INT64", "index": 46, "name": "option_relevant_idlockout_period", "comment": null}, "option_response_summary": {"type": "INT64", "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": "INT64", "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": "STRING", "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": "INT64", "index": 58, "name": "option_survey_meta_description", "comment": null}, "option_survey_name": {"type": "INT64", "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": "INT64", "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": "INT64", "index": 67, "name": "registry_sha", "comment": null}, "registry_version": {"type": "INT64", "index": 68, "name": "registry_version", "comment": null}, "schema_version": {"type": "INT64", "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": "INT64", "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_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 5503, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 5, "include": true, "description": "Approximate count of rows in this table"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.qualtrics_integration_tests.survey"}, "seed.qualtrics_integration_tests.distribution_contact": {"metadata": {"type": "table", "schema": "qualtrics_tests", "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": "INT64", "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": "INT64", "index": 13, "name": "survey_session_id", "comment": null}}, "stats": {"num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 1165, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 5, "include": true, "description": "Approximate count of rows in this table"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.qualtrics_integration_tests.distribution_contact"}, "seed.qualtrics_integration_tests.survey_embedded_data": {"metadata": {"type": "table", "schema": "qualtrics_tests", "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": "INT64", "index": 4, "name": "value", "comment": null}, "_fivetran_synced": {"type": "TIMESTAMP", "index": 5, "name": "_fivetran_synced", "comment": null}}, "stats": {"num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 225, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 5, "include": true, "description": "Approximate count of rows in this table"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.qualtrics_integration_tests.survey_embedded_data"}, "seed.qualtrics_integration_tests.question_option": {"metadata": {"type": "table", "schema": "qualtrics_tests", "name": "question_option", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"key": {"type": "INT64", "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": "INT64", "index": 6, "name": "recode_value", "comment": null}, "text": {"type": "STRING", "index": 7, "name": "text", "comment": null}}, "stats": {"num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 366, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 5, "include": true, "description": "Approximate count of rows in this table"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.qualtrics_integration_tests.question_option"}, "seed.qualtrics_integration_tests.directory_mailing_list": {"metadata": {"type": "table", "schema": "qualtrics_tests", "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": "STRING", "index": 5, "name": "creation_date", "comment": null}, "last_modified_date": {"type": "STRING", "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_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 747, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 5, "include": true, "description": "Approximate count of rows in this table"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.qualtrics_integration_tests.directory_mailing_list"}, "seed.qualtrics_integration_tests.question_response": {"metadata": {"type": "table", "schema": "qualtrics_tests", "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": "INT64", "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": "INT64", "index": 6, "name": "question_option_key", "comment": null}, "response_id": {"type": "STRING", "index": 7, "name": "response_id", "comment": null}, "sub_question_key": {"type": "INT64", "index": 8, "name": "sub_question_key", "comment": null}, "sub_question_text": {"type": "INT64", "index": 9, "name": "sub_question_text", "comment": null}, "value": {"type": "INT64", "index": 10, "name": "value", "comment": null}}, "stats": {"num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 383, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 5, "include": true, "description": "Approximate count of rows in this table"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.qualtrics_integration_tests.question_response"}, "seed.qualtrics_integration_tests.question": {"metadata": {"type": "table", "schema": "qualtrics_tests", "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": "INT64", "index": 17, "name": "validation_setting_force_response", "comment": null}, "validation_setting_force_response_type": {"type": "INT64", "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_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 677, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 5, "include": true, "description": "Approximate count of rows in this table"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.qualtrics_integration_tests.question"}, "seed.qualtrics_integration_tests.user": {"metadata": {"type": "table", "schema": "qualtrics_tests", "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": "INT64", "index": 4, "name": "account_creation_date", "comment": null}, "account_expiration_date": {"type": "INT64", "index": 5, "name": "account_expiration_date", "comment": null}, "account_status": {"type": "STRING", "index": 6, "name": "account_status", "comment": null}, "division_id": {"type": "INT64", "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": "INT64", "index": 10, "name": "language", "comment": null}, "last_login_date": {"type": "INT64", "index": 11, "name": "last_login_date", "comment": null}, "last_name": {"type": "STRING", "index": 12, "name": "last_name", "comment": null}, "organization_id": {"type": "INT64", "index": 13, "name": "organization_id", "comment": null}, "password_expiration_date": {"type": "INT64", "index": 14, "name": "password_expiration_date", "comment": null}, "password_last_changed_date": {"type": "INT64", "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": "INT64", "index": 19, "name": "time_zone", "comment": null}, "unsubscribed": {"type": "INT64", "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_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 219, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 2, "include": true, "description": "Approximate count of rows in this table"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.qualtrics_integration_tests.user"}}, "sources": {"source.qualtrics_source.qualtrics.core_mailing_list": {"metadata": {"type": "table", "schema": "qualtrics_tests", "name": "core_mailing_list", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"_fivetran_synced": {"type": "TIMESTAMP", "index": 1, "name": "_fivetran_synced", "comment": null}, "id": {"type": "STRING", "index": 2, "name": "id", "comment": null}, "library_id": {"type": "STRING", "index": 3, "name": "library_id", "comment": null}, "name": {"type": "STRING", "index": 4, "name": "name", "comment": null}, "category": {"type": "STRING", "index": 5, "name": "category", "comment": null}, "folder": {"type": "STRING", "index": 6, "name": "folder", "comment": null}, "_fivetran_deleted": {"type": "BOOL", "index": 7, "name": "_fivetran_deleted", "comment": null}}, "stats": {"num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 85, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 1, "include": true, "description": "Approximate count of rows in this table"}, "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.core_mailing_list"}, "source.qualtrics_source.qualtrics.distribution": {"metadata": {"type": "table", "schema": "qualtrics_tests", "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": "STRING", "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": "INT64", "index": 9, "name": "message_library_id", "comment": null}, "message_message_id": {"type": "INT64", "index": 10, "name": "message_message_id", "comment": null}, "message_message_text": {"type": "INT64", "index": 11, "name": "message_message_text", "comment": null}, "modified_date": {"type": "STRING", "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": "STRING", "index": 22, "name": "send_date", "comment": null}, "survey_link_expiration_date": {"type": "STRING", "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_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 1383, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 5, "include": true, "description": "Approximate count of rows in this table"}, "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.directory_contact": {"metadata": {"type": "table", "schema": "qualtrics_tests", "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": "INT64", "index": 9, "name": "embedded_data_last_active_time", "comment": null}, "embedded_data_last_response_date": {"type": "INT64", "index": 10, "name": "embedded_data_last_response_date", "comment": null}, "embedded_data_login_date": {"type": "INT64", "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": "STRING", "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": "INT64", "index": 18, "name": "write_blanks", "comment": null}}, "stats": {"num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 639, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 5, "include": true, "description": "Approximate count of rows in this table"}, "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.survey_response": {"metadata": {"type": "table", "schema": "qualtrics_tests", "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": "STRING", "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": "STRING", "index": 8, "name": "last_modified_date", "comment": null}, "location_latitude": {"type": "INT64", "index": 9, "name": "location_latitude", "comment": null}, "location_longitude": {"type": "INT64", "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_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 979, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 5, "include": true, "description": "Approximate count of rows in this table"}, "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.survey_version": {"metadata": {"type": "table", "schema": "qualtrics_tests", "name": "survey_version", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"id": {"type": "INT64", "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": "STRING", "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_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 570, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 5, "include": true, "description": "Approximate count of rows in this table"}, "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.sub_question": {"metadata": {"type": "table", "schema": "qualtrics_tests", "name": "sub_question", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"key": {"type": "INT64", "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": "INT64", "index": 6, "name": "choice_data_export_tag", "comment": null}, "text": {"type": "STRING", "index": 7, "name": "text", "comment": null}}, "stats": {"num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 246, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 5, "include": true, "description": "Approximate count of rows in this table"}, "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.directory": {"metadata": {"type": "table", "schema": "qualtrics_tests", "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_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 53, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 1, "include": true, "description": "Approximate count of rows in this table"}, "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.block_question": {"metadata": {"type": "table", "schema": "qualtrics_tests", "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_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 280, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 5, "include": true, "description": "Approximate count of rows in this table"}, "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"}, "source.qualtrics_source.qualtrics.core_contact": {"metadata": {"type": "table", "schema": "qualtrics_tests", "name": "core_contact", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"_fivetran_synced": {"type": "TIMESTAMP", "index": 1, "name": "_fivetran_synced", "comment": null}, "id": {"type": "STRING", "index": 2, "name": "id", "comment": null}, "mailing_list_id": {"type": "STRING", "index": 3, "name": "mailing_list_id", "comment": null}, "first_name": {"type": "STRING", "index": 4, "name": "first_name", "comment": null}, "last_name": {"type": "STRING", "index": 5, "name": "last_name", "comment": null}, "email": {"type": "STRING", "index": 6, "name": "email", "comment": null}, "external_data_reference": {"type": "STRING", "index": 7, "name": "external_data_reference", "comment": null}, "language": {"type": "STRING", "index": 8, "name": "language", "comment": null}, "unsubscribed": {"type": "BOOL", "index": 9, "name": "unsubscribed", "comment": null}, "_fivetran_deleted": {"type": "BOOL", "index": 10, "name": "_fivetran_deleted", "comment": null}}, "stats": {"num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 84, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 1, "include": true, "description": "Approximate count of rows in this table"}, "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.core_contact"}, "source.qualtrics_source.qualtrics.block": {"metadata": {"type": "table", "schema": "qualtrics_tests", "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": "INT64", "index": 5, "name": "block_locking", "comment": null}, "block_visibility": {"type": "INT64", "index": 6, "name": "block_visibility", "comment": null}, "description": {"type": "STRING", "index": 7, "name": "description", "comment": null}, "randomize_questions": {"type": "INT64", "index": 8, "name": "randomize_questions", "comment": null}, "type": {"type": "STRING", "index": 9, "name": "type", "comment": null}}, "stats": {"num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 354, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 5, "include": true, "description": "Approximate count of rows in this table"}, "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.contact_mailing_list_membership": {"metadata": {"type": "table", "schema": "qualtrics_tests", "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_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 615, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 5, "include": true, "description": "Approximate count of rows in this table"}, "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": {"metadata": {"type": "table", "schema": "qualtrics_tests", "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": "INT64", "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": "INT64", "index": 7, "name": "bundle_short_name", "comment": null}, "composition_type": {"type": "INT64", "index": 8, "name": "composition_type", "comment": null}, "creator_id": {"type": "STRING", "index": 9, "name": "creator_id", "comment": null}, "default_scoring_category": {"type": "INT64", "index": 10, "name": "default_scoring_category", "comment": null}, "division_id": {"type": "INT64", "index": 11, "name": "division_id", "comment": null}, "is_active": {"type": "INT64", "index": 12, "name": "is_active", "comment": null}, "last_accessed": {"type": "INT64", "index": 13, "name": "last_accessed", "comment": null}, "last_activated": {"type": "STRING", "index": 14, "name": "last_activated", "comment": null}, "last_modified": {"type": "STRING", "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": "INT64", "index": 17, "name": "option_anonymize_response", "comment": null}, "option_auto_confirm_start": {"type": "INT64", "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": "INT64", "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": "INT64", "index": 25, "name": "option_collect_geo_location", "comment": null}, "option_confirm_start": {"type": "INT64", "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": "INT64", "index": 28, "name": "option_email_thank_you", "comment": null}, "option_eosredirect_url": {"type": "INT64", "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": "INT64", "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": "INT64", "index": 37, "name": "option_partial_data_close_after", "comment": null}, "option_password_protection": {"type": "INT64", "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": "INT64", "index": 41, "name": "option_protect_selection_ids", "comment": null}, "option_recaptcha_v_3": {"type": "INT64", "index": 42, "name": "option_recaptcha_v_3", "comment": null}, "option_referer_check": {"type": "INT64", "index": 43, "name": "option_referer_check", "comment": null}, "option_referer_url": {"type": "INT64", "index": 44, "name": "option_referer_url", "comment": null}, "option_relevant_id": {"type": "INT64", "index": 45, "name": "option_relevant_id", "comment": null}, "option_relevant_idlockout_period": {"type": "INT64", "index": 46, "name": "option_relevant_idlockout_period", "comment": null}, "option_response_summary": {"type": "INT64", "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": "INT64", "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": "STRING", "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": "INT64", "index": 58, "name": "option_survey_meta_description", "comment": null}, "option_survey_name": {"type": "INT64", "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": "INT64", "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": "INT64", "index": 67, "name": "registry_sha", "comment": null}, "registry_version": {"type": "INT64", "index": 68, "name": "registry_version", "comment": null}, "schema_version": {"type": "INT64", "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": "INT64", "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_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 5503, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 5, "include": true, "description": "Approximate count of rows in this table"}, "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.distribution_contact": {"metadata": {"type": "table", "schema": "qualtrics_tests", "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": "INT64", "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": "INT64", "index": 13, "name": "survey_session_id", "comment": null}}, "stats": {"num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 1165, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 5, "include": true, "description": "Approximate count of rows in this table"}, "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_embedded_data": {"metadata": {"type": "table", "schema": "qualtrics_tests", "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": "INT64", "index": 4, "name": "value", "comment": null}, "_fivetran_synced": {"type": "TIMESTAMP", "index": 5, "name": "_fivetran_synced", "comment": null}}, "stats": {"num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 225, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 5, "include": true, "description": "Approximate count of rows in this table"}, "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.question_option": {"metadata": {"type": "table", "schema": "qualtrics_tests", "name": "question_option", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"key": {"type": "INT64", "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": "INT64", "index": 6, "name": "recode_value", "comment": null}, "text": {"type": "STRING", "index": 7, "name": "text", "comment": null}}, "stats": {"num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 366, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 5, "include": true, "description": "Approximate count of rows in this table"}, "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.directory_mailing_list": {"metadata": {"type": "table", "schema": "qualtrics_tests", "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": "STRING", "index": 5, "name": "creation_date", "comment": null}, "last_modified_date": {"type": "STRING", "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_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 747, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 5, "include": true, "description": "Approximate count of rows in this table"}, "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.question_response": {"metadata": {"type": "table", "schema": "qualtrics_tests", "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": "INT64", "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": "INT64", "index": 6, "name": "question_option_key", "comment": null}, "response_id": {"type": "STRING", "index": 7, "name": "response_id", "comment": null}, "sub_question_key": {"type": "INT64", "index": 8, "name": "sub_question_key", "comment": null}, "sub_question_text": {"type": "INT64", "index": 9, "name": "sub_question_text", "comment": null}, "value": {"type": "INT64", "index": 10, "name": "value", "comment": null}}, "stats": {"num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 383, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 5, "include": true, "description": "Approximate count of rows in this table"}, "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": {"metadata": {"type": "table", "schema": "qualtrics_tests", "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": "INT64", "index": 17, "name": "validation_setting_force_response", "comment": null}, "validation_setting_force_response_type": {"type": "INT64", "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_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 677, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 5, "include": true, "description": "Approximate count of rows in this table"}, "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.user": {"metadata": {"type": "table", "schema": "qualtrics_tests", "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": "INT64", "index": 4, "name": "account_creation_date", "comment": null}, "account_expiration_date": {"type": "INT64", "index": 5, "name": "account_expiration_date", "comment": null}, "account_status": {"type": "STRING", "index": 6, "name": "account_status", "comment": null}, "division_id": {"type": "INT64", "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": "INT64", "index": 10, "name": "language", "comment": null}, "last_login_date": {"type": "INT64", "index": 11, "name": "last_login_date", "comment": null}, "last_name": {"type": "STRING", "index": 12, "name": "last_name", "comment": null}, "organization_id": {"type": "INT64", "index": 13, "name": "organization_id", "comment": null}, "password_expiration_date": {"type": "INT64", "index": 14, "name": "password_expiration_date", "comment": null}, "password_last_changed_date": {"type": "INT64", "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": "INT64", "index": 19, "name": "time_zone", "comment": null}, "unsubscribed": {"type": "INT64", "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_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 219, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 2, "include": true, "description": "Approximate count of rows in this table"}, "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"}}, "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 @@
-