diff --git a/.buildkite/scripts/run_models.sh b/.buildkite/scripts/run_models.sh index e394504..55bf2a6 100644 --- a/.buildkite/scripts/run_models.sh +++ b/.buildkite/scripts/run_models.sh @@ -20,7 +20,7 @@ dbt seed --target "$db" --full-refresh dbt run --target "$db" --full-refresh dbt run --target "$db" dbt test --target "$db" -dbt run --vars '{zendesk__unstructured_enabled: true, using_schedules: false, using_domain_names: false, using_user_tags: false, using_ticket_form_history: false, using_organization_tags: false}' --target "$db" --full-refresh +dbt run --vars '{zendesk__unstructured_enabled: true, using_schedules: false, using_domain_names: false, using_user_tags: false, using_ticket_form_history: false, using_organization_tags: false, using_organizations: false, using}' --target "$db" --full-refresh dbt test --target "$db" dbt run --vars '{using_schedule_histories: true, using_holidays: false}' --target "$db" --full-refresh dbt test --target "$db" diff --git a/.quickstart/quickstart.yml b/.quickstart/quickstart.yml index 1260c60..abc8777 100644 --- a/.quickstart/quickstart.yml +++ b/.quickstart/quickstart.yml @@ -16,10 +16,15 @@ table_variables: - ticket_form_history using_organization_tags: - organization_tag + - organization using_schedule_histories: - audit_log using_holidays: - schedule_holiday + using_brands: + - brand + using_organizations: + - organization destination_configurations: databricks: diff --git a/CHANGELOG.md b/CHANGELOG.md index f46478f..efa191b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,24 @@ +# dbt_zendesk v0.19.2 +[PR #181](https://github.com/fivetran/dbt_zendesk/pull/181) includes the following updates: + +## New Features +- Introduced new config variables `using_brands` and `using_organizations` to allow customers to enable and disable `brand` and `organization` source data, resulting in potential downstream impacts: +- End models that could be impacted by these variables include: + - `zendesk__ticket_backlog`: `using_brands` and/or `using_organizations` can be set to `false` to disable `brand` and/or `organization` fields. + - `zendesk__ticket_enriched`: `using_organizations` can be set to `false` to remove `organization` fields from the final model. +- Intermediate models that could be impacted by these variables include: + - `int_zendesk__organization_aggregates`: `using_organizations` can be utilized to completely disable the model. + - `int_zendesk__ticket_aggregates`: `using_brands` can be set to `false` to remove `brand` fields from the final model. + - `int_zendesk__updater_information`: `using_organizations` can be set to `false` to remove `organization` fields from the final model. + +## Under the Hood +- Updated `table_variables` in the `quickstart.yml` with the new `brand` and `organization` tables. +- Updated our Buildkite model run script to ensure we test for when `using_brands` and `using_organizations` is set to either true or false. + +## Documentation Updates +- [Updated README](https://github.com/fivetran/dbt_zendesk?tab=readme-ov-file#step-4-enabledisable-models-for-non-existent-sources) with instructions on how to disable `brand` and `organization` sources. + + # dbt_zendesk v0.19.1 [PR #180](https://github.com/fivetran/dbt_zendesk/pull/180) includes the following update: diff --git a/README.md b/README.md index d935c3f..50e368a 100644 --- a/README.md +++ b/README.md @@ -138,7 +138,7 @@ vars: ### Step 4: Enable/Disable models for non-existent sources > _This step is optional if you are unioning multiple connectors together in the previous step. The `union_data` macro will create empty staging models for sources that are not found in any of your Zendesk schemas/databases. However, you can still leverage the below variables if you would like to avoid this behavior._ -This package takes into consideration that not every Zendesk Support account utilizes the `schedule`, `schedule_holiday`, `ticket_schedule`, `daylight_time`, `time_zone`, `audit_log`, `domain_name`, `user_tag`, `organization_tag`, or `ticket_form_history` features, and allows you to disable the corresponding functionality. By default, all variables' values are assumed to be `true`, except for `using_schedule_histories`. Add variables for only the tables you want to enable/disable: +This package takes into consideration that not every Zendesk Support account utilizes the `schedule`, `schedule_holiday`, `ticket_schedule`, `daylight_time`, `time_zone`, `audit_log`, `domain_name`, `user_tag`, `brand`,`organization`, `organization_tag`, or `ticket_form_history` features, and allows you to disable the corresponding functionality. By default, all variables' values are assumed to be `true`, except for `using_schedule_histories`. Add variables for only the tables you want to enable/disable: ```yml vars: using_schedule_histories: True #Enable if you are using audit_logs for schedule histories @@ -147,6 +147,8 @@ vars: using_domain_names: False #Disable if you are not using domain names using_user_tags: False #Disable if you are not using user tags using_ticket_form_history: False #Disable if you are not using ticket form history + using_brands: False #Disable if you are not using brands + using_organizations: False #Disable if you are not using organizations. Setting this to False will also disable organization tags. using_organization_tags: False #Disable if you are not using organization tags ``` diff --git a/dbt_project.yml b/dbt_project.yml index efe540e..c5097e8 100644 --- a/dbt_project.yml +++ b/dbt_project.yml @@ -1,5 +1,5 @@ name: 'zendesk' -version: '0.19.1' +version: '0.19.2' config-version: 2 require-dbt-version: [">=1.3.0", "<2.0.0"] diff --git a/docs/catalog.json b/docs/catalog.json index ef4715d..2f390e3 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.8.8", "generated_at": "2024-12-09T21:42:23.985816Z", "invocation_id": "eac2388d-e770-4a67-a0c6-4f5ad10b82ee", "env": {}}, "nodes": {"seed.zendesk_integration_tests.audit_log_data": {"metadata": {"type": "table", "schema": "zendesk_tests", "name": "audit_log_data", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"id": {"type": "INT64", "index": 1, "name": "id", "comment": null}, "_fivetran_synced": {"type": "TIMESTAMP", "index": 2, "name": "_fivetran_synced", "comment": null}, "action": {"type": "STRING", "index": 3, "name": "action", "comment": null}, "actor_id": {"type": "INT64", "index": 4, "name": "actor_id", "comment": null}, "change_description": {"type": "STRING", "index": 5, "name": "change_description", "comment": null}, "created_at": {"type": "STRING", "index": 6, "name": "created_at", "comment": null}, "source_id": {"type": "INT64", "index": 7, "name": "source_id", "comment": null}, "source_label": {"type": "STRING", "index": 8, "name": "source_label", "comment": null}, "source_type": {"type": "STRING", "index": 9, "name": "source_type", "comment": null}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 7, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 4472, "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.zendesk_integration_tests.audit_log_data"}, "seed.zendesk_integration_tests.brand_data": {"metadata": {"type": "table", "schema": "zendesk_tests", "name": "brand_data", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"id": {"type": "INT64", "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}, "active": {"type": "BOOL", "index": 4, "name": "active", "comment": null}, "brand_url": {"type": "STRING", "index": 5, "name": "brand_url", "comment": null}, "default": {"type": "BOOL", "index": 6, "name": "default", "comment": null}, "has_help_center": {"type": "BOOL", "index": 7, "name": "has_help_center", "comment": null}, "help_center_state": {"type": "STRING", "index": 8, "name": "help_center_state", "comment": null}, "logo_content_type": {"type": "STRING", "index": 9, "name": "logo_content_type", "comment": null}, "logo_content_url": {"type": "STRING", "index": 10, "name": "logo_content_url", "comment": null}, "logo_deleted": {"type": "BOOL", "index": 11, "name": "logo_deleted", "comment": null}, "logo_file_name": {"type": "STRING", "index": 12, "name": "logo_file_name", "comment": null}, "logo_height": {"type": "INT64", "index": 13, "name": "logo_height", "comment": null}, "logo_id": {"type": "INT64", "index": 14, "name": "logo_id", "comment": null}, "logo_inline": {"type": "BOOL", "index": 15, "name": "logo_inline", "comment": null}, "logo_mapped_content_url": {"type": "STRING", "index": 16, "name": "logo_mapped_content_url", "comment": null}, "logo_size": {"type": "INT64", "index": 17, "name": "logo_size", "comment": null}, "logo_url": {"type": "STRING", "index": 18, "name": "logo_url", "comment": null}, "logo_width": {"type": "INT64", "index": 19, "name": "logo_width", "comment": null}, "name": {"type": "STRING", "index": 20, "name": "name", "comment": null}, "subdomain": {"type": "STRING", "index": 21, "name": "subdomain", "comment": null}, "url": {"type": "STRING", "index": 22, "name": "url", "comment": null}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 1, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 346, "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.zendesk_integration_tests.brand_data"}, "seed.zendesk_integration_tests.daylight_time_data": {"metadata": {"type": "table", "schema": "zendesk_tests", "name": "daylight_time_data", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"time_zone": {"type": "STRING", "index": 1, "name": "time_zone", "comment": null}, "year": {"type": "INT64", "index": 2, "name": "year", "comment": null}, "_fivetran_synced": {"type": "TIMESTAMP", "index": 3, "name": "_fivetran_synced", "comment": null}, "daylight_end_utc": {"type": "DATETIME", "index": 4, "name": "daylight_end_utc", "comment": null}, "daylight_offset": {"type": "INT64", "index": 5, "name": "daylight_offset", "comment": null}, "daylight_start_utc": {"type": "DATETIME", "index": 6, "name": "daylight_start_utc", "comment": null}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 2, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 99, "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.zendesk_integration_tests.daylight_time_data"}, "seed.zendesk_integration_tests.domain_name_data": {"metadata": {"type": "table", "schema": "zendesk_tests", "name": "domain_name_data", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"index": {"type": "INT64", "index": 1, "name": "index", "comment": null}, "organization_id": {"type": "INT64", "index": 2, "name": "organization_id", "comment": null}, "_fivetran_synced": {"type": "TIMESTAMP", "index": 3, "name": "_fivetran_synced", "comment": null}, "domain_name": {"type": "STRING", "index": 4, "name": "domain_name", "comment": null}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 10, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 580, "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.zendesk_integration_tests.domain_name_data"}, "seed.zendesk_integration_tests.group_data": {"metadata": {"type": "table", "schema": "zendesk_tests", "name": "group_data", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"id": {"type": "INT64", "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_at": {"type": "TIMESTAMP", "index": 4, "name": "created_at", "comment": null}, "name": {"type": "STRING", "index": 5, "name": "name", "comment": null}, "updated_at": {"type": "TIMESTAMP", "index": 6, "name": "updated_at", "comment": null}, "url": {"type": "STRING", "index": 7, "name": "url", "comment": null}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 8, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 879, "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.zendesk_integration_tests.group_data"}, "seed.zendesk_integration_tests.organization_data": {"metadata": {"type": "table", "schema": "zendesk_tests", "name": "organization_data", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"id": {"type": "INT64", "index": 1, "name": "id", "comment": null}, "_fivetran_synced": {"type": "TIMESTAMP", "index": 2, "name": "_fivetran_synced", "comment": null}, "created_at": {"type": "TIMESTAMP", "index": 3, "name": "created_at", "comment": null}, "details": {"type": "INT64", "index": 4, "name": "details", "comment": null}, "external_id": {"type": "INT64", "index": 5, "name": "external_id", "comment": null}, "group_id": {"type": "INT64", "index": 6, "name": "group_id", "comment": null}, "name": {"type": "STRING", "index": 7, "name": "name", "comment": null}, "notes": {"type": "INT64", "index": 8, "name": "notes", "comment": null}, "shared_comments": {"type": "BOOL", "index": 9, "name": "shared_comments", "comment": null}, "shared_tickets": {"type": "BOOL", "index": 10, "name": "shared_tickets", "comment": null}, "updated_at": {"type": "TIMESTAMP", "index": 11, "name": "updated_at", "comment": null}, "url": {"type": "STRING", "index": 12, "name": "url", "comment": null}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 10, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 1011, "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.zendesk_integration_tests.organization_data"}, "seed.zendesk_integration_tests.organization_tag_data": {"metadata": {"type": "table", "schema": "zendesk_tests", "name": "organization_tag_data", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"organization_id": {"type": "INT64", "index": 1, "name": "organization_id", "comment": null}, "tag": {"type": "STRING", "index": 2, "name": "tag", "comment": null}, "_fivetran_synced": {"type": "TIMESTAMP", "index": 3, "name": "_fivetran_synced", "comment": null}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 12, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 600, "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.zendesk_integration_tests.organization_tag_data"}, "seed.zendesk_integration_tests.schedule_data": {"metadata": {"type": "table", "schema": "zendesk_tests", "name": "schedule_data", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"end_time": {"type": "INT64", "index": 1, "name": "end_time", "comment": null}, "id": {"type": "INT64", "index": 2, "name": "id", "comment": null}, "start_time": {"type": "INT64", "index": 3, "name": "start_time", "comment": null}, "_fivetran_deleted": {"type": "BOOL", "index": 4, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "TIMESTAMP", "index": 5, "name": "_fivetran_synced", "comment": null}, "end_time_utc": {"type": "INT64", "index": 6, "name": "end_time_utc", "comment": null}, "name": {"type": "STRING", "index": 7, "name": "name", "comment": null}, "start_time_utc": {"type": "INT64", "index": 8, "name": "start_time_utc", "comment": null}, "time_zone": {"type": "STRING", "index": 9, "name": "time_zone", "comment": null}, "created_at": {"type": "TIMESTAMP", "index": 10, "name": "created_at", "comment": null}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 5, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 480, "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.zendesk_integration_tests.schedule_data"}, "seed.zendesk_integration_tests.schedule_holiday_data": {"metadata": {"type": "table", "schema": "zendesk_tests", "name": "schedule_holiday_data", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"id": {"type": "INT64", "index": 1, "name": "id", "comment": null}, "schedule_id": {"type": "INT64", "index": 2, "name": "schedule_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}, "end_date": {"type": "DATE", "index": 5, "name": "end_date", "comment": null}, "name": {"type": "STRING", "index": 6, "name": "name", "comment": null}, "start_date": {"type": "DATE", "index": 7, "name": "start_date", "comment": null}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 2, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 112, "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.zendesk_integration_tests.schedule_holiday_data"}, "seed.zendesk_integration_tests.ticket_comment_data": {"metadata": {"type": "table", "schema": "zendesk_tests", "name": "ticket_comment_data", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"id": {"type": "INT64", "index": 1, "name": "id", "comment": null}, "_fivetran_synced": {"type": "TIMESTAMP", "index": 2, "name": "_fivetran_synced", "comment": null}, "body": {"type": "STRING", "index": 3, "name": "body", "comment": null}, "created": {"type": "TIMESTAMP", "index": 4, "name": "created", "comment": null}, "facebook_comment": {"type": "BOOL", "index": 5, "name": "facebook_comment", "comment": null}, "public": {"type": "BOOL", "index": 6, "name": "public", "comment": null}, "ticket_id": {"type": "INT64", "index": 7, "name": "ticket_id", "comment": null}, "tweet": {"type": "BOOL", "index": 8, "name": "tweet", "comment": null}, "user_id": {"type": "INT64", "index": 9, "name": "user_id", "comment": null}, "voice_comment": {"type": "BOOL", "index": 10, "name": "voice_comment", "comment": null}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 20, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 1031, "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.zendesk_integration_tests.ticket_comment_data"}, "seed.zendesk_integration_tests.ticket_data": {"metadata": {"type": "table", "schema": "zendesk_tests", "name": "ticket_data", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"id": {"type": "INT64", "index": 1, "name": "id", "comment": null}, "_fivetran_synced": {"type": "TIMESTAMP", "index": 2, "name": "_fivetran_synced", "comment": null}, "allow_channelback": {"type": "BOOL", "index": 3, "name": "allow_channelback", "comment": null}, "assignee_id": {"type": "INT64", "index": 4, "name": "assignee_id", "comment": null}, "brand_id": {"type": "INT64", "index": 5, "name": "brand_id", "comment": null}, "created_at": {"type": "TIMESTAMP", "index": 6, "name": "created_at", "comment": null}, "description": {"type": "STRING", "index": 7, "name": "description", "comment": null}, "due_at": {"type": "TIMESTAMP", "index": 8, "name": "due_at", "comment": null}, "external_id": {"type": "INT64", "index": 9, "name": "external_id", "comment": null}, "forum_topic_id": {"type": "INT64", "index": 10, "name": "forum_topic_id", "comment": null}, "group_id": {"type": "INT64", "index": 11, "name": "group_id", "comment": null}, "has_incidents": {"type": "BOOL", "index": 12, "name": "has_incidents", "comment": null}, "is_public": {"type": "BOOL", "index": 13, "name": "is_public", "comment": null}, "organization_id": {"type": "INT64", "index": 14, "name": "organization_id", "comment": null}, "priority": {"type": "STRING", "index": 15, "name": "priority", "comment": null}, "problem_id": {"type": "INT64", "index": 16, "name": "problem_id", "comment": null}, "recipient": {"type": "STRING", "index": 17, "name": "recipient", "comment": null}, "requester_id": {"type": "INT64", "index": 18, "name": "requester_id", "comment": null}, "status": {"type": "STRING", "index": 19, "name": "status", "comment": null}, "subject": {"type": "STRING", "index": 20, "name": "subject", "comment": null}, "submitter_id": {"type": "INT64", "index": 21, "name": "submitter_id", "comment": null}, "system_client": {"type": "INT64", "index": 22, "name": "system_client", "comment": null}, "ticket_form_id": {"type": "INT64", "index": 23, "name": "ticket_form_id", "comment": null}, "type": {"type": "STRING", "index": 24, "name": "type", "comment": null}, "updated_at": {"type": "TIMESTAMP", "index": 25, "name": "updated_at", "comment": null}, "url": {"type": "STRING", "index": 26, "name": "url", "comment": null}, "via_channel": {"type": "STRING", "index": 27, "name": "via_channel", "comment": null}, "via_source_from_id": {"type": "INT64", "index": 28, "name": "via_source_from_id", "comment": null}, "via_source_from_title": {"type": "INT64", "index": 29, "name": "via_source_from_title", "comment": null}, "via_source_rel": {"type": "INT64", "index": 30, "name": "via_source_rel", "comment": null}, "via_source_to_address": {"type": "STRING", "index": 31, "name": "via_source_to_address", "comment": null}, "via_source_to_name": {"type": "STRING", "index": 32, "name": "via_source_to_name", "comment": null}, "merged_ticket_ids": {"type": "STRING", "index": 33, "name": "merged_ticket_ids", "comment": null}, "via_source_from_address": {"type": "INT64", "index": 34, "name": "via_source_from_address", "comment": null}, "followup_ids": {"type": "STRING", "index": 35, "name": "followup_ids", "comment": null}, "via_followup_source_id": {"type": "INT64", "index": 36, "name": "via_followup_source_id", "comment": null}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 10, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 2243, "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.zendesk_integration_tests.ticket_data"}, "seed.zendesk_integration_tests.ticket_field_history_data": {"metadata": {"type": "table", "schema": "zendesk_tests", "name": "ticket_field_history_data", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"field_name": {"type": "STRING", "index": 1, "name": "field_name", "comment": null}, "ticket_id": {"type": "INT64", "index": 2, "name": "ticket_id", "comment": null}, "updated": {"type": "TIMESTAMP", "index": 3, "name": "updated", "comment": null}, "_fivetran_synced": {"type": "TIMESTAMP", "index": 4, "name": "_fivetran_synced", "comment": null}, "user_id": {"type": "INT64", "index": 5, "name": "user_id", "comment": null}, "value": {"type": "STRING", "index": 6, "name": "value", "comment": null}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 37, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 1493, "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.zendesk_integration_tests.ticket_field_history_data"}, "seed.zendesk_integration_tests.ticket_form_history_data": {"metadata": {"type": "table", "schema": "zendesk_tests", "name": "ticket_form_history_data", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"id": {"type": "INT64", "index": 1, "name": "id", "comment": null}, "updated_at": {"type": "DATETIME", "index": 2, "name": "updated_at", "comment": null}, "_fivetran_deleted": {"type": "BOOL", "index": 3, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "TIMESTAMP", "index": 4, "name": "_fivetran_synced", "comment": null}, "active": {"type": "BOOL", "index": 5, "name": "active", "comment": null}, "created_at": {"type": "DATETIME", "index": 6, "name": "created_at", "comment": null}, "display_name": {"type": "STRING", "index": 7, "name": "display_name", "comment": null}, "end_user_visible": {"type": "BOOL", "index": 8, "name": "end_user_visible", "comment": null}, "name": {"type": "STRING", "index": 9, "name": "name", "comment": null}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 15, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 1545, "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.zendesk_integration_tests.ticket_form_history_data"}, "seed.zendesk_integration_tests.ticket_schedule_data": {"metadata": {"type": "table", "schema": "zendesk_tests", "name": "ticket_schedule_data", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"created_at": {"type": "TIMESTAMP", "index": 1, "name": "created_at", "comment": null}, "ticket_id": {"type": "INT64", "index": 2, "name": "ticket_id", "comment": null}, "_fivetran_synced": {"type": "TIMESTAMP", "index": 3, "name": "_fivetran_synced", "comment": null}, "schedule_id": {"type": "INT64", "index": 4, "name": "schedule_id", "comment": null}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 10, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 320, "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.zendesk_integration_tests.ticket_schedule_data"}, "seed.zendesk_integration_tests.ticket_tag_data": {"metadata": {"type": "table", "schema": "zendesk_tests", "name": "ticket_tag_data", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"tag": {"type": "STRING", "index": 1, "name": "tag", "comment": null}, "ticket_id": {"type": "INT64", "index": 2, "name": "ticket_id", "comment": null}, "_fivetran_synced": {"type": "TIMESTAMP", "index": 3, "name": "_fivetran_synced", "comment": null}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 10, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 261, "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.zendesk_integration_tests.ticket_tag_data"}, "seed.zendesk_integration_tests.time_zone_data": {"metadata": {"type": "table", "schema": "zendesk_tests", "name": "time_zone_data", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"time_zone": {"type": "STRING", "index": 1, "name": "time_zone", "comment": null}, "_fivetran_synced": {"type": "TIMESTAMP", "index": 2, "name": "_fivetran_synced", "comment": null}, "standard_offset": {"type": "STRING", "index": 3, "name": "standard_offset", "comment": null}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 2, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 48, "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.zendesk_integration_tests.time_zone_data"}, "seed.zendesk_integration_tests.user_data": {"metadata": {"type": "table", "schema": "zendesk_tests", "name": "user_data", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"id": {"type": "INT64", "index": 1, "name": "id", "comment": null}, "_fivetran_synced": {"type": "TIMESTAMP", "index": 2, "name": "_fivetran_synced", "comment": null}, "active": {"type": "BOOL", "index": 3, "name": "active", "comment": null}, "alias": {"type": "INT64", "index": 4, "name": "alias", "comment": null}, "authenticity_token": {"type": "INT64", "index": 5, "name": "authenticity_token", "comment": null}, "chat_only": {"type": "BOOL", "index": 6, "name": "chat_only", "comment": null}, "created_at": {"type": "TIMESTAMP", "index": 7, "name": "created_at", "comment": null}, "details": {"type": "INT64", "index": 8, "name": "details", "comment": null}, "email": {"type": "STRING", "index": 9, "name": "email", "comment": null}, "external_id": {"type": "INT64", "index": 10, "name": "external_id", "comment": null}, "last_login_at": {"type": "TIMESTAMP", "index": 11, "name": "last_login_at", "comment": null}, "locale": {"type": "STRING", "index": 12, "name": "locale", "comment": null}, "locale_id": {"type": "INT64", "index": 13, "name": "locale_id", "comment": null}, "moderator": {"type": "BOOL", "index": 14, "name": "moderator", "comment": null}, "name": {"type": "STRING", "index": 15, "name": "name", "comment": null}, "notes": {"type": "INT64", "index": 16, "name": "notes", "comment": null}, "only_private_comments": {"type": "BOOL", "index": 17, "name": "only_private_comments", "comment": null}, "organization_id": {"type": "INT64", "index": 18, "name": "organization_id", "comment": null}, "phone": {"type": "INT64", "index": 19, "name": "phone", "comment": null}, "remote_photo_url": {"type": "INT64", "index": 20, "name": "remote_photo_url", "comment": null}, "restricted_agent": {"type": "BOOL", "index": 21, "name": "restricted_agent", "comment": null}, "role": {"type": "STRING", "index": 22, "name": "role", "comment": null}, "shared": {"type": "BOOL", "index": 23, "name": "shared", "comment": null}, "shared_agent": {"type": "BOOL", "index": 24, "name": "shared_agent", "comment": null}, "signature": {"type": "INT64", "index": 25, "name": "signature", "comment": null}, "suspended": {"type": "BOOL", "index": 26, "name": "suspended", "comment": null}, "ticket_restriction": {"type": "STRING", "index": 27, "name": "ticket_restriction", "comment": null}, "time_zone": {"type": "STRING", "index": 28, "name": "time_zone", "comment": null}, "two_factor_auth_enabled": {"type": "BOOL", "index": 29, "name": "two_factor_auth_enabled", "comment": null}, "updated_at": {"type": "TIMESTAMP", "index": 30, "name": "updated_at", "comment": null}, "url": {"type": "STRING", "index": 31, "name": "url", "comment": null}, "verified": {"type": "BOOL", "index": 32, "name": "verified", "comment": null}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 10, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 2169, "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.zendesk_integration_tests.user_data"}, "seed.zendesk_integration_tests.user_tag_data": {"metadata": {"type": "table", "schema": "zendesk_tests", "name": "user_tag_data", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"tag": {"type": "STRING", "index": 1, "name": "tag", "comment": null}, "user_id": {"type": "INT64", "index": 2, "name": "user_id", "comment": null}, "_fivetran_synced": {"type": "TIMESTAMP", "index": 3, "name": "_fivetran_synced", "comment": null}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 10, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 500, "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.zendesk_integration_tests.user_tag_data"}, "model.zendesk.int_zendesk__agent_work_time_business_hours": {"metadata": {"type": "table", "schema": "zendesk_tests_zendesk_dev", "name": "int_zendesk__agent_work_time_business_hours", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"source_relation": {"type": "STRING", "index": 1, "name": "source_relation", "comment": null}, "ticket_id": {"type": "INT64", "index": 2, "name": "ticket_id", "comment": null}, "sla_applied_at": {"type": "TIMESTAMP", "index": 3, "name": "sla_applied_at", "comment": null}, "target": {"type": "INT64", "index": 4, "name": "target", "comment": null}, "sla_policy_name": {"type": "STRING", "index": 5, "name": "sla_policy_name", "comment": null}, "valid_starting_at": {"type": "TIMESTAMP", "index": 6, "name": "valid_starting_at", "comment": null}, "valid_ending_at": {"type": "TIMESTAMP", "index": 7, "name": "valid_ending_at", "comment": null}, "week_number": {"type": "INT64", "index": 8, "name": "week_number", "comment": null}, "ticket_week_start_time_minute": {"type": "INT64", "index": 9, "name": "ticket_week_start_time_minute", "comment": null}, "ticket_week_end_time_minute": {"type": "INT64", "index": 10, "name": "ticket_week_end_time_minute", "comment": null}, "schedule_start_time": {"type": "INT64", "index": 11, "name": "schedule_start_time", "comment": null}, "schedule_end_time": {"type": "INT64", "index": 12, "name": "schedule_end_time", "comment": null}, "scheduled_minutes": {"type": "INT64", "index": 13, "name": "scheduled_minutes", "comment": null}, "running_total_scheduled_minutes": {"type": "INT64", "index": 14, "name": "running_total_scheduled_minutes", "comment": null}, "remaining_target_minutes": {"type": "INT64", "index": 15, "name": "remaining_target_minutes", "comment": null}, "lag_check": {"type": "INT64", "index": 16, "name": "lag_check", "comment": null}, "is_breached_during_schedule": {"type": "BOOL", "index": 17, "name": "is_breached_during_schedule", "comment": null}, "breach_minutes": {"type": "INT64", "index": 18, "name": "breach_minutes", "comment": null}, "breach_minutes_from_week": {"type": "INT64", "index": 19, "name": "breach_minutes_from_week", "comment": null}, "sla_breach_at": {"type": "TIMESTAMP", "index": 20, "name": "sla_breach_at", "comment": null}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 0, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 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.zendesk.int_zendesk__agent_work_time_business_hours"}, "model.zendesk.int_zendesk__agent_work_time_calendar_hours": {"metadata": {"type": "table", "schema": "zendesk_tests_zendesk_dev", "name": "int_zendesk__agent_work_time_calendar_hours", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"source_relation": {"type": "STRING", "index": 1, "name": "source_relation", "comment": null}, "ticket_id": {"type": "INT64", "index": 2, "name": "ticket_id", "comment": null}, "valid_starting_at": {"type": "TIMESTAMP", "index": 3, "name": "valid_starting_at", "comment": null}, "valid_ending_at": {"type": "TIMESTAMP", "index": 4, "name": "valid_ending_at", "comment": null}, "ticket_status": {"type": "STRING", "index": 5, "name": "ticket_status", "comment": null}, "sla_applied_at": {"type": "TIMESTAMP", "index": 6, "name": "sla_applied_at", "comment": null}, "target": {"type": "INT64", "index": 7, "name": "target", "comment": null}, "sla_policy_name": {"type": "STRING", "index": 8, "name": "sla_policy_name", "comment": null}, "ticket_created_at": {"type": "TIMESTAMP", "index": 9, "name": "ticket_created_at", "comment": null}, "in_business_hours": {"type": "BOOL", "index": 10, "name": "in_business_hours", "comment": null}, "calendar_minutes": {"type": "INT64", "index": 11, "name": "calendar_minutes", "comment": null}, "running_total_calendar_minutes": {"type": "INT64", "index": 12, "name": "running_total_calendar_minutes", "comment": null}, "remaining_target_minutes": {"type": "INT64", "index": 13, "name": "remaining_target_minutes", "comment": null}, "is_breached_during_schedule": {"type": "BOOL", "index": 14, "name": "is_breached_during_schedule", "comment": null}, "breach_minutes": {"type": "INT64", "index": 15, "name": "breach_minutes", "comment": null}, "sla_breach_at": {"type": "TIMESTAMP", "index": 16, "name": "sla_breach_at", "comment": null}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 0, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 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.zendesk.int_zendesk__agent_work_time_calendar_hours"}, "model.zendesk.int_zendesk__agent_work_time_filtered_statuses": {"metadata": {"type": "table", "schema": "zendesk_tests_zendesk_dev", "name": "int_zendesk__agent_work_time_filtered_statuses", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"source_relation": {"type": "STRING", "index": 1, "name": "source_relation", "comment": null}, "ticket_id": {"type": "INT64", "index": 2, "name": "ticket_id", "comment": null}, "valid_starting_at": {"type": "TIMESTAMP", "index": 3, "name": "valid_starting_at", "comment": null}, "valid_ending_at": {"type": "TIMESTAMP", "index": 4, "name": "valid_ending_at", "comment": null}, "ticket_status": {"type": "STRING", "index": 5, "name": "ticket_status", "comment": null}, "sla_applied_at": {"type": "TIMESTAMP", "index": 6, "name": "sla_applied_at", "comment": null}, "target": {"type": "INT64", "index": 7, "name": "target", "comment": null}, "sla_policy_name": {"type": "STRING", "index": 8, "name": "sla_policy_name", "comment": null}, "ticket_created_at": {"type": "TIMESTAMP", "index": 9, "name": "ticket_created_at", "comment": null}, "in_business_hours": {"type": "BOOL", "index": 10, "name": "in_business_hours", "comment": null}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 0, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 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.zendesk.int_zendesk__agent_work_time_filtered_statuses"}, "model.zendesk.int_zendesk__assignee_updates": {"metadata": {"type": "table", "schema": "zendesk_tests_zendesk_dev", "name": "int_zendesk__assignee_updates", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"source_relation": {"type": "STRING", "index": 1, "name": "source_relation", "comment": null}, "ticket_id": {"type": "INT64", "index": 2, "name": "ticket_id", "comment": null}, "assignee_id": {"type": "INT64", "index": 3, "name": "assignee_id", "comment": null}, "last_updated": {"type": "TIMESTAMP", "index": 4, "name": "last_updated", "comment": null}, "total_updates": {"type": "INT64", "index": 5, "name": "total_updates", "comment": null}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 10, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 582, "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.zendesk.int_zendesk__assignee_updates"}, "model.zendesk.int_zendesk__comment_metrics": {"metadata": {"type": "table", "schema": "zendesk_tests_zendesk_dev", "name": "int_zendesk__comment_metrics", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"source_relation": {"type": "STRING", "index": 1, "name": "source_relation", "comment": null}, "ticket_id": {"type": "INT64", "index": 2, "name": "ticket_id", "comment": null}, "last_comment_added_at": {"type": "TIMESTAMP", "index": 3, "name": "last_comment_added_at", "comment": null}, "count_public_agent_comments": {"type": "INT64", "index": 4, "name": "count_public_agent_comments", "comment": null}, "count_agent_comments": {"type": "INT64", "index": 5, "name": "count_agent_comments", "comment": null}, "count_end_user_comments": {"type": "INT64", "index": 6, "name": "count_end_user_comments", "comment": null}, "count_public_comments": {"type": "INT64", "index": 7, "name": "count_public_comments", "comment": null}, "count_internal_comments": {"type": "INT64", "index": 8, "name": "count_internal_comments", "comment": null}, "total_comments": {"type": "INT64", "index": 9, "name": "total_comments", "comment": null}, "count_ticket_handoffs": {"type": "INT64", "index": 10, "name": "count_ticket_handoffs", "comment": null}, "count_agent_replies": {"type": "INT64", "index": 11, "name": "count_agent_replies", "comment": null}, "is_one_touch_resolution": {"type": "BOOL", "index": 12, "name": "is_one_touch_resolution", "comment": null}, "is_two_touch_resolution": {"type": "BOOL", "index": 13, "name": "is_two_touch_resolution", "comment": null}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 0, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 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.zendesk.int_zendesk__comment_metrics"}, "model.zendesk.int_zendesk__field_calendar_spine": {"metadata": {"type": "table", "schema": "zendesk_tests_zendesk_dev", "name": "int_zendesk__field_calendar_spine", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"source_relation": {"type": "STRING", "index": 1, "name": "source_relation", "comment": null}, "date_day": {"type": "DATE", "index": 2, "name": "date_day", "comment": null}, "ticket_id": {"type": "INT64", "index": 3, "name": "ticket_id", "comment": null}, "ticket_day_id": {"type": "STRING", "index": 4, "name": "ticket_day_id", "comment": null}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 4965, "include": true, "description": "Approximate count of rows in this table"}, "partitioning_type": {"id": "partitioning_type", "label": "Partitioned By", "value": "date_day", "include": true, "description": "The partitioning column for this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 422025, "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.zendesk.int_zendesk__field_calendar_spine"}, "model.zendesk.int_zendesk__field_history_pivot": {"metadata": {"type": "table", "schema": "zendesk_tests_zendesk_dev", "name": "int_zendesk__field_history_pivot", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"source_relation": {"type": "STRING", "index": 1, "name": "source_relation", "comment": null}, "ticket_id": {"type": "INT64", "index": 2, "name": "ticket_id", "comment": null}, "date_day": {"type": "DATE", "index": 3, "name": "date_day", "comment": null}, "assignee_id": {"type": "STRING", "index": 4, "name": "assignee_id", "comment": null}, "priority": {"type": "STRING", "index": 5, "name": "priority", "comment": null}, "status": {"type": "STRING", "index": 6, "name": "status", "comment": null}, "ticket_day_id": {"type": "STRING", "index": 7, "name": "ticket_day_id", "comment": null}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 29, "include": true, "description": "Approximate count of rows in this table"}, "partitioning_type": {"id": "partitioning_type", "label": "Partitioned By", "value": "date_day", "include": true, "description": "The partitioning column for this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 2730, "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.zendesk.int_zendesk__field_history_pivot"}, "model.zendesk.int_zendesk__field_history_scd": {"metadata": {"type": "table", "schema": "zendesk_tests_zendesk_dev", "name": "int_zendesk__field_history_scd", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"source_relation": {"type": "STRING", "index": 1, "name": "source_relation", "comment": null}, "valid_from": {"type": "DATE", "index": 2, "name": "valid_from", "comment": null}, "ticket_id": {"type": "INT64", "index": 3, "name": "ticket_id", "comment": null}, "ticket_day_id": {"type": "STRING", "index": 4, "name": "ticket_day_id", "comment": null}, "assignee_id": {"type": "STRING", "index": 5, "name": "assignee_id", "comment": null}, "priority": {"type": "STRING", "index": 6, "name": "priority", "comment": null}, "status": {"type": "STRING", "index": 7, "name": "status", "comment": null}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 29, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 2870, "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.zendesk.int_zendesk__field_history_scd"}, "model.zendesk.int_zendesk__latest_ticket_form": {"metadata": {"type": "table", "schema": "zendesk_tests_zendesk_dev", "name": "int_zendesk__latest_ticket_form", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"source_relation": {"type": "STRING", "index": 1, "name": "source_relation", "comment": null}, "ticket_form_id": {"type": "INT64", "index": 2, "name": "ticket_form_id", "comment": null}, "created_at": {"type": "TIMESTAMP", "index": 3, "name": "created_at", "comment": null}, "updated_at": {"type": "TIMESTAMP", "index": 4, "name": "updated_at", "comment": null}, "display_name": {"type": "STRING", "index": 5, "name": "display_name", "comment": null}, "is_active": {"type": "BOOL", "index": 6, "name": "is_active", "comment": null}, "name": {"type": "STRING", "index": 7, "name": "name", "comment": null}, "latest_form_index": {"type": "INT64", "index": 8, "name": "latest_form_index", "comment": null}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 3, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 408, "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.zendesk.int_zendesk__latest_ticket_form"}, "model.zendesk.int_zendesk__organization_aggregates": {"metadata": {"type": "table", "schema": "zendesk_tests_zendesk_dev", "name": "int_zendesk__organization_aggregates", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"organization_id": {"type": "INT64", "index": 1, "name": "organization_id", "comment": null}, "created_at": {"type": "TIMESTAMP", "index": 2, "name": "created_at", "comment": null}, "updated_at": {"type": "TIMESTAMP", "index": 3, "name": "updated_at", "comment": null}, "details": {"type": "INT64", "index": 4, "name": "details", "comment": null}, "name": {"type": "STRING", "index": 5, "name": "name", "comment": null}, "external_id": {"type": "INT64", "index": 6, "name": "external_id", "comment": null}, "source_relation": {"type": "STRING", "index": 7, "name": "source_relation", "comment": null}, "organization_tags": {"type": "STRING", "index": 8, "name": "organization_tags", "comment": null}, "domain_names": {"type": "STRING", "index": 9, "name": "domain_names", "comment": null}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 10, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 661, "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.zendesk.int_zendesk__organization_aggregates"}, "model.zendesk.int_zendesk__reply_time_business_hours": {"metadata": {"type": "table", "schema": "zendesk_tests_zendesk_dev", "name": "int_zendesk__reply_time_business_hours", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"source_relation": {"type": "STRING", "index": 1, "name": "source_relation", "comment": null}, "ticket_id": {"type": "INT64", "index": 2, "name": "ticket_id", "comment": null}, "sla_policy_name": {"type": "STRING", "index": 3, "name": "sla_policy_name", "comment": null}, "metric": {"type": "STRING", "index": 4, "name": "metric", "comment": null}, "ticket_created_at": {"type": "TIMESTAMP", "index": 5, "name": "ticket_created_at", "comment": null}, "sla_applied_at": {"type": "TIMESTAMP", "index": 6, "name": "sla_applied_at", "comment": null}, "sla_schedule_start_at": {"type": "TIMESTAMP", "index": 7, "name": "sla_schedule_start_at", "comment": null}, "sla_schedule_end_at": {"type": "TIMESTAMP", "index": 8, "name": "sla_schedule_end_at", "comment": null}, "target": {"type": "INT64", "index": 9, "name": "target", "comment": null}, "sum_lapsed_business_minutes": {"type": "INT64", "index": 10, "name": "sum_lapsed_business_minutes", "comment": null}, "in_business_hours": {"type": "BOOL", "index": 11, "name": "in_business_hours", "comment": null}, "sla_breach_at": {"type": "TIMESTAMP", "index": 12, "name": "sla_breach_at", "comment": null}, "is_breached_during_schedule": {"type": "BOOL", "index": 13, "name": "is_breached_during_schedule", "comment": null}, "total_schedule_weekly_business_minutes": {"type": "INT64", "index": 14, "name": "total_schedule_weekly_business_minutes", "comment": null}, "sla_breach_exact_time": {"type": "TIMESTAMP", "index": 15, "name": "sla_breach_exact_time", "comment": null}, "week_number": {"type": "INT64", "index": 16, "name": "week_number", "comment": null}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 0, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 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.zendesk.int_zendesk__reply_time_business_hours"}, "model.zendesk.int_zendesk__reply_time_calendar_hours": {"metadata": {"type": "table", "schema": "zendesk_tests_zendesk_dev", "name": "int_zendesk__reply_time_calendar_hours", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"source_relation": {"type": "STRING", "index": 1, "name": "source_relation", "comment": null}, "ticket_id": {"type": "INT64", "index": 2, "name": "ticket_id", "comment": null}, "ticket_created_at": {"type": "TIMESTAMP", "index": 3, "name": "ticket_created_at", "comment": null}, "valid_starting_at": {"type": "TIMESTAMP", "index": 4, "name": "valid_starting_at", "comment": null}, "ticket_current_status": {"type": "STRING", "index": 5, "name": "ticket_current_status", "comment": null}, "metric": {"type": "STRING", "index": 6, "name": "metric", "comment": null}, "latest_sla": {"type": "INT64", "index": 7, "name": "latest_sla", "comment": null}, "sla_applied_at": {"type": "TIMESTAMP", "index": 8, "name": "sla_applied_at", "comment": null}, "target": {"type": "INT64", "index": 9, "name": "target", "comment": null}, "in_business_hours": {"type": "BOOL", "index": 10, "name": "in_business_hours", "comment": null}, "sla_policy_name": {"type": "STRING", "index": 11, "name": "sla_policy_name", "comment": null}, "sla_breach_at": {"type": "TIMESTAMP", "index": 12, "name": "sla_breach_at", "comment": null}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 0, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 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.zendesk.int_zendesk__reply_time_calendar_hours"}, "model.zendesk.int_zendesk__reply_time_combined": {"metadata": {"type": "table", "schema": "zendesk_tests_zendesk_dev", "name": "int_zendesk__reply_time_combined", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"source_relation": {"type": "STRING", "index": 1, "name": "source_relation", "comment": null}, "ticket_id": {"type": "INT64", "index": 2, "name": "ticket_id", "comment": null}, "sla_policy_name": {"type": "STRING", "index": 3, "name": "sla_policy_name", "comment": null}, "metric": {"type": "STRING", "index": 4, "name": "metric", "comment": null}, "ticket_created_at": {"type": "TIMESTAMP", "index": 5, "name": "ticket_created_at", "comment": null}, "sla_applied_at": {"type": "TIMESTAMP", "index": 6, "name": "sla_applied_at", "comment": null}, "sum_lapsed_business_minutes": {"type": "NUMERIC", "index": 7, "name": "sum_lapsed_business_minutes", "comment": null}, "target": {"type": "INT64", "index": 8, "name": "target", "comment": null}, "in_business_hours": {"type": "BOOL", "index": 9, "name": "in_business_hours", "comment": null}, "sla_breach_at": {"type": "TIMESTAMP", "index": 10, "name": "sla_breach_at", "comment": null}, "week_number": {"type": "NUMERIC", "index": 11, "name": "week_number", "comment": null}, "sla_schedule_start_at": {"type": "TIMESTAMP", "index": 12, "name": "sla_schedule_start_at", "comment": null}, "sla_schedule_end_at": {"type": "TIMESTAMP", "index": 13, "name": "sla_schedule_end_at", "comment": null}, "agent_reply_at": {"type": "TIMESTAMP", "index": 14, "name": "agent_reply_at", "comment": null}, "next_solved_at": {"type": "TIMESTAMP", "index": 15, "name": "next_solved_at", "comment": null}, "day_index": {"type": "INT64", "index": 16, "name": "day_index", "comment": null}, "next_schedule_start": {"type": "TIMESTAMP", "index": 17, "name": "next_schedule_start", "comment": null}, "first_sla_breach_at": {"type": "TIMESTAMP", "index": 18, "name": "first_sla_breach_at", "comment": null}, "sum_lapsed_business_minutes_new": {"type": "NUMERIC", "index": 19, "name": "sum_lapsed_business_minutes_new", "comment": null}, "total_runtime_minutes": {"type": "FLOAT64", "index": 20, "name": "total_runtime_minutes", "comment": null}, "current_time_check": {"type": "TIMESTAMP", "index": 21, "name": "current_time_check", "comment": null}, "updated_sla_policy_starts_at": {"type": "TIMESTAMP", "index": 22, "name": "updated_sla_policy_starts_at", "comment": null}, "is_stale_sla_policy": {"type": "BOOL", "index": 23, "name": "is_stale_sla_policy", "comment": null}, "is_sla_breached": {"type": "BOOL", "index": 24, "name": "is_sla_breached", "comment": null}, "total_new_minutes": {"type": "FLOAT64", "index": 25, "name": "total_new_minutes", "comment": null}, "sla_update_at": {"type": "TIMESTAMP", "index": 26, "name": "sla_update_at", "comment": null}, "sla_elapsed_time": {"type": "FLOAT64", "index": 27, "name": "sla_elapsed_time", "comment": null}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 0, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 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.zendesk.int_zendesk__reply_time_combined"}, "model.zendesk.int_zendesk__requester_updates": {"metadata": {"type": "table", "schema": "zendesk_tests_zendesk_dev", "name": "int_zendesk__requester_updates", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"source_relation": {"type": "STRING", "index": 1, "name": "source_relation", "comment": null}, "ticket_id": {"type": "INT64", "index": 2, "name": "ticket_id", "comment": null}, "requester_id": {"type": "INT64", "index": 3, "name": "requester_id", "comment": null}, "last_updated": {"type": "TIMESTAMP", "index": 4, "name": "last_updated", "comment": null}, "total_updates": {"type": "INT64", "index": 5, "name": "total_updates", "comment": null}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 10, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 590, "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.zendesk.int_zendesk__requester_updates"}, "model.zendesk.int_zendesk__requester_wait_time_business_hours": {"metadata": {"type": "table", "schema": "zendesk_tests_zendesk_dev", "name": "int_zendesk__requester_wait_time_business_hours", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"source_relation": {"type": "STRING", "index": 1, "name": "source_relation", "comment": null}, "ticket_id": {"type": "INT64", "index": 2, "name": "ticket_id", "comment": null}, "sla_applied_at": {"type": "TIMESTAMP", "index": 3, "name": "sla_applied_at", "comment": null}, "target": {"type": "INT64", "index": 4, "name": "target", "comment": null}, "sla_policy_name": {"type": "STRING", "index": 5, "name": "sla_policy_name", "comment": null}, "valid_starting_at": {"type": "TIMESTAMP", "index": 6, "name": "valid_starting_at", "comment": null}, "valid_ending_at": {"type": "TIMESTAMP", "index": 7, "name": "valid_ending_at", "comment": null}, "week_number": {"type": "INT64", "index": 8, "name": "week_number", "comment": null}, "ticket_week_start_time_minute": {"type": "INT64", "index": 9, "name": "ticket_week_start_time_minute", "comment": null}, "ticket_week_end_time_minute": {"type": "INT64", "index": 10, "name": "ticket_week_end_time_minute", "comment": null}, "schedule_start_time": {"type": "INT64", "index": 11, "name": "schedule_start_time", "comment": null}, "schedule_end_time": {"type": "INT64", "index": 12, "name": "schedule_end_time", "comment": null}, "scheduled_minutes": {"type": "INT64", "index": 13, "name": "scheduled_minutes", "comment": null}, "running_total_scheduled_minutes": {"type": "INT64", "index": 14, "name": "running_total_scheduled_minutes", "comment": null}, "remaining_target_minutes": {"type": "INT64", "index": 15, "name": "remaining_target_minutes", "comment": null}, "lag_check": {"type": "INT64", "index": 16, "name": "lag_check", "comment": null}, "is_breached_during_schedule": {"type": "BOOL", "index": 17, "name": "is_breached_during_schedule", "comment": null}, "breach_minutes": {"type": "INT64", "index": 18, "name": "breach_minutes", "comment": null}, "breach_minutes_from_week": {"type": "INT64", "index": 19, "name": "breach_minutes_from_week", "comment": null}, "sla_breach_at": {"type": "TIMESTAMP", "index": 20, "name": "sla_breach_at", "comment": null}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 0, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 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.zendesk.int_zendesk__requester_wait_time_business_hours"}, "model.zendesk.int_zendesk__requester_wait_time_calendar_hours": {"metadata": {"type": "table", "schema": "zendesk_tests_zendesk_dev", "name": "int_zendesk__requester_wait_time_calendar_hours", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"ticket_id": {"type": "INT64", "index": 1, "name": "ticket_id", "comment": null}, "source_relation": {"type": "STRING", "index": 2, "name": "source_relation", "comment": null}, "valid_starting_at": {"type": "TIMESTAMP", "index": 3, "name": "valid_starting_at", "comment": null}, "valid_ending_at": {"type": "TIMESTAMP", "index": 4, "name": "valid_ending_at", "comment": null}, "ticket_status": {"type": "STRING", "index": 5, "name": "ticket_status", "comment": null}, "sla_applied_at": {"type": "TIMESTAMP", "index": 6, "name": "sla_applied_at", "comment": null}, "target": {"type": "INT64", "index": 7, "name": "target", "comment": null}, "sla_policy_name": {"type": "STRING", "index": 8, "name": "sla_policy_name", "comment": null}, "ticket_created_at": {"type": "TIMESTAMP", "index": 9, "name": "ticket_created_at", "comment": null}, "in_business_hours": {"type": "BOOL", "index": 10, "name": "in_business_hours", "comment": null}, "calendar_minutes": {"type": "INT64", "index": 11, "name": "calendar_minutes", "comment": null}, "running_total_calendar_minutes": {"type": "INT64", "index": 12, "name": "running_total_calendar_minutes", "comment": null}, "remaining_target_minutes": {"type": "INT64", "index": 13, "name": "remaining_target_minutes", "comment": null}, "is_breached_during_schedule": {"type": "BOOL", "index": 14, "name": "is_breached_during_schedule", "comment": null}, "breach_minutes": {"type": "INT64", "index": 15, "name": "breach_minutes", "comment": null}, "sla_breach_at": {"type": "TIMESTAMP", "index": 16, "name": "sla_breach_at", "comment": null}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 0, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 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.zendesk.int_zendesk__requester_wait_time_calendar_hours"}, "model.zendesk.int_zendesk__requester_wait_time_filtered_statuses": {"metadata": {"type": "table", "schema": "zendesk_tests_zendesk_dev", "name": "int_zendesk__requester_wait_time_filtered_statuses", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"ticket_id": {"type": "INT64", "index": 1, "name": "ticket_id", "comment": null}, "source_relation": {"type": "STRING", "index": 2, "name": "source_relation", "comment": null}, "valid_starting_at": {"type": "TIMESTAMP", "index": 3, "name": "valid_starting_at", "comment": null}, "valid_ending_at": {"type": "TIMESTAMP", "index": 4, "name": "valid_ending_at", "comment": null}, "ticket_status": {"type": "STRING", "index": 5, "name": "ticket_status", "comment": null}, "sla_applied_at": {"type": "TIMESTAMP", "index": 6, "name": "sla_applied_at", "comment": null}, "target": {"type": "INT64", "index": 7, "name": "target", "comment": null}, "sla_policy_name": {"type": "STRING", "index": 8, "name": "sla_policy_name", "comment": null}, "ticket_created_at": {"type": "TIMESTAMP", "index": 9, "name": "ticket_created_at", "comment": null}, "in_business_hours": {"type": "BOOL", "index": 10, "name": "in_business_hours", "comment": null}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 0, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 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.zendesk.int_zendesk__requester_wait_time_filtered_statuses"}, "model.zendesk.int_zendesk__schedule_history": {"metadata": {"type": "table", "schema": "zendesk_tests_zendesk_dev", "name": "int_zendesk__schedule_history", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"source_relation": {"type": "STRING", "index": 1, "name": "source_relation", "comment": null}, "schedule_id": {"type": "STRING", "index": 2, "name": "schedule_id", "comment": null}, "schedule_id_index": {"type": "INT64", "index": 3, "name": "schedule_id_index", "comment": null}, "start_time": {"type": "INT64", "index": 4, "name": "start_time", "comment": null}, "end_time": {"type": "INT64", "index": 5, "name": "end_time", "comment": null}, "valid_from": {"type": "DATE", "index": 6, "name": "valid_from", "comment": null}, "valid_until": {"type": "DATE", "index": 7, "name": "valid_until", "comment": null}, "day_of_week": {"type": "STRING", "index": 8, "name": "day_of_week", "comment": null}, "day_of_week_number": {"type": "INT64", "index": 9, "name": "day_of_week_number", "comment": null}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 0, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 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.zendesk.int_zendesk__schedule_history"}, "model.zendesk.int_zendesk__schedule_spine": {"metadata": {"type": "table", "schema": "zendesk_tests_zendesk_dev", "name": "int_zendesk__schedule_spine", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"source_relation": {"type": "STRING", "index": 1, "name": "source_relation", "comment": null}, "schedule_id": {"type": "STRING", "index": 2, "name": "schedule_id", "comment": null}, "valid_from": {"type": "TIMESTAMP", "index": 3, "name": "valid_from", "comment": null}, "valid_until": {"type": "TIMESTAMP", "index": 4, "name": "valid_until", "comment": null}, "start_time_utc": {"type": "INT64", "index": 5, "name": "start_time_utc", "comment": null}, "end_time_utc": {"type": "INT64", "index": 6, "name": "end_time_utc", "comment": null}, "change_type": {"type": "STRING", "index": 7, "name": "change_type", "comment": null}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 0, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 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.zendesk.int_zendesk__schedule_spine"}, "model.zendesk.int_zendesk__sla_policy_applied": {"metadata": {"type": "table", "schema": "zendesk_tests_zendesk_dev", "name": "int_zendesk__sla_policy_applied", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"source_relation": {"type": "STRING", "index": 1, "name": "source_relation", "comment": null}, "ticket_id": {"type": "INT64", "index": 2, "name": "ticket_id", "comment": null}, "ticket_created_at": {"type": "TIMESTAMP", "index": 3, "name": "ticket_created_at", "comment": null}, "valid_starting_at": {"type": "TIMESTAMP", "index": 4, "name": "valid_starting_at", "comment": null}, "ticket_current_status": {"type": "STRING", "index": 5, "name": "ticket_current_status", "comment": null}, "metric": {"type": "STRING", "index": 6, "name": "metric", "comment": null}, "latest_sla": {"type": "INT64", "index": 7, "name": "latest_sla", "comment": null}, "sla_applied_at": {"type": "TIMESTAMP", "index": 8, "name": "sla_applied_at", "comment": null}, "target": {"type": "INT64", "index": 9, "name": "target", "comment": null}, "in_business_hours": {"type": "BOOL", "index": 10, "name": "in_business_hours", "comment": null}, "sla_policy_name": {"type": "STRING", "index": 11, "name": "sla_policy_name", "comment": null}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 0, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 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.zendesk.int_zendesk__sla_policy_applied"}, "model.zendesk.int_zendesk__ticket_aggregates": {"metadata": {"type": "table", "schema": "zendesk_tests_zendesk_dev", "name": "int_zendesk__ticket_aggregates", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"ticket_id": {"type": "INT64", "index": 1, "name": "ticket_id", "comment": null}, "_fivetran_synced": {"type": "TIMESTAMP", "index": 2, "name": "_fivetran_synced", "comment": null}, "_fivetran_deleted": {"type": "BOOL", "index": 3, "name": "_fivetran_deleted", "comment": null}, "assignee_id": {"type": "INT64", "index": 4, "name": "assignee_id", "comment": null}, "brand_id": {"type": "INT64", "index": 5, "name": "brand_id", "comment": null}, "created_at": {"type": "TIMESTAMP", "index": 6, "name": "created_at", "comment": null}, "updated_at": {"type": "TIMESTAMP", "index": 7, "name": "updated_at", "comment": null}, "description": {"type": "STRING", "index": 8, "name": "description", "comment": null}, "due_at": {"type": "TIMESTAMP", "index": 9, "name": "due_at", "comment": null}, "group_id": {"type": "INT64", "index": 10, "name": "group_id", "comment": null}, "external_id": {"type": "INT64", "index": 11, "name": "external_id", "comment": null}, "is_public": {"type": "BOOL", "index": 12, "name": "is_public", "comment": null}, "organization_id": {"type": "INT64", "index": 13, "name": "organization_id", "comment": null}, "priority": {"type": "STRING", "index": 14, "name": "priority", "comment": null}, "recipient": {"type": "STRING", "index": 15, "name": "recipient", "comment": null}, "requester_id": {"type": "INT64", "index": 16, "name": "requester_id", "comment": null}, "status": {"type": "STRING", "index": 17, "name": "status", "comment": null}, "subject": {"type": "STRING", "index": 18, "name": "subject", "comment": null}, "problem_id": {"type": "INT64", "index": 19, "name": "problem_id", "comment": null}, "submitter_id": {"type": "INT64", "index": 20, "name": "submitter_id", "comment": null}, "ticket_form_id": {"type": "INT64", "index": 21, "name": "ticket_form_id", "comment": null}, "type": {"type": "STRING", "index": 22, "name": "type", "comment": null}, "url": {"type": "STRING", "index": 23, "name": "url", "comment": null}, "created_channel": {"type": "STRING", "index": 24, "name": "created_channel", "comment": null}, "source_from_id": {"type": "INT64", "index": 25, "name": "source_from_id", "comment": null}, "source_from_title": {"type": "INT64", "index": 26, "name": "source_from_title", "comment": null}, "source_rel": {"type": "INT64", "index": 27, "name": "source_rel", "comment": null}, "source_to_address": {"type": "STRING", "index": 28, "name": "source_to_address", "comment": null}, "source_to_name": {"type": "STRING", "index": 29, "name": "source_to_name", "comment": null}, "source_relation": {"type": "STRING", "index": 30, "name": "source_relation", "comment": null}, "is_incident": {"type": "BOOL", "index": 31, "name": "is_incident", "comment": null}, "ticket_brand_name": {"type": "STRING", "index": 32, "name": "ticket_brand_name", "comment": null}, "ticket_tags": {"type": "STRING", "index": 33, "name": "ticket_tags", "comment": null}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 10, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 2539, "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.zendesk.int_zendesk__ticket_aggregates"}, "model.zendesk.int_zendesk__ticket_comment_document": {"metadata": {"type": "table", "schema": "zendesk_tests_zendesk_dev", "name": "int_zendesk__ticket_comment_document", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"source_relation": {"type": "STRING", "index": 1, "name": "source_relation", "comment": null}, "ticket_comment_id": {"type": "INT64", "index": 2, "name": "ticket_comment_id", "comment": null}, "ticket_id": {"type": "INT64", "index": 3, "name": "ticket_id", "comment": null}, "comment_time": {"type": "TIMESTAMP", "index": 4, "name": "comment_time", "comment": null}, "comment_markdown": {"type": "STRING", "index": 5, "name": "comment_markdown", "comment": null}, "comment_tokens": {"type": "FLOAT64", "index": 6, "name": "comment_tokens", "comment": null}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 20, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 2911, "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.zendesk.int_zendesk__ticket_comment_document"}, "model.zendesk.int_zendesk__ticket_comment_documents_grouped": {"metadata": {"type": "table", "schema": "zendesk_tests_zendesk_dev", "name": "int_zendesk__ticket_comment_documents_grouped", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"source_relation": {"type": "STRING", "index": 1, "name": "source_relation", "comment": null}, "ticket_id": {"type": "INT64", "index": 2, "name": "ticket_id", "comment": null}, "chunk_index": {"type": "INT64", "index": 3, "name": "chunk_index", "comment": null}, "comments_group_markdown": {"type": "STRING", "index": 4, "name": "comments_group_markdown", "comment": null}, "chunk_tokens": {"type": "FLOAT64", "index": 5, "name": "chunk_tokens", "comment": null}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 7, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 2049, "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.zendesk.int_zendesk__ticket_comment_documents_grouped"}, "model.zendesk.int_zendesk__ticket_document": {"metadata": {"type": "table", "schema": "zendesk_tests_zendesk_dev", "name": "int_zendesk__ticket_document", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"source_relation": {"type": "STRING", "index": 1, "name": "source_relation", "comment": null}, "ticket_id": {"type": "INT64", "index": 2, "name": "ticket_id", "comment": null}, "ticket_markdown": {"type": "STRING", "index": 3, "name": "ticket_markdown", "comment": null}, "ticket_tokens": {"type": "FLOAT64", "index": 4, "name": "ticket_tokens", "comment": null}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 10, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 1770, "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.zendesk.int_zendesk__ticket_document"}, "model.zendesk.int_zendesk__ticket_historical_assignee": {"metadata": {"type": "table", "schema": "zendesk_tests_zendesk_dev", "name": "int_zendesk__ticket_historical_assignee", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"source_relation": {"type": "STRING", "index": 1, "name": "source_relation", "comment": null}, "ticket_id": {"type": "INT64", "index": 2, "name": "ticket_id", "comment": null}, "first_agent_assignment_date": {"type": "TIMESTAMP", "index": 3, "name": "first_agent_assignment_date", "comment": null}, "first_assignee_id": {"type": "STRING", "index": 4, "name": "first_assignee_id", "comment": null}, "last_agent_assignment_date": {"type": "TIMESTAMP", "index": 5, "name": "last_agent_assignment_date", "comment": null}, "last_assignee_id": {"type": "STRING", "index": 6, "name": "last_assignee_id", "comment": null}, "assignee_stations_count": {"type": "INT64", "index": 7, "name": "assignee_stations_count", "comment": null}, "unique_assignee_count": {"type": "INT64", "index": 8, "name": "unique_assignee_count", "comment": null}, "ticket_unassigned_duration_calendar_minutes": {"type": "FLOAT64", "index": 9, "name": "ticket_unassigned_duration_calendar_minutes", "comment": null}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 2, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 182, "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.zendesk.int_zendesk__ticket_historical_assignee"}, "model.zendesk.int_zendesk__ticket_historical_group": {"metadata": {"type": "table", "schema": "zendesk_tests_zendesk_dev", "name": "int_zendesk__ticket_historical_group", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"source_relation": {"type": "STRING", "index": 1, "name": "source_relation", "comment": null}, "ticket_id": {"type": "INT64", "index": 2, "name": "ticket_id", "comment": null}, "group_stations_count": {"type": "INT64", "index": 3, "name": "group_stations_count", "comment": null}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 0, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 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.zendesk.int_zendesk__ticket_historical_group"}, "model.zendesk.int_zendesk__ticket_historical_satisfaction": {"metadata": {"type": "table", "schema": "zendesk_tests_zendesk_dev", "name": "int_zendesk__ticket_historical_satisfaction", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"source_relation": {"type": "STRING", "index": 1, "name": "source_relation", "comment": null}, "ticket_id": {"type": "INT64", "index": 2, "name": "ticket_id", "comment": null}, "latest_satisfaction_reason": {"type": "STRING", "index": 3, "name": "latest_satisfaction_reason", "comment": null}, "latest_satisfaction_comment": {"type": "STRING", "index": 4, "name": "latest_satisfaction_comment", "comment": null}, "first_satisfaction_score": {"type": "STRING", "index": 5, "name": "first_satisfaction_score", "comment": null}, "latest_satisfaction_score": {"type": "STRING", "index": 6, "name": "latest_satisfaction_score", "comment": null}, "count_satisfaction_scores": {"type": "INT64", "index": 7, "name": "count_satisfaction_scores", "comment": null}, "is_good_to_bad_satisfaction_score": {"type": "BOOL", "index": 8, "name": "is_good_to_bad_satisfaction_score", "comment": null}, "is_bad_to_good_satisfaction_score": {"type": "BOOL", "index": 9, "name": "is_bad_to_good_satisfaction_score", "comment": null}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 0, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 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.zendesk.int_zendesk__ticket_historical_satisfaction"}, "model.zendesk.int_zendesk__ticket_historical_status": {"metadata": {"type": "table", "schema": "zendesk_tests_zendesk_dev", "name": "int_zendesk__ticket_historical_status", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"source_relation": {"type": "STRING", "index": 1, "name": "source_relation", "comment": null}, "ticket_id": {"type": "INT64", "index": 2, "name": "ticket_id", "comment": null}, "valid_starting_at": {"type": "TIMESTAMP", "index": 3, "name": "valid_starting_at", "comment": null}, "valid_ending_at": {"type": "TIMESTAMP", "index": 4, "name": "valid_ending_at", "comment": null}, "status_duration_calendar_minutes": {"type": "INT64", "index": 5, "name": "status_duration_calendar_minutes", "comment": null}, "status": {"type": "STRING", "index": 6, "name": "status", "comment": null}, "ticket_status_counter": {"type": "INT64", "index": 7, "name": "ticket_status_counter", "comment": null}, "unique_status_counter": {"type": "INT64", "index": 8, "name": "unique_status_counter", "comment": null}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 30, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 2609, "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.zendesk.int_zendesk__ticket_historical_status"}, "model.zendesk.int_zendesk__ticket_schedules": {"metadata": {"type": "table", "schema": "zendesk_tests_zendesk_dev", "name": "int_zendesk__ticket_schedules", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"ticket_id": {"type": "INT64", "index": 1, "name": "ticket_id", "comment": null}, "source_relation": {"type": "STRING", "index": 2, "name": "source_relation", "comment": null}, "schedule_id": {"type": "STRING", "index": 3, "name": "schedule_id", "comment": null}, "schedule_created_at": {"type": "TIMESTAMP", "index": 4, "name": "schedule_created_at", "comment": null}, "schedule_invalidated_at": {"type": "TIMESTAMP", "index": 5, "name": "schedule_invalidated_at", "comment": null}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 20, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 1380, "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.zendesk.int_zendesk__ticket_schedules"}, "model.zendesk.int_zendesk__updates": {"metadata": {"type": "table", "schema": "zendesk_tests_zendesk_dev", "name": "int_zendesk__updates", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"source_relation": {"type": "STRING", "index": 1, "name": "source_relation", "comment": null}, "ticket_id": {"type": "INT64", "index": 2, "name": "ticket_id", "comment": null}, "field_name": {"type": "STRING", "index": 3, "name": "field_name", "comment": null}, "value": {"type": "STRING", "index": 4, "name": "value", "comment": null}, "is_public": {"type": "BOOL", "index": 5, "name": "is_public", "comment": null}, "user_id": {"type": "INT64", "index": 6, "name": "user_id", "comment": null}, "valid_starting_at": {"type": "TIMESTAMP", "index": 7, "name": "valid_starting_at", "comment": null}, "valid_ending_at": {"type": "TIMESTAMP", "index": 8, "name": "valid_ending_at", "comment": null}, "ticket_created_date": {"type": "TIMESTAMP", "index": 9, "name": "ticket_created_date", "comment": null}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 57, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 4415, "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.zendesk.int_zendesk__updates"}, "model.zendesk.int_zendesk__user_aggregates": {"metadata": {"type": "table", "schema": "zendesk_tests_zendesk_dev", "name": "int_zendesk__user_aggregates", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"user_id": {"type": "INT64", "index": 1, "name": "user_id", "comment": null}, "external_id": {"type": "INT64", "index": 2, "name": "external_id", "comment": null}, "_fivetran_synced": {"type": "TIMESTAMP", "index": 3, "name": "_fivetran_synced", "comment": null}, "_fivetran_deleted": {"type": "BOOL", "index": 4, "name": "_fivetran_deleted", "comment": null}, "last_login_at": {"type": "TIMESTAMP", "index": 5, "name": "last_login_at", "comment": null}, "created_at": {"type": "TIMESTAMP", "index": 6, "name": "created_at", "comment": null}, "updated_at": {"type": "TIMESTAMP", "index": 7, "name": "updated_at", "comment": null}, "email": {"type": "STRING", "index": 8, "name": "email", "comment": null}, "name": {"type": "STRING", "index": 9, "name": "name", "comment": null}, "organization_id": {"type": "INT64", "index": 10, "name": "organization_id", "comment": null}, "phone": {"type": "INT64", "index": 11, "name": "phone", "comment": null}, "role": {"type": "STRING", "index": 12, "name": "role", "comment": null}, "ticket_restriction": {"type": "STRING", "index": 13, "name": "ticket_restriction", "comment": null}, "time_zone": {"type": "STRING", "index": 14, "name": "time_zone", "comment": null}, "locale": {"type": "STRING", "index": 15, "name": "locale", "comment": null}, "is_active": {"type": "BOOL", "index": 16, "name": "is_active", "comment": null}, "is_suspended": {"type": "BOOL", "index": 17, "name": "is_suspended", "comment": null}, "source_relation": {"type": "STRING", "index": 18, "name": "source_relation", "comment": null}, "user_tags": {"type": "STRING", "index": 19, "name": "user_tags", "comment": null}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 10, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 1709, "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.zendesk.int_zendesk__user_aggregates"}, "model.zendesk_source.stg_zendesk__audit_log": {"metadata": {"type": "table", "schema": "zendesk_tests_zendesk_dev", "name": "stg_zendesk__audit_log", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"audit_log_id": {"type": "STRING", "index": 1, "name": "audit_log_id", "comment": null}, "action": {"type": "STRING", "index": 2, "name": "action", "comment": null}, "actor_id": {"type": "INT64", "index": 3, "name": "actor_id", "comment": null}, "change_description": {"type": "STRING", "index": 4, "name": "change_description", "comment": null}, "created_at": {"type": "TIMESTAMP", "index": 5, "name": "created_at", "comment": null}, "source_id": {"type": "INT64", "index": 6, "name": "source_id", "comment": null}, "source_label": {"type": "STRING", "index": 7, "name": "source_label", "comment": null}, "source_type": {"type": "STRING", "index": 8, "name": "source_type", "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": 7, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 4576, "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.zendesk_source.stg_zendesk__audit_log"}, "model.zendesk_source.stg_zendesk__audit_log_tmp": {"metadata": {"type": "view", "schema": "zendesk_tests_zendesk_dev", "name": "stg_zendesk__audit_log_tmp", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"id": {"type": "INT64", "index": 1, "name": "id", "comment": null}, "_fivetran_synced": {"type": "TIMESTAMP", "index": 2, "name": "_fivetran_synced", "comment": null}, "action": {"type": "STRING", "index": 3, "name": "action", "comment": null}, "actor_id": {"type": "INT64", "index": 4, "name": "actor_id", "comment": null}, "change_description": {"type": "STRING", "index": 5, "name": "change_description", "comment": null}, "created_at": {"type": "STRING", "index": 6, "name": "created_at", "comment": null}, "source_id": {"type": "INT64", "index": 7, "name": "source_id", "comment": null}, "source_label": {"type": "STRING", "index": 8, "name": "source_label", "comment": null}, "source_type": {"type": "STRING", "index": 9, "name": "source_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.zendesk_source.stg_zendesk__audit_log_tmp"}, "model.zendesk_source.stg_zendesk__brand": {"metadata": {"type": "table", "schema": "zendesk_tests_zendesk_dev", "name": "stg_zendesk__brand", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"brand_id": {"type": "INT64", "index": 1, "name": "brand_id", "comment": null}, "brand_url": {"type": "STRING", "index": 2, "name": "brand_url", "comment": null}, "name": {"type": "STRING", "index": 3, "name": "name", "comment": null}, "subdomain": {"type": "STRING", "index": 4, "name": "subdomain", "comment": null}, "is_active": {"type": "BOOL", "index": 5, "name": "is_active", "comment": null}, "source_relation": {"type": "STRING", "index": 6, "name": "source_relation", "comment": null}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 1, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 146, "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.zendesk_source.stg_zendesk__brand"}, "model.zendesk_source.stg_zendesk__brand_tmp": {"metadata": {"type": "view", "schema": "zendesk_tests_zendesk_dev", "name": "stg_zendesk__brand_tmp", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"id": {"type": "INT64", "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}, "active": {"type": "BOOL", "index": 4, "name": "active", "comment": null}, "brand_url": {"type": "STRING", "index": 5, "name": "brand_url", "comment": null}, "default": {"type": "BOOL", "index": 6, "name": "default", "comment": null}, "has_help_center": {"type": "BOOL", "index": 7, "name": "has_help_center", "comment": null}, "help_center_state": {"type": "STRING", "index": 8, "name": "help_center_state", "comment": null}, "logo_content_type": {"type": "STRING", "index": 9, "name": "logo_content_type", "comment": null}, "logo_content_url": {"type": "STRING", "index": 10, "name": "logo_content_url", "comment": null}, "logo_deleted": {"type": "BOOL", "index": 11, "name": "logo_deleted", "comment": null}, "logo_file_name": {"type": "STRING", "index": 12, "name": "logo_file_name", "comment": null}, "logo_height": {"type": "INT64", "index": 13, "name": "logo_height", "comment": null}, "logo_id": {"type": "INT64", "index": 14, "name": "logo_id", "comment": null}, "logo_inline": {"type": "BOOL", "index": 15, "name": "logo_inline", "comment": null}, "logo_mapped_content_url": {"type": "STRING", "index": 16, "name": "logo_mapped_content_url", "comment": null}, "logo_size": {"type": "INT64", "index": 17, "name": "logo_size", "comment": null}, "logo_url": {"type": "STRING", "index": 18, "name": "logo_url", "comment": null}, "logo_width": {"type": "INT64", "index": 19, "name": "logo_width", "comment": null}, "name": {"type": "STRING", "index": 20, "name": "name", "comment": null}, "subdomain": {"type": "STRING", "index": 21, "name": "subdomain", "comment": null}, "url": {"type": "STRING", "index": 22, "name": "url", "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.zendesk_source.stg_zendesk__brand_tmp"}, "model.zendesk_source.stg_zendesk__daylight_time": {"metadata": {"type": "table", "schema": "zendesk_tests_zendesk_dev", "name": "stg_zendesk__daylight_time", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"daylight_end_utc": {"type": "DATETIME", "index": 1, "name": "daylight_end_utc", "comment": null}, "daylight_offset": {"type": "INT64", "index": 2, "name": "daylight_offset", "comment": null}, "daylight_start_utc": {"type": "DATETIME", "index": 3, "name": "daylight_start_utc", "comment": null}, "time_zone": {"type": "STRING", "index": 4, "name": "time_zone", "comment": null}, "year": {"type": "INT64", "index": 5, "name": "year", "comment": null}, "daylight_offset_minutes": {"type": "INT64", "index": 6, "name": "daylight_offset_minutes", "comment": null}, "source_relation": {"type": "STRING", "index": 7, "name": "source_relation", "comment": null}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 2, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 169, "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.zendesk_source.stg_zendesk__daylight_time"}, "model.zendesk_source.stg_zendesk__daylight_time_tmp": {"metadata": {"type": "view", "schema": "zendesk_tests_zendesk_dev", "name": "stg_zendesk__daylight_time_tmp", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"time_zone": {"type": "STRING", "index": 1, "name": "time_zone", "comment": null}, "year": {"type": "INT64", "index": 2, "name": "year", "comment": null}, "_fivetran_synced": {"type": "TIMESTAMP", "index": 3, "name": "_fivetran_synced", "comment": null}, "daylight_end_utc": {"type": "DATETIME", "index": 4, "name": "daylight_end_utc", "comment": null}, "daylight_offset": {"type": "INT64", "index": 5, "name": "daylight_offset", "comment": null}, "daylight_start_utc": {"type": "DATETIME", "index": 6, "name": "daylight_start_utc", "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.zendesk_source.stg_zendesk__daylight_time_tmp"}, "model.zendesk_source.stg_zendesk__domain_name": {"metadata": {"type": "table", "schema": "zendesk_tests_zendesk_dev", "name": "stg_zendesk__domain_name", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"organization_id": {"type": "INT64", "index": 1, "name": "organization_id", "comment": null}, "domain_name": {"type": "STRING", "index": 2, "name": "domain_name", "comment": null}, "index": {"type": "INT64", "index": 3, "name": "index", "comment": null}, "source_relation": {"type": "STRING", "index": 4, "name": "source_relation", "comment": null}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 10, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 850, "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.zendesk_source.stg_zendesk__domain_name"}, "model.zendesk_source.stg_zendesk__domain_name_tmp": {"metadata": {"type": "view", "schema": "zendesk_tests_zendesk_dev", "name": "stg_zendesk__domain_name_tmp", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"index": {"type": "INT64", "index": 1, "name": "index", "comment": null}, "organization_id": {"type": "INT64", "index": 2, "name": "organization_id", "comment": null}, "_fivetran_synced": {"type": "TIMESTAMP", "index": 3, "name": "_fivetran_synced", "comment": null}, "domain_name": {"type": "STRING", "index": 4, "name": "domain_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.zendesk_source.stg_zendesk__domain_name_tmp"}, "model.zendesk_source.stg_zendesk__group": {"metadata": {"type": "table", "schema": "zendesk_tests_zendesk_dev", "name": "stg_zendesk__group", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"group_id": {"type": "INT64", "index": 1, "name": "group_id", "comment": null}, "name": {"type": "STRING", "index": 2, "name": "name", "comment": null}, "source_relation": {"type": "STRING", "index": 3, "name": "source_relation", "comment": null}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 8, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 535, "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.zendesk_source.stg_zendesk__group"}, "model.zendesk_source.stg_zendesk__group_tmp": {"metadata": {"type": "view", "schema": "zendesk_tests_zendesk_dev", "name": "stg_zendesk__group_tmp", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"id": {"type": "INT64", "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_at": {"type": "TIMESTAMP", "index": 4, "name": "created_at", "comment": null}, "name": {"type": "STRING", "index": 5, "name": "name", "comment": null}, "updated_at": {"type": "TIMESTAMP", "index": 6, "name": "updated_at", "comment": null}, "url": {"type": "STRING", "index": 7, "name": "url", "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.zendesk_source.stg_zendesk__group_tmp"}, "model.zendesk_source.stg_zendesk__organization": {"metadata": {"type": "table", "schema": "zendesk_tests_zendesk_dev", "name": "stg_zendesk__organization", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"organization_id": {"type": "INT64", "index": 1, "name": "organization_id", "comment": null}, "created_at": {"type": "TIMESTAMP", "index": 2, "name": "created_at", "comment": null}, "updated_at": {"type": "TIMESTAMP", "index": 3, "name": "updated_at", "comment": null}, "details": {"type": "INT64", "index": 4, "name": "details", "comment": null}, "name": {"type": "STRING", "index": 5, "name": "name", "comment": null}, "external_id": {"type": "INT64", "index": 6, "name": "external_id", "comment": null}, "source_relation": {"type": "STRING", "index": 7, "name": "source_relation", "comment": null}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 10, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 661, "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.zendesk_source.stg_zendesk__organization"}, "model.zendesk_source.stg_zendesk__organization_tag": {"metadata": {"type": "table", "schema": "zendesk_tests_zendesk_dev", "name": "stg_zendesk__organization_tag", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"organization_id": {"type": "INT64", "index": 1, "name": "organization_id", "comment": null}, "tags": {"type": "STRING", "index": 2, "name": "tags", "comment": null}, "source_relation": {"type": "STRING", "index": 3, "name": "source_relation", "comment": null}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 12, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 924, "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.zendesk_source.stg_zendesk__organization_tag"}, "model.zendesk_source.stg_zendesk__organization_tag_tmp": {"metadata": {"type": "view", "schema": "zendesk_tests_zendesk_dev", "name": "stg_zendesk__organization_tag_tmp", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"organization_id": {"type": "INT64", "index": 1, "name": "organization_id", "comment": null}, "tag": {"type": "STRING", "index": 2, "name": "tag", "comment": null}, "_fivetran_synced": {"type": "TIMESTAMP", "index": 3, "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.zendesk_source.stg_zendesk__organization_tag_tmp"}, "model.zendesk_source.stg_zendesk__organization_tmp": {"metadata": {"type": "view", "schema": "zendesk_tests_zendesk_dev", "name": "stg_zendesk__organization_tmp", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"id": {"type": "INT64", "index": 1, "name": "id", "comment": null}, "_fivetran_synced": {"type": "TIMESTAMP", "index": 2, "name": "_fivetran_synced", "comment": null}, "created_at": {"type": "TIMESTAMP", "index": 3, "name": "created_at", "comment": null}, "details": {"type": "INT64", "index": 4, "name": "details", "comment": null}, "external_id": {"type": "INT64", "index": 5, "name": "external_id", "comment": null}, "group_id": {"type": "INT64", "index": 6, "name": "group_id", "comment": null}, "name": {"type": "STRING", "index": 7, "name": "name", "comment": null}, "notes": {"type": "INT64", "index": 8, "name": "notes", "comment": null}, "shared_comments": {"type": "BOOL", "index": 9, "name": "shared_comments", "comment": null}, "shared_tickets": {"type": "BOOL", "index": 10, "name": "shared_tickets", "comment": null}, "updated_at": {"type": "TIMESTAMP", "index": 11, "name": "updated_at", "comment": null}, "url": {"type": "STRING", "index": 12, "name": "url", "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.zendesk_source.stg_zendesk__organization_tmp"}, "model.zendesk_source.stg_zendesk__schedule": {"metadata": {"type": "table", "schema": "zendesk_tests_zendesk_dev", "name": "stg_zendesk__schedule", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"schedule_id": {"type": "STRING", "index": 1, "name": "schedule_id", "comment": null}, "end_time": {"type": "INT64", "index": 2, "name": "end_time", "comment": null}, "start_time": {"type": "INT64", "index": 3, "name": "start_time", "comment": null}, "schedule_name": {"type": "STRING", "index": 4, "name": "schedule_name", "comment": null}, "created_at": {"type": "TIMESTAMP", "index": 5, "name": "created_at", "comment": null}, "time_zone": {"type": "STRING", "index": 6, "name": "time_zone", "comment": null}, "source_relation": {"type": "STRING", "index": 7, "name": "source_relation", "comment": null}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 5, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 560, "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.zendesk_source.stg_zendesk__schedule"}, "model.zendesk_source.stg_zendesk__schedule_holiday": {"metadata": {"type": "table", "schema": "zendesk_tests_zendesk_dev", "name": "stg_zendesk__schedule_holiday", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"_fivetran_deleted": {"type": "BOOL", "index": 1, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "TIMESTAMP", "index": 2, "name": "_fivetran_synced", "comment": null}, "holiday_end_date_at": {"type": "TIMESTAMP", "index": 3, "name": "holiday_end_date_at", "comment": null}, "holiday_id": {"type": "STRING", "index": 4, "name": "holiday_id", "comment": null}, "holiday_name": {"type": "STRING", "index": 5, "name": "holiday_name", "comment": null}, "schedule_id": {"type": "STRING", "index": 6, "name": "schedule_id", "comment": null}, "holiday_start_date_at": {"type": "TIMESTAMP", "index": 7, "name": "holiday_start_date_at", "comment": null}, "source_relation": {"type": "STRING", "index": 8, "name": "source_relation", "comment": null}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 2, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 184, "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.zendesk_source.stg_zendesk__schedule_holiday"}, "model.zendesk_source.stg_zendesk__schedule_holiday_tmp": {"metadata": {"type": "view", "schema": "zendesk_tests_zendesk_dev", "name": "stg_zendesk__schedule_holiday_tmp", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"id": {"type": "INT64", "index": 1, "name": "id", "comment": null}, "schedule_id": {"type": "INT64", "index": 2, "name": "schedule_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}, "end_date": {"type": "DATE", "index": 5, "name": "end_date", "comment": null}, "name": {"type": "STRING", "index": 6, "name": "name", "comment": null}, "start_date": {"type": "DATE", "index": 7, "name": "start_date", "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.zendesk_source.stg_zendesk__schedule_holiday_tmp"}, "model.zendesk_source.stg_zendesk__schedule_tmp": {"metadata": {"type": "view", "schema": "zendesk_tests_zendesk_dev", "name": "stg_zendesk__schedule_tmp", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"end_time": {"type": "INT64", "index": 1, "name": "end_time", "comment": null}, "id": {"type": "INT64", "index": 2, "name": "id", "comment": null}, "start_time": {"type": "INT64", "index": 3, "name": "start_time", "comment": null}, "_fivetran_deleted": {"type": "BOOL", "index": 4, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "TIMESTAMP", "index": 5, "name": "_fivetran_synced", "comment": null}, "end_time_utc": {"type": "INT64", "index": 6, "name": "end_time_utc", "comment": null}, "name": {"type": "STRING", "index": 7, "name": "name", "comment": null}, "start_time_utc": {"type": "INT64", "index": 8, "name": "start_time_utc", "comment": null}, "time_zone": {"type": "STRING", "index": 9, "name": "time_zone", "comment": null}, "created_at": {"type": "TIMESTAMP", "index": 10, "name": "created_at", "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.zendesk_source.stg_zendesk__schedule_tmp"}, "model.zendesk_source.stg_zendesk__ticket": {"metadata": {"type": "table", "schema": "zendesk_tests_zendesk_dev", "name": "stg_zendesk__ticket", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"ticket_id": {"type": "INT64", "index": 1, "name": "ticket_id", "comment": null}, "_fivetran_synced": {"type": "TIMESTAMP", "index": 2, "name": "_fivetran_synced", "comment": null}, "_fivetran_deleted": {"type": "BOOL", "index": 3, "name": "_fivetran_deleted", "comment": null}, "assignee_id": {"type": "INT64", "index": 4, "name": "assignee_id", "comment": null}, "brand_id": {"type": "INT64", "index": 5, "name": "brand_id", "comment": null}, "created_at": {"type": "TIMESTAMP", "index": 6, "name": "created_at", "comment": null}, "updated_at": {"type": "TIMESTAMP", "index": 7, "name": "updated_at", "comment": null}, "description": {"type": "STRING", "index": 8, "name": "description", "comment": null}, "due_at": {"type": "TIMESTAMP", "index": 9, "name": "due_at", "comment": null}, "group_id": {"type": "INT64", "index": 10, "name": "group_id", "comment": null}, "external_id": {"type": "INT64", "index": 11, "name": "external_id", "comment": null}, "is_public": {"type": "BOOL", "index": 12, "name": "is_public", "comment": null}, "organization_id": {"type": "INT64", "index": 13, "name": "organization_id", "comment": null}, "priority": {"type": "STRING", "index": 14, "name": "priority", "comment": null}, "recipient": {"type": "STRING", "index": 15, "name": "recipient", "comment": null}, "requester_id": {"type": "INT64", "index": 16, "name": "requester_id", "comment": null}, "status": {"type": "STRING", "index": 17, "name": "status", "comment": null}, "subject": {"type": "STRING", "index": 18, "name": "subject", "comment": null}, "problem_id": {"type": "INT64", "index": 19, "name": "problem_id", "comment": null}, "submitter_id": {"type": "INT64", "index": 20, "name": "submitter_id", "comment": null}, "ticket_form_id": {"type": "INT64", "index": 21, "name": "ticket_form_id", "comment": null}, "type": {"type": "STRING", "index": 22, "name": "type", "comment": null}, "url": {"type": "STRING", "index": 23, "name": "url", "comment": null}, "created_channel": {"type": "STRING", "index": 24, "name": "created_channel", "comment": null}, "source_from_id": {"type": "INT64", "index": 25, "name": "source_from_id", "comment": null}, "source_from_title": {"type": "INT64", "index": 26, "name": "source_from_title", "comment": null}, "source_rel": {"type": "INT64", "index": 27, "name": "source_rel", "comment": null}, "source_to_address": {"type": "STRING", "index": 28, "name": "source_to_address", "comment": null}, "source_to_name": {"type": "STRING", "index": 29, "name": "source_to_name", "comment": null}, "source_relation": {"type": "STRING", "index": 30, "name": "source_relation", "comment": null}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 10, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 2529, "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.zendesk_source.stg_zendesk__ticket"}, "model.zendesk_source.stg_zendesk__ticket_comment": {"metadata": {"type": "table", "schema": "zendesk_tests_zendesk_dev", "name": "stg_zendesk__ticket_comment", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"ticket_comment_id": {"type": "INT64", "index": 1, "name": "ticket_comment_id", "comment": null}, "_fivetran_synced": {"type": "TIMESTAMP", "index": 2, "name": "_fivetran_synced", "comment": null}, "_fivetran_deleted": {"type": "BOOL", "index": 3, "name": "_fivetran_deleted", "comment": null}, "body": {"type": "STRING", "index": 4, "name": "body", "comment": null}, "created_at": {"type": "TIMESTAMP", "index": 5, "name": "created_at", "comment": null}, "is_public": {"type": "BOOL", "index": 6, "name": "is_public", "comment": null}, "ticket_id": {"type": "INT64", "index": 7, "name": "ticket_id", "comment": null}, "user_id": {"type": "INT64", "index": 8, "name": "user_id", "comment": null}, "is_facebook_comment": {"type": "BOOL", "index": 9, "name": "is_facebook_comment", "comment": null}, "is_tweet": {"type": "BOOL", "index": 10, "name": "is_tweet", "comment": null}, "is_voice_comment": {"type": "BOOL", "index": 11, "name": "is_voice_comment", "comment": null}, "source_relation": {"type": "STRING", "index": 12, "name": "source_relation", "comment": null}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 20, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 1731, "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.zendesk_source.stg_zendesk__ticket_comment"}, "model.zendesk_source.stg_zendesk__ticket_comment_tmp": {"metadata": {"type": "view", "schema": "zendesk_tests_zendesk_dev", "name": "stg_zendesk__ticket_comment_tmp", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"id": {"type": "INT64", "index": 1, "name": "id", "comment": null}, "_fivetran_synced": {"type": "TIMESTAMP", "index": 2, "name": "_fivetran_synced", "comment": null}, "body": {"type": "STRING", "index": 3, "name": "body", "comment": null}, "created": {"type": "TIMESTAMP", "index": 4, "name": "created", "comment": null}, "facebook_comment": {"type": "BOOL", "index": 5, "name": "facebook_comment", "comment": null}, "public": {"type": "BOOL", "index": 6, "name": "public", "comment": null}, "ticket_id": {"type": "INT64", "index": 7, "name": "ticket_id", "comment": null}, "tweet": {"type": "BOOL", "index": 8, "name": "tweet", "comment": null}, "user_id": {"type": "INT64", "index": 9, "name": "user_id", "comment": null}, "voice_comment": {"type": "BOOL", "index": 10, "name": "voice_comment", "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.zendesk_source.stg_zendesk__ticket_comment_tmp"}, "model.zendesk_source.stg_zendesk__ticket_field_history": {"metadata": {"type": "table", "schema": "zendesk_tests_zendesk_dev", "name": "stg_zendesk__ticket_field_history", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"ticket_id": {"type": "INT64", "index": 1, "name": "ticket_id", "comment": null}, "field_name": {"type": "STRING", "index": 2, "name": "field_name", "comment": null}, "valid_starting_at": {"type": "TIMESTAMP", "index": 3, "name": "valid_starting_at", "comment": null}, "valid_ending_at": {"type": "TIMESTAMP", "index": 4, "name": "valid_ending_at", "comment": null}, "value": {"type": "STRING", "index": 5, "name": "value", "comment": null}, "user_id": {"type": "INT64", "index": 6, "name": "user_id", "comment": null}, "source_relation": {"type": "STRING", "index": 7, "name": "source_relation", "comment": null}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 37, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 2636, "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.zendesk_source.stg_zendesk__ticket_field_history"}, "model.zendesk_source.stg_zendesk__ticket_field_history_tmp": {"metadata": {"type": "view", "schema": "zendesk_tests_zendesk_dev", "name": "stg_zendesk__ticket_field_history_tmp", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"field_name": {"type": "STRING", "index": 1, "name": "field_name", "comment": null}, "ticket_id": {"type": "INT64", "index": 2, "name": "ticket_id", "comment": null}, "updated": {"type": "TIMESTAMP", "index": 3, "name": "updated", "comment": null}, "_fivetran_synced": {"type": "TIMESTAMP", "index": 4, "name": "_fivetran_synced", "comment": null}, "user_id": {"type": "INT64", "index": 5, "name": "user_id", "comment": null}, "value": {"type": "STRING", "index": 6, "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.zendesk_source.stg_zendesk__ticket_field_history_tmp"}, "model.zendesk_source.stg_zendesk__ticket_form_history": {"metadata": {"type": "table", "schema": "zendesk_tests_zendesk_dev", "name": "stg_zendesk__ticket_form_history", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"ticket_form_id": {"type": "INT64", "index": 1, "name": "ticket_form_id", "comment": null}, "created_at": {"type": "TIMESTAMP", "index": 2, "name": "created_at", "comment": null}, "updated_at": {"type": "TIMESTAMP", "index": 3, "name": "updated_at", "comment": null}, "display_name": {"type": "STRING", "index": 4, "name": "display_name", "comment": null}, "is_active": {"type": "BOOL", "index": 5, "name": "is_active", "comment": null}, "name": {"type": "STRING", "index": 6, "name": "name", "comment": null}, "source_relation": {"type": "STRING", "index": 7, "name": "source_relation", "comment": null}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 15, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 1920, "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.zendesk_source.stg_zendesk__ticket_form_history"}, "model.zendesk_source.stg_zendesk__ticket_form_history_tmp": {"metadata": {"type": "view", "schema": "zendesk_tests_zendesk_dev", "name": "stg_zendesk__ticket_form_history_tmp", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"id": {"type": "INT64", "index": 1, "name": "id", "comment": null}, "updated_at": {"type": "DATETIME", "index": 2, "name": "updated_at", "comment": null}, "_fivetran_deleted": {"type": "BOOL", "index": 3, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "TIMESTAMP", "index": 4, "name": "_fivetran_synced", "comment": null}, "active": {"type": "BOOL", "index": 5, "name": "active", "comment": null}, "created_at": {"type": "DATETIME", "index": 6, "name": "created_at", "comment": null}, "display_name": {"type": "STRING", "index": 7, "name": "display_name", "comment": null}, "end_user_visible": {"type": "BOOL", "index": 8, "name": "end_user_visible", "comment": null}, "name": {"type": "STRING", "index": 9, "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.zendesk_source.stg_zendesk__ticket_form_history_tmp"}, "model.zendesk_source.stg_zendesk__ticket_schedule": {"metadata": {"type": "table", "schema": "zendesk_tests_zendesk_dev", "name": "stg_zendesk__ticket_schedule", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"ticket_id": {"type": "INT64", "index": 1, "name": "ticket_id", "comment": null}, "created_at": {"type": "TIMESTAMP", "index": 2, "name": "created_at", "comment": null}, "schedule_id": {"type": "STRING", "index": 3, "name": "schedule_id", "comment": null}, "source_relation": {"type": "STRING", "index": 4, "name": "source_relation", "comment": null}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 10, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 570, "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.zendesk_source.stg_zendesk__ticket_schedule"}, "model.zendesk_source.stg_zendesk__ticket_schedule_tmp": {"metadata": {"type": "view", "schema": "zendesk_tests_zendesk_dev", "name": "stg_zendesk__ticket_schedule_tmp", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"created_at": {"type": "TIMESTAMP", "index": 1, "name": "created_at", "comment": null}, "ticket_id": {"type": "INT64", "index": 2, "name": "ticket_id", "comment": null}, "_fivetran_synced": {"type": "TIMESTAMP", "index": 3, "name": "_fivetran_synced", "comment": null}, "schedule_id": {"type": "INT64", "index": 4, "name": "schedule_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.zendesk_source.stg_zendesk__ticket_schedule_tmp"}, "model.zendesk_source.stg_zendesk__ticket_tag": {"metadata": {"type": "table", "schema": "zendesk_tests_zendesk_dev", "name": "stg_zendesk__ticket_tag", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"ticket_id": {"type": "INT64", "index": 1, "name": "ticket_id", "comment": null}, "tags": {"type": "STRING", "index": 2, "name": "tags", "comment": null}, "source_relation": {"type": "STRING", "index": 3, "name": "source_relation", "comment": null}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 10, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 531, "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.zendesk_source.stg_zendesk__ticket_tag"}, "model.zendesk_source.stg_zendesk__ticket_tag_tmp": {"metadata": {"type": "view", "schema": "zendesk_tests_zendesk_dev", "name": "stg_zendesk__ticket_tag_tmp", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"tag": {"type": "STRING", "index": 1, "name": "tag", "comment": null}, "ticket_id": {"type": "INT64", "index": 2, "name": "ticket_id", "comment": null}, "_fivetran_synced": {"type": "TIMESTAMP", "index": 3, "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.zendesk_source.stg_zendesk__ticket_tag_tmp"}, "model.zendesk_source.stg_zendesk__ticket_tmp": {"metadata": {"type": "view", "schema": "zendesk_tests_zendesk_dev", "name": "stg_zendesk__ticket_tmp", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"id": {"type": "INT64", "index": 1, "name": "id", "comment": null}, "_fivetran_synced": {"type": "TIMESTAMP", "index": 2, "name": "_fivetran_synced", "comment": null}, "allow_channelback": {"type": "BOOL", "index": 3, "name": "allow_channelback", "comment": null}, "assignee_id": {"type": "INT64", "index": 4, "name": "assignee_id", "comment": null}, "brand_id": {"type": "INT64", "index": 5, "name": "brand_id", "comment": null}, "created_at": {"type": "TIMESTAMP", "index": 6, "name": "created_at", "comment": null}, "description": {"type": "STRING", "index": 7, "name": "description", "comment": null}, "due_at": {"type": "TIMESTAMP", "index": 8, "name": "due_at", "comment": null}, "external_id": {"type": "INT64", "index": 9, "name": "external_id", "comment": null}, "forum_topic_id": {"type": "INT64", "index": 10, "name": "forum_topic_id", "comment": null}, "group_id": {"type": "INT64", "index": 11, "name": "group_id", "comment": null}, "has_incidents": {"type": "BOOL", "index": 12, "name": "has_incidents", "comment": null}, "is_public": {"type": "BOOL", "index": 13, "name": "is_public", "comment": null}, "organization_id": {"type": "INT64", "index": 14, "name": "organization_id", "comment": null}, "priority": {"type": "STRING", "index": 15, "name": "priority", "comment": null}, "problem_id": {"type": "INT64", "index": 16, "name": "problem_id", "comment": null}, "recipient": {"type": "STRING", "index": 17, "name": "recipient", "comment": null}, "requester_id": {"type": "INT64", "index": 18, "name": "requester_id", "comment": null}, "status": {"type": "STRING", "index": 19, "name": "status", "comment": null}, "subject": {"type": "STRING", "index": 20, "name": "subject", "comment": null}, "submitter_id": {"type": "INT64", "index": 21, "name": "submitter_id", "comment": null}, "system_client": {"type": "INT64", "index": 22, "name": "system_client", "comment": null}, "ticket_form_id": {"type": "INT64", "index": 23, "name": "ticket_form_id", "comment": null}, "type": {"type": "STRING", "index": 24, "name": "type", "comment": null}, "updated_at": {"type": "TIMESTAMP", "index": 25, "name": "updated_at", "comment": null}, "url": {"type": "STRING", "index": 26, "name": "url", "comment": null}, "via_channel": {"type": "STRING", "index": 27, "name": "via_channel", "comment": null}, "via_source_from_id": {"type": "INT64", "index": 28, "name": "via_source_from_id", "comment": null}, "via_source_from_title": {"type": "INT64", "index": 29, "name": "via_source_from_title", "comment": null}, "via_source_rel": {"type": "INT64", "index": 30, "name": "via_source_rel", "comment": null}, "via_source_to_address": {"type": "STRING", "index": 31, "name": "via_source_to_address", "comment": null}, "via_source_to_name": {"type": "STRING", "index": 32, "name": "via_source_to_name", "comment": null}, "merged_ticket_ids": {"type": "STRING", "index": 33, "name": "merged_ticket_ids", "comment": null}, "via_source_from_address": {"type": "INT64", "index": 34, "name": "via_source_from_address", "comment": null}, "followup_ids": {"type": "STRING", "index": 35, "name": "followup_ids", "comment": null}, "via_followup_source_id": {"type": "INT64", "index": 36, "name": "via_followup_source_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.zendesk_source.stg_zendesk__ticket_tmp"}, "model.zendesk_source.stg_zendesk__time_zone": {"metadata": {"type": "table", "schema": "zendesk_tests_zendesk_dev", "name": "stg_zendesk__time_zone", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"standard_offset": {"type": "STRING", "index": 1, "name": "standard_offset", "comment": null}, "time_zone": {"type": "STRING", "index": 2, "name": "time_zone", "comment": null}, "standard_offset_minutes": {"type": "INT64", "index": 3, "name": "standard_offset_minutes", "comment": null}, "source_relation": {"type": "STRING", "index": 4, "name": "source_relation", "comment": null}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 2, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 118, "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.zendesk_source.stg_zendesk__time_zone"}, "model.zendesk_source.stg_zendesk__time_zone_tmp": {"metadata": {"type": "view", "schema": "zendesk_tests_zendesk_dev", "name": "stg_zendesk__time_zone_tmp", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"time_zone": {"type": "STRING", "index": 1, "name": "time_zone", "comment": null}, "_fivetran_synced": {"type": "TIMESTAMP", "index": 2, "name": "_fivetran_synced", "comment": null}, "standard_offset": {"type": "STRING", "index": 3, "name": "standard_offset", "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.zendesk_source.stg_zendesk__time_zone_tmp"}, "model.zendesk_source.stg_zendesk__user": {"metadata": {"type": "table", "schema": "zendesk_tests_zendesk_dev", "name": "stg_zendesk__user", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"user_id": {"type": "INT64", "index": 1, "name": "user_id", "comment": null}, "external_id": {"type": "INT64", "index": 2, "name": "external_id", "comment": null}, "_fivetran_synced": {"type": "TIMESTAMP", "index": 3, "name": "_fivetran_synced", "comment": null}, "_fivetran_deleted": {"type": "BOOL", "index": 4, "name": "_fivetran_deleted", "comment": null}, "last_login_at": {"type": "TIMESTAMP", "index": 5, "name": "last_login_at", "comment": null}, "created_at": {"type": "TIMESTAMP", "index": 6, "name": "created_at", "comment": null}, "updated_at": {"type": "TIMESTAMP", "index": 7, "name": "updated_at", "comment": null}, "email": {"type": "STRING", "index": 8, "name": "email", "comment": null}, "name": {"type": "STRING", "index": 9, "name": "name", "comment": null}, "organization_id": {"type": "INT64", "index": 10, "name": "organization_id", "comment": null}, "phone": {"type": "INT64", "index": 11, "name": "phone", "comment": null}, "role": {"type": "STRING", "index": 12, "name": "role", "comment": null}, "ticket_restriction": {"type": "STRING", "index": 13, "name": "ticket_restriction", "comment": null}, "time_zone": {"type": "STRING", "index": 14, "name": "time_zone", "comment": null}, "locale": {"type": "STRING", "index": 15, "name": "locale", "comment": null}, "is_active": {"type": "BOOL", "index": 16, "name": "is_active", "comment": null}, "is_suspended": {"type": "BOOL", "index": 17, "name": "is_suspended", "comment": null}, "source_relation": {"type": "STRING", "index": 18, "name": "source_relation", "comment": null}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 10, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 1709, "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.zendesk_source.stg_zendesk__user"}, "model.zendesk_source.stg_zendesk__user_tag": {"metadata": {"type": "table", "schema": "zendesk_tests_zendesk_dev", "name": "stg_zendesk__user_tag", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"user_id": {"type": "INT64", "index": 1, "name": "user_id", "comment": null}, "tags": {"type": "STRING", "index": 2, "name": "tags", "comment": null}, "source_relation": {"type": "STRING", "index": 3, "name": "source_relation", "comment": null}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 10, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 770, "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.zendesk_source.stg_zendesk__user_tag"}, "model.zendesk_source.stg_zendesk__user_tag_tmp": {"metadata": {"type": "view", "schema": "zendesk_tests_zendesk_dev", "name": "stg_zendesk__user_tag_tmp", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"tag": {"type": "STRING", "index": 1, "name": "tag", "comment": null}, "user_id": {"type": "INT64", "index": 2, "name": "user_id", "comment": null}, "_fivetran_synced": {"type": "TIMESTAMP", "index": 3, "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.zendesk_source.stg_zendesk__user_tag_tmp"}, "model.zendesk_source.stg_zendesk__user_tmp": {"metadata": {"type": "view", "schema": "zendesk_tests_zendesk_dev", "name": "stg_zendesk__user_tmp", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"id": {"type": "INT64", "index": 1, "name": "id", "comment": null}, "_fivetran_synced": {"type": "TIMESTAMP", "index": 2, "name": "_fivetran_synced", "comment": null}, "active": {"type": "BOOL", "index": 3, "name": "active", "comment": null}, "alias": {"type": "INT64", "index": 4, "name": "alias", "comment": null}, "authenticity_token": {"type": "INT64", "index": 5, "name": "authenticity_token", "comment": null}, "chat_only": {"type": "BOOL", "index": 6, "name": "chat_only", "comment": null}, "created_at": {"type": "TIMESTAMP", "index": 7, "name": "created_at", "comment": null}, "details": {"type": "INT64", "index": 8, "name": "details", "comment": null}, "email": {"type": "STRING", "index": 9, "name": "email", "comment": null}, "external_id": {"type": "INT64", "index": 10, "name": "external_id", "comment": null}, "last_login_at": {"type": "TIMESTAMP", "index": 11, "name": "last_login_at", "comment": null}, "locale": {"type": "STRING", "index": 12, "name": "locale", "comment": null}, "locale_id": {"type": "INT64", "index": 13, "name": "locale_id", "comment": null}, "moderator": {"type": "BOOL", "index": 14, "name": "moderator", "comment": null}, "name": {"type": "STRING", "index": 15, "name": "name", "comment": null}, "notes": {"type": "INT64", "index": 16, "name": "notes", "comment": null}, "only_private_comments": {"type": "BOOL", "index": 17, "name": "only_private_comments", "comment": null}, "organization_id": {"type": "INT64", "index": 18, "name": "organization_id", "comment": null}, "phone": {"type": "INT64", "index": 19, "name": "phone", "comment": null}, "remote_photo_url": {"type": "INT64", "index": 20, "name": "remote_photo_url", "comment": null}, "restricted_agent": {"type": "BOOL", "index": 21, "name": "restricted_agent", "comment": null}, "role": {"type": "STRING", "index": 22, "name": "role", "comment": null}, "shared": {"type": "BOOL", "index": 23, "name": "shared", "comment": null}, "shared_agent": {"type": "BOOL", "index": 24, "name": "shared_agent", "comment": null}, "signature": {"type": "INT64", "index": 25, "name": "signature", "comment": null}, "suspended": {"type": "BOOL", "index": 26, "name": "suspended", "comment": null}, "ticket_restriction": {"type": "STRING", "index": 27, "name": "ticket_restriction", "comment": null}, "time_zone": {"type": "STRING", "index": 28, "name": "time_zone", "comment": null}, "two_factor_auth_enabled": {"type": "BOOL", "index": 29, "name": "two_factor_auth_enabled", "comment": null}, "updated_at": {"type": "TIMESTAMP", "index": 30, "name": "updated_at", "comment": null}, "url": {"type": "STRING", "index": 31, "name": "url", "comment": null}, "verified": {"type": "BOOL", "index": 32, "name": "verified", "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.zendesk_source.stg_zendesk__user_tmp"}, "model.zendesk.zendesk__document": {"metadata": {"type": "table", "schema": "zendesk_tests_zendesk_dev", "name": "zendesk__document", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"source_relation": {"type": "STRING", "index": 1, "name": "source_relation", "comment": null}, "document_id": {"type": "STRING", "index": 2, "name": "document_id", "comment": null}, "chunk_index": {"type": "INT64", "index": 3, "name": "chunk_index", "comment": null}, "chunk_tokens_approximate": {"type": "FLOAT64", "index": 4, "name": "chunk_tokens_approximate", "comment": null}, "chunk": {"type": "STRING", "index": 5, "name": "chunk", "comment": null}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 0, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 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.zendesk.zendesk__document"}, "model.zendesk.zendesk__sla_policies": {"metadata": {"type": "table", "schema": "zendesk_tests_zendesk_dev", "name": "zendesk__sla_policies", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"sla_event_id": {"type": "STRING", "index": 1, "name": "sla_event_id", "comment": null}, "source_relation": {"type": "STRING", "index": 2, "name": "source_relation", "comment": null}, "ticket_id": {"type": "INT64", "index": 3, "name": "ticket_id", "comment": null}, "sla_policy_name": {"type": "STRING", "index": 4, "name": "sla_policy_name", "comment": null}, "metric": {"type": "STRING", "index": 5, "name": "metric", "comment": null}, "sla_applied_at": {"type": "TIMESTAMP", "index": 6, "name": "sla_applied_at", "comment": null}, "target": {"type": "INT64", "index": 7, "name": "target", "comment": null}, "in_business_hours": {"type": "BOOL", "index": 8, "name": "in_business_hours", "comment": null}, "sla_breach_at": {"type": "TIMESTAMP", "index": 9, "name": "sla_breach_at", "comment": null}, "sla_elapsed_time": {"type": "FLOAT64", "index": 10, "name": "sla_elapsed_time", "comment": null}, "is_active_sla": {"type": "BOOL", "index": 11, "name": "is_active_sla", "comment": null}, "is_sla_breach": {"type": "BOOL", "index": 12, "name": "is_sla_breach", "comment": null}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 0, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 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.zendesk.zendesk__sla_policies"}, "model.zendesk.zendesk__ticket_backlog": {"metadata": {"type": "table", "schema": "zendesk_tests_zendesk_dev", "name": "zendesk__ticket_backlog", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"source_relation": {"type": "STRING", "index": 1, "name": "source_relation", "comment": null}, "date_day": {"type": "DATE", "index": 2, "name": "date_day", "comment": null}, "ticket_id": {"type": "INT64", "index": 3, "name": "ticket_id", "comment": null}, "status": {"type": "STRING", "index": 4, "name": "status", "comment": null}, "created_channel": {"type": "STRING", "index": 5, "name": "created_channel", "comment": null}, "assignee_name": {"type": "STRING", "index": 6, "name": "assignee_name", "comment": null}, "priority": {"type": "STRING", "index": 7, "name": "priority", "comment": null}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 78, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 6816, "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.zendesk.zendesk__ticket_backlog"}, "model.zendesk.zendesk__ticket_enriched": {"metadata": {"type": "table", "schema": "zendesk_tests_zendesk_dev", "name": "zendesk__ticket_enriched", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"ticket_id": {"type": "INT64", "index": 1, "name": "ticket_id", "comment": null}, "_fivetran_synced": {"type": "TIMESTAMP", "index": 2, "name": "_fivetran_synced", "comment": null}, "_fivetran_deleted": {"type": "BOOL", "index": 3, "name": "_fivetran_deleted", "comment": null}, "assignee_id": {"type": "INT64", "index": 4, "name": "assignee_id", "comment": null}, "brand_id": {"type": "INT64", "index": 5, "name": "brand_id", "comment": null}, "created_at": {"type": "TIMESTAMP", "index": 6, "name": "created_at", "comment": null}, "updated_at": {"type": "TIMESTAMP", "index": 7, "name": "updated_at", "comment": null}, "description": {"type": "STRING", "index": 8, "name": "description", "comment": null}, "due_at": {"type": "TIMESTAMP", "index": 9, "name": "due_at", "comment": null}, "group_id": {"type": "INT64", "index": 10, "name": "group_id", "comment": null}, "external_id": {"type": "INT64", "index": 11, "name": "external_id", "comment": null}, "is_public": {"type": "BOOL", "index": 12, "name": "is_public", "comment": null}, "organization_id": {"type": "INT64", "index": 13, "name": "organization_id", "comment": null}, "priority": {"type": "STRING", "index": 14, "name": "priority", "comment": null}, "recipient": {"type": "STRING", "index": 15, "name": "recipient", "comment": null}, "requester_id": {"type": "INT64", "index": 16, "name": "requester_id", "comment": null}, "status": {"type": "STRING", "index": 17, "name": "status", "comment": null}, "subject": {"type": "STRING", "index": 18, "name": "subject", "comment": null}, "problem_id": {"type": "INT64", "index": 19, "name": "problem_id", "comment": null}, "submitter_id": {"type": "INT64", "index": 20, "name": "submitter_id", "comment": null}, "ticket_form_id": {"type": "INT64", "index": 21, "name": "ticket_form_id", "comment": null}, "type": {"type": "STRING", "index": 22, "name": "type", "comment": null}, "url": {"type": "STRING", "index": 23, "name": "url", "comment": null}, "created_channel": {"type": "STRING", "index": 24, "name": "created_channel", "comment": null}, "source_from_id": {"type": "INT64", "index": 25, "name": "source_from_id", "comment": null}, "source_from_title": {"type": "INT64", "index": 26, "name": "source_from_title", "comment": null}, "source_rel": {"type": "INT64", "index": 27, "name": "source_rel", "comment": null}, "source_to_address": {"type": "STRING", "index": 28, "name": "source_to_address", "comment": null}, "source_to_name": {"type": "STRING", "index": 29, "name": "source_to_name", "comment": null}, "source_relation": {"type": "STRING", "index": 30, "name": "source_relation", "comment": null}, "is_incident": {"type": "BOOL", "index": 31, "name": "is_incident", "comment": null}, "ticket_brand_name": {"type": "STRING", "index": 32, "name": "ticket_brand_name", "comment": null}, "ticket_tags": {"type": "STRING", "index": 33, "name": "ticket_tags", "comment": null}, "ticket_form_name": {"type": "STRING", "index": 34, "name": "ticket_form_name", "comment": null}, "ticket_total_satisfaction_scores": {"type": "INT64", "index": 35, "name": "ticket_total_satisfaction_scores", "comment": null}, "ticket_first_satisfaction_score": {"type": "STRING", "index": 36, "name": "ticket_first_satisfaction_score", "comment": null}, "ticket_satisfaction_score": {"type": "STRING", "index": 37, "name": "ticket_satisfaction_score", "comment": null}, "ticket_satisfaction_comment": {"type": "STRING", "index": 38, "name": "ticket_satisfaction_comment", "comment": null}, "ticket_satisfaction_reason": {"type": "STRING", "index": 39, "name": "ticket_satisfaction_reason", "comment": null}, "is_good_to_bad_satisfaction_score": {"type": "BOOL", "index": 40, "name": "is_good_to_bad_satisfaction_score", "comment": null}, "is_bad_to_good_satisfaction_score": {"type": "BOOL", "index": 41, "name": "is_bad_to_good_satisfaction_score", "comment": null}, "ticket_organization_domain_names": {"type": "STRING", "index": 42, "name": "ticket_organization_domain_names", "comment": null}, "requester_organization_domain_names": {"type": "STRING", "index": 43, "name": "requester_organization_domain_names", "comment": null}, "requester_external_id": {"type": "INT64", "index": 44, "name": "requester_external_id", "comment": null}, "requester_created_at": {"type": "TIMESTAMP", "index": 45, "name": "requester_created_at", "comment": null}, "requester_updated_at": {"type": "TIMESTAMP", "index": 46, "name": "requester_updated_at", "comment": null}, "requester_role": {"type": "STRING", "index": 47, "name": "requester_role", "comment": null}, "requester_email": {"type": "STRING", "index": 48, "name": "requester_email", "comment": null}, "requester_name": {"type": "STRING", "index": 49, "name": "requester_name", "comment": null}, "is_requester_active": {"type": "BOOL", "index": 50, "name": "is_requester_active", "comment": null}, "requester_locale": {"type": "STRING", "index": 51, "name": "requester_locale", "comment": null}, "requester_time_zone": {"type": "STRING", "index": 52, "name": "requester_time_zone", "comment": null}, "requester_ticket_update_count": {"type": "INT64", "index": 53, "name": "requester_ticket_update_count", "comment": null}, "requester_ticket_last_update_at": {"type": "TIMESTAMP", "index": 54, "name": "requester_ticket_last_update_at", "comment": null}, "requester_last_login_at": {"type": "TIMESTAMP", "index": 55, "name": "requester_last_login_at", "comment": null}, "requester_organization_id": {"type": "INT64", "index": 56, "name": "requester_organization_id", "comment": null}, "requester_organization_name": {"type": "STRING", "index": 57, "name": "requester_organization_name", "comment": null}, "requester_organization_tags": {"type": "STRING", "index": 58, "name": "requester_organization_tags", "comment": null}, "requester_organization_external_id": {"type": "INT64", "index": 59, "name": "requester_organization_external_id", "comment": null}, "requester_organization_created_at": {"type": "TIMESTAMP", "index": 60, "name": "requester_organization_created_at", "comment": null}, "requester_organization_updated_at": {"type": "TIMESTAMP", "index": 61, "name": "requester_organization_updated_at", "comment": null}, "submitter_external_id": {"type": "INT64", "index": 62, "name": "submitter_external_id", "comment": null}, "submitter_role": {"type": "STRING", "index": 63, "name": "submitter_role", "comment": null}, "is_agent_submitted": {"type": "BOOL", "index": 64, "name": "is_agent_submitted", "comment": null}, "submitter_email": {"type": "STRING", "index": 65, "name": "submitter_email", "comment": null}, "submitter_name": {"type": "STRING", "index": 66, "name": "submitter_name", "comment": null}, "is_submitter_active": {"type": "BOOL", "index": 67, "name": "is_submitter_active", "comment": null}, "submitter_locale": {"type": "STRING", "index": 68, "name": "submitter_locale", "comment": null}, "submitter_time_zone": {"type": "STRING", "index": 69, "name": "submitter_time_zone", "comment": null}, "assignee_external_id": {"type": "INT64", "index": 70, "name": "assignee_external_id", "comment": null}, "assignee_role": {"type": "STRING", "index": 71, "name": "assignee_role", "comment": null}, "assignee_email": {"type": "STRING", "index": 72, "name": "assignee_email", "comment": null}, "assignee_name": {"type": "STRING", "index": 73, "name": "assignee_name", "comment": null}, "is_assignee_active": {"type": "BOOL", "index": 74, "name": "is_assignee_active", "comment": null}, "assignee_locale": {"type": "STRING", "index": 75, "name": "assignee_locale", "comment": null}, "assignee_time_zone": {"type": "STRING", "index": 76, "name": "assignee_time_zone", "comment": null}, "assignee_ticket_update_count": {"type": "INT64", "index": 77, "name": "assignee_ticket_update_count", "comment": null}, "assignee_ticket_last_update_at": {"type": "TIMESTAMP", "index": 78, "name": "assignee_ticket_last_update_at", "comment": null}, "assignee_last_login_at": {"type": "TIMESTAMP", "index": 79, "name": "assignee_last_login_at", "comment": null}, "group_name": {"type": "STRING", "index": 80, "name": "group_name", "comment": null}, "organization_name": {"type": "STRING", "index": 81, "name": "organization_name", "comment": null}, "requester_tag": {"type": "STRING", "index": 82, "name": "requester_tag", "comment": null}, "submitter_tag": {"type": "STRING", "index": 83, "name": "submitter_tag", "comment": null}, "assignee_tag": {"type": "STRING", "index": 84, "name": "assignee_tag", "comment": null}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 1, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 563, "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.zendesk.zendesk__ticket_enriched"}, "model.zendesk.zendesk__ticket_field_history": {"metadata": {"type": "table", "schema": "zendesk_tests_zendesk_dev", "name": "zendesk__ticket_field_history", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"ticket_day_id": {"type": "STRING", "index": 1, "name": "ticket_day_id", "comment": null}, "source_relation": {"type": "STRING", "index": 2, "name": "source_relation", "comment": null}, "date_day": {"type": "DATE", "index": 3, "name": "date_day", "comment": null}, "ticket_id": {"type": "INT64", "index": 4, "name": "ticket_id", "comment": null}, "assignee_id": {"type": "STRING", "index": 5, "name": "assignee_id", "comment": null}, "priority": {"type": "STRING", "index": 6, "name": "priority", "comment": null}, "status": {"type": "STRING", "index": 7, "name": "status", "comment": null}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 4965, "include": true, "description": "Approximate count of rows in this table"}, "partitioning_type": {"id": "partitioning_type", "label": "Partitioned By", "value": "date_day", "include": true, "description": "The partitioning column for this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 423737, "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.zendesk.zendesk__ticket_field_history"}, "model.zendesk.zendesk__ticket_metrics": {"metadata": {"type": "table", "schema": "zendesk_tests_zendesk_dev", "name": "zendesk__ticket_metrics", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"ticket_id": {"type": "INT64", "index": 1, "name": "ticket_id", "comment": null}, "_fivetran_synced": {"type": "TIMESTAMP", "index": 2, "name": "_fivetran_synced", "comment": null}, "_fivetran_deleted": {"type": "BOOL", "index": 3, "name": "_fivetran_deleted", "comment": null}, "assignee_id": {"type": "INT64", "index": 4, "name": "assignee_id", "comment": null}, "brand_id": {"type": "INT64", "index": 5, "name": "brand_id", "comment": null}, "created_at": {"type": "TIMESTAMP", "index": 6, "name": "created_at", "comment": null}, "updated_at": {"type": "TIMESTAMP", "index": 7, "name": "updated_at", "comment": null}, "description": {"type": "STRING", "index": 8, "name": "description", "comment": null}, "due_at": {"type": "TIMESTAMP", "index": 9, "name": "due_at", "comment": null}, "group_id": {"type": "INT64", "index": 10, "name": "group_id", "comment": null}, "external_id": {"type": "INT64", "index": 11, "name": "external_id", "comment": null}, "is_public": {"type": "BOOL", "index": 12, "name": "is_public", "comment": null}, "organization_id": {"type": "INT64", "index": 13, "name": "organization_id", "comment": null}, "priority": {"type": "STRING", "index": 14, "name": "priority", "comment": null}, "recipient": {"type": "STRING", "index": 15, "name": "recipient", "comment": null}, "requester_id": {"type": "INT64", "index": 16, "name": "requester_id", "comment": null}, "status": {"type": "STRING", "index": 17, "name": "status", "comment": null}, "subject": {"type": "STRING", "index": 18, "name": "subject", "comment": null}, "problem_id": {"type": "INT64", "index": 19, "name": "problem_id", "comment": null}, "submitter_id": {"type": "INT64", "index": 20, "name": "submitter_id", "comment": null}, "ticket_form_id": {"type": "INT64", "index": 21, "name": "ticket_form_id", "comment": null}, "type": {"type": "STRING", "index": 22, "name": "type", "comment": null}, "url": {"type": "STRING", "index": 23, "name": "url", "comment": null}, "created_channel": {"type": "STRING", "index": 24, "name": "created_channel", "comment": null}, "source_from_id": {"type": "INT64", "index": 25, "name": "source_from_id", "comment": null}, "source_from_title": {"type": "INT64", "index": 26, "name": "source_from_title", "comment": null}, "source_rel": {"type": "INT64", "index": 27, "name": "source_rel", "comment": null}, "source_to_address": {"type": "STRING", "index": 28, "name": "source_to_address", "comment": null}, "source_to_name": {"type": "STRING", "index": 29, "name": "source_to_name", "comment": null}, "source_relation": {"type": "STRING", "index": 30, "name": "source_relation", "comment": null}, "is_incident": {"type": "BOOL", "index": 31, "name": "is_incident", "comment": null}, "ticket_brand_name": {"type": "STRING", "index": 32, "name": "ticket_brand_name", "comment": null}, "ticket_tags": {"type": "STRING", "index": 33, "name": "ticket_tags", "comment": null}, "ticket_form_name": {"type": "STRING", "index": 34, "name": "ticket_form_name", "comment": null}, "ticket_total_satisfaction_scores": {"type": "INT64", "index": 35, "name": "ticket_total_satisfaction_scores", "comment": null}, "ticket_first_satisfaction_score": {"type": "STRING", "index": 36, "name": "ticket_first_satisfaction_score", "comment": null}, "ticket_satisfaction_score": {"type": "STRING", "index": 37, "name": "ticket_satisfaction_score", "comment": null}, "ticket_satisfaction_comment": {"type": "STRING", "index": 38, "name": "ticket_satisfaction_comment", "comment": null}, "ticket_satisfaction_reason": {"type": "STRING", "index": 39, "name": "ticket_satisfaction_reason", "comment": null}, "is_good_to_bad_satisfaction_score": {"type": "BOOL", "index": 40, "name": "is_good_to_bad_satisfaction_score", "comment": null}, "is_bad_to_good_satisfaction_score": {"type": "BOOL", "index": 41, "name": "is_bad_to_good_satisfaction_score", "comment": null}, "ticket_organization_domain_names": {"type": "STRING", "index": 42, "name": "ticket_organization_domain_names", "comment": null}, "requester_organization_domain_names": {"type": "STRING", "index": 43, "name": "requester_organization_domain_names", "comment": null}, "requester_external_id": {"type": "INT64", "index": 44, "name": "requester_external_id", "comment": null}, "requester_created_at": {"type": "TIMESTAMP", "index": 45, "name": "requester_created_at", "comment": null}, "requester_updated_at": {"type": "TIMESTAMP", "index": 46, "name": "requester_updated_at", "comment": null}, "requester_role": {"type": "STRING", "index": 47, "name": "requester_role", "comment": null}, "requester_email": {"type": "STRING", "index": 48, "name": "requester_email", "comment": null}, "requester_name": {"type": "STRING", "index": 49, "name": "requester_name", "comment": null}, "is_requester_active": {"type": "BOOL", "index": 50, "name": "is_requester_active", "comment": null}, "requester_locale": {"type": "STRING", "index": 51, "name": "requester_locale", "comment": null}, "requester_time_zone": {"type": "STRING", "index": 52, "name": "requester_time_zone", "comment": null}, "requester_ticket_update_count": {"type": "INT64", "index": 53, "name": "requester_ticket_update_count", "comment": null}, "requester_ticket_last_update_at": {"type": "TIMESTAMP", "index": 54, "name": "requester_ticket_last_update_at", "comment": null}, "requester_last_login_at": {"type": "TIMESTAMP", "index": 55, "name": "requester_last_login_at", "comment": null}, "requester_organization_id": {"type": "INT64", "index": 56, "name": "requester_organization_id", "comment": null}, "requester_organization_name": {"type": "STRING", "index": 57, "name": "requester_organization_name", "comment": null}, "requester_organization_tags": {"type": "STRING", "index": 58, "name": "requester_organization_tags", "comment": null}, "requester_organization_external_id": {"type": "INT64", "index": 59, "name": "requester_organization_external_id", "comment": null}, "requester_organization_created_at": {"type": "TIMESTAMP", "index": 60, "name": "requester_organization_created_at", "comment": null}, "requester_organization_updated_at": {"type": "TIMESTAMP", "index": 61, "name": "requester_organization_updated_at", "comment": null}, "submitter_external_id": {"type": "INT64", "index": 62, "name": "submitter_external_id", "comment": null}, "submitter_role": {"type": "STRING", "index": 63, "name": "submitter_role", "comment": null}, "is_agent_submitted": {"type": "BOOL", "index": 64, "name": "is_agent_submitted", "comment": null}, "submitter_email": {"type": "STRING", "index": 65, "name": "submitter_email", "comment": null}, "submitter_name": {"type": "STRING", "index": 66, "name": "submitter_name", "comment": null}, "is_submitter_active": {"type": "BOOL", "index": 67, "name": "is_submitter_active", "comment": null}, "submitter_locale": {"type": "STRING", "index": 68, "name": "submitter_locale", "comment": null}, "submitter_time_zone": {"type": "STRING", "index": 69, "name": "submitter_time_zone", "comment": null}, "assignee_external_id": {"type": "INT64", "index": 70, "name": "assignee_external_id", "comment": null}, "assignee_role": {"type": "STRING", "index": 71, "name": "assignee_role", "comment": null}, "assignee_email": {"type": "STRING", "index": 72, "name": "assignee_email", "comment": null}, "assignee_name": {"type": "STRING", "index": 73, "name": "assignee_name", "comment": null}, "is_assignee_active": {"type": "BOOL", "index": 74, "name": "is_assignee_active", "comment": null}, "assignee_locale": {"type": "STRING", "index": 75, "name": "assignee_locale", "comment": null}, "assignee_time_zone": {"type": "STRING", "index": 76, "name": "assignee_time_zone", "comment": null}, "assignee_ticket_update_count": {"type": "INT64", "index": 77, "name": "assignee_ticket_update_count", "comment": null}, "assignee_ticket_last_update_at": {"type": "TIMESTAMP", "index": 78, "name": "assignee_ticket_last_update_at", "comment": null}, "assignee_last_login_at": {"type": "TIMESTAMP", "index": 79, "name": "assignee_last_login_at", "comment": null}, "group_name": {"type": "STRING", "index": 80, "name": "group_name", "comment": null}, "organization_name": {"type": "STRING", "index": 81, "name": "organization_name", "comment": null}, "requester_tag": {"type": "STRING", "index": 82, "name": "requester_tag", "comment": null}, "submitter_tag": {"type": "STRING", "index": 83, "name": "submitter_tag", "comment": null}, "assignee_tag": {"type": "STRING", "index": 84, "name": "assignee_tag", "comment": null}, "first_reply_time_calendar_minutes": {"type": "FLOAT64", "index": 85, "name": "first_reply_time_calendar_minutes", "comment": null}, "total_reply_time_calendar_minutes": {"type": "FLOAT64", "index": 86, "name": "total_reply_time_calendar_minutes", "comment": null}, "count_agent_comments": {"type": "INT64", "index": 87, "name": "count_agent_comments", "comment": null}, "count_public_agent_comments": {"type": "INT64", "index": 88, "name": "count_public_agent_comments", "comment": null}, "count_end_user_comments": {"type": "INT64", "index": 89, "name": "count_end_user_comments", "comment": null}, "count_public_comments": {"type": "INT64", "index": 90, "name": "count_public_comments", "comment": null}, "count_internal_comments": {"type": "INT64", "index": 91, "name": "count_internal_comments", "comment": null}, "total_comments": {"type": "INT64", "index": 92, "name": "total_comments", "comment": null}, "count_ticket_handoffs": {"type": "INT64", "index": 93, "name": "count_ticket_handoffs", "comment": null}, "ticket_last_comment_date": {"type": "TIMESTAMP", "index": 94, "name": "ticket_last_comment_date", "comment": null}, "unique_assignee_count": {"type": "INT64", "index": 95, "name": "unique_assignee_count", "comment": null}, "assignee_stations_count": {"type": "INT64", "index": 96, "name": "assignee_stations_count", "comment": null}, "group_stations_count": {"type": "INT64", "index": 97, "name": "group_stations_count", "comment": null}, "first_assignee_id": {"type": "STRING", "index": 98, "name": "first_assignee_id", "comment": null}, "last_assignee_id": {"type": "STRING", "index": 99, "name": "last_assignee_id", "comment": null}, "first_agent_assignment_date": {"type": "TIMESTAMP", "index": 100, "name": "first_agent_assignment_date", "comment": null}, "last_agent_assignment_date": {"type": "TIMESTAMP", "index": 101, "name": "last_agent_assignment_date", "comment": null}, "first_solved_at": {"type": "TIMESTAMP", "index": 102, "name": "first_solved_at", "comment": null}, "last_solved_at": {"type": "TIMESTAMP", "index": 103, "name": "last_solved_at", "comment": null}, "first_assignment_to_resolution_calendar_minutes": {"type": "INT64", "index": 104, "name": "first_assignment_to_resolution_calendar_minutes", "comment": null}, "last_assignment_to_resolution_calendar_minutes": {"type": "INT64", "index": 105, "name": "last_assignment_to_resolution_calendar_minutes", "comment": null}, "ticket_unassigned_duration_calendar_minutes": {"type": "FLOAT64", "index": 106, "name": "ticket_unassigned_duration_calendar_minutes", "comment": null}, "first_resolution_calendar_minutes": {"type": "INT64", "index": 107, "name": "first_resolution_calendar_minutes", "comment": null}, "final_resolution_calendar_minutes": {"type": "INT64", "index": 108, "name": "final_resolution_calendar_minutes", "comment": null}, "count_resolutions": {"type": "INT64", "index": 109, "name": "count_resolutions", "comment": null}, "count_reopens": {"type": "INT64", "index": 110, "name": "count_reopens", "comment": null}, "ticket_deleted_count": {"type": "INT64", "index": 111, "name": "ticket_deleted_count", "comment": null}, "total_ticket_recoveries": {"type": "INT64", "index": 112, "name": "total_ticket_recoveries", "comment": null}, "last_status_assignment_date": {"type": "TIMESTAMP", "index": 113, "name": "last_status_assignment_date", "comment": null}, "new_status_duration_in_calendar_minutes": {"type": "INT64", "index": 114, "name": "new_status_duration_in_calendar_minutes", "comment": null}, "open_status_duration_in_calendar_minutes": {"type": "INT64", "index": 115, "name": "open_status_duration_in_calendar_minutes", "comment": null}, "agent_wait_time_in_calendar_minutes": {"type": "INT64", "index": 116, "name": "agent_wait_time_in_calendar_minutes", "comment": null}, "requester_wait_time_in_calendar_minutes": {"type": "INT64", "index": 117, "name": "requester_wait_time_in_calendar_minutes", "comment": null}, "solve_time_in_calendar_minutes": {"type": "INT64", "index": 118, "name": "solve_time_in_calendar_minutes", "comment": null}, "agent_work_time_in_calendar_minutes": {"type": "INT64", "index": 119, "name": "agent_work_time_in_calendar_minutes", "comment": null}, "on_hold_time_in_calendar_minutes": {"type": "INT64", "index": 120, "name": "on_hold_time_in_calendar_minutes", "comment": null}, "total_agent_replies": {"type": "INT64", "index": 121, "name": "total_agent_replies", "comment": null}, "requester_last_login_age_minutes": {"type": "FLOAT64", "index": 122, "name": "requester_last_login_age_minutes", "comment": null}, "assignee_last_login_age_minutes": {"type": "FLOAT64", "index": 123, "name": "assignee_last_login_age_minutes", "comment": null}, "unsolved_ticket_age_minutes": {"type": "FLOAT64", "index": 124, "name": "unsolved_ticket_age_minutes", "comment": null}, "unsolved_ticket_age_since_update_minutes": {"type": "FLOAT64", "index": 125, "name": "unsolved_ticket_age_since_update_minutes", "comment": null}, "is_one_touch_resolution": {"type": "BOOL", "index": 126, "name": "is_one_touch_resolution", "comment": null}, "is_two_touch_resolution": {"type": "BOOL", "index": 127, "name": "is_two_touch_resolution", "comment": null}, "is_multi_touch_resolution": {"type": "BOOL", "index": 128, "name": "is_multi_touch_resolution", "comment": null}, "first_resolution_business_minutes": {"type": "INT64", "index": 129, "name": "first_resolution_business_minutes", "comment": null}, "full_resolution_business_minutes": {"type": "INT64", "index": 130, "name": "full_resolution_business_minutes", "comment": null}, "first_reply_time_business_minutes": {"type": "INT64", "index": 131, "name": "first_reply_time_business_minutes", "comment": null}, "agent_wait_time_in_business_minutes": {"type": "INT64", "index": 132, "name": "agent_wait_time_in_business_minutes", "comment": null}, "requester_wait_time_in_business_minutes": {"type": "INT64", "index": 133, "name": "requester_wait_time_in_business_minutes", "comment": null}, "solve_time_in_business_minutes": {"type": "INT64", "index": 134, "name": "solve_time_in_business_minutes", "comment": null}, "agent_work_time_in_business_minutes": {"type": "INT64", "index": 135, "name": "agent_work_time_in_business_minutes", "comment": null}, "on_hold_time_in_business_minutes": {"type": "INT64", "index": 136, "name": "on_hold_time_in_business_minutes", "comment": null}, "new_status_duration_in_business_minutes": {"type": "INT64", "index": 137, "name": "new_status_duration_in_business_minutes", "comment": null}, "open_status_duration_in_business_minutes": {"type": "INT64", "index": 138, "name": "open_status_duration_in_business_minutes", "comment": null}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 1, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 914, "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.zendesk.zendesk__ticket_metrics"}, "model.zendesk.zendesk__ticket_summary": {"metadata": {"type": "table", "schema": "zendesk_tests_zendesk_dev", "name": "zendesk__ticket_summary", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"source_relation": {"type": "STRING", "index": 1, "name": "source_relation", "comment": null}, "user_count": {"type": "INT64", "index": 2, "name": "user_count", "comment": null}, "active_agent_count": {"type": "INT64", "index": 3, "name": "active_agent_count", "comment": null}, "deleted_user_count": {"type": "INT64", "index": 4, "name": "deleted_user_count", "comment": null}, "end_user_count": {"type": "INT64", "index": 5, "name": "end_user_count", "comment": null}, "suspended_user_count": {"type": "INT64", "index": 6, "name": "suspended_user_count", "comment": null}, "new_ticket_count": {"type": "INT64", "index": 7, "name": "new_ticket_count", "comment": null}, "on_hold_ticket_count": {"type": "INT64", "index": 8, "name": "on_hold_ticket_count", "comment": null}, "open_ticket_count": {"type": "INT64", "index": 9, "name": "open_ticket_count", "comment": null}, "pending_ticket_count": {"type": "INT64", "index": 10, "name": "pending_ticket_count", "comment": null}, "solved_ticket_count": {"type": "INT64", "index": 11, "name": "solved_ticket_count", "comment": null}, "problem_ticket_count": {"type": "INT64", "index": 12, "name": "problem_ticket_count", "comment": null}, "assigned_ticket_count": {"type": "INT64", "index": 13, "name": "assigned_ticket_count", "comment": null}, "reassigned_ticket_count": {"type": "INT64", "index": 14, "name": "reassigned_ticket_count", "comment": null}, "reopened_ticket_count": {"type": "INT64", "index": 15, "name": "reopened_ticket_count", "comment": null}, "surveyed_satisfaction_ticket_count": {"type": "INT64", "index": 16, "name": "surveyed_satisfaction_ticket_count", "comment": null}, "unassigned_unsolved_ticket_count": {"type": "INT64", "index": 17, "name": "unassigned_unsolved_ticket_count", "comment": null}, "unreplied_ticket_count": {"type": "INT64", "index": 18, "name": "unreplied_ticket_count", "comment": null}, "unreplied_unsolved_ticket_count": {"type": "INT64", "index": 19, "name": "unreplied_unsolved_ticket_count", "comment": null}, "unsolved_ticket_count": {"type": "INT64", "index": 20, "name": "unsolved_ticket_count", "comment": null}, "recovered_ticket_count": {"type": "INT64", "index": 21, "name": "recovered_ticket_count", "comment": null}, "deleted_ticket_count": {"type": "INT64", "index": 22, "name": "deleted_ticket_count", "comment": null}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 1, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 203, "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.zendesk.zendesk__ticket_summary"}}, "sources": {"source.zendesk_source.zendesk.audit_log": {"metadata": {"type": "table", "schema": "zendesk_tests", "name": "audit_log_data", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"id": {"type": "INT64", "index": 1, "name": "id", "comment": null}, "_fivetran_synced": {"type": "TIMESTAMP", "index": 2, "name": "_fivetran_synced", "comment": null}, "action": {"type": "STRING", "index": 3, "name": "action", "comment": null}, "actor_id": {"type": "INT64", "index": 4, "name": "actor_id", "comment": null}, "change_description": {"type": "STRING", "index": 5, "name": "change_description", "comment": null}, "created_at": {"type": "STRING", "index": 6, "name": "created_at", "comment": null}, "source_id": {"type": "INT64", "index": 7, "name": "source_id", "comment": null}, "source_label": {"type": "STRING", "index": 8, "name": "source_label", "comment": null}, "source_type": {"type": "STRING", "index": 9, "name": "source_type", "comment": null}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 7, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 4472, "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.zendesk_source.zendesk.audit_log"}, "source.zendesk_source.zendesk.brand": {"metadata": {"type": "table", "schema": "zendesk_tests", "name": "brand_data", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"id": {"type": "INT64", "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}, "active": {"type": "BOOL", "index": 4, "name": "active", "comment": null}, "brand_url": {"type": "STRING", "index": 5, "name": "brand_url", "comment": null}, "default": {"type": "BOOL", "index": 6, "name": "default", "comment": null}, "has_help_center": {"type": "BOOL", "index": 7, "name": "has_help_center", "comment": null}, "help_center_state": {"type": "STRING", "index": 8, "name": "help_center_state", "comment": null}, "logo_content_type": {"type": "STRING", "index": 9, "name": "logo_content_type", "comment": null}, "logo_content_url": {"type": "STRING", "index": 10, "name": "logo_content_url", "comment": null}, "logo_deleted": {"type": "BOOL", "index": 11, "name": "logo_deleted", "comment": null}, "logo_file_name": {"type": "STRING", "index": 12, "name": "logo_file_name", "comment": null}, "logo_height": {"type": "INT64", "index": 13, "name": "logo_height", "comment": null}, "logo_id": {"type": "INT64", "index": 14, "name": "logo_id", "comment": null}, "logo_inline": {"type": "BOOL", "index": 15, "name": "logo_inline", "comment": null}, "logo_mapped_content_url": {"type": "STRING", "index": 16, "name": "logo_mapped_content_url", "comment": null}, "logo_size": {"type": "INT64", "index": 17, "name": "logo_size", "comment": null}, "logo_url": {"type": "STRING", "index": 18, "name": "logo_url", "comment": null}, "logo_width": {"type": "INT64", "index": 19, "name": "logo_width", "comment": null}, "name": {"type": "STRING", "index": 20, "name": "name", "comment": null}, "subdomain": {"type": "STRING", "index": 21, "name": "subdomain", "comment": null}, "url": {"type": "STRING", "index": 22, "name": "url", "comment": null}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 1, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 346, "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.zendesk_source.zendesk.brand"}, "source.zendesk_source.zendesk.daylight_time": {"metadata": {"type": "table", "schema": "zendesk_tests", "name": "daylight_time_data", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"time_zone": {"type": "STRING", "index": 1, "name": "time_zone", "comment": null}, "year": {"type": "INT64", "index": 2, "name": "year", "comment": null}, "_fivetran_synced": {"type": "TIMESTAMP", "index": 3, "name": "_fivetran_synced", "comment": null}, "daylight_end_utc": {"type": "DATETIME", "index": 4, "name": "daylight_end_utc", "comment": null}, "daylight_offset": {"type": "INT64", "index": 5, "name": "daylight_offset", "comment": null}, "daylight_start_utc": {"type": "DATETIME", "index": 6, "name": "daylight_start_utc", "comment": null}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 2, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 99, "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.zendesk_source.zendesk.daylight_time"}, "source.zendesk_source.zendesk.domain_name": {"metadata": {"type": "table", "schema": "zendesk_tests", "name": "domain_name_data", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"index": {"type": "INT64", "index": 1, "name": "index", "comment": null}, "organization_id": {"type": "INT64", "index": 2, "name": "organization_id", "comment": null}, "_fivetran_synced": {"type": "TIMESTAMP", "index": 3, "name": "_fivetran_synced", "comment": null}, "domain_name": {"type": "STRING", "index": 4, "name": "domain_name", "comment": null}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 10, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 580, "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.zendesk_source.zendesk.domain_name"}, "source.zendesk_source.zendesk.group": {"metadata": {"type": "table", "schema": "zendesk_tests", "name": "group_data", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"id": {"type": "INT64", "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_at": {"type": "TIMESTAMP", "index": 4, "name": "created_at", "comment": null}, "name": {"type": "STRING", "index": 5, "name": "name", "comment": null}, "updated_at": {"type": "TIMESTAMP", "index": 6, "name": "updated_at", "comment": null}, "url": {"type": "STRING", "index": 7, "name": "url", "comment": null}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 8, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 879, "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.zendesk_source.zendesk.group"}, "source.zendesk_source.zendesk.organization": {"metadata": {"type": "table", "schema": "zendesk_tests", "name": "organization_data", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"id": {"type": "INT64", "index": 1, "name": "id", "comment": null}, "_fivetran_synced": {"type": "TIMESTAMP", "index": 2, "name": "_fivetran_synced", "comment": null}, "created_at": {"type": "TIMESTAMP", "index": 3, "name": "created_at", "comment": null}, "details": {"type": "INT64", "index": 4, "name": "details", "comment": null}, "external_id": {"type": "INT64", "index": 5, "name": "external_id", "comment": null}, "group_id": {"type": "INT64", "index": 6, "name": "group_id", "comment": null}, "name": {"type": "STRING", "index": 7, "name": "name", "comment": null}, "notes": {"type": "INT64", "index": 8, "name": "notes", "comment": null}, "shared_comments": {"type": "BOOL", "index": 9, "name": "shared_comments", "comment": null}, "shared_tickets": {"type": "BOOL", "index": 10, "name": "shared_tickets", "comment": null}, "updated_at": {"type": "TIMESTAMP", "index": 11, "name": "updated_at", "comment": null}, "url": {"type": "STRING", "index": 12, "name": "url", "comment": null}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 10, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 1011, "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.zendesk_source.zendesk.organization"}, "source.zendesk_source.zendesk.organization_tag": {"metadata": {"type": "table", "schema": "zendesk_tests", "name": "organization_tag_data", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"organization_id": {"type": "INT64", "index": 1, "name": "organization_id", "comment": null}, "tag": {"type": "STRING", "index": 2, "name": "tag", "comment": null}, "_fivetran_synced": {"type": "TIMESTAMP", "index": 3, "name": "_fivetran_synced", "comment": null}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 12, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 600, "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.zendesk_source.zendesk.organization_tag"}, "source.zendesk_source.zendesk.schedule": {"metadata": {"type": "table", "schema": "zendesk_tests", "name": "schedule_data", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"end_time": {"type": "INT64", "index": 1, "name": "end_time", "comment": null}, "id": {"type": "INT64", "index": 2, "name": "id", "comment": null}, "start_time": {"type": "INT64", "index": 3, "name": "start_time", "comment": null}, "_fivetran_deleted": {"type": "BOOL", "index": 4, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "TIMESTAMP", "index": 5, "name": "_fivetran_synced", "comment": null}, "end_time_utc": {"type": "INT64", "index": 6, "name": "end_time_utc", "comment": null}, "name": {"type": "STRING", "index": 7, "name": "name", "comment": null}, "start_time_utc": {"type": "INT64", "index": 8, "name": "start_time_utc", "comment": null}, "time_zone": {"type": "STRING", "index": 9, "name": "time_zone", "comment": null}, "created_at": {"type": "TIMESTAMP", "index": 10, "name": "created_at", "comment": null}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 5, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 480, "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.zendesk_source.zendesk.schedule"}, "source.zendesk_source.zendesk.schedule_holiday": {"metadata": {"type": "table", "schema": "zendesk_tests", "name": "schedule_holiday_data", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"id": {"type": "INT64", "index": 1, "name": "id", "comment": null}, "schedule_id": {"type": "INT64", "index": 2, "name": "schedule_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}, "end_date": {"type": "DATE", "index": 5, "name": "end_date", "comment": null}, "name": {"type": "STRING", "index": 6, "name": "name", "comment": null}, "start_date": {"type": "DATE", "index": 7, "name": "start_date", "comment": null}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 2, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 112, "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.zendesk_source.zendesk.schedule_holiday"}, "source.zendesk_source.zendesk.ticket_comment": {"metadata": {"type": "table", "schema": "zendesk_tests", "name": "ticket_comment_data", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"id": {"type": "INT64", "index": 1, "name": "id", "comment": null}, "_fivetran_synced": {"type": "TIMESTAMP", "index": 2, "name": "_fivetran_synced", "comment": null}, "body": {"type": "STRING", "index": 3, "name": "body", "comment": null}, "created": {"type": "TIMESTAMP", "index": 4, "name": "created", "comment": null}, "facebook_comment": {"type": "BOOL", "index": 5, "name": "facebook_comment", "comment": null}, "public": {"type": "BOOL", "index": 6, "name": "public", "comment": null}, "ticket_id": {"type": "INT64", "index": 7, "name": "ticket_id", "comment": null}, "tweet": {"type": "BOOL", "index": 8, "name": "tweet", "comment": null}, "user_id": {"type": "INT64", "index": 9, "name": "user_id", "comment": null}, "voice_comment": {"type": "BOOL", "index": 10, "name": "voice_comment", "comment": null}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 20, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 1031, "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.zendesk_source.zendesk.ticket_comment"}, "source.zendesk_source.zendesk.ticket": {"metadata": {"type": "table", "schema": "zendesk_tests", "name": "ticket_data", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"id": {"type": "INT64", "index": 1, "name": "id", "comment": null}, "_fivetran_synced": {"type": "TIMESTAMP", "index": 2, "name": "_fivetran_synced", "comment": null}, "allow_channelback": {"type": "BOOL", "index": 3, "name": "allow_channelback", "comment": null}, "assignee_id": {"type": "INT64", "index": 4, "name": "assignee_id", "comment": null}, "brand_id": {"type": "INT64", "index": 5, "name": "brand_id", "comment": null}, "created_at": {"type": "TIMESTAMP", "index": 6, "name": "created_at", "comment": null}, "description": {"type": "STRING", "index": 7, "name": "description", "comment": null}, "due_at": {"type": "TIMESTAMP", "index": 8, "name": "due_at", "comment": null}, "external_id": {"type": "INT64", "index": 9, "name": "external_id", "comment": null}, "forum_topic_id": {"type": "INT64", "index": 10, "name": "forum_topic_id", "comment": null}, "group_id": {"type": "INT64", "index": 11, "name": "group_id", "comment": null}, "has_incidents": {"type": "BOOL", "index": 12, "name": "has_incidents", "comment": null}, "is_public": {"type": "BOOL", "index": 13, "name": "is_public", "comment": null}, "organization_id": {"type": "INT64", "index": 14, "name": "organization_id", "comment": null}, "priority": {"type": "STRING", "index": 15, "name": "priority", "comment": null}, "problem_id": {"type": "INT64", "index": 16, "name": "problem_id", "comment": null}, "recipient": {"type": "STRING", "index": 17, "name": "recipient", "comment": null}, "requester_id": {"type": "INT64", "index": 18, "name": "requester_id", "comment": null}, "status": {"type": "STRING", "index": 19, "name": "status", "comment": null}, "subject": {"type": "STRING", "index": 20, "name": "subject", "comment": null}, "submitter_id": {"type": "INT64", "index": 21, "name": "submitter_id", "comment": null}, "system_client": {"type": "INT64", "index": 22, "name": "system_client", "comment": null}, "ticket_form_id": {"type": "INT64", "index": 23, "name": "ticket_form_id", "comment": null}, "type": {"type": "STRING", "index": 24, "name": "type", "comment": null}, "updated_at": {"type": "TIMESTAMP", "index": 25, "name": "updated_at", "comment": null}, "url": {"type": "STRING", "index": 26, "name": "url", "comment": null}, "via_channel": {"type": "STRING", "index": 27, "name": "via_channel", "comment": null}, "via_source_from_id": {"type": "INT64", "index": 28, "name": "via_source_from_id", "comment": null}, "via_source_from_title": {"type": "INT64", "index": 29, "name": "via_source_from_title", "comment": null}, "via_source_rel": {"type": "INT64", "index": 30, "name": "via_source_rel", "comment": null}, "via_source_to_address": {"type": "STRING", "index": 31, "name": "via_source_to_address", "comment": null}, "via_source_to_name": {"type": "STRING", "index": 32, "name": "via_source_to_name", "comment": null}, "merged_ticket_ids": {"type": "STRING", "index": 33, "name": "merged_ticket_ids", "comment": null}, "via_source_from_address": {"type": "INT64", "index": 34, "name": "via_source_from_address", "comment": null}, "followup_ids": {"type": "STRING", "index": 35, "name": "followup_ids", "comment": null}, "via_followup_source_id": {"type": "INT64", "index": 36, "name": "via_followup_source_id", "comment": null}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 10, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 2243, "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.zendesk_source.zendesk.ticket"}, "source.zendesk_source.zendesk.ticket_field_history": {"metadata": {"type": "table", "schema": "zendesk_tests", "name": "ticket_field_history_data", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"field_name": {"type": "STRING", "index": 1, "name": "field_name", "comment": null}, "ticket_id": {"type": "INT64", "index": 2, "name": "ticket_id", "comment": null}, "updated": {"type": "TIMESTAMP", "index": 3, "name": "updated", "comment": null}, "_fivetran_synced": {"type": "TIMESTAMP", "index": 4, "name": "_fivetran_synced", "comment": null}, "user_id": {"type": "INT64", "index": 5, "name": "user_id", "comment": null}, "value": {"type": "STRING", "index": 6, "name": "value", "comment": null}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 37, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 1493, "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.zendesk_source.zendesk.ticket_field_history"}, "source.zendesk_source.zendesk.ticket_form_history": {"metadata": {"type": "table", "schema": "zendesk_tests", "name": "ticket_form_history_data", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"id": {"type": "INT64", "index": 1, "name": "id", "comment": null}, "updated_at": {"type": "DATETIME", "index": 2, "name": "updated_at", "comment": null}, "_fivetran_deleted": {"type": "BOOL", "index": 3, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "TIMESTAMP", "index": 4, "name": "_fivetran_synced", "comment": null}, "active": {"type": "BOOL", "index": 5, "name": "active", "comment": null}, "created_at": {"type": "DATETIME", "index": 6, "name": "created_at", "comment": null}, "display_name": {"type": "STRING", "index": 7, "name": "display_name", "comment": null}, "end_user_visible": {"type": "BOOL", "index": 8, "name": "end_user_visible", "comment": null}, "name": {"type": "STRING", "index": 9, "name": "name", "comment": null}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 15, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 1545, "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.zendesk_source.zendesk.ticket_form_history"}, "source.zendesk_source.zendesk.ticket_schedule": {"metadata": {"type": "table", "schema": "zendesk_tests", "name": "ticket_schedule_data", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"created_at": {"type": "TIMESTAMP", "index": 1, "name": "created_at", "comment": null}, "ticket_id": {"type": "INT64", "index": 2, "name": "ticket_id", "comment": null}, "_fivetran_synced": {"type": "TIMESTAMP", "index": 3, "name": "_fivetran_synced", "comment": null}, "schedule_id": {"type": "INT64", "index": 4, "name": "schedule_id", "comment": null}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 10, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 320, "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.zendesk_source.zendesk.ticket_schedule"}, "source.zendesk_source.zendesk.ticket_tag": {"metadata": {"type": "table", "schema": "zendesk_tests", "name": "ticket_tag_data", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"tag": {"type": "STRING", "index": 1, "name": "tag", "comment": null}, "ticket_id": {"type": "INT64", "index": 2, "name": "ticket_id", "comment": null}, "_fivetran_synced": {"type": "TIMESTAMP", "index": 3, "name": "_fivetran_synced", "comment": null}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 10, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 261, "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.zendesk_source.zendesk.ticket_tag"}, "source.zendesk_source.zendesk.time_zone": {"metadata": {"type": "table", "schema": "zendesk_tests", "name": "time_zone_data", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"time_zone": {"type": "STRING", "index": 1, "name": "time_zone", "comment": null}, "_fivetran_synced": {"type": "TIMESTAMP", "index": 2, "name": "_fivetran_synced", "comment": null}, "standard_offset": {"type": "STRING", "index": 3, "name": "standard_offset", "comment": null}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 2, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 48, "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.zendesk_source.zendesk.time_zone"}, "source.zendesk_source.zendesk.user": {"metadata": {"type": "table", "schema": "zendesk_tests", "name": "user_data", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"id": {"type": "INT64", "index": 1, "name": "id", "comment": null}, "_fivetran_synced": {"type": "TIMESTAMP", "index": 2, "name": "_fivetran_synced", "comment": null}, "active": {"type": "BOOL", "index": 3, "name": "active", "comment": null}, "alias": {"type": "INT64", "index": 4, "name": "alias", "comment": null}, "authenticity_token": {"type": "INT64", "index": 5, "name": "authenticity_token", "comment": null}, "chat_only": {"type": "BOOL", "index": 6, "name": "chat_only", "comment": null}, "created_at": {"type": "TIMESTAMP", "index": 7, "name": "created_at", "comment": null}, "details": {"type": "INT64", "index": 8, "name": "details", "comment": null}, "email": {"type": "STRING", "index": 9, "name": "email", "comment": null}, "external_id": {"type": "INT64", "index": 10, "name": "external_id", "comment": null}, "last_login_at": {"type": "TIMESTAMP", "index": 11, "name": "last_login_at", "comment": null}, "locale": {"type": "STRING", "index": 12, "name": "locale", "comment": null}, "locale_id": {"type": "INT64", "index": 13, "name": "locale_id", "comment": null}, "moderator": {"type": "BOOL", "index": 14, "name": "moderator", "comment": null}, "name": {"type": "STRING", "index": 15, "name": "name", "comment": null}, "notes": {"type": "INT64", "index": 16, "name": "notes", "comment": null}, "only_private_comments": {"type": "BOOL", "index": 17, "name": "only_private_comments", "comment": null}, "organization_id": {"type": "INT64", "index": 18, "name": "organization_id", "comment": null}, "phone": {"type": "INT64", "index": 19, "name": "phone", "comment": null}, "remote_photo_url": {"type": "INT64", "index": 20, "name": "remote_photo_url", "comment": null}, "restricted_agent": {"type": "BOOL", "index": 21, "name": "restricted_agent", "comment": null}, "role": {"type": "STRING", "index": 22, "name": "role", "comment": null}, "shared": {"type": "BOOL", "index": 23, "name": "shared", "comment": null}, "shared_agent": {"type": "BOOL", "index": 24, "name": "shared_agent", "comment": null}, "signature": {"type": "INT64", "index": 25, "name": "signature", "comment": null}, "suspended": {"type": "BOOL", "index": 26, "name": "suspended", "comment": null}, "ticket_restriction": {"type": "STRING", "index": 27, "name": "ticket_restriction", "comment": null}, "time_zone": {"type": "STRING", "index": 28, "name": "time_zone", "comment": null}, "two_factor_auth_enabled": {"type": "BOOL", "index": 29, "name": "two_factor_auth_enabled", "comment": null}, "updated_at": {"type": "TIMESTAMP", "index": 30, "name": "updated_at", "comment": null}, "url": {"type": "STRING", "index": 31, "name": "url", "comment": null}, "verified": {"type": "BOOL", "index": 32, "name": "verified", "comment": null}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 10, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 2169, "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.zendesk_source.zendesk.user"}, "source.zendesk_source.zendesk.user_tag": {"metadata": {"type": "table", "schema": "zendesk_tests", "name": "user_tag_data", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"tag": {"type": "STRING", "index": 1, "name": "tag", "comment": null}, "user_id": {"type": "INT64", "index": 2, "name": "user_id", "comment": null}, "_fivetran_synced": {"type": "TIMESTAMP", "index": 3, "name": "_fivetran_synced", "comment": null}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 10, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 500, "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.zendesk_source.zendesk.user_tag"}}, "errors": null} \ No newline at end of file +{"metadata": {"dbt_schema_version": "https://schemas.getdbt.com/dbt/catalog/v1.json", "dbt_version": "1.7.1", "generated_at": "2025-01-07T22:12:53.104784Z", "invocation_id": "de89cfee-28ed-4f0f-add2-32ce41b4671f", "env": {}}, "nodes": {"seed.zendesk_integration_tests.audit_log_data": {"metadata": {"type": "BASE TABLE", "schema": "zendesk_integration_tests_61", "name": "audit_log_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "integer", "index": 1, "name": "id", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 2, "name": "_fivetran_synced", "comment": null}, "action": {"type": "text", "index": 3, "name": "action", "comment": null}, "actor_id": {"type": "integer", "index": 4, "name": "actor_id", "comment": null}, "change_description": {"type": "text", "index": 5, "name": "change_description", "comment": null}, "created_at": {"type": "text", "index": 6, "name": "created_at", "comment": null}, "source_id": {"type": "integer", "index": 7, "name": "source_id", "comment": null}, "source_label": {"type": "text", "index": 8, "name": "source_label", "comment": null}, "source_type": {"type": "text", "index": 9, "name": "source_type", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.zendesk_integration_tests.audit_log_data"}, "seed.zendesk_integration_tests.brand_data_postgres": {"metadata": {"type": "BASE TABLE", "schema": "zendesk_integration_tests_61", "name": "brand_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "bigint", "index": 1, "name": "id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 2, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "active": {"type": "boolean", "index": 4, "name": "active", "comment": null}, "brand_url": {"type": "text", "index": 5, "name": "brand_url", "comment": null}, "default": {"type": "boolean", "index": 6, "name": "default", "comment": null}, "has_help_center": {"type": "boolean", "index": 7, "name": "has_help_center", "comment": null}, "help_center_state": {"type": "text", "index": 8, "name": "help_center_state", "comment": null}, "logo_content_type": {"type": "text", "index": 9, "name": "logo_content_type", "comment": null}, "logo_content_url": {"type": "text", "index": 10, "name": "logo_content_url", "comment": null}, "logo_deleted": {"type": "boolean", "index": 11, "name": "logo_deleted", "comment": null}, "logo_file_name": {"type": "text", "index": 12, "name": "logo_file_name", "comment": null}, "logo_height": {"type": "integer", "index": 13, "name": "logo_height", "comment": null}, "logo_id": {"type": "integer", "index": 14, "name": "logo_id", "comment": null}, "logo_inline": {"type": "boolean", "index": 15, "name": "logo_inline", "comment": null}, "logo_mapped_content_url": {"type": "text", "index": 16, "name": "logo_mapped_content_url", "comment": null}, "logo_size": {"type": "integer", "index": 17, "name": "logo_size", "comment": null}, "logo_url": {"type": "text", "index": 18, "name": "logo_url", "comment": null}, "logo_width": {"type": "integer", "index": 19, "name": "logo_width", "comment": null}, "name": {"type": "text", "index": 20, "name": "name", "comment": null}, "subdomain": {"type": "text", "index": 21, "name": "subdomain", "comment": null}, "url": {"type": "text", "index": 22, "name": "url", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.zendesk_integration_tests.brand_data_postgres"}, "seed.zendesk_integration_tests.daylight_time_data": {"metadata": {"type": "BASE TABLE", "schema": "zendesk_integration_tests_61", "name": "daylight_time_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"time_zone": {"type": "text", "index": 1, "name": "time_zone", "comment": null}, "year": {"type": "integer", "index": 2, "name": "year", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "daylight_end_utc": {"type": "timestamp without time zone", "index": 4, "name": "daylight_end_utc", "comment": null}, "daylight_offset": {"type": "integer", "index": 5, "name": "daylight_offset", "comment": null}, "daylight_start_utc": {"type": "timestamp without time zone", "index": 6, "name": "daylight_start_utc", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.zendesk_integration_tests.daylight_time_data"}, "seed.zendesk_integration_tests.domain_name_data": {"metadata": {"type": "BASE TABLE", "schema": "zendesk_integration_tests_61", "name": "domain_name_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"index": {"type": "integer", "index": 1, "name": "index", "comment": null}, "organization_id": {"type": "bigint", "index": 2, "name": "organization_id", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "domain_name": {"type": "text", "index": 4, "name": "domain_name", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.zendesk_integration_tests.domain_name_data"}, "seed.zendesk_integration_tests.group_data": {"metadata": {"type": "BASE TABLE", "schema": "zendesk_integration_tests_61", "name": "group_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "bigint", "index": 1, "name": "id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 2, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "created_at": {"type": "timestamp without time zone", "index": 4, "name": "created_at", "comment": null}, "name": {"type": "text", "index": 5, "name": "name", "comment": null}, "updated_at": {"type": "timestamp without time zone", "index": 6, "name": "updated_at", "comment": null}, "url": {"type": "text", "index": 7, "name": "url", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.zendesk_integration_tests.group_data"}, "seed.zendesk_integration_tests.organization_data": {"metadata": {"type": "BASE TABLE", "schema": "zendesk_integration_tests_61", "name": "organization_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "bigint", "index": 1, "name": "id", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 2, "name": "_fivetran_synced", "comment": null}, "created_at": {"type": "timestamp without time zone", "index": 3, "name": "created_at", "comment": null}, "details": {"type": "integer", "index": 4, "name": "details", "comment": null}, "external_id": {"type": "integer", "index": 5, "name": "external_id", "comment": null}, "group_id": {"type": "integer", "index": 6, "name": "group_id", "comment": null}, "name": {"type": "text", "index": 7, "name": "name", "comment": null}, "notes": {"type": "integer", "index": 8, "name": "notes", "comment": null}, "shared_comments": {"type": "boolean", "index": 9, "name": "shared_comments", "comment": null}, "shared_tickets": {"type": "boolean", "index": 10, "name": "shared_tickets", "comment": null}, "updated_at": {"type": "timestamp without time zone", "index": 11, "name": "updated_at", "comment": null}, "url": {"type": "text", "index": 12, "name": "url", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.zendesk_integration_tests.organization_data"}, "seed.zendesk_integration_tests.organization_tag_data": {"metadata": {"type": "BASE TABLE", "schema": "zendesk_integration_tests_61", "name": "organization_tag_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"organization_id": {"type": "bigint", "index": 1, "name": "organization_id", "comment": null}, "tag": {"type": "text", "index": 2, "name": "tag", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.zendesk_integration_tests.organization_tag_data"}, "seed.zendesk_integration_tests.schedule_data": {"metadata": {"type": "BASE TABLE", "schema": "zendesk_integration_tests_61", "name": "schedule_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"end_time": {"type": "bigint", "index": 1, "name": "end_time", "comment": null}, "id": {"type": "bigint", "index": 2, "name": "id", "comment": null}, "start_time": {"type": "bigint", "index": 3, "name": "start_time", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 4, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 5, "name": "_fivetran_synced", "comment": null}, "end_time_utc": {"type": "bigint", "index": 6, "name": "end_time_utc", "comment": null}, "name": {"type": "text", "index": 7, "name": "name", "comment": null}, "start_time_utc": {"type": "bigint", "index": 8, "name": "start_time_utc", "comment": null}, "time_zone": {"type": "text", "index": 9, "name": "time_zone", "comment": null}, "created_at": {"type": "timestamp without time zone", "index": 10, "name": "created_at", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.zendesk_integration_tests.schedule_data"}, "seed.zendesk_integration_tests.schedule_holiday_data": {"metadata": {"type": "BASE TABLE", "schema": "zendesk_integration_tests_61", "name": "schedule_holiday_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "bigint", "index": 1, "name": "id", "comment": null}, "schedule_id": {"type": "bigint", "index": 2, "name": "schedule_id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 3, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 4, "name": "_fivetran_synced", "comment": null}, "end_date": {"type": "date", "index": 5, "name": "end_date", "comment": null}, "name": {"type": "text", "index": 6, "name": "name", "comment": null}, "start_date": {"type": "date", "index": 7, "name": "start_date", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.zendesk_integration_tests.schedule_holiday_data"}, "seed.zendesk_integration_tests.ticket_comment_data": {"metadata": {"type": "BASE TABLE", "schema": "zendesk_integration_tests_61", "name": "ticket_comment_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "bigint", "index": 1, "name": "id", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 2, "name": "_fivetran_synced", "comment": null}, "body": {"type": "text", "index": 3, "name": "body", "comment": null}, "created": {"type": "timestamp without time zone", "index": 4, "name": "created", "comment": null}, "facebook_comment": {"type": "boolean", "index": 5, "name": "facebook_comment", "comment": null}, "public": {"type": "boolean", "index": 6, "name": "public", "comment": null}, "ticket_id": {"type": "integer", "index": 7, "name": "ticket_id", "comment": null}, "tweet": {"type": "boolean", "index": 8, "name": "tweet", "comment": null}, "user_id": {"type": "bigint", "index": 9, "name": "user_id", "comment": null}, "voice_comment": {"type": "boolean", "index": 10, "name": "voice_comment", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.zendesk_integration_tests.ticket_comment_data"}, "seed.zendesk_integration_tests.ticket_data": {"metadata": {"type": "BASE TABLE", "schema": "zendesk_integration_tests_61", "name": "ticket_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "bigint", "index": 1, "name": "id", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 2, "name": "_fivetran_synced", "comment": null}, "allow_channelback": {"type": "boolean", "index": 3, "name": "allow_channelback", "comment": null}, "assignee_id": {"type": "bigint", "index": 4, "name": "assignee_id", "comment": null}, "brand_id": {"type": "bigint", "index": 5, "name": "brand_id", "comment": null}, "created_at": {"type": "timestamp without time zone", "index": 6, "name": "created_at", "comment": null}, "description": {"type": "text", "index": 7, "name": "description", "comment": null}, "due_at": {"type": "timestamp without time zone", "index": 8, "name": "due_at", "comment": null}, "external_id": {"type": "bigint", "index": 9, "name": "external_id", "comment": null}, "forum_topic_id": {"type": "bigint", "index": 10, "name": "forum_topic_id", "comment": null}, "group_id": {"type": "bigint", "index": 11, "name": "group_id", "comment": null}, "has_incidents": {"type": "boolean", "index": 12, "name": "has_incidents", "comment": null}, "is_public": {"type": "boolean", "index": 13, "name": "is_public", "comment": null}, "organization_id": {"type": "bigint", "index": 14, "name": "organization_id", "comment": null}, "priority": {"type": "text", "index": 15, "name": "priority", "comment": null}, "problem_id": {"type": "bigint", "index": 16, "name": "problem_id", "comment": null}, "recipient": {"type": "text", "index": 17, "name": "recipient", "comment": null}, "requester_id": {"type": "bigint", "index": 18, "name": "requester_id", "comment": null}, "status": {"type": "text", "index": 19, "name": "status", "comment": null}, "subject": {"type": "text", "index": 20, "name": "subject", "comment": null}, "submitter_id": {"type": "bigint", "index": 21, "name": "submitter_id", "comment": null}, "system_client": {"type": "integer", "index": 22, "name": "system_client", "comment": null}, "ticket_form_id": {"type": "bigint", "index": 23, "name": "ticket_form_id", "comment": null}, "type": {"type": "text", "index": 24, "name": "type", "comment": null}, "updated_at": {"type": "timestamp without time zone", "index": 25, "name": "updated_at", "comment": null}, "url": {"type": "text", "index": 26, "name": "url", "comment": null}, "via_channel": {"type": "text", "index": 27, "name": "via_channel", "comment": null}, "via_source_from_id": {"type": "integer", "index": 28, "name": "via_source_from_id", "comment": null}, "via_source_from_title": {"type": "integer", "index": 29, "name": "via_source_from_title", "comment": null}, "via_source_rel": {"type": "integer", "index": 30, "name": "via_source_rel", "comment": null}, "via_source_to_address": {"type": "text", "index": 31, "name": "via_source_to_address", "comment": null}, "via_source_to_name": {"type": "text", "index": 32, "name": "via_source_to_name", "comment": null}, "merged_ticket_ids": {"type": "text", "index": 33, "name": "merged_ticket_ids", "comment": null}, "via_source_from_address": {"type": "integer", "index": 34, "name": "via_source_from_address", "comment": null}, "followup_ids": {"type": "text", "index": 35, "name": "followup_ids", "comment": null}, "via_followup_source_id": {"type": "integer", "index": 36, "name": "via_followup_source_id", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.zendesk_integration_tests.ticket_data"}, "seed.zendesk_integration_tests.ticket_field_history_data": {"metadata": {"type": "BASE TABLE", "schema": "zendesk_integration_tests_61", "name": "ticket_field_history_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"field_name": {"type": "text", "index": 1, "name": "field_name", "comment": null}, "ticket_id": {"type": "bigint", "index": 2, "name": "ticket_id", "comment": null}, "updated": {"type": "timestamp without time zone", "index": 3, "name": "updated", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 4, "name": "_fivetran_synced", "comment": null}, "user_id": {"type": "bigint", "index": 5, "name": "user_id", "comment": null}, "value": {"type": "text", "index": 6, "name": "value", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.zendesk_integration_tests.ticket_field_history_data"}, "seed.zendesk_integration_tests.ticket_form_history_data": {"metadata": {"type": "BASE TABLE", "schema": "zendesk_integration_tests_61", "name": "ticket_form_history_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "bigint", "index": 1, "name": "id", "comment": null}, "updated_at": {"type": "timestamp without time zone", "index": 2, "name": "updated_at", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 3, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 4, "name": "_fivetran_synced", "comment": null}, "active": {"type": "boolean", "index": 5, "name": "active", "comment": null}, "created_at": {"type": "timestamp without time zone", "index": 6, "name": "created_at", "comment": null}, "display_name": {"type": "text", "index": 7, "name": "display_name", "comment": null}, "end_user_visible": {"type": "boolean", "index": 8, "name": "end_user_visible", "comment": null}, "name": {"type": "text", "index": 9, "name": "name", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.zendesk_integration_tests.ticket_form_history_data"}, "seed.zendesk_integration_tests.ticket_schedule_data": {"metadata": {"type": "BASE TABLE", "schema": "zendesk_integration_tests_61", "name": "ticket_schedule_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"created_at": {"type": "timestamp without time zone", "index": 1, "name": "created_at", "comment": null}, "ticket_id": {"type": "bigint", "index": 2, "name": "ticket_id", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "schedule_id": {"type": "bigint", "index": 4, "name": "schedule_id", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.zendesk_integration_tests.ticket_schedule_data"}, "seed.zendesk_integration_tests.ticket_tag_data": {"metadata": {"type": "BASE TABLE", "schema": "zendesk_integration_tests_61", "name": "ticket_tag_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"tag": {"type": "text", "index": 1, "name": "tag", "comment": null}, "ticket_id": {"type": "integer", "index": 2, "name": "ticket_id", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.zendesk_integration_tests.ticket_tag_data"}, "seed.zendesk_integration_tests.time_zone_data": {"metadata": {"type": "BASE TABLE", "schema": "zendesk_integration_tests_61", "name": "time_zone_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"time_zone": {"type": "text", "index": 1, "name": "time_zone", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 2, "name": "_fivetran_synced", "comment": null}, "standard_offset": {"type": "text", "index": 3, "name": "standard_offset", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.zendesk_integration_tests.time_zone_data"}, "seed.zendesk_integration_tests.user_data": {"metadata": {"type": "BASE TABLE", "schema": "zendesk_integration_tests_61", "name": "user_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "bigint", "index": 1, "name": "id", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 2, "name": "_fivetran_synced", "comment": null}, "active": {"type": "boolean", "index": 3, "name": "active", "comment": null}, "alias": {"type": "integer", "index": 4, "name": "alias", "comment": null}, "authenticity_token": {"type": "integer", "index": 5, "name": "authenticity_token", "comment": null}, "chat_only": {"type": "boolean", "index": 6, "name": "chat_only", "comment": null}, "created_at": {"type": "timestamp without time zone", "index": 7, "name": "created_at", "comment": null}, "details": {"type": "integer", "index": 8, "name": "details", "comment": null}, "email": {"type": "text", "index": 9, "name": "email", "comment": null}, "external_id": {"type": "bigint", "index": 10, "name": "external_id", "comment": null}, "last_login_at": {"type": "timestamp without time zone", "index": 11, "name": "last_login_at", "comment": null}, "locale": {"type": "text", "index": 12, "name": "locale", "comment": null}, "locale_id": {"type": "bigint", "index": 13, "name": "locale_id", "comment": null}, "moderator": {"type": "boolean", "index": 14, "name": "moderator", "comment": null}, "name": {"type": "text", "index": 15, "name": "name", "comment": null}, "notes": {"type": "integer", "index": 16, "name": "notes", "comment": null}, "only_private_comments": {"type": "boolean", "index": 17, "name": "only_private_comments", "comment": null}, "organization_id": {"type": "bigint", "index": 18, "name": "organization_id", "comment": null}, "phone": {"type": "integer", "index": 19, "name": "phone", "comment": null}, "remote_photo_url": {"type": "integer", "index": 20, "name": "remote_photo_url", "comment": null}, "restricted_agent": {"type": "boolean", "index": 21, "name": "restricted_agent", "comment": null}, "role": {"type": "text", "index": 22, "name": "role", "comment": null}, "shared": {"type": "boolean", "index": 23, "name": "shared", "comment": null}, "shared_agent": {"type": "boolean", "index": 24, "name": "shared_agent", "comment": null}, "signature": {"type": "integer", "index": 25, "name": "signature", "comment": null}, "suspended": {"type": "boolean", "index": 26, "name": "suspended", "comment": null}, "ticket_restriction": {"type": "text", "index": 27, "name": "ticket_restriction", "comment": null}, "time_zone": {"type": "text", "index": 28, "name": "time_zone", "comment": null}, "two_factor_auth_enabled": {"type": "boolean", "index": 29, "name": "two_factor_auth_enabled", "comment": null}, "updated_at": {"type": "timestamp without time zone", "index": 30, "name": "updated_at", "comment": null}, "url": {"type": "text", "index": 31, "name": "url", "comment": null}, "verified": {"type": "boolean", "index": 32, "name": "verified", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.zendesk_integration_tests.user_data"}, "seed.zendesk_integration_tests.user_tag_data": {"metadata": {"type": "BASE TABLE", "schema": "zendesk_integration_tests_61", "name": "user_tag_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"tag": {"type": "text", "index": 1, "name": "tag", "comment": null}, "user_id": {"type": "bigint", "index": 2, "name": "user_id", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.zendesk_integration_tests.user_tag_data"}, "model.zendesk.int_zendesk__agent_work_time_business_hours": {"metadata": {"type": "BASE TABLE", "schema": "zendesk_integration_tests_61_zendesk_dev", "name": "int_zendesk__agent_work_time_business_hours", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"source_relation": {"type": "text", "index": 1, "name": "source_relation", "comment": null}, "ticket_id": {"type": "bigint", "index": 2, "name": "ticket_id", "comment": null}, "sla_applied_at": {"type": "timestamp without time zone", "index": 3, "name": "sla_applied_at", "comment": null}, "target": {"type": "integer", "index": 4, "name": "target", "comment": null}, "sla_policy_name": {"type": "text", "index": 5, "name": "sla_policy_name", "comment": null}, "valid_starting_at": {"type": "timestamp without time zone", "index": 6, "name": "valid_starting_at", "comment": null}, "valid_ending_at": {"type": "timestamp with time zone", "index": 7, "name": "valid_ending_at", "comment": null}, "week_number": {"type": "integer", "index": 8, "name": "week_number", "comment": null}, "ticket_week_start_time_minute": {"type": "integer", "index": 9, "name": "ticket_week_start_time_minute", "comment": null}, "ticket_week_end_time_minute": {"type": "integer", "index": 10, "name": "ticket_week_end_time_minute", "comment": null}, "schedule_start_time": {"type": "bigint", "index": 11, "name": "schedule_start_time", "comment": null}, "schedule_end_time": {"type": "bigint", "index": 12, "name": "schedule_end_time", "comment": null}, "scheduled_minutes": {"type": "bigint", "index": 13, "name": "scheduled_minutes", "comment": null}, "running_total_scheduled_minutes": {"type": "numeric", "index": 14, "name": "running_total_scheduled_minutes", "comment": null}, "remaining_target_minutes": {"type": "numeric", "index": 15, "name": "remaining_target_minutes", "comment": null}, "lag_check": {"type": "numeric", "index": 16, "name": "lag_check", "comment": null}, "is_breached_during_schedule": {"type": "boolean", "index": 17, "name": "is_breached_during_schedule", "comment": null}, "breach_minutes": {"type": "numeric", "index": 18, "name": "breach_minutes", "comment": null}, "breach_minutes_from_week": {"type": "numeric", "index": 19, "name": "breach_minutes_from_week", "comment": null}, "sla_breach_at": {"type": "timestamp without time zone", "index": 20, "name": "sla_breach_at", "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.zendesk.int_zendesk__agent_work_time_business_hours"}, "model.zendesk.int_zendesk__agent_work_time_calendar_hours": {"metadata": {"type": "BASE TABLE", "schema": "zendesk_integration_tests_61_zendesk_dev", "name": "int_zendesk__agent_work_time_calendar_hours", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"source_relation": {"type": "text", "index": 1, "name": "source_relation", "comment": null}, "ticket_id": {"type": "bigint", "index": 2, "name": "ticket_id", "comment": null}, "valid_starting_at": {"type": "timestamp without time zone", "index": 3, "name": "valid_starting_at", "comment": null}, "valid_ending_at": {"type": "timestamp with time zone", "index": 4, "name": "valid_ending_at", "comment": null}, "ticket_status": {"type": "text", "index": 5, "name": "ticket_status", "comment": null}, "sla_applied_at": {"type": "timestamp without time zone", "index": 6, "name": "sla_applied_at", "comment": null}, "target": {"type": "integer", "index": 7, "name": "target", "comment": null}, "sla_policy_name": {"type": "text", "index": 8, "name": "sla_policy_name", "comment": null}, "ticket_created_at": {"type": "timestamp without time zone", "index": 9, "name": "ticket_created_at", "comment": null}, "in_business_hours": {"type": "boolean", "index": 10, "name": "in_business_hours", "comment": null}, "calendar_minutes": {"type": "double precision", "index": 11, "name": "calendar_minutes", "comment": null}, "running_total_calendar_minutes": {"type": "double precision", "index": 12, "name": "running_total_calendar_minutes", "comment": null}, "remaining_target_minutes": {"type": "double precision", "index": 13, "name": "remaining_target_minutes", "comment": null}, "is_breached_during_schedule": {"type": "boolean", "index": 14, "name": "is_breached_during_schedule", "comment": null}, "breach_minutes": {"type": "double precision", "index": 15, "name": "breach_minutes", "comment": null}, "sla_breach_at": {"type": "timestamp without time zone", "index": 16, "name": "sla_breach_at", "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.zendesk.int_zendesk__agent_work_time_calendar_hours"}, "model.zendesk.int_zendesk__agent_work_time_filtered_statuses": {"metadata": {"type": "BASE TABLE", "schema": "zendesk_integration_tests_61_zendesk_dev", "name": "int_zendesk__agent_work_time_filtered_statuses", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"source_relation": {"type": "text", "index": 1, "name": "source_relation", "comment": null}, "ticket_id": {"type": "bigint", "index": 2, "name": "ticket_id", "comment": null}, "valid_starting_at": {"type": "timestamp without time zone", "index": 3, "name": "valid_starting_at", "comment": null}, "valid_ending_at": {"type": "timestamp with time zone", "index": 4, "name": "valid_ending_at", "comment": null}, "ticket_status": {"type": "text", "index": 5, "name": "ticket_status", "comment": null}, "sla_applied_at": {"type": "timestamp without time zone", "index": 6, "name": "sla_applied_at", "comment": null}, "target": {"type": "integer", "index": 7, "name": "target", "comment": null}, "sla_policy_name": {"type": "text", "index": 8, "name": "sla_policy_name", "comment": null}, "ticket_created_at": {"type": "timestamp without time zone", "index": 9, "name": "ticket_created_at", "comment": null}, "in_business_hours": {"type": "boolean", "index": 10, "name": "in_business_hours", "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.zendesk.int_zendesk__agent_work_time_filtered_statuses"}, "model.zendesk.int_zendesk__assignee_updates": {"metadata": {"type": "BASE TABLE", "schema": "zendesk_integration_tests_61_zendesk_dev", "name": "int_zendesk__assignee_updates", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"source_relation": {"type": "text", "index": 1, "name": "source_relation", "comment": null}, "ticket_id": {"type": "bigint", "index": 2, "name": "ticket_id", "comment": null}, "assignee_id": {"type": "bigint", "index": 3, "name": "assignee_id", "comment": null}, "last_updated": {"type": "timestamp without time zone", "index": 4, "name": "last_updated", "comment": null}, "total_updates": {"type": "bigint", "index": 5, "name": "total_updates", "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.zendesk.int_zendesk__assignee_updates"}, "model.zendesk.int_zendesk__comment_metrics": {"metadata": {"type": "BASE TABLE", "schema": "zendesk_integration_tests_61_zendesk_dev", "name": "int_zendesk__comment_metrics", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"source_relation": {"type": "text", "index": 1, "name": "source_relation", "comment": null}, "ticket_id": {"type": "bigint", "index": 2, "name": "ticket_id", "comment": null}, "last_comment_added_at": {"type": "timestamp without time zone", "index": 3, "name": "last_comment_added_at", "comment": null}, "count_public_agent_comments": {"type": "bigint", "index": 4, "name": "count_public_agent_comments", "comment": null}, "count_agent_comments": {"type": "bigint", "index": 5, "name": "count_agent_comments", "comment": null}, "count_end_user_comments": {"type": "bigint", "index": 6, "name": "count_end_user_comments", "comment": null}, "count_public_comments": {"type": "bigint", "index": 7, "name": "count_public_comments", "comment": null}, "count_internal_comments": {"type": "bigint", "index": 8, "name": "count_internal_comments", "comment": null}, "total_comments": {"type": "bigint", "index": 9, "name": "total_comments", "comment": null}, "count_ticket_handoffs": {"type": "bigint", "index": 10, "name": "count_ticket_handoffs", "comment": null}, "count_agent_replies": {"type": "bigint", "index": 11, "name": "count_agent_replies", "comment": null}, "is_one_touch_resolution": {"type": "boolean", "index": 12, "name": "is_one_touch_resolution", "comment": null}, "is_two_touch_resolution": {"type": "boolean", "index": 13, "name": "is_two_touch_resolution", "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.zendesk.int_zendesk__comment_metrics"}, "model.zendesk.int_zendesk__field_calendar_spine": {"metadata": {"type": "BASE TABLE", "schema": "zendesk_integration_tests_61_zendesk_dev", "name": "int_zendesk__field_calendar_spine", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"source_relation": {"type": "text", "index": 1, "name": "source_relation", "comment": null}, "date_day": {"type": "date", "index": 2, "name": "date_day", "comment": null}, "ticket_id": {"type": "bigint", "index": 3, "name": "ticket_id", "comment": null}, "ticket_day_id": {"type": "text", "index": 4, "name": "ticket_day_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.zendesk.int_zendesk__field_calendar_spine"}, "model.zendesk.int_zendesk__field_history_pivot": {"metadata": {"type": "BASE TABLE", "schema": "zendesk_integration_tests_61_zendesk_dev", "name": "int_zendesk__field_history_pivot", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"source_relation": {"type": "text", "index": 1, "name": "source_relation", "comment": null}, "ticket_id": {"type": "bigint", "index": 2, "name": "ticket_id", "comment": null}, "date_day": {"type": "date", "index": 3, "name": "date_day", "comment": null}, "status": {"type": "text", "index": 4, "name": "status", "comment": null}, "assignee_id": {"type": "text", "index": 5, "name": "assignee_id", "comment": null}, "priority": {"type": "text", "index": 6, "name": "priority", "comment": null}, "ticket_day_id": {"type": "text", "index": 7, "name": "ticket_day_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.zendesk.int_zendesk__field_history_pivot"}, "model.zendesk.int_zendesk__field_history_scd": {"metadata": {"type": "BASE TABLE", "schema": "zendesk_integration_tests_61_zendesk_dev", "name": "int_zendesk__field_history_scd", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"source_relation": {"type": "text", "index": 1, "name": "source_relation", "comment": null}, "valid_from": {"type": "date", "index": 2, "name": "valid_from", "comment": null}, "ticket_id": {"type": "bigint", "index": 3, "name": "ticket_id", "comment": null}, "ticket_day_id": {"type": "text", "index": 4, "name": "ticket_day_id", "comment": null}, "status": {"type": "text", "index": 5, "name": "status", "comment": null}, "assignee_id": {"type": "text", "index": 6, "name": "assignee_id", "comment": null}, "priority": {"type": "text", "index": 7, "name": "priority", "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.zendesk.int_zendesk__field_history_scd"}, "model.zendesk.int_zendesk__latest_ticket_form": {"metadata": {"type": "BASE TABLE", "schema": "zendesk_integration_tests_61_zendesk_dev", "name": "int_zendesk__latest_ticket_form", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"source_relation": {"type": "text", "index": 1, "name": "source_relation", "comment": null}, "ticket_form_id": {"type": "bigint", "index": 2, "name": "ticket_form_id", "comment": null}, "created_at": {"type": "timestamp without time zone", "index": 3, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp without time zone", "index": 4, "name": "updated_at", "comment": null}, "display_name": {"type": "text", "index": 5, "name": "display_name", "comment": null}, "is_active": {"type": "boolean", "index": 6, "name": "is_active", "comment": null}, "name": {"type": "text", "index": 7, "name": "name", "comment": null}, "latest_form_index": {"type": "bigint", "index": 8, "name": "latest_form_index", "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.zendesk.int_zendesk__latest_ticket_form"}, "model.zendesk.int_zendesk__organization_aggregates": {"metadata": {"type": "BASE TABLE", "schema": "zendesk_integration_tests_61_zendesk_dev", "name": "int_zendesk__organization_aggregates", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"organization_id": {"type": "bigint", "index": 1, "name": "organization_id", "comment": null}, "created_at": {"type": "timestamp without time zone", "index": 2, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp without time zone", "index": 3, "name": "updated_at", "comment": null}, "details": {"type": "integer", "index": 4, "name": "details", "comment": null}, "name": {"type": "text", "index": 5, "name": "name", "comment": null}, "external_id": {"type": "integer", "index": 6, "name": "external_id", "comment": null}, "source_relation": {"type": "text", "index": 7, "name": "source_relation", "comment": null}, "organization_tags": {"type": "text", "index": 8, "name": "organization_tags", "comment": null}, "domain_names": {"type": "text", "index": 9, "name": "domain_names", "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.zendesk.int_zendesk__organization_aggregates"}, "model.zendesk.int_zendesk__reply_time_business_hours": {"metadata": {"type": "BASE TABLE", "schema": "zendesk_integration_tests_61_zendesk_dev", "name": "int_zendesk__reply_time_business_hours", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"source_relation": {"type": "text", "index": 1, "name": "source_relation", "comment": null}, "ticket_id": {"type": "bigint", "index": 2, "name": "ticket_id", "comment": null}, "sla_policy_name": {"type": "text", "index": 3, "name": "sla_policy_name", "comment": null}, "metric": {"type": "text", "index": 4, "name": "metric", "comment": null}, "ticket_created_at": {"type": "timestamp without time zone", "index": 5, "name": "ticket_created_at", "comment": null}, "sla_applied_at": {"type": "timestamp without time zone", "index": 6, "name": "sla_applied_at", "comment": null}, "sla_schedule_start_at": {"type": "timestamp without time zone", "index": 7, "name": "sla_schedule_start_at", "comment": null}, "sla_schedule_end_at": {"type": "timestamp without time zone", "index": 8, "name": "sla_schedule_end_at", "comment": null}, "target": {"type": "integer", "index": 9, "name": "target", "comment": null}, "sum_lapsed_business_minutes": {"type": "numeric", "index": 10, "name": "sum_lapsed_business_minutes", "comment": null}, "in_business_hours": {"type": "boolean", "index": 11, "name": "in_business_hours", "comment": null}, "sla_breach_at": {"type": "timestamp without time zone", "index": 12, "name": "sla_breach_at", "comment": null}, "is_breached_during_schedule": {"type": "boolean", "index": 13, "name": "is_breached_during_schedule", "comment": null}, "total_schedule_weekly_business_minutes": {"type": "numeric", "index": 14, "name": "total_schedule_weekly_business_minutes", "comment": null}, "sla_breach_exact_time": {"type": "timestamp without time zone", "index": 15, "name": "sla_breach_exact_time", "comment": null}, "week_number": {"type": "integer", "index": 16, "name": "week_number", "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.zendesk.int_zendesk__reply_time_business_hours"}, "model.zendesk.int_zendesk__reply_time_calendar_hours": {"metadata": {"type": "BASE TABLE", "schema": "zendesk_integration_tests_61_zendesk_dev", "name": "int_zendesk__reply_time_calendar_hours", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"source_relation": {"type": "text", "index": 1, "name": "source_relation", "comment": null}, "ticket_id": {"type": "bigint", "index": 2, "name": "ticket_id", "comment": null}, "ticket_created_at": {"type": "timestamp without time zone", "index": 3, "name": "ticket_created_at", "comment": null}, "valid_starting_at": {"type": "timestamp without time zone", "index": 4, "name": "valid_starting_at", "comment": null}, "ticket_current_status": {"type": "text", "index": 5, "name": "ticket_current_status", "comment": null}, "metric": {"type": "text", "index": 6, "name": "metric", "comment": null}, "latest_sla": {"type": "bigint", "index": 7, "name": "latest_sla", "comment": null}, "sla_applied_at": {"type": "timestamp without time zone", "index": 8, "name": "sla_applied_at", "comment": null}, "target": {"type": "integer", "index": 9, "name": "target", "comment": null}, "in_business_hours": {"type": "boolean", "index": 10, "name": "in_business_hours", "comment": null}, "sla_policy_name": {"type": "text", "index": 11, "name": "sla_policy_name", "comment": null}, "sla_breach_at": {"type": "timestamp without time zone", "index": 12, "name": "sla_breach_at", "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.zendesk.int_zendesk__reply_time_calendar_hours"}, "model.zendesk.int_zendesk__reply_time_combined": {"metadata": {"type": "BASE TABLE", "schema": "zendesk_integration_tests_61_zendesk_dev", "name": "int_zendesk__reply_time_combined", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"source_relation": {"type": "text", "index": 1, "name": "source_relation", "comment": null}, "ticket_id": {"type": "bigint", "index": 2, "name": "ticket_id", "comment": null}, "sla_policy_name": {"type": "text", "index": 3, "name": "sla_policy_name", "comment": null}, "metric": {"type": "text", "index": 4, "name": "metric", "comment": null}, "ticket_created_at": {"type": "timestamp without time zone", "index": 5, "name": "ticket_created_at", "comment": null}, "sla_applied_at": {"type": "timestamp without time zone", "index": 6, "name": "sla_applied_at", "comment": null}, "sum_lapsed_business_minutes": {"type": "numeric", "index": 7, "name": "sum_lapsed_business_minutes", "comment": null}, "target": {"type": "integer", "index": 8, "name": "target", "comment": null}, "in_business_hours": {"type": "boolean", "index": 9, "name": "in_business_hours", "comment": null}, "sla_breach_at": {"type": "timestamp without time zone", "index": 10, "name": "sla_breach_at", "comment": null}, "week_number": {"type": "numeric", "index": 11, "name": "week_number", "comment": null}, "sla_schedule_start_at": {"type": "timestamp without time zone", "index": 12, "name": "sla_schedule_start_at", "comment": null}, "sla_schedule_end_at": {"type": "timestamp without time zone", "index": 13, "name": "sla_schedule_end_at", "comment": null}, "agent_reply_at": {"type": "timestamp without time zone", "index": 14, "name": "agent_reply_at", "comment": null}, "next_solved_at": {"type": "timestamp without time zone", "index": 15, "name": "next_solved_at", "comment": null}, "day_index": {"type": "bigint", "index": 16, "name": "day_index", "comment": null}, "next_schedule_start": {"type": "timestamp without time zone", "index": 17, "name": "next_schedule_start", "comment": null}, "first_sla_breach_at": {"type": "timestamp without time zone", "index": 18, "name": "first_sla_breach_at", "comment": null}, "sum_lapsed_business_minutes_new": {"type": "numeric", "index": 19, "name": "sum_lapsed_business_minutes_new", "comment": null}, "total_runtime_minutes": {"type": "double precision", "index": 20, "name": "total_runtime_minutes", "comment": null}, "current_time_check": {"type": "timestamp with time zone", "index": 21, "name": "current_time_check", "comment": null}, "updated_sla_policy_starts_at": {"type": "timestamp without time zone", "index": 22, "name": "updated_sla_policy_starts_at", "comment": null}, "is_stale_sla_policy": {"type": "boolean", "index": 23, "name": "is_stale_sla_policy", "comment": null}, "is_sla_breached": {"type": "boolean", "index": 24, "name": "is_sla_breached", "comment": null}, "total_new_minutes": {"type": "double precision", "index": 25, "name": "total_new_minutes", "comment": null}, "sla_update_at": {"type": "timestamp without time zone", "index": 26, "name": "sla_update_at", "comment": null}, "sla_elapsed_time": {"type": "double precision", "index": 27, "name": "sla_elapsed_time", "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.zendesk.int_zendesk__reply_time_combined"}, "model.zendesk.int_zendesk__requester_updates": {"metadata": {"type": "BASE TABLE", "schema": "zendesk_integration_tests_61_zendesk_dev", "name": "int_zendesk__requester_updates", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"source_relation": {"type": "text", "index": 1, "name": "source_relation", "comment": null}, "ticket_id": {"type": "bigint", "index": 2, "name": "ticket_id", "comment": null}, "requester_id": {"type": "bigint", "index": 3, "name": "requester_id", "comment": null}, "last_updated": {"type": "timestamp without time zone", "index": 4, "name": "last_updated", "comment": null}, "total_updates": {"type": "bigint", "index": 5, "name": "total_updates", "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.zendesk.int_zendesk__requester_updates"}, "model.zendesk.int_zendesk__requester_wait_time_business_hours": {"metadata": {"type": "BASE TABLE", "schema": "zendesk_integration_tests_61_zendesk_dev", "name": "int_zendesk__requester_wait_time_business_hours", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"source_relation": {"type": "text", "index": 1, "name": "source_relation", "comment": null}, "ticket_id": {"type": "bigint", "index": 2, "name": "ticket_id", "comment": null}, "sla_applied_at": {"type": "timestamp without time zone", "index": 3, "name": "sla_applied_at", "comment": null}, "target": {"type": "integer", "index": 4, "name": "target", "comment": null}, "sla_policy_name": {"type": "text", "index": 5, "name": "sla_policy_name", "comment": null}, "valid_starting_at": {"type": "timestamp without time zone", "index": 6, "name": "valid_starting_at", "comment": null}, "valid_ending_at": {"type": "timestamp with time zone", "index": 7, "name": "valid_ending_at", "comment": null}, "week_number": {"type": "integer", "index": 8, "name": "week_number", "comment": null}, "ticket_week_start_time_minute": {"type": "integer", "index": 9, "name": "ticket_week_start_time_minute", "comment": null}, "ticket_week_end_time_minute": {"type": "integer", "index": 10, "name": "ticket_week_end_time_minute", "comment": null}, "schedule_start_time": {"type": "bigint", "index": 11, "name": "schedule_start_time", "comment": null}, "schedule_end_time": {"type": "bigint", "index": 12, "name": "schedule_end_time", "comment": null}, "scheduled_minutes": {"type": "bigint", "index": 13, "name": "scheduled_minutes", "comment": null}, "running_total_scheduled_minutes": {"type": "numeric", "index": 14, "name": "running_total_scheduled_minutes", "comment": null}, "remaining_target_minutes": {"type": "numeric", "index": 15, "name": "remaining_target_minutes", "comment": null}, "lag_check": {"type": "numeric", "index": 16, "name": "lag_check", "comment": null}, "is_breached_during_schedule": {"type": "boolean", "index": 17, "name": "is_breached_during_schedule", "comment": null}, "breach_minutes": {"type": "numeric", "index": 18, "name": "breach_minutes", "comment": null}, "breach_minutes_from_week": {"type": "numeric", "index": 19, "name": "breach_minutes_from_week", "comment": null}, "sla_breach_at": {"type": "timestamp without time zone", "index": 20, "name": "sla_breach_at", "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.zendesk.int_zendesk__requester_wait_time_business_hours"}, "model.zendesk.int_zendesk__requester_wait_time_calendar_hours": {"metadata": {"type": "BASE TABLE", "schema": "zendesk_integration_tests_61_zendesk_dev", "name": "int_zendesk__requester_wait_time_calendar_hours", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"ticket_id": {"type": "bigint", "index": 1, "name": "ticket_id", "comment": null}, "source_relation": {"type": "text", "index": 2, "name": "source_relation", "comment": null}, "valid_starting_at": {"type": "timestamp without time zone", "index": 3, "name": "valid_starting_at", "comment": null}, "valid_ending_at": {"type": "timestamp with time zone", "index": 4, "name": "valid_ending_at", "comment": null}, "ticket_status": {"type": "text", "index": 5, "name": "ticket_status", "comment": null}, "sla_applied_at": {"type": "timestamp without time zone", "index": 6, "name": "sla_applied_at", "comment": null}, "target": {"type": "integer", "index": 7, "name": "target", "comment": null}, "sla_policy_name": {"type": "text", "index": 8, "name": "sla_policy_name", "comment": null}, "ticket_created_at": {"type": "timestamp without time zone", "index": 9, "name": "ticket_created_at", "comment": null}, "in_business_hours": {"type": "boolean", "index": 10, "name": "in_business_hours", "comment": null}, "calendar_minutes": {"type": "double precision", "index": 11, "name": "calendar_minutes", "comment": null}, "running_total_calendar_minutes": {"type": "double precision", "index": 12, "name": "running_total_calendar_minutes", "comment": null}, "remaining_target_minutes": {"type": "double precision", "index": 13, "name": "remaining_target_minutes", "comment": null}, "is_breached_during_schedule": {"type": "boolean", "index": 14, "name": "is_breached_during_schedule", "comment": null}, "breach_minutes": {"type": "double precision", "index": 15, "name": "breach_minutes", "comment": null}, "sla_breach_at": {"type": "timestamp without time zone", "index": 16, "name": "sla_breach_at", "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.zendesk.int_zendesk__requester_wait_time_calendar_hours"}, "model.zendesk.int_zendesk__requester_wait_time_filtered_statuses": {"metadata": {"type": "BASE TABLE", "schema": "zendesk_integration_tests_61_zendesk_dev", "name": "int_zendesk__requester_wait_time_filtered_statuses", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"ticket_id": {"type": "bigint", "index": 1, "name": "ticket_id", "comment": null}, "source_relation": {"type": "text", "index": 2, "name": "source_relation", "comment": null}, "valid_starting_at": {"type": "timestamp without time zone", "index": 3, "name": "valid_starting_at", "comment": null}, "valid_ending_at": {"type": "timestamp with time zone", "index": 4, "name": "valid_ending_at", "comment": null}, "ticket_status": {"type": "text", "index": 5, "name": "ticket_status", "comment": null}, "sla_applied_at": {"type": "timestamp without time zone", "index": 6, "name": "sla_applied_at", "comment": null}, "target": {"type": "integer", "index": 7, "name": "target", "comment": null}, "sla_policy_name": {"type": "text", "index": 8, "name": "sla_policy_name", "comment": null}, "ticket_created_at": {"type": "timestamp without time zone", "index": 9, "name": "ticket_created_at", "comment": null}, "in_business_hours": {"type": "boolean", "index": 10, "name": "in_business_hours", "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.zendesk.int_zendesk__requester_wait_time_filtered_statuses"}, "model.zendesk.int_zendesk__schedule_history": {"metadata": {"type": "BASE TABLE", "schema": "zendesk_integration_tests_61_zendesk_dev", "name": "int_zendesk__schedule_history", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"source_relation": {"type": "text", "index": 1, "name": "source_relation", "comment": null}, "schedule_id": {"type": "text", "index": 2, "name": "schedule_id", "comment": null}, "schedule_id_index": {"type": "bigint", "index": 3, "name": "schedule_id_index", "comment": null}, "start_time": {"type": "integer", "index": 4, "name": "start_time", "comment": null}, "end_time": {"type": "integer", "index": 5, "name": "end_time", "comment": null}, "valid_from": {"type": "date", "index": 6, "name": "valid_from", "comment": null}, "valid_until": {"type": "date", "index": 7, "name": "valid_until", "comment": null}, "day_of_week": {"type": "text", "index": 8, "name": "day_of_week", "comment": null}, "day_of_week_number": {"type": "integer", "index": 9, "name": "day_of_week_number", "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.zendesk.int_zendesk__schedule_history"}, "model.zendesk.int_zendesk__schedule_spine": {"metadata": {"type": "BASE TABLE", "schema": "zendesk_integration_tests_61_zendesk_dev", "name": "int_zendesk__schedule_spine", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"source_relation": {"type": "text", "index": 1, "name": "source_relation", "comment": null}, "schedule_id": {"type": "text", "index": 2, "name": "schedule_id", "comment": null}, "valid_from": {"type": "timestamp without time zone", "index": 3, "name": "valid_from", "comment": null}, "valid_until": {"type": "timestamp without time zone", "index": 4, "name": "valid_until", "comment": null}, "start_time_utc": {"type": "bigint", "index": 5, "name": "start_time_utc", "comment": null}, "end_time_utc": {"type": "bigint", "index": 6, "name": "end_time_utc", "comment": null}, "change_type": {"type": "text", "index": 7, "name": "change_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.zendesk.int_zendesk__schedule_spine"}, "model.zendesk.int_zendesk__sla_policy_applied": {"metadata": {"type": "BASE TABLE", "schema": "zendesk_integration_tests_61_zendesk_dev", "name": "int_zendesk__sla_policy_applied", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"source_relation": {"type": "text", "index": 1, "name": "source_relation", "comment": null}, "ticket_id": {"type": "bigint", "index": 2, "name": "ticket_id", "comment": null}, "ticket_created_at": {"type": "timestamp without time zone", "index": 3, "name": "ticket_created_at", "comment": null}, "valid_starting_at": {"type": "timestamp without time zone", "index": 4, "name": "valid_starting_at", "comment": null}, "ticket_current_status": {"type": "text", "index": 5, "name": "ticket_current_status", "comment": null}, "metric": {"type": "text", "index": 6, "name": "metric", "comment": null}, "latest_sla": {"type": "bigint", "index": 7, "name": "latest_sla", "comment": null}, "sla_applied_at": {"type": "timestamp without time zone", "index": 8, "name": "sla_applied_at", "comment": null}, "target": {"type": "integer", "index": 9, "name": "target", "comment": null}, "in_business_hours": {"type": "boolean", "index": 10, "name": "in_business_hours", "comment": null}, "sla_policy_name": {"type": "text", "index": 11, "name": "sla_policy_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.zendesk.int_zendesk__sla_policy_applied"}, "model.zendesk.int_zendesk__ticket_aggregates": {"metadata": {"type": "BASE TABLE", "schema": "zendesk_integration_tests_61_zendesk_dev", "name": "int_zendesk__ticket_aggregates", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"ticket_id": {"type": "bigint", "index": 1, "name": "ticket_id", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 2, "name": "_fivetran_synced", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 3, "name": "_fivetran_deleted", "comment": null}, "assignee_id": {"type": "bigint", "index": 4, "name": "assignee_id", "comment": null}, "brand_id": {"type": "bigint", "index": 5, "name": "brand_id", "comment": null}, "created_at": {"type": "timestamp without time zone", "index": 6, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp without time zone", "index": 7, "name": "updated_at", "comment": null}, "description": {"type": "text", "index": 8, "name": "description", "comment": null}, "due_at": {"type": "timestamp without time zone", "index": 9, "name": "due_at", "comment": null}, "group_id": {"type": "bigint", "index": 10, "name": "group_id", "comment": null}, "external_id": {"type": "bigint", "index": 11, "name": "external_id", "comment": null}, "is_public": {"type": "boolean", "index": 12, "name": "is_public", "comment": null}, "organization_id": {"type": "bigint", "index": 13, "name": "organization_id", "comment": null}, "priority": {"type": "text", "index": 14, "name": "priority", "comment": null}, "recipient": {"type": "text", "index": 15, "name": "recipient", "comment": null}, "requester_id": {"type": "bigint", "index": 16, "name": "requester_id", "comment": null}, "status": {"type": "text", "index": 17, "name": "status", "comment": null}, "subject": {"type": "text", "index": 18, "name": "subject", "comment": null}, "problem_id": {"type": "bigint", "index": 19, "name": "problem_id", "comment": null}, "submitter_id": {"type": "bigint", "index": 20, "name": "submitter_id", "comment": null}, "ticket_form_id": {"type": "bigint", "index": 21, "name": "ticket_form_id", "comment": null}, "type": {"type": "text", "index": 22, "name": "type", "comment": null}, "url": {"type": "text", "index": 23, "name": "url", "comment": null}, "created_channel": {"type": "text", "index": 24, "name": "created_channel", "comment": null}, "source_from_id": {"type": "integer", "index": 25, "name": "source_from_id", "comment": null}, "source_from_title": {"type": "integer", "index": 26, "name": "source_from_title", "comment": null}, "source_rel": {"type": "integer", "index": 27, "name": "source_rel", "comment": null}, "source_to_address": {"type": "text", "index": 28, "name": "source_to_address", "comment": null}, "source_to_name": {"type": "text", "index": 29, "name": "source_to_name", "comment": null}, "source_relation": {"type": "text", "index": 30, "name": "source_relation", "comment": null}, "is_incident": {"type": "boolean", "index": 31, "name": "is_incident", "comment": null}, "ticket_brand_name": {"type": "text", "index": 32, "name": "ticket_brand_name", "comment": null}, "ticket_tags": {"type": "text", "index": 33, "name": "ticket_tags", "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.zendesk.int_zendesk__ticket_aggregates"}, "model.zendesk.int_zendesk__ticket_comment_document": {"metadata": {"type": "BASE TABLE", "schema": "zendesk_integration_tests_61_zendesk_dev", "name": "int_zendesk__ticket_comment_document", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"source_relation": {"type": "text", "index": 1, "name": "source_relation", "comment": null}, "ticket_comment_id": {"type": "bigint", "index": 2, "name": "ticket_comment_id", "comment": null}, "ticket_id": {"type": "integer", "index": 3, "name": "ticket_id", "comment": null}, "comment_time": {"type": "timestamp without time zone", "index": 4, "name": "comment_time", "comment": null}, "comment_markdown": {"type": "text", "index": 5, "name": "comment_markdown", "comment": null}, "comment_tokens": {"type": "integer", "index": 6, "name": "comment_tokens", "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.zendesk.int_zendesk__ticket_comment_document"}, "model.zendesk.int_zendesk__ticket_comment_documents_grouped": {"metadata": {"type": "BASE TABLE", "schema": "zendesk_integration_tests_61_zendesk_dev", "name": "int_zendesk__ticket_comment_documents_grouped", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"source_relation": {"type": "text", "index": 1, "name": "source_relation", "comment": null}, "ticket_id": {"type": "integer", "index": 2, "name": "ticket_id", "comment": null}, "chunk_index": {"type": "integer", "index": 3, "name": "chunk_index", "comment": null}, "comments_group_markdown": {"type": "text", "index": 4, "name": "comments_group_markdown", "comment": null}, "chunk_tokens": {"type": "bigint", "index": 5, "name": "chunk_tokens", "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.zendesk.int_zendesk__ticket_comment_documents_grouped"}, "model.zendesk.int_zendesk__ticket_document": {"metadata": {"type": "BASE TABLE", "schema": "zendesk_integration_tests_61_zendesk_dev", "name": "int_zendesk__ticket_document", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"source_relation": {"type": "text", "index": 1, "name": "source_relation", "comment": null}, "ticket_id": {"type": "bigint", "index": 2, "name": "ticket_id", "comment": null}, "ticket_markdown": {"type": "text", "index": 3, "name": "ticket_markdown", "comment": null}, "ticket_tokens": {"type": "integer", "index": 4, "name": "ticket_tokens", "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.zendesk.int_zendesk__ticket_document"}, "model.zendesk.int_zendesk__ticket_historical_assignee": {"metadata": {"type": "BASE TABLE", "schema": "zendesk_integration_tests_61_zendesk_dev", "name": "int_zendesk__ticket_historical_assignee", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"source_relation": {"type": "text", "index": 1, "name": "source_relation", "comment": null}, "ticket_id": {"type": "bigint", "index": 2, "name": "ticket_id", "comment": null}, "first_agent_assignment_date": {"type": "timestamp without time zone", "index": 3, "name": "first_agent_assignment_date", "comment": null}, "first_assignee_id": {"type": "text", "index": 4, "name": "first_assignee_id", "comment": null}, "last_agent_assignment_date": {"type": "timestamp without time zone", "index": 5, "name": "last_agent_assignment_date", "comment": null}, "last_assignee_id": {"type": "text", "index": 6, "name": "last_assignee_id", "comment": null}, "assignee_stations_count": {"type": "bigint", "index": 7, "name": "assignee_stations_count", "comment": null}, "unique_assignee_count": {"type": "bigint", "index": 8, "name": "unique_assignee_count", "comment": null}, "ticket_unassigned_duration_calendar_minutes": {"type": "double precision", "index": 9, "name": "ticket_unassigned_duration_calendar_minutes", "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.zendesk.int_zendesk__ticket_historical_assignee"}, "model.zendesk.int_zendesk__ticket_historical_group": {"metadata": {"type": "BASE TABLE", "schema": "zendesk_integration_tests_61_zendesk_dev", "name": "int_zendesk__ticket_historical_group", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"source_relation": {"type": "text", "index": 1, "name": "source_relation", "comment": null}, "ticket_id": {"type": "bigint", "index": 2, "name": "ticket_id", "comment": null}, "group_stations_count": {"type": "bigint", "index": 3, "name": "group_stations_count", "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.zendesk.int_zendesk__ticket_historical_group"}, "model.zendesk.int_zendesk__ticket_historical_satisfaction": {"metadata": {"type": "BASE TABLE", "schema": "zendesk_integration_tests_61_zendesk_dev", "name": "int_zendesk__ticket_historical_satisfaction", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"source_relation": {"type": "text", "index": 1, "name": "source_relation", "comment": null}, "ticket_id": {"type": "bigint", "index": 2, "name": "ticket_id", "comment": null}, "latest_satisfaction_reason": {"type": "text", "index": 3, "name": "latest_satisfaction_reason", "comment": null}, "latest_satisfaction_comment": {"type": "text", "index": 4, "name": "latest_satisfaction_comment", "comment": null}, "first_satisfaction_score": {"type": "text", "index": 5, "name": "first_satisfaction_score", "comment": null}, "latest_satisfaction_score": {"type": "text", "index": 6, "name": "latest_satisfaction_score", "comment": null}, "count_satisfaction_scores": {"type": "bigint", "index": 7, "name": "count_satisfaction_scores", "comment": null}, "is_good_to_bad_satisfaction_score": {"type": "boolean", "index": 8, "name": "is_good_to_bad_satisfaction_score", "comment": null}, "is_bad_to_good_satisfaction_score": {"type": "boolean", "index": 9, "name": "is_bad_to_good_satisfaction_score", "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.zendesk.int_zendesk__ticket_historical_satisfaction"}, "model.zendesk.int_zendesk__ticket_historical_status": {"metadata": {"type": "BASE TABLE", "schema": "zendesk_integration_tests_61_zendesk_dev", "name": "int_zendesk__ticket_historical_status", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"source_relation": {"type": "text", "index": 1, "name": "source_relation", "comment": null}, "ticket_id": {"type": "bigint", "index": 2, "name": "ticket_id", "comment": null}, "valid_starting_at": {"type": "timestamp without time zone", "index": 3, "name": "valid_starting_at", "comment": null}, "valid_ending_at": {"type": "timestamp without time zone", "index": 4, "name": "valid_ending_at", "comment": null}, "status_duration_calendar_minutes": {"type": "double precision", "index": 5, "name": "status_duration_calendar_minutes", "comment": null}, "status": {"type": "text", "index": 6, "name": "status", "comment": null}, "ticket_status_counter": {"type": "bigint", "index": 7, "name": "ticket_status_counter", "comment": null}, "unique_status_counter": {"type": "bigint", "index": 8, "name": "unique_status_counter", "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.zendesk.int_zendesk__ticket_historical_status"}, "model.zendesk.int_zendesk__ticket_schedules": {"metadata": {"type": "BASE TABLE", "schema": "zendesk_integration_tests_61_zendesk_dev", "name": "int_zendesk__ticket_schedules", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"ticket_id": {"type": "bigint", "index": 1, "name": "ticket_id", "comment": null}, "source_relation": {"type": "text", "index": 2, "name": "source_relation", "comment": null}, "schedule_id": {"type": "text", "index": 3, "name": "schedule_id", "comment": null}, "schedule_created_at": {"type": "timestamp without time zone", "index": 4, "name": "schedule_created_at", "comment": null}, "schedule_invalidated_at": {"type": "timestamp with time zone", "index": 5, "name": "schedule_invalidated_at", "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.zendesk.int_zendesk__ticket_schedules"}, "model.zendesk.int_zendesk__updates": {"metadata": {"type": "BASE TABLE", "schema": "zendesk_integration_tests_61_zendesk_dev", "name": "int_zendesk__updates", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"source_relation": {"type": "text", "index": 1, "name": "source_relation", "comment": null}, "ticket_id": {"type": "bigint", "index": 2, "name": "ticket_id", "comment": null}, "field_name": {"type": "text", "index": 3, "name": "field_name", "comment": null}, "value": {"type": "text", "index": 4, "name": "value", "comment": null}, "is_public": {"type": "boolean", "index": 5, "name": "is_public", "comment": null}, "user_id": {"type": "bigint", "index": 6, "name": "user_id", "comment": null}, "valid_starting_at": {"type": "timestamp without time zone", "index": 7, "name": "valid_starting_at", "comment": null}, "valid_ending_at": {"type": "timestamp without time zone", "index": 8, "name": "valid_ending_at", "comment": null}, "ticket_created_date": {"type": "timestamp without time zone", "index": 9, "name": "ticket_created_date", "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.zendesk.int_zendesk__updates"}, "model.zendesk.int_zendesk__user_aggregates": {"metadata": {"type": "BASE TABLE", "schema": "zendesk_integration_tests_61_zendesk_dev", "name": "int_zendesk__user_aggregates", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"user_id": {"type": "bigint", "index": 1, "name": "user_id", "comment": null}, "external_id": {"type": "bigint", "index": 2, "name": "external_id", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 4, "name": "_fivetran_deleted", "comment": null}, "last_login_at": {"type": "timestamp without time zone", "index": 5, "name": "last_login_at", "comment": null}, "created_at": {"type": "timestamp without time zone", "index": 6, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp without time zone", "index": 7, "name": "updated_at", "comment": null}, "email": {"type": "text", "index": 8, "name": "email", "comment": null}, "name": {"type": "text", "index": 9, "name": "name", "comment": null}, "organization_id": {"type": "bigint", "index": 10, "name": "organization_id", "comment": null}, "phone": {"type": "integer", "index": 11, "name": "phone", "comment": null}, "role": {"type": "text", "index": 12, "name": "role", "comment": null}, "ticket_restriction": {"type": "text", "index": 13, "name": "ticket_restriction", "comment": null}, "time_zone": {"type": "text", "index": 14, "name": "time_zone", "comment": null}, "locale": {"type": "text", "index": 15, "name": "locale", "comment": null}, "is_active": {"type": "boolean", "index": 16, "name": "is_active", "comment": null}, "is_suspended": {"type": "boolean", "index": 17, "name": "is_suspended", "comment": null}, "source_relation": {"type": "text", "index": 18, "name": "source_relation", "comment": null}, "user_tags": {"type": "text", "index": 19, "name": "user_tags", "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.zendesk.int_zendesk__user_aggregates"}, "model.zendesk_source.stg_zendesk__audit_log": {"metadata": {"type": "BASE TABLE", "schema": "zendesk_integration_tests_61_zendesk_dev", "name": "stg_zendesk__audit_log", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"audit_log_id": {"type": "text", "index": 1, "name": "audit_log_id", "comment": null}, "action": {"type": "text", "index": 2, "name": "action", "comment": null}, "actor_id": {"type": "integer", "index": 3, "name": "actor_id", "comment": null}, "change_description": {"type": "text", "index": 4, "name": "change_description", "comment": null}, "created_at": {"type": "timestamp without time zone", "index": 5, "name": "created_at", "comment": null}, "source_id": {"type": "integer", "index": 6, "name": "source_id", "comment": null}, "source_label": {"type": "text", "index": 7, "name": "source_label", "comment": null}, "source_type": {"type": "text", "index": 8, "name": "source_type", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 9, "name": "_fivetran_synced", "comment": null}, "source_relation": {"type": "text", "index": 10, "name": "source_relation", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.zendesk_source.stg_zendesk__audit_log"}, "model.zendesk_source.stg_zendesk__audit_log_tmp": {"metadata": {"type": "VIEW", "schema": "zendesk_integration_tests_61_zendesk_dev", "name": "stg_zendesk__audit_log_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "integer", "index": 1, "name": "id", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 2, "name": "_fivetran_synced", "comment": null}, "action": {"type": "text", "index": 3, "name": "action", "comment": null}, "actor_id": {"type": "integer", "index": 4, "name": "actor_id", "comment": null}, "change_description": {"type": "text", "index": 5, "name": "change_description", "comment": null}, "created_at": {"type": "text", "index": 6, "name": "created_at", "comment": null}, "source_id": {"type": "integer", "index": 7, "name": "source_id", "comment": null}, "source_label": {"type": "text", "index": 8, "name": "source_label", "comment": null}, "source_type": {"type": "text", "index": 9, "name": "source_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.zendesk_source.stg_zendesk__audit_log_tmp"}, "model.zendesk_source.stg_zendesk__brand": {"metadata": {"type": "BASE TABLE", "schema": "zendesk_integration_tests_61_zendesk_dev", "name": "stg_zendesk__brand", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"brand_id": {"type": "bigint", "index": 1, "name": "brand_id", "comment": null}, "brand_url": {"type": "text", "index": 2, "name": "brand_url", "comment": null}, "name": {"type": "text", "index": 3, "name": "name", "comment": null}, "subdomain": {"type": "text", "index": 4, "name": "subdomain", "comment": null}, "is_active": {"type": "boolean", "index": 5, "name": "is_active", "comment": null}, "source_relation": {"type": "text", "index": 6, "name": "source_relation", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.zendesk_source.stg_zendesk__brand"}, "model.zendesk_source.stg_zendesk__brand_tmp": {"metadata": {"type": "VIEW", "schema": "zendesk_integration_tests_61_zendesk_dev", "name": "stg_zendesk__brand_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "bigint", "index": 1, "name": "id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 2, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "active": {"type": "boolean", "index": 4, "name": "active", "comment": null}, "brand_url": {"type": "text", "index": 5, "name": "brand_url", "comment": null}, "default": {"type": "boolean", "index": 6, "name": "default", "comment": null}, "has_help_center": {"type": "boolean", "index": 7, "name": "has_help_center", "comment": null}, "help_center_state": {"type": "text", "index": 8, "name": "help_center_state", "comment": null}, "logo_content_type": {"type": "text", "index": 9, "name": "logo_content_type", "comment": null}, "logo_content_url": {"type": "text", "index": 10, "name": "logo_content_url", "comment": null}, "logo_deleted": {"type": "boolean", "index": 11, "name": "logo_deleted", "comment": null}, "logo_file_name": {"type": "text", "index": 12, "name": "logo_file_name", "comment": null}, "logo_height": {"type": "integer", "index": 13, "name": "logo_height", "comment": null}, "logo_id": {"type": "integer", "index": 14, "name": "logo_id", "comment": null}, "logo_inline": {"type": "boolean", "index": 15, "name": "logo_inline", "comment": null}, "logo_mapped_content_url": {"type": "text", "index": 16, "name": "logo_mapped_content_url", "comment": null}, "logo_size": {"type": "integer", "index": 17, "name": "logo_size", "comment": null}, "logo_url": {"type": "text", "index": 18, "name": "logo_url", "comment": null}, "logo_width": {"type": "integer", "index": 19, "name": "logo_width", "comment": null}, "name": {"type": "text", "index": 20, "name": "name", "comment": null}, "subdomain": {"type": "text", "index": 21, "name": "subdomain", "comment": null}, "url": {"type": "text", "index": 22, "name": "url", "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.zendesk_source.stg_zendesk__brand_tmp"}, "model.zendesk_source.stg_zendesk__daylight_time": {"metadata": {"type": "BASE TABLE", "schema": "zendesk_integration_tests_61_zendesk_dev", "name": "stg_zendesk__daylight_time", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"daylight_end_utc": {"type": "timestamp without time zone", "index": 1, "name": "daylight_end_utc", "comment": null}, "daylight_offset": {"type": "integer", "index": 2, "name": "daylight_offset", "comment": null}, "daylight_start_utc": {"type": "timestamp without time zone", "index": 3, "name": "daylight_start_utc", "comment": null}, "time_zone": {"type": "text", "index": 4, "name": "time_zone", "comment": null}, "year": {"type": "integer", "index": 5, "name": "year", "comment": null}, "daylight_offset_minutes": {"type": "integer", "index": 6, "name": "daylight_offset_minutes", "comment": null}, "source_relation": {"type": "text", "index": 7, "name": "source_relation", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.zendesk_source.stg_zendesk__daylight_time"}, "model.zendesk_source.stg_zendesk__daylight_time_tmp": {"metadata": {"type": "VIEW", "schema": "zendesk_integration_tests_61_zendesk_dev", "name": "stg_zendesk__daylight_time_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"time_zone": {"type": "text", "index": 1, "name": "time_zone", "comment": null}, "year": {"type": "integer", "index": 2, "name": "year", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "daylight_end_utc": {"type": "timestamp without time zone", "index": 4, "name": "daylight_end_utc", "comment": null}, "daylight_offset": {"type": "integer", "index": 5, "name": "daylight_offset", "comment": null}, "daylight_start_utc": {"type": "timestamp without time zone", "index": 6, "name": "daylight_start_utc", "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.zendesk_source.stg_zendesk__daylight_time_tmp"}, "model.zendesk_source.stg_zendesk__domain_name": {"metadata": {"type": "BASE TABLE", "schema": "zendesk_integration_tests_61_zendesk_dev", "name": "stg_zendesk__domain_name", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"organization_id": {"type": "bigint", "index": 1, "name": "organization_id", "comment": null}, "domain_name": {"type": "text", "index": 2, "name": "domain_name", "comment": null}, "index": {"type": "integer", "index": 3, "name": "index", "comment": null}, "source_relation": {"type": "text", "index": 4, "name": "source_relation", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.zendesk_source.stg_zendesk__domain_name"}, "model.zendesk_source.stg_zendesk__domain_name_tmp": {"metadata": {"type": "VIEW", "schema": "zendesk_integration_tests_61_zendesk_dev", "name": "stg_zendesk__domain_name_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"index": {"type": "integer", "index": 1, "name": "index", "comment": null}, "organization_id": {"type": "bigint", "index": 2, "name": "organization_id", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "domain_name": {"type": "text", "index": 4, "name": "domain_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.zendesk_source.stg_zendesk__domain_name_tmp"}, "model.zendesk_source.stg_zendesk__group": {"metadata": {"type": "BASE TABLE", "schema": "zendesk_integration_tests_61_zendesk_dev", "name": "stg_zendesk__group", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"group_id": {"type": "bigint", "index": 1, "name": "group_id", "comment": null}, "name": {"type": "text", "index": 2, "name": "name", "comment": null}, "source_relation": {"type": "text", "index": 3, "name": "source_relation", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.zendesk_source.stg_zendesk__group"}, "model.zendesk_source.stg_zendesk__group_tmp": {"metadata": {"type": "VIEW", "schema": "zendesk_integration_tests_61_zendesk_dev", "name": "stg_zendesk__group_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "bigint", "index": 1, "name": "id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 2, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "created_at": {"type": "timestamp without time zone", "index": 4, "name": "created_at", "comment": null}, "name": {"type": "text", "index": 5, "name": "name", "comment": null}, "updated_at": {"type": "timestamp without time zone", "index": 6, "name": "updated_at", "comment": null}, "url": {"type": "text", "index": 7, "name": "url", "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.zendesk_source.stg_zendesk__group_tmp"}, "model.zendesk_source.stg_zendesk__organization": {"metadata": {"type": "BASE TABLE", "schema": "zendesk_integration_tests_61_zendesk_dev", "name": "stg_zendesk__organization", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"organization_id": {"type": "bigint", "index": 1, "name": "organization_id", "comment": null}, "created_at": {"type": "timestamp without time zone", "index": 2, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp without time zone", "index": 3, "name": "updated_at", "comment": null}, "details": {"type": "integer", "index": 4, "name": "details", "comment": null}, "name": {"type": "text", "index": 5, "name": "name", "comment": null}, "external_id": {"type": "integer", "index": 6, "name": "external_id", "comment": null}, "source_relation": {"type": "text", "index": 7, "name": "source_relation", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.zendesk_source.stg_zendesk__organization"}, "model.zendesk_source.stg_zendesk__organization_tag": {"metadata": {"type": "BASE TABLE", "schema": "zendesk_integration_tests_61_zendesk_dev", "name": "stg_zendesk__organization_tag", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"organization_id": {"type": "bigint", "index": 1, "name": "organization_id", "comment": null}, "tags": {"type": "text", "index": 2, "name": "tags", "comment": null}, "source_relation": {"type": "text", "index": 3, "name": "source_relation", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.zendesk_source.stg_zendesk__organization_tag"}, "model.zendesk_source.stg_zendesk__organization_tag_tmp": {"metadata": {"type": "VIEW", "schema": "zendesk_integration_tests_61_zendesk_dev", "name": "stg_zendesk__organization_tag_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"organization_id": {"type": "bigint", "index": 1, "name": "organization_id", "comment": null}, "tag": {"type": "text", "index": 2, "name": "tag", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "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.zendesk_source.stg_zendesk__organization_tag_tmp"}, "model.zendesk_source.stg_zendesk__organization_tmp": {"metadata": {"type": "VIEW", "schema": "zendesk_integration_tests_61_zendesk_dev", "name": "stg_zendesk__organization_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "bigint", "index": 1, "name": "id", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 2, "name": "_fivetran_synced", "comment": null}, "created_at": {"type": "timestamp without time zone", "index": 3, "name": "created_at", "comment": null}, "details": {"type": "integer", "index": 4, "name": "details", "comment": null}, "external_id": {"type": "integer", "index": 5, "name": "external_id", "comment": null}, "group_id": {"type": "integer", "index": 6, "name": "group_id", "comment": null}, "name": {"type": "text", "index": 7, "name": "name", "comment": null}, "notes": {"type": "integer", "index": 8, "name": "notes", "comment": null}, "shared_comments": {"type": "boolean", "index": 9, "name": "shared_comments", "comment": null}, "shared_tickets": {"type": "boolean", "index": 10, "name": "shared_tickets", "comment": null}, "updated_at": {"type": "timestamp without time zone", "index": 11, "name": "updated_at", "comment": null}, "url": {"type": "text", "index": 12, "name": "url", "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.zendesk_source.stg_zendesk__organization_tmp"}, "model.zendesk_source.stg_zendesk__schedule": {"metadata": {"type": "BASE TABLE", "schema": "zendesk_integration_tests_61_zendesk_dev", "name": "stg_zendesk__schedule", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"schedule_id": {"type": "text", "index": 1, "name": "schedule_id", "comment": null}, "end_time": {"type": "bigint", "index": 2, "name": "end_time", "comment": null}, "start_time": {"type": "bigint", "index": 3, "name": "start_time", "comment": null}, "schedule_name": {"type": "text", "index": 4, "name": "schedule_name", "comment": null}, "created_at": {"type": "timestamp without time zone", "index": 5, "name": "created_at", "comment": null}, "time_zone": {"type": "text", "index": 6, "name": "time_zone", "comment": null}, "source_relation": {"type": "text", "index": 7, "name": "source_relation", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.zendesk_source.stg_zendesk__schedule"}, "model.zendesk_source.stg_zendesk__schedule_holiday": {"metadata": {"type": "BASE TABLE", "schema": "zendesk_integration_tests_61_zendesk_dev", "name": "stg_zendesk__schedule_holiday", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"_fivetran_deleted": {"type": "boolean", "index": 1, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 2, "name": "_fivetran_synced", "comment": null}, "holiday_end_date_at": {"type": "timestamp without time zone", "index": 3, "name": "holiday_end_date_at", "comment": null}, "holiday_id": {"type": "text", "index": 4, "name": "holiday_id", "comment": null}, "holiday_name": {"type": "text", "index": 5, "name": "holiday_name", "comment": null}, "schedule_id": {"type": "text", "index": 6, "name": "schedule_id", "comment": null}, "holiday_start_date_at": {"type": "timestamp without time zone", "index": 7, "name": "holiday_start_date_at", "comment": null}, "source_relation": {"type": "text", "index": 8, "name": "source_relation", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.zendesk_source.stg_zendesk__schedule_holiday"}, "model.zendesk_source.stg_zendesk__schedule_holiday_tmp": {"metadata": {"type": "VIEW", "schema": "zendesk_integration_tests_61_zendesk_dev", "name": "stg_zendesk__schedule_holiday_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "bigint", "index": 1, "name": "id", "comment": null}, "schedule_id": {"type": "bigint", "index": 2, "name": "schedule_id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 3, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 4, "name": "_fivetran_synced", "comment": null}, "end_date": {"type": "date", "index": 5, "name": "end_date", "comment": null}, "name": {"type": "text", "index": 6, "name": "name", "comment": null}, "start_date": {"type": "date", "index": 7, "name": "start_date", "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.zendesk_source.stg_zendesk__schedule_holiday_tmp"}, "model.zendesk_source.stg_zendesk__schedule_tmp": {"metadata": {"type": "VIEW", "schema": "zendesk_integration_tests_61_zendesk_dev", "name": "stg_zendesk__schedule_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"end_time": {"type": "bigint", "index": 1, "name": "end_time", "comment": null}, "id": {"type": "bigint", "index": 2, "name": "id", "comment": null}, "start_time": {"type": "bigint", "index": 3, "name": "start_time", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 4, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 5, "name": "_fivetran_synced", "comment": null}, "end_time_utc": {"type": "bigint", "index": 6, "name": "end_time_utc", "comment": null}, "name": {"type": "text", "index": 7, "name": "name", "comment": null}, "start_time_utc": {"type": "bigint", "index": 8, "name": "start_time_utc", "comment": null}, "time_zone": {"type": "text", "index": 9, "name": "time_zone", "comment": null}, "created_at": {"type": "timestamp without time zone", "index": 10, "name": "created_at", "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.zendesk_source.stg_zendesk__schedule_tmp"}, "model.zendesk_source.stg_zendesk__ticket": {"metadata": {"type": "BASE TABLE", "schema": "zendesk_integration_tests_61_zendesk_dev", "name": "stg_zendesk__ticket", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"ticket_id": {"type": "bigint", "index": 1, "name": "ticket_id", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 2, "name": "_fivetran_synced", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 3, "name": "_fivetran_deleted", "comment": null}, "assignee_id": {"type": "bigint", "index": 4, "name": "assignee_id", "comment": null}, "brand_id": {"type": "bigint", "index": 5, "name": "brand_id", "comment": null}, "created_at": {"type": "timestamp without time zone", "index": 6, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp without time zone", "index": 7, "name": "updated_at", "comment": null}, "description": {"type": "text", "index": 8, "name": "description", "comment": null}, "due_at": {"type": "timestamp without time zone", "index": 9, "name": "due_at", "comment": null}, "group_id": {"type": "bigint", "index": 10, "name": "group_id", "comment": null}, "external_id": {"type": "bigint", "index": 11, "name": "external_id", "comment": null}, "is_public": {"type": "boolean", "index": 12, "name": "is_public", "comment": null}, "organization_id": {"type": "bigint", "index": 13, "name": "organization_id", "comment": null}, "priority": {"type": "text", "index": 14, "name": "priority", "comment": null}, "recipient": {"type": "text", "index": 15, "name": "recipient", "comment": null}, "requester_id": {"type": "bigint", "index": 16, "name": "requester_id", "comment": null}, "status": {"type": "text", "index": 17, "name": "status", "comment": null}, "subject": {"type": "text", "index": 18, "name": "subject", "comment": null}, "problem_id": {"type": "bigint", "index": 19, "name": "problem_id", "comment": null}, "submitter_id": {"type": "bigint", "index": 20, "name": "submitter_id", "comment": null}, "ticket_form_id": {"type": "bigint", "index": 21, "name": "ticket_form_id", "comment": null}, "type": {"type": "text", "index": 22, "name": "type", "comment": null}, "url": {"type": "text", "index": 23, "name": "url", "comment": null}, "created_channel": {"type": "text", "index": 24, "name": "created_channel", "comment": null}, "source_from_id": {"type": "integer", "index": 25, "name": "source_from_id", "comment": null}, "source_from_title": {"type": "integer", "index": 26, "name": "source_from_title", "comment": null}, "source_rel": {"type": "integer", "index": 27, "name": "source_rel", "comment": null}, "source_to_address": {"type": "text", "index": 28, "name": "source_to_address", "comment": null}, "source_to_name": {"type": "text", "index": 29, "name": "source_to_name", "comment": null}, "source_relation": {"type": "text", "index": 30, "name": "source_relation", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.zendesk_source.stg_zendesk__ticket"}, "model.zendesk_source.stg_zendesk__ticket_comment": {"metadata": {"type": "BASE TABLE", "schema": "zendesk_integration_tests_61_zendesk_dev", "name": "stg_zendesk__ticket_comment", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"ticket_comment_id": {"type": "bigint", "index": 1, "name": "ticket_comment_id", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 2, "name": "_fivetran_synced", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 3, "name": "_fivetran_deleted", "comment": null}, "body": {"type": "text", "index": 4, "name": "body", "comment": null}, "created_at": {"type": "timestamp without time zone", "index": 5, "name": "created_at", "comment": null}, "is_public": {"type": "boolean", "index": 6, "name": "is_public", "comment": null}, "ticket_id": {"type": "integer", "index": 7, "name": "ticket_id", "comment": null}, "user_id": {"type": "bigint", "index": 8, "name": "user_id", "comment": null}, "is_facebook_comment": {"type": "boolean", "index": 9, "name": "is_facebook_comment", "comment": null}, "is_tweet": {"type": "boolean", "index": 10, "name": "is_tweet", "comment": null}, "is_voice_comment": {"type": "boolean", "index": 11, "name": "is_voice_comment", "comment": null}, "source_relation": {"type": "text", "index": 12, "name": "source_relation", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.zendesk_source.stg_zendesk__ticket_comment"}, "model.zendesk_source.stg_zendesk__ticket_comment_tmp": {"metadata": {"type": "VIEW", "schema": "zendesk_integration_tests_61_zendesk_dev", "name": "stg_zendesk__ticket_comment_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "bigint", "index": 1, "name": "id", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 2, "name": "_fivetran_synced", "comment": null}, "body": {"type": "text", "index": 3, "name": "body", "comment": null}, "created": {"type": "timestamp without time zone", "index": 4, "name": "created", "comment": null}, "facebook_comment": {"type": "boolean", "index": 5, "name": "facebook_comment", "comment": null}, "public": {"type": "boolean", "index": 6, "name": "public", "comment": null}, "ticket_id": {"type": "integer", "index": 7, "name": "ticket_id", "comment": null}, "tweet": {"type": "boolean", "index": 8, "name": "tweet", "comment": null}, "user_id": {"type": "bigint", "index": 9, "name": "user_id", "comment": null}, "voice_comment": {"type": "boolean", "index": 10, "name": "voice_comment", "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.zendesk_source.stg_zendesk__ticket_comment_tmp"}, "model.zendesk_source.stg_zendesk__ticket_field_history": {"metadata": {"type": "BASE TABLE", "schema": "zendesk_integration_tests_61_zendesk_dev", "name": "stg_zendesk__ticket_field_history", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"ticket_id": {"type": "bigint", "index": 1, "name": "ticket_id", "comment": null}, "field_name": {"type": "text", "index": 2, "name": "field_name", "comment": null}, "valid_starting_at": {"type": "timestamp without time zone", "index": 3, "name": "valid_starting_at", "comment": null}, "valid_ending_at": {"type": "timestamp without time zone", "index": 4, "name": "valid_ending_at", "comment": null}, "value": {"type": "text", "index": 5, "name": "value", "comment": null}, "user_id": {"type": "bigint", "index": 6, "name": "user_id", "comment": null}, "source_relation": {"type": "text", "index": 7, "name": "source_relation", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.zendesk_source.stg_zendesk__ticket_field_history"}, "model.zendesk_source.stg_zendesk__ticket_field_history_tmp": {"metadata": {"type": "VIEW", "schema": "zendesk_integration_tests_61_zendesk_dev", "name": "stg_zendesk__ticket_field_history_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"field_name": {"type": "text", "index": 1, "name": "field_name", "comment": null}, "ticket_id": {"type": "bigint", "index": 2, "name": "ticket_id", "comment": null}, "updated": {"type": "timestamp without time zone", "index": 3, "name": "updated", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 4, "name": "_fivetran_synced", "comment": null}, "user_id": {"type": "bigint", "index": 5, "name": "user_id", "comment": null}, "value": {"type": "text", "index": 6, "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.zendesk_source.stg_zendesk__ticket_field_history_tmp"}, "model.zendesk_source.stg_zendesk__ticket_form_history": {"metadata": {"type": "BASE TABLE", "schema": "zendesk_integration_tests_61_zendesk_dev", "name": "stg_zendesk__ticket_form_history", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"ticket_form_id": {"type": "bigint", "index": 1, "name": "ticket_form_id", "comment": null}, "created_at": {"type": "timestamp without time zone", "index": 2, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp without time zone", "index": 3, "name": "updated_at", "comment": null}, "display_name": {"type": "text", "index": 4, "name": "display_name", "comment": null}, "is_active": {"type": "boolean", "index": 5, "name": "is_active", "comment": null}, "name": {"type": "text", "index": 6, "name": "name", "comment": null}, "source_relation": {"type": "text", "index": 7, "name": "source_relation", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.zendesk_source.stg_zendesk__ticket_form_history"}, "model.zendesk_source.stg_zendesk__ticket_form_history_tmp": {"metadata": {"type": "VIEW", "schema": "zendesk_integration_tests_61_zendesk_dev", "name": "stg_zendesk__ticket_form_history_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "bigint", "index": 1, "name": "id", "comment": null}, "updated_at": {"type": "timestamp without time zone", "index": 2, "name": "updated_at", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 3, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 4, "name": "_fivetran_synced", "comment": null}, "active": {"type": "boolean", "index": 5, "name": "active", "comment": null}, "created_at": {"type": "timestamp without time zone", "index": 6, "name": "created_at", "comment": null}, "display_name": {"type": "text", "index": 7, "name": "display_name", "comment": null}, "end_user_visible": {"type": "boolean", "index": 8, "name": "end_user_visible", "comment": null}, "name": {"type": "text", "index": 9, "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.zendesk_source.stg_zendesk__ticket_form_history_tmp"}, "model.zendesk_source.stg_zendesk__ticket_schedule": {"metadata": {"type": "BASE TABLE", "schema": "zendesk_integration_tests_61_zendesk_dev", "name": "stg_zendesk__ticket_schedule", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"ticket_id": {"type": "bigint", "index": 1, "name": "ticket_id", "comment": null}, "created_at": {"type": "timestamp without time zone", "index": 2, "name": "created_at", "comment": null}, "schedule_id": {"type": "text", "index": 3, "name": "schedule_id", "comment": null}, "source_relation": {"type": "text", "index": 4, "name": "source_relation", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.zendesk_source.stg_zendesk__ticket_schedule"}, "model.zendesk_source.stg_zendesk__ticket_schedule_tmp": {"metadata": {"type": "VIEW", "schema": "zendesk_integration_tests_61_zendesk_dev", "name": "stg_zendesk__ticket_schedule_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"created_at": {"type": "timestamp without time zone", "index": 1, "name": "created_at", "comment": null}, "ticket_id": {"type": "bigint", "index": 2, "name": "ticket_id", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "schedule_id": {"type": "bigint", "index": 4, "name": "schedule_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.zendesk_source.stg_zendesk__ticket_schedule_tmp"}, "model.zendesk_source.stg_zendesk__ticket_tag": {"metadata": {"type": "BASE TABLE", "schema": "zendesk_integration_tests_61_zendesk_dev", "name": "stg_zendesk__ticket_tag", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"ticket_id": {"type": "integer", "index": 1, "name": "ticket_id", "comment": null}, "tags": {"type": "text", "index": 2, "name": "tags", "comment": null}, "source_relation": {"type": "text", "index": 3, "name": "source_relation", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.zendesk_source.stg_zendesk__ticket_tag"}, "model.zendesk_source.stg_zendesk__ticket_tag_tmp": {"metadata": {"type": "VIEW", "schema": "zendesk_integration_tests_61_zendesk_dev", "name": "stg_zendesk__ticket_tag_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"tag": {"type": "text", "index": 1, "name": "tag", "comment": null}, "ticket_id": {"type": "integer", "index": 2, "name": "ticket_id", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "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.zendesk_source.stg_zendesk__ticket_tag_tmp"}, "model.zendesk_source.stg_zendesk__ticket_tmp": {"metadata": {"type": "VIEW", "schema": "zendesk_integration_tests_61_zendesk_dev", "name": "stg_zendesk__ticket_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "bigint", "index": 1, "name": "id", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 2, "name": "_fivetran_synced", "comment": null}, "allow_channelback": {"type": "boolean", "index": 3, "name": "allow_channelback", "comment": null}, "assignee_id": {"type": "bigint", "index": 4, "name": "assignee_id", "comment": null}, "brand_id": {"type": "bigint", "index": 5, "name": "brand_id", "comment": null}, "created_at": {"type": "timestamp without time zone", "index": 6, "name": "created_at", "comment": null}, "description": {"type": "text", "index": 7, "name": "description", "comment": null}, "due_at": {"type": "timestamp without time zone", "index": 8, "name": "due_at", "comment": null}, "external_id": {"type": "bigint", "index": 9, "name": "external_id", "comment": null}, "forum_topic_id": {"type": "bigint", "index": 10, "name": "forum_topic_id", "comment": null}, "group_id": {"type": "bigint", "index": 11, "name": "group_id", "comment": null}, "has_incidents": {"type": "boolean", "index": 12, "name": "has_incidents", "comment": null}, "is_public": {"type": "boolean", "index": 13, "name": "is_public", "comment": null}, "organization_id": {"type": "bigint", "index": 14, "name": "organization_id", "comment": null}, "priority": {"type": "text", "index": 15, "name": "priority", "comment": null}, "problem_id": {"type": "bigint", "index": 16, "name": "problem_id", "comment": null}, "recipient": {"type": "text", "index": 17, "name": "recipient", "comment": null}, "requester_id": {"type": "bigint", "index": 18, "name": "requester_id", "comment": null}, "status": {"type": "text", "index": 19, "name": "status", "comment": null}, "subject": {"type": "text", "index": 20, "name": "subject", "comment": null}, "submitter_id": {"type": "bigint", "index": 21, "name": "submitter_id", "comment": null}, "system_client": {"type": "integer", "index": 22, "name": "system_client", "comment": null}, "ticket_form_id": {"type": "bigint", "index": 23, "name": "ticket_form_id", "comment": null}, "type": {"type": "text", "index": 24, "name": "type", "comment": null}, "updated_at": {"type": "timestamp without time zone", "index": 25, "name": "updated_at", "comment": null}, "url": {"type": "text", "index": 26, "name": "url", "comment": null}, "via_channel": {"type": "text", "index": 27, "name": "via_channel", "comment": null}, "via_source_from_id": {"type": "integer", "index": 28, "name": "via_source_from_id", "comment": null}, "via_source_from_title": {"type": "integer", "index": 29, "name": "via_source_from_title", "comment": null}, "via_source_rel": {"type": "integer", "index": 30, "name": "via_source_rel", "comment": null}, "via_source_to_address": {"type": "text", "index": 31, "name": "via_source_to_address", "comment": null}, "via_source_to_name": {"type": "text", "index": 32, "name": "via_source_to_name", "comment": null}, "merged_ticket_ids": {"type": "text", "index": 33, "name": "merged_ticket_ids", "comment": null}, "via_source_from_address": {"type": "integer", "index": 34, "name": "via_source_from_address", "comment": null}, "followup_ids": {"type": "text", "index": 35, "name": "followup_ids", "comment": null}, "via_followup_source_id": {"type": "integer", "index": 36, "name": "via_followup_source_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.zendesk_source.stg_zendesk__ticket_tmp"}, "model.zendesk_source.stg_zendesk__time_zone": {"metadata": {"type": "BASE TABLE", "schema": "zendesk_integration_tests_61_zendesk_dev", "name": "stg_zendesk__time_zone", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"standard_offset": {"type": "text", "index": 1, "name": "standard_offset", "comment": null}, "time_zone": {"type": "text", "index": 2, "name": "time_zone", "comment": null}, "standard_offset_minutes": {"type": "integer", "index": 3, "name": "standard_offset_minutes", "comment": null}, "source_relation": {"type": "text", "index": 4, "name": "source_relation", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.zendesk_source.stg_zendesk__time_zone"}, "model.zendesk_source.stg_zendesk__time_zone_tmp": {"metadata": {"type": "VIEW", "schema": "zendesk_integration_tests_61_zendesk_dev", "name": "stg_zendesk__time_zone_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"time_zone": {"type": "text", "index": 1, "name": "time_zone", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 2, "name": "_fivetran_synced", "comment": null}, "standard_offset": {"type": "text", "index": 3, "name": "standard_offset", "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.zendesk_source.stg_zendesk__time_zone_tmp"}, "model.zendesk_source.stg_zendesk__user": {"metadata": {"type": "BASE TABLE", "schema": "zendesk_integration_tests_61_zendesk_dev", "name": "stg_zendesk__user", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"user_id": {"type": "bigint", "index": 1, "name": "user_id", "comment": null}, "external_id": {"type": "bigint", "index": 2, "name": "external_id", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 4, "name": "_fivetran_deleted", "comment": null}, "last_login_at": {"type": "timestamp without time zone", "index": 5, "name": "last_login_at", "comment": null}, "created_at": {"type": "timestamp without time zone", "index": 6, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp without time zone", "index": 7, "name": "updated_at", "comment": null}, "email": {"type": "text", "index": 8, "name": "email", "comment": null}, "name": {"type": "text", "index": 9, "name": "name", "comment": null}, "organization_id": {"type": "bigint", "index": 10, "name": "organization_id", "comment": null}, "phone": {"type": "integer", "index": 11, "name": "phone", "comment": null}, "role": {"type": "text", "index": 12, "name": "role", "comment": null}, "ticket_restriction": {"type": "text", "index": 13, "name": "ticket_restriction", "comment": null}, "time_zone": {"type": "text", "index": 14, "name": "time_zone", "comment": null}, "locale": {"type": "text", "index": 15, "name": "locale", "comment": null}, "is_active": {"type": "boolean", "index": 16, "name": "is_active", "comment": null}, "is_suspended": {"type": "boolean", "index": 17, "name": "is_suspended", "comment": null}, "source_relation": {"type": "text", "index": 18, "name": "source_relation", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.zendesk_source.stg_zendesk__user"}, "model.zendesk_source.stg_zendesk__user_tag": {"metadata": {"type": "BASE TABLE", "schema": "zendesk_integration_tests_61_zendesk_dev", "name": "stg_zendesk__user_tag", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"user_id": {"type": "bigint", "index": 1, "name": "user_id", "comment": null}, "tags": {"type": "text", "index": 2, "name": "tags", "comment": null}, "source_relation": {"type": "text", "index": 3, "name": "source_relation", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.zendesk_source.stg_zendesk__user_tag"}, "model.zendesk_source.stg_zendesk__user_tag_tmp": {"metadata": {"type": "VIEW", "schema": "zendesk_integration_tests_61_zendesk_dev", "name": "stg_zendesk__user_tag_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"tag": {"type": "text", "index": 1, "name": "tag", "comment": null}, "user_id": {"type": "bigint", "index": 2, "name": "user_id", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "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.zendesk_source.stg_zendesk__user_tag_tmp"}, "model.zendesk_source.stg_zendesk__user_tmp": {"metadata": {"type": "VIEW", "schema": "zendesk_integration_tests_61_zendesk_dev", "name": "stg_zendesk__user_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "bigint", "index": 1, "name": "id", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 2, "name": "_fivetran_synced", "comment": null}, "active": {"type": "boolean", "index": 3, "name": "active", "comment": null}, "alias": {"type": "integer", "index": 4, "name": "alias", "comment": null}, "authenticity_token": {"type": "integer", "index": 5, "name": "authenticity_token", "comment": null}, "chat_only": {"type": "boolean", "index": 6, "name": "chat_only", "comment": null}, "created_at": {"type": "timestamp without time zone", "index": 7, "name": "created_at", "comment": null}, "details": {"type": "integer", "index": 8, "name": "details", "comment": null}, "email": {"type": "text", "index": 9, "name": "email", "comment": null}, "external_id": {"type": "bigint", "index": 10, "name": "external_id", "comment": null}, "last_login_at": {"type": "timestamp without time zone", "index": 11, "name": "last_login_at", "comment": null}, "locale": {"type": "text", "index": 12, "name": "locale", "comment": null}, "locale_id": {"type": "bigint", "index": 13, "name": "locale_id", "comment": null}, "moderator": {"type": "boolean", "index": 14, "name": "moderator", "comment": null}, "name": {"type": "text", "index": 15, "name": "name", "comment": null}, "notes": {"type": "integer", "index": 16, "name": "notes", "comment": null}, "only_private_comments": {"type": "boolean", "index": 17, "name": "only_private_comments", "comment": null}, "organization_id": {"type": "bigint", "index": 18, "name": "organization_id", "comment": null}, "phone": {"type": "integer", "index": 19, "name": "phone", "comment": null}, "remote_photo_url": {"type": "integer", "index": 20, "name": "remote_photo_url", "comment": null}, "restricted_agent": {"type": "boolean", "index": 21, "name": "restricted_agent", "comment": null}, "role": {"type": "text", "index": 22, "name": "role", "comment": null}, "shared": {"type": "boolean", "index": 23, "name": "shared", "comment": null}, "shared_agent": {"type": "boolean", "index": 24, "name": "shared_agent", "comment": null}, "signature": {"type": "integer", "index": 25, "name": "signature", "comment": null}, "suspended": {"type": "boolean", "index": 26, "name": "suspended", "comment": null}, "ticket_restriction": {"type": "text", "index": 27, "name": "ticket_restriction", "comment": null}, "time_zone": {"type": "text", "index": 28, "name": "time_zone", "comment": null}, "two_factor_auth_enabled": {"type": "boolean", "index": 29, "name": "two_factor_auth_enabled", "comment": null}, "updated_at": {"type": "timestamp without time zone", "index": 30, "name": "updated_at", "comment": null}, "url": {"type": "text", "index": 31, "name": "url", "comment": null}, "verified": {"type": "boolean", "index": 32, "name": "verified", "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.zendesk_source.stg_zendesk__user_tmp"}, "model.zendesk.zendesk__document": {"metadata": {"type": "BASE TABLE", "schema": "zendesk_integration_tests_61_zendesk_dev", "name": "zendesk__document", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"source_relation": {"type": "text", "index": 1, "name": "source_relation", "comment": null}, "document_id": {"type": "text", "index": 2, "name": "document_id", "comment": null}, "chunk_index": {"type": "integer", "index": 3, "name": "chunk_index", "comment": null}, "chunk_tokens_approximate": {"type": "bigint", "index": 4, "name": "chunk_tokens_approximate", "comment": null}, "chunk": {"type": "text", "index": 5, "name": "chunk", "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.zendesk.zendesk__document"}, "model.zendesk.zendesk__sla_policies": {"metadata": {"type": "BASE TABLE", "schema": "zendesk_integration_tests_61_zendesk_dev", "name": "zendesk__sla_policies", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"sla_event_id": {"type": "text", "index": 1, "name": "sla_event_id", "comment": null}, "source_relation": {"type": "text", "index": 2, "name": "source_relation", "comment": null}, "ticket_id": {"type": "bigint", "index": 3, "name": "ticket_id", "comment": null}, "sla_policy_name": {"type": "text", "index": 4, "name": "sla_policy_name", "comment": null}, "metric": {"type": "text", "index": 5, "name": "metric", "comment": null}, "sla_applied_at": {"type": "timestamp without time zone", "index": 6, "name": "sla_applied_at", "comment": null}, "target": {"type": "integer", "index": 7, "name": "target", "comment": null}, "in_business_hours": {"type": "boolean", "index": 8, "name": "in_business_hours", "comment": null}, "sla_breach_at": {"type": "timestamp without time zone", "index": 9, "name": "sla_breach_at", "comment": null}, "sla_elapsed_time": {"type": "double precision", "index": 10, "name": "sla_elapsed_time", "comment": null}, "is_active_sla": {"type": "boolean", "index": 11, "name": "is_active_sla", "comment": null}, "is_sla_breach": {"type": "boolean", "index": 12, "name": "is_sla_breach", "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.zendesk.zendesk__sla_policies"}, "model.zendesk.zendesk__ticket_backlog": {"metadata": {"type": "BASE TABLE", "schema": "zendesk_integration_tests_61_zendesk_dev", "name": "zendesk__ticket_backlog", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"source_relation": {"type": "text", "index": 1, "name": "source_relation", "comment": null}, "date_day": {"type": "date", "index": 2, "name": "date_day", "comment": null}, "ticket_id": {"type": "bigint", "index": 3, "name": "ticket_id", "comment": null}, "status": {"type": "text", "index": 4, "name": "status", "comment": null}, "created_channel": {"type": "text", "index": 5, "name": "created_channel", "comment": null}, "assignee_name": {"type": "text", "index": 6, "name": "assignee_name", "comment": null}, "priority": {"type": "text", "index": 7, "name": "priority", "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.zendesk.zendesk__ticket_backlog"}, "model.zendesk.zendesk__ticket_enriched": {"metadata": {"type": "BASE TABLE", "schema": "zendesk_integration_tests_61_zendesk_dev", "name": "zendesk__ticket_enriched", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"ticket_id": {"type": "bigint", "index": 1, "name": "ticket_id", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 2, "name": "_fivetran_synced", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 3, "name": "_fivetran_deleted", "comment": null}, "assignee_id": {"type": "bigint", "index": 4, "name": "assignee_id", "comment": null}, "brand_id": {"type": "bigint", "index": 5, "name": "brand_id", "comment": null}, "created_at": {"type": "timestamp without time zone", "index": 6, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp without time zone", "index": 7, "name": "updated_at", "comment": null}, "description": {"type": "text", "index": 8, "name": "description", "comment": null}, "due_at": {"type": "timestamp without time zone", "index": 9, "name": "due_at", "comment": null}, "group_id": {"type": "bigint", "index": 10, "name": "group_id", "comment": null}, "external_id": {"type": "bigint", "index": 11, "name": "external_id", "comment": null}, "is_public": {"type": "boolean", "index": 12, "name": "is_public", "comment": null}, "organization_id": {"type": "bigint", "index": 13, "name": "organization_id", "comment": null}, "priority": {"type": "text", "index": 14, "name": "priority", "comment": null}, "recipient": {"type": "text", "index": 15, "name": "recipient", "comment": null}, "requester_id": {"type": "bigint", "index": 16, "name": "requester_id", "comment": null}, "status": {"type": "text", "index": 17, "name": "status", "comment": null}, "subject": {"type": "text", "index": 18, "name": "subject", "comment": null}, "problem_id": {"type": "bigint", "index": 19, "name": "problem_id", "comment": null}, "submitter_id": {"type": "bigint", "index": 20, "name": "submitter_id", "comment": null}, "ticket_form_id": {"type": "bigint", "index": 21, "name": "ticket_form_id", "comment": null}, "type": {"type": "text", "index": 22, "name": "type", "comment": null}, "url": {"type": "text", "index": 23, "name": "url", "comment": null}, "created_channel": {"type": "text", "index": 24, "name": "created_channel", "comment": null}, "source_from_id": {"type": "integer", "index": 25, "name": "source_from_id", "comment": null}, "source_from_title": {"type": "integer", "index": 26, "name": "source_from_title", "comment": null}, "source_rel": {"type": "integer", "index": 27, "name": "source_rel", "comment": null}, "source_to_address": {"type": "text", "index": 28, "name": "source_to_address", "comment": null}, "source_to_name": {"type": "text", "index": 29, "name": "source_to_name", "comment": null}, "source_relation": {"type": "text", "index": 30, "name": "source_relation", "comment": null}, "is_incident": {"type": "boolean", "index": 31, "name": "is_incident", "comment": null}, "ticket_brand_name": {"type": "text", "index": 32, "name": "ticket_brand_name", "comment": null}, "ticket_tags": {"type": "text", "index": 33, "name": "ticket_tags", "comment": null}, "ticket_form_name": {"type": "text", "index": 34, "name": "ticket_form_name", "comment": null}, "ticket_total_satisfaction_scores": {"type": "bigint", "index": 35, "name": "ticket_total_satisfaction_scores", "comment": null}, "ticket_first_satisfaction_score": {"type": "text", "index": 36, "name": "ticket_first_satisfaction_score", "comment": null}, "ticket_satisfaction_score": {"type": "text", "index": 37, "name": "ticket_satisfaction_score", "comment": null}, "ticket_satisfaction_comment": {"type": "text", "index": 38, "name": "ticket_satisfaction_comment", "comment": null}, "ticket_satisfaction_reason": {"type": "text", "index": 39, "name": "ticket_satisfaction_reason", "comment": null}, "is_good_to_bad_satisfaction_score": {"type": "boolean", "index": 40, "name": "is_good_to_bad_satisfaction_score", "comment": null}, "is_bad_to_good_satisfaction_score": {"type": "boolean", "index": 41, "name": "is_bad_to_good_satisfaction_score", "comment": null}, "ticket_organization_domain_names": {"type": "text", "index": 42, "name": "ticket_organization_domain_names", "comment": null}, "requester_organization_domain_names": {"type": "text", "index": 43, "name": "requester_organization_domain_names", "comment": null}, "requester_external_id": {"type": "bigint", "index": 44, "name": "requester_external_id", "comment": null}, "requester_created_at": {"type": "timestamp without time zone", "index": 45, "name": "requester_created_at", "comment": null}, "requester_updated_at": {"type": "timestamp without time zone", "index": 46, "name": "requester_updated_at", "comment": null}, "requester_role": {"type": "text", "index": 47, "name": "requester_role", "comment": null}, "requester_email": {"type": "text", "index": 48, "name": "requester_email", "comment": null}, "requester_name": {"type": "text", "index": 49, "name": "requester_name", "comment": null}, "is_requester_active": {"type": "boolean", "index": 50, "name": "is_requester_active", "comment": null}, "requester_locale": {"type": "text", "index": 51, "name": "requester_locale", "comment": null}, "requester_time_zone": {"type": "text", "index": 52, "name": "requester_time_zone", "comment": null}, "requester_ticket_update_count": {"type": "bigint", "index": 53, "name": "requester_ticket_update_count", "comment": null}, "requester_ticket_last_update_at": {"type": "timestamp without time zone", "index": 54, "name": "requester_ticket_last_update_at", "comment": null}, "requester_last_login_at": {"type": "timestamp without time zone", "index": 55, "name": "requester_last_login_at", "comment": null}, "requester_organization_id": {"type": "bigint", "index": 56, "name": "requester_organization_id", "comment": null}, "requester_organization_name": {"type": "text", "index": 57, "name": "requester_organization_name", "comment": null}, "requester_organization_tags": {"type": "text", "index": 58, "name": "requester_organization_tags", "comment": null}, "requester_organization_external_id": {"type": "integer", "index": 59, "name": "requester_organization_external_id", "comment": null}, "requester_organization_created_at": {"type": "timestamp without time zone", "index": 60, "name": "requester_organization_created_at", "comment": null}, "requester_organization_updated_at": {"type": "timestamp without time zone", "index": 61, "name": "requester_organization_updated_at", "comment": null}, "submitter_external_id": {"type": "bigint", "index": 62, "name": "submitter_external_id", "comment": null}, "submitter_role": {"type": "text", "index": 63, "name": "submitter_role", "comment": null}, "is_agent_submitted": {"type": "boolean", "index": 64, "name": "is_agent_submitted", "comment": null}, "submitter_email": {"type": "text", "index": 65, "name": "submitter_email", "comment": null}, "submitter_name": {"type": "text", "index": 66, "name": "submitter_name", "comment": null}, "is_submitter_active": {"type": "boolean", "index": 67, "name": "is_submitter_active", "comment": null}, "submitter_locale": {"type": "text", "index": 68, "name": "submitter_locale", "comment": null}, "submitter_time_zone": {"type": "text", "index": 69, "name": "submitter_time_zone", "comment": null}, "assignee_external_id": {"type": "bigint", "index": 70, "name": "assignee_external_id", "comment": null}, "assignee_role": {"type": "text", "index": 71, "name": "assignee_role", "comment": null}, "assignee_email": {"type": "text", "index": 72, "name": "assignee_email", "comment": null}, "assignee_name": {"type": "text", "index": 73, "name": "assignee_name", "comment": null}, "is_assignee_active": {"type": "boolean", "index": 74, "name": "is_assignee_active", "comment": null}, "assignee_locale": {"type": "text", "index": 75, "name": "assignee_locale", "comment": null}, "assignee_time_zone": {"type": "text", "index": 76, "name": "assignee_time_zone", "comment": null}, "assignee_ticket_update_count": {"type": "bigint", "index": 77, "name": "assignee_ticket_update_count", "comment": null}, "assignee_ticket_last_update_at": {"type": "timestamp without time zone", "index": 78, "name": "assignee_ticket_last_update_at", "comment": null}, "assignee_last_login_at": {"type": "timestamp without time zone", "index": 79, "name": "assignee_last_login_at", "comment": null}, "group_name": {"type": "text", "index": 80, "name": "group_name", "comment": null}, "organization_name": {"type": "text", "index": 81, "name": "organization_name", "comment": null}, "requester_tag": {"type": "text", "index": 82, "name": "requester_tag", "comment": null}, "submitter_tag": {"type": "text", "index": 83, "name": "submitter_tag", "comment": null}, "assignee_tag": {"type": "text", "index": 84, "name": "assignee_tag", "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.zendesk.zendesk__ticket_enriched"}, "model.zendesk.zendesk__ticket_field_history": {"metadata": {"type": "BASE TABLE", "schema": "zendesk_integration_tests_61_zendesk_dev", "name": "zendesk__ticket_field_history", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"ticket_day_id": {"type": "text", "index": 1, "name": "ticket_day_id", "comment": null}, "source_relation": {"type": "text", "index": 2, "name": "source_relation", "comment": null}, "date_day": {"type": "date", "index": 3, "name": "date_day", "comment": null}, "ticket_id": {"type": "bigint", "index": 4, "name": "ticket_id", "comment": null}, "status": {"type": "text", "index": 5, "name": "status", "comment": null}, "assignee_id": {"type": "text", "index": 6, "name": "assignee_id", "comment": null}, "priority": {"type": "text", "index": 7, "name": "priority", "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.zendesk.zendesk__ticket_field_history"}, "model.zendesk.zendesk__ticket_metrics": {"metadata": {"type": "BASE TABLE", "schema": "zendesk_integration_tests_61_zendesk_dev", "name": "zendesk__ticket_metrics", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"ticket_id": {"type": "bigint", "index": 1, "name": "ticket_id", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 2, "name": "_fivetran_synced", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 3, "name": "_fivetran_deleted", "comment": null}, "assignee_id": {"type": "bigint", "index": 4, "name": "assignee_id", "comment": null}, "brand_id": {"type": "bigint", "index": 5, "name": "brand_id", "comment": null}, "created_at": {"type": "timestamp without time zone", "index": 6, "name": "created_at", "comment": null}, "updated_at": {"type": "timestamp without time zone", "index": 7, "name": "updated_at", "comment": null}, "description": {"type": "text", "index": 8, "name": "description", "comment": null}, "due_at": {"type": "timestamp without time zone", "index": 9, "name": "due_at", "comment": null}, "group_id": {"type": "bigint", "index": 10, "name": "group_id", "comment": null}, "external_id": {"type": "bigint", "index": 11, "name": "external_id", "comment": null}, "is_public": {"type": "boolean", "index": 12, "name": "is_public", "comment": null}, "organization_id": {"type": "bigint", "index": 13, "name": "organization_id", "comment": null}, "priority": {"type": "text", "index": 14, "name": "priority", "comment": null}, "recipient": {"type": "text", "index": 15, "name": "recipient", "comment": null}, "requester_id": {"type": "bigint", "index": 16, "name": "requester_id", "comment": null}, "status": {"type": "text", "index": 17, "name": "status", "comment": null}, "subject": {"type": "text", "index": 18, "name": "subject", "comment": null}, "problem_id": {"type": "bigint", "index": 19, "name": "problem_id", "comment": null}, "submitter_id": {"type": "bigint", "index": 20, "name": "submitter_id", "comment": null}, "ticket_form_id": {"type": "bigint", "index": 21, "name": "ticket_form_id", "comment": null}, "type": {"type": "text", "index": 22, "name": "type", "comment": null}, "url": {"type": "text", "index": 23, "name": "url", "comment": null}, "created_channel": {"type": "text", "index": 24, "name": "created_channel", "comment": null}, "source_from_id": {"type": "integer", "index": 25, "name": "source_from_id", "comment": null}, "source_from_title": {"type": "integer", "index": 26, "name": "source_from_title", "comment": null}, "source_rel": {"type": "integer", "index": 27, "name": "source_rel", "comment": null}, "source_to_address": {"type": "text", "index": 28, "name": "source_to_address", "comment": null}, "source_to_name": {"type": "text", "index": 29, "name": "source_to_name", "comment": null}, "source_relation": {"type": "text", "index": 30, "name": "source_relation", "comment": null}, "is_incident": {"type": "boolean", "index": 31, "name": "is_incident", "comment": null}, "ticket_brand_name": {"type": "text", "index": 32, "name": "ticket_brand_name", "comment": null}, "ticket_tags": {"type": "text", "index": 33, "name": "ticket_tags", "comment": null}, "ticket_form_name": {"type": "text", "index": 34, "name": "ticket_form_name", "comment": null}, "ticket_total_satisfaction_scores": {"type": "bigint", "index": 35, "name": "ticket_total_satisfaction_scores", "comment": null}, "ticket_first_satisfaction_score": {"type": "text", "index": 36, "name": "ticket_first_satisfaction_score", "comment": null}, "ticket_satisfaction_score": {"type": "text", "index": 37, "name": "ticket_satisfaction_score", "comment": null}, "ticket_satisfaction_comment": {"type": "text", "index": 38, "name": "ticket_satisfaction_comment", "comment": null}, "ticket_satisfaction_reason": {"type": "text", "index": 39, "name": "ticket_satisfaction_reason", "comment": null}, "is_good_to_bad_satisfaction_score": {"type": "boolean", "index": 40, "name": "is_good_to_bad_satisfaction_score", "comment": null}, "is_bad_to_good_satisfaction_score": {"type": "boolean", "index": 41, "name": "is_bad_to_good_satisfaction_score", "comment": null}, "ticket_organization_domain_names": {"type": "text", "index": 42, "name": "ticket_organization_domain_names", "comment": null}, "requester_organization_domain_names": {"type": "text", "index": 43, "name": "requester_organization_domain_names", "comment": null}, "requester_external_id": {"type": "bigint", "index": 44, "name": "requester_external_id", "comment": null}, "requester_created_at": {"type": "timestamp without time zone", "index": 45, "name": "requester_created_at", "comment": null}, "requester_updated_at": {"type": "timestamp without time zone", "index": 46, "name": "requester_updated_at", "comment": null}, "requester_role": {"type": "text", "index": 47, "name": "requester_role", "comment": null}, "requester_email": {"type": "text", "index": 48, "name": "requester_email", "comment": null}, "requester_name": {"type": "text", "index": 49, "name": "requester_name", "comment": null}, "is_requester_active": {"type": "boolean", "index": 50, "name": "is_requester_active", "comment": null}, "requester_locale": {"type": "text", "index": 51, "name": "requester_locale", "comment": null}, "requester_time_zone": {"type": "text", "index": 52, "name": "requester_time_zone", "comment": null}, "requester_ticket_update_count": {"type": "bigint", "index": 53, "name": "requester_ticket_update_count", "comment": null}, "requester_ticket_last_update_at": {"type": "timestamp without time zone", "index": 54, "name": "requester_ticket_last_update_at", "comment": null}, "requester_last_login_at": {"type": "timestamp without time zone", "index": 55, "name": "requester_last_login_at", "comment": null}, "requester_organization_id": {"type": "bigint", "index": 56, "name": "requester_organization_id", "comment": null}, "requester_organization_name": {"type": "text", "index": 57, "name": "requester_organization_name", "comment": null}, "requester_organization_tags": {"type": "text", "index": 58, "name": "requester_organization_tags", "comment": null}, "requester_organization_external_id": {"type": "integer", "index": 59, "name": "requester_organization_external_id", "comment": null}, "requester_organization_created_at": {"type": "timestamp without time zone", "index": 60, "name": "requester_organization_created_at", "comment": null}, "requester_organization_updated_at": {"type": "timestamp without time zone", "index": 61, "name": "requester_organization_updated_at", "comment": null}, "submitter_external_id": {"type": "bigint", "index": 62, "name": "submitter_external_id", "comment": null}, "submitter_role": {"type": "text", "index": 63, "name": "submitter_role", "comment": null}, "is_agent_submitted": {"type": "boolean", "index": 64, "name": "is_agent_submitted", "comment": null}, "submitter_email": {"type": "text", "index": 65, "name": "submitter_email", "comment": null}, "submitter_name": {"type": "text", "index": 66, "name": "submitter_name", "comment": null}, "is_submitter_active": {"type": "boolean", "index": 67, "name": "is_submitter_active", "comment": null}, "submitter_locale": {"type": "text", "index": 68, "name": "submitter_locale", "comment": null}, "submitter_time_zone": {"type": "text", "index": 69, "name": "submitter_time_zone", "comment": null}, "assignee_external_id": {"type": "bigint", "index": 70, "name": "assignee_external_id", "comment": null}, "assignee_role": {"type": "text", "index": 71, "name": "assignee_role", "comment": null}, "assignee_email": {"type": "text", "index": 72, "name": "assignee_email", "comment": null}, "assignee_name": {"type": "text", "index": 73, "name": "assignee_name", "comment": null}, "is_assignee_active": {"type": "boolean", "index": 74, "name": "is_assignee_active", "comment": null}, "assignee_locale": {"type": "text", "index": 75, "name": "assignee_locale", "comment": null}, "assignee_time_zone": {"type": "text", "index": 76, "name": "assignee_time_zone", "comment": null}, "assignee_ticket_update_count": {"type": "bigint", "index": 77, "name": "assignee_ticket_update_count", "comment": null}, "assignee_ticket_last_update_at": {"type": "timestamp without time zone", "index": 78, "name": "assignee_ticket_last_update_at", "comment": null}, "assignee_last_login_at": {"type": "timestamp without time zone", "index": 79, "name": "assignee_last_login_at", "comment": null}, "group_name": {"type": "text", "index": 80, "name": "group_name", "comment": null}, "organization_name": {"type": "text", "index": 81, "name": "organization_name", "comment": null}, "requester_tag": {"type": "text", "index": 82, "name": "requester_tag", "comment": null}, "submitter_tag": {"type": "text", "index": 83, "name": "submitter_tag", "comment": null}, "assignee_tag": {"type": "text", "index": 84, "name": "assignee_tag", "comment": null}, "first_reply_time_calendar_minutes": {"type": "double precision", "index": 85, "name": "first_reply_time_calendar_minutes", "comment": null}, "total_reply_time_calendar_minutes": {"type": "double precision", "index": 86, "name": "total_reply_time_calendar_minutes", "comment": null}, "count_agent_comments": {"type": "bigint", "index": 87, "name": "count_agent_comments", "comment": null}, "count_public_agent_comments": {"type": "bigint", "index": 88, "name": "count_public_agent_comments", "comment": null}, "count_end_user_comments": {"type": "bigint", "index": 89, "name": "count_end_user_comments", "comment": null}, "count_public_comments": {"type": "bigint", "index": 90, "name": "count_public_comments", "comment": null}, "count_internal_comments": {"type": "bigint", "index": 91, "name": "count_internal_comments", "comment": null}, "total_comments": {"type": "bigint", "index": 92, "name": "total_comments", "comment": null}, "count_ticket_handoffs": {"type": "bigint", "index": 93, "name": "count_ticket_handoffs", "comment": null}, "ticket_last_comment_date": {"type": "timestamp without time zone", "index": 94, "name": "ticket_last_comment_date", "comment": null}, "unique_assignee_count": {"type": "bigint", "index": 95, "name": "unique_assignee_count", "comment": null}, "assignee_stations_count": {"type": "bigint", "index": 96, "name": "assignee_stations_count", "comment": null}, "group_stations_count": {"type": "bigint", "index": 97, "name": "group_stations_count", "comment": null}, "first_assignee_id": {"type": "text", "index": 98, "name": "first_assignee_id", "comment": null}, "last_assignee_id": {"type": "text", "index": 99, "name": "last_assignee_id", "comment": null}, "first_agent_assignment_date": {"type": "timestamp without time zone", "index": 100, "name": "first_agent_assignment_date", "comment": null}, "last_agent_assignment_date": {"type": "timestamp without time zone", "index": 101, "name": "last_agent_assignment_date", "comment": null}, "first_solved_at": {"type": "timestamp without time zone", "index": 102, "name": "first_solved_at", "comment": null}, "last_solved_at": {"type": "timestamp without time zone", "index": 103, "name": "last_solved_at", "comment": null}, "first_assignment_to_resolution_calendar_minutes": {"type": "double precision", "index": 104, "name": "first_assignment_to_resolution_calendar_minutes", "comment": null}, "last_assignment_to_resolution_calendar_minutes": {"type": "double precision", "index": 105, "name": "last_assignment_to_resolution_calendar_minutes", "comment": null}, "ticket_unassigned_duration_calendar_minutes": {"type": "double precision", "index": 106, "name": "ticket_unassigned_duration_calendar_minutes", "comment": null}, "first_resolution_calendar_minutes": {"type": "double precision", "index": 107, "name": "first_resolution_calendar_minutes", "comment": null}, "final_resolution_calendar_minutes": {"type": "double precision", "index": 108, "name": "final_resolution_calendar_minutes", "comment": null}, "count_resolutions": {"type": "bigint", "index": 109, "name": "count_resolutions", "comment": null}, "count_reopens": {"type": "bigint", "index": 110, "name": "count_reopens", "comment": null}, "ticket_deleted_count": {"type": "bigint", "index": 111, "name": "ticket_deleted_count", "comment": null}, "total_ticket_recoveries": {"type": "bigint", "index": 112, "name": "total_ticket_recoveries", "comment": null}, "last_status_assignment_date": {"type": "timestamp without time zone", "index": 113, "name": "last_status_assignment_date", "comment": null}, "new_status_duration_in_calendar_minutes": {"type": "double precision", "index": 114, "name": "new_status_duration_in_calendar_minutes", "comment": null}, "open_status_duration_in_calendar_minutes": {"type": "double precision", "index": 115, "name": "open_status_duration_in_calendar_minutes", "comment": null}, "agent_wait_time_in_calendar_minutes": {"type": "double precision", "index": 116, "name": "agent_wait_time_in_calendar_minutes", "comment": null}, "requester_wait_time_in_calendar_minutes": {"type": "double precision", "index": 117, "name": "requester_wait_time_in_calendar_minutes", "comment": null}, "solve_time_in_calendar_minutes": {"type": "double precision", "index": 118, "name": "solve_time_in_calendar_minutes", "comment": null}, "agent_work_time_in_calendar_minutes": {"type": "double precision", "index": 119, "name": "agent_work_time_in_calendar_minutes", "comment": null}, "on_hold_time_in_calendar_minutes": {"type": "double precision", "index": 120, "name": "on_hold_time_in_calendar_minutes", "comment": null}, "total_agent_replies": {"type": "bigint", "index": 121, "name": "total_agent_replies", "comment": null}, "requester_last_login_age_minutes": {"type": "double precision", "index": 122, "name": "requester_last_login_age_minutes", "comment": null}, "assignee_last_login_age_minutes": {"type": "double precision", "index": 123, "name": "assignee_last_login_age_minutes", "comment": null}, "unsolved_ticket_age_minutes": {"type": "double precision", "index": 124, "name": "unsolved_ticket_age_minutes", "comment": null}, "unsolved_ticket_age_since_update_minutes": {"type": "double precision", "index": 125, "name": "unsolved_ticket_age_since_update_minutes", "comment": null}, "is_one_touch_resolution": {"type": "boolean", "index": 126, "name": "is_one_touch_resolution", "comment": null}, "is_two_touch_resolution": {"type": "boolean", "index": 127, "name": "is_two_touch_resolution", "comment": null}, "is_multi_touch_resolution": {"type": "boolean", "index": 128, "name": "is_multi_touch_resolution", "comment": null}, "first_resolution_business_minutes": {"type": "numeric", "index": 129, "name": "first_resolution_business_minutes", "comment": null}, "full_resolution_business_minutes": {"type": "numeric", "index": 130, "name": "full_resolution_business_minutes", "comment": null}, "first_reply_time_business_minutes": {"type": "numeric", "index": 131, "name": "first_reply_time_business_minutes", "comment": null}, "agent_wait_time_in_business_minutes": {"type": "numeric", "index": 132, "name": "agent_wait_time_in_business_minutes", "comment": null}, "requester_wait_time_in_business_minutes": {"type": "numeric", "index": 133, "name": "requester_wait_time_in_business_minutes", "comment": null}, "solve_time_in_business_minutes": {"type": "numeric", "index": 134, "name": "solve_time_in_business_minutes", "comment": null}, "agent_work_time_in_business_minutes": {"type": "numeric", "index": 135, "name": "agent_work_time_in_business_minutes", "comment": null}, "on_hold_time_in_business_minutes": {"type": "numeric", "index": 136, "name": "on_hold_time_in_business_minutes", "comment": null}, "new_status_duration_in_business_minutes": {"type": "numeric", "index": 137, "name": "new_status_duration_in_business_minutes", "comment": null}, "open_status_duration_in_business_minutes": {"type": "numeric", "index": 138, "name": "open_status_duration_in_business_minutes", "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.zendesk.zendesk__ticket_metrics"}, "model.zendesk.zendesk__ticket_summary": {"metadata": {"type": "BASE TABLE", "schema": "zendesk_integration_tests_61_zendesk_dev", "name": "zendesk__ticket_summary", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"source_relation": {"type": "text", "index": 1, "name": "source_relation", "comment": null}, "user_count": {"type": "bigint", "index": 2, "name": "user_count", "comment": null}, "active_agent_count": {"type": "bigint", "index": 3, "name": "active_agent_count", "comment": null}, "deleted_user_count": {"type": "bigint", "index": 4, "name": "deleted_user_count", "comment": null}, "end_user_count": {"type": "bigint", "index": 5, "name": "end_user_count", "comment": null}, "suspended_user_count": {"type": "bigint", "index": 6, "name": "suspended_user_count", "comment": null}, "new_ticket_count": {"type": "bigint", "index": 7, "name": "new_ticket_count", "comment": null}, "on_hold_ticket_count": {"type": "bigint", "index": 8, "name": "on_hold_ticket_count", "comment": null}, "open_ticket_count": {"type": "bigint", "index": 9, "name": "open_ticket_count", "comment": null}, "pending_ticket_count": {"type": "bigint", "index": 10, "name": "pending_ticket_count", "comment": null}, "solved_ticket_count": {"type": "bigint", "index": 11, "name": "solved_ticket_count", "comment": null}, "problem_ticket_count": {"type": "bigint", "index": 12, "name": "problem_ticket_count", "comment": null}, "assigned_ticket_count": {"type": "bigint", "index": 13, "name": "assigned_ticket_count", "comment": null}, "reassigned_ticket_count": {"type": "bigint", "index": 14, "name": "reassigned_ticket_count", "comment": null}, "reopened_ticket_count": {"type": "bigint", "index": 15, "name": "reopened_ticket_count", "comment": null}, "surveyed_satisfaction_ticket_count": {"type": "bigint", "index": 16, "name": "surveyed_satisfaction_ticket_count", "comment": null}, "unassigned_unsolved_ticket_count": {"type": "bigint", "index": 17, "name": "unassigned_unsolved_ticket_count", "comment": null}, "unreplied_ticket_count": {"type": "bigint", "index": 18, "name": "unreplied_ticket_count", "comment": null}, "unreplied_unsolved_ticket_count": {"type": "bigint", "index": 19, "name": "unreplied_unsolved_ticket_count", "comment": null}, "unsolved_ticket_count": {"type": "bigint", "index": 20, "name": "unsolved_ticket_count", "comment": null}, "recovered_ticket_count": {"type": "bigint", "index": 21, "name": "recovered_ticket_count", "comment": null}, "deleted_ticket_count": {"type": "bigint", "index": 22, "name": "deleted_ticket_count", "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.zendesk.zendesk__ticket_summary"}}, "sources": {"source.zendesk_source.zendesk.audit_log": {"metadata": {"type": "BASE TABLE", "schema": "zendesk_integration_tests_61", "name": "audit_log_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "integer", "index": 1, "name": "id", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 2, "name": "_fivetran_synced", "comment": null}, "action": {"type": "text", "index": 3, "name": "action", "comment": null}, "actor_id": {"type": "integer", "index": 4, "name": "actor_id", "comment": null}, "change_description": {"type": "text", "index": 5, "name": "change_description", "comment": null}, "created_at": {"type": "text", "index": 6, "name": "created_at", "comment": null}, "source_id": {"type": "integer", "index": 7, "name": "source_id", "comment": null}, "source_label": {"type": "text", "index": 8, "name": "source_label", "comment": null}, "source_type": {"type": "text", "index": 9, "name": "source_type", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.zendesk_source.zendesk.audit_log"}, "source.zendesk_source.zendesk.brand": {"metadata": {"type": "BASE TABLE", "schema": "zendesk_integration_tests_61", "name": "brand_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "bigint", "index": 1, "name": "id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 2, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "active": {"type": "boolean", "index": 4, "name": "active", "comment": null}, "brand_url": {"type": "text", "index": 5, "name": "brand_url", "comment": null}, "default": {"type": "boolean", "index": 6, "name": "default", "comment": null}, "has_help_center": {"type": "boolean", "index": 7, "name": "has_help_center", "comment": null}, "help_center_state": {"type": "text", "index": 8, "name": "help_center_state", "comment": null}, "logo_content_type": {"type": "text", "index": 9, "name": "logo_content_type", "comment": null}, "logo_content_url": {"type": "text", "index": 10, "name": "logo_content_url", "comment": null}, "logo_deleted": {"type": "boolean", "index": 11, "name": "logo_deleted", "comment": null}, "logo_file_name": {"type": "text", "index": 12, "name": "logo_file_name", "comment": null}, "logo_height": {"type": "integer", "index": 13, "name": "logo_height", "comment": null}, "logo_id": {"type": "integer", "index": 14, "name": "logo_id", "comment": null}, "logo_inline": {"type": "boolean", "index": 15, "name": "logo_inline", "comment": null}, "logo_mapped_content_url": {"type": "text", "index": 16, "name": "logo_mapped_content_url", "comment": null}, "logo_size": {"type": "integer", "index": 17, "name": "logo_size", "comment": null}, "logo_url": {"type": "text", "index": 18, "name": "logo_url", "comment": null}, "logo_width": {"type": "integer", "index": 19, "name": "logo_width", "comment": null}, "name": {"type": "text", "index": 20, "name": "name", "comment": null}, "subdomain": {"type": "text", "index": 21, "name": "subdomain", "comment": null}, "url": {"type": "text", "index": 22, "name": "url", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.zendesk_source.zendesk.brand"}, "source.zendesk_source.zendesk.daylight_time": {"metadata": {"type": "BASE TABLE", "schema": "zendesk_integration_tests_61", "name": "daylight_time_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"time_zone": {"type": "text", "index": 1, "name": "time_zone", "comment": null}, "year": {"type": "integer", "index": 2, "name": "year", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "daylight_end_utc": {"type": "timestamp without time zone", "index": 4, "name": "daylight_end_utc", "comment": null}, "daylight_offset": {"type": "integer", "index": 5, "name": "daylight_offset", "comment": null}, "daylight_start_utc": {"type": "timestamp without time zone", "index": 6, "name": "daylight_start_utc", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.zendesk_source.zendesk.daylight_time"}, "source.zendesk_source.zendesk.domain_name": {"metadata": {"type": "BASE TABLE", "schema": "zendesk_integration_tests_61", "name": "domain_name_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"index": {"type": "integer", "index": 1, "name": "index", "comment": null}, "organization_id": {"type": "bigint", "index": 2, "name": "organization_id", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "domain_name": {"type": "text", "index": 4, "name": "domain_name", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.zendesk_source.zendesk.domain_name"}, "source.zendesk_source.zendesk.group": {"metadata": {"type": "BASE TABLE", "schema": "zendesk_integration_tests_61", "name": "group_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "bigint", "index": 1, "name": "id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 2, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "created_at": {"type": "timestamp without time zone", "index": 4, "name": "created_at", "comment": null}, "name": {"type": "text", "index": 5, "name": "name", "comment": null}, "updated_at": {"type": "timestamp without time zone", "index": 6, "name": "updated_at", "comment": null}, "url": {"type": "text", "index": 7, "name": "url", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.zendesk_source.zendesk.group"}, "source.zendesk_source.zendesk.organization": {"metadata": {"type": "BASE TABLE", "schema": "zendesk_integration_tests_61", "name": "organization_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "bigint", "index": 1, "name": "id", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 2, "name": "_fivetran_synced", "comment": null}, "created_at": {"type": "timestamp without time zone", "index": 3, "name": "created_at", "comment": null}, "details": {"type": "integer", "index": 4, "name": "details", "comment": null}, "external_id": {"type": "integer", "index": 5, "name": "external_id", "comment": null}, "group_id": {"type": "integer", "index": 6, "name": "group_id", "comment": null}, "name": {"type": "text", "index": 7, "name": "name", "comment": null}, "notes": {"type": "integer", "index": 8, "name": "notes", "comment": null}, "shared_comments": {"type": "boolean", "index": 9, "name": "shared_comments", "comment": null}, "shared_tickets": {"type": "boolean", "index": 10, "name": "shared_tickets", "comment": null}, "updated_at": {"type": "timestamp without time zone", "index": 11, "name": "updated_at", "comment": null}, "url": {"type": "text", "index": 12, "name": "url", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.zendesk_source.zendesk.organization"}, "source.zendesk_source.zendesk.organization_tag": {"metadata": {"type": "BASE TABLE", "schema": "zendesk_integration_tests_61", "name": "organization_tag_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"organization_id": {"type": "bigint", "index": 1, "name": "organization_id", "comment": null}, "tag": {"type": "text", "index": 2, "name": "tag", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.zendesk_source.zendesk.organization_tag"}, "source.zendesk_source.zendesk.schedule": {"metadata": {"type": "BASE TABLE", "schema": "zendesk_integration_tests_61", "name": "schedule_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"end_time": {"type": "bigint", "index": 1, "name": "end_time", "comment": null}, "id": {"type": "bigint", "index": 2, "name": "id", "comment": null}, "start_time": {"type": "bigint", "index": 3, "name": "start_time", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 4, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 5, "name": "_fivetran_synced", "comment": null}, "end_time_utc": {"type": "bigint", "index": 6, "name": "end_time_utc", "comment": null}, "name": {"type": "text", "index": 7, "name": "name", "comment": null}, "start_time_utc": {"type": "bigint", "index": 8, "name": "start_time_utc", "comment": null}, "time_zone": {"type": "text", "index": 9, "name": "time_zone", "comment": null}, "created_at": {"type": "timestamp without time zone", "index": 10, "name": "created_at", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.zendesk_source.zendesk.schedule"}, "source.zendesk_source.zendesk.schedule_holiday": {"metadata": {"type": "BASE TABLE", "schema": "zendesk_integration_tests_61", "name": "schedule_holiday_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "bigint", "index": 1, "name": "id", "comment": null}, "schedule_id": {"type": "bigint", "index": 2, "name": "schedule_id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 3, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 4, "name": "_fivetran_synced", "comment": null}, "end_date": {"type": "date", "index": 5, "name": "end_date", "comment": null}, "name": {"type": "text", "index": 6, "name": "name", "comment": null}, "start_date": {"type": "date", "index": 7, "name": "start_date", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.zendesk_source.zendesk.schedule_holiday"}, "source.zendesk_source.zendesk.ticket_comment": {"metadata": {"type": "BASE TABLE", "schema": "zendesk_integration_tests_61", "name": "ticket_comment_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "bigint", "index": 1, "name": "id", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 2, "name": "_fivetran_synced", "comment": null}, "body": {"type": "text", "index": 3, "name": "body", "comment": null}, "created": {"type": "timestamp without time zone", "index": 4, "name": "created", "comment": null}, "facebook_comment": {"type": "boolean", "index": 5, "name": "facebook_comment", "comment": null}, "public": {"type": "boolean", "index": 6, "name": "public", "comment": null}, "ticket_id": {"type": "integer", "index": 7, "name": "ticket_id", "comment": null}, "tweet": {"type": "boolean", "index": 8, "name": "tweet", "comment": null}, "user_id": {"type": "bigint", "index": 9, "name": "user_id", "comment": null}, "voice_comment": {"type": "boolean", "index": 10, "name": "voice_comment", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.zendesk_source.zendesk.ticket_comment"}, "source.zendesk_source.zendesk.ticket": {"metadata": {"type": "BASE TABLE", "schema": "zendesk_integration_tests_61", "name": "ticket_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "bigint", "index": 1, "name": "id", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 2, "name": "_fivetran_synced", "comment": null}, "allow_channelback": {"type": "boolean", "index": 3, "name": "allow_channelback", "comment": null}, "assignee_id": {"type": "bigint", "index": 4, "name": "assignee_id", "comment": null}, "brand_id": {"type": "bigint", "index": 5, "name": "brand_id", "comment": null}, "created_at": {"type": "timestamp without time zone", "index": 6, "name": "created_at", "comment": null}, "description": {"type": "text", "index": 7, "name": "description", "comment": null}, "due_at": {"type": "timestamp without time zone", "index": 8, "name": "due_at", "comment": null}, "external_id": {"type": "bigint", "index": 9, "name": "external_id", "comment": null}, "forum_topic_id": {"type": "bigint", "index": 10, "name": "forum_topic_id", "comment": null}, "group_id": {"type": "bigint", "index": 11, "name": "group_id", "comment": null}, "has_incidents": {"type": "boolean", "index": 12, "name": "has_incidents", "comment": null}, "is_public": {"type": "boolean", "index": 13, "name": "is_public", "comment": null}, "organization_id": {"type": "bigint", "index": 14, "name": "organization_id", "comment": null}, "priority": {"type": "text", "index": 15, "name": "priority", "comment": null}, "problem_id": {"type": "bigint", "index": 16, "name": "problem_id", "comment": null}, "recipient": {"type": "text", "index": 17, "name": "recipient", "comment": null}, "requester_id": {"type": "bigint", "index": 18, "name": "requester_id", "comment": null}, "status": {"type": "text", "index": 19, "name": "status", "comment": null}, "subject": {"type": "text", "index": 20, "name": "subject", "comment": null}, "submitter_id": {"type": "bigint", "index": 21, "name": "submitter_id", "comment": null}, "system_client": {"type": "integer", "index": 22, "name": "system_client", "comment": null}, "ticket_form_id": {"type": "bigint", "index": 23, "name": "ticket_form_id", "comment": null}, "type": {"type": "text", "index": 24, "name": "type", "comment": null}, "updated_at": {"type": "timestamp without time zone", "index": 25, "name": "updated_at", "comment": null}, "url": {"type": "text", "index": 26, "name": "url", "comment": null}, "via_channel": {"type": "text", "index": 27, "name": "via_channel", "comment": null}, "via_source_from_id": {"type": "integer", "index": 28, "name": "via_source_from_id", "comment": null}, "via_source_from_title": {"type": "integer", "index": 29, "name": "via_source_from_title", "comment": null}, "via_source_rel": {"type": "integer", "index": 30, "name": "via_source_rel", "comment": null}, "via_source_to_address": {"type": "text", "index": 31, "name": "via_source_to_address", "comment": null}, "via_source_to_name": {"type": "text", "index": 32, "name": "via_source_to_name", "comment": null}, "merged_ticket_ids": {"type": "text", "index": 33, "name": "merged_ticket_ids", "comment": null}, "via_source_from_address": {"type": "integer", "index": 34, "name": "via_source_from_address", "comment": null}, "followup_ids": {"type": "text", "index": 35, "name": "followup_ids", "comment": null}, "via_followup_source_id": {"type": "integer", "index": 36, "name": "via_followup_source_id", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.zendesk_source.zendesk.ticket"}, "source.zendesk_source.zendesk.ticket_field_history": {"metadata": {"type": "BASE TABLE", "schema": "zendesk_integration_tests_61", "name": "ticket_field_history_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"field_name": {"type": "text", "index": 1, "name": "field_name", "comment": null}, "ticket_id": {"type": "bigint", "index": 2, "name": "ticket_id", "comment": null}, "updated": {"type": "timestamp without time zone", "index": 3, "name": "updated", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 4, "name": "_fivetran_synced", "comment": null}, "user_id": {"type": "bigint", "index": 5, "name": "user_id", "comment": null}, "value": {"type": "text", "index": 6, "name": "value", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.zendesk_source.zendesk.ticket_field_history"}, "source.zendesk_source.zendesk.ticket_form_history": {"metadata": {"type": "BASE TABLE", "schema": "zendesk_integration_tests_61", "name": "ticket_form_history_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "bigint", "index": 1, "name": "id", "comment": null}, "updated_at": {"type": "timestamp without time zone", "index": 2, "name": "updated_at", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 3, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 4, "name": "_fivetran_synced", "comment": null}, "active": {"type": "boolean", "index": 5, "name": "active", "comment": null}, "created_at": {"type": "timestamp without time zone", "index": 6, "name": "created_at", "comment": null}, "display_name": {"type": "text", "index": 7, "name": "display_name", "comment": null}, "end_user_visible": {"type": "boolean", "index": 8, "name": "end_user_visible", "comment": null}, "name": {"type": "text", "index": 9, "name": "name", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.zendesk_source.zendesk.ticket_form_history"}, "source.zendesk_source.zendesk.ticket_schedule": {"metadata": {"type": "BASE TABLE", "schema": "zendesk_integration_tests_61", "name": "ticket_schedule_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"created_at": {"type": "timestamp without time zone", "index": 1, "name": "created_at", "comment": null}, "ticket_id": {"type": "bigint", "index": 2, "name": "ticket_id", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "schedule_id": {"type": "bigint", "index": 4, "name": "schedule_id", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.zendesk_source.zendesk.ticket_schedule"}, "source.zendesk_source.zendesk.ticket_tag": {"metadata": {"type": "BASE TABLE", "schema": "zendesk_integration_tests_61", "name": "ticket_tag_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"tag": {"type": "text", "index": 1, "name": "tag", "comment": null}, "ticket_id": {"type": "integer", "index": 2, "name": "ticket_id", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.zendesk_source.zendesk.ticket_tag"}, "source.zendesk_source.zendesk.time_zone": {"metadata": {"type": "BASE TABLE", "schema": "zendesk_integration_tests_61", "name": "time_zone_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"time_zone": {"type": "text", "index": 1, "name": "time_zone", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 2, "name": "_fivetran_synced", "comment": null}, "standard_offset": {"type": "text", "index": 3, "name": "standard_offset", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.zendesk_source.zendesk.time_zone"}, "source.zendesk_source.zendesk.user": {"metadata": {"type": "BASE TABLE", "schema": "zendesk_integration_tests_61", "name": "user_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "bigint", "index": 1, "name": "id", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 2, "name": "_fivetran_synced", "comment": null}, "active": {"type": "boolean", "index": 3, "name": "active", "comment": null}, "alias": {"type": "integer", "index": 4, "name": "alias", "comment": null}, "authenticity_token": {"type": "integer", "index": 5, "name": "authenticity_token", "comment": null}, "chat_only": {"type": "boolean", "index": 6, "name": "chat_only", "comment": null}, "created_at": {"type": "timestamp without time zone", "index": 7, "name": "created_at", "comment": null}, "details": {"type": "integer", "index": 8, "name": "details", "comment": null}, "email": {"type": "text", "index": 9, "name": "email", "comment": null}, "external_id": {"type": "bigint", "index": 10, "name": "external_id", "comment": null}, "last_login_at": {"type": "timestamp without time zone", "index": 11, "name": "last_login_at", "comment": null}, "locale": {"type": "text", "index": 12, "name": "locale", "comment": null}, "locale_id": {"type": "bigint", "index": 13, "name": "locale_id", "comment": null}, "moderator": {"type": "boolean", "index": 14, "name": "moderator", "comment": null}, "name": {"type": "text", "index": 15, "name": "name", "comment": null}, "notes": {"type": "integer", "index": 16, "name": "notes", "comment": null}, "only_private_comments": {"type": "boolean", "index": 17, "name": "only_private_comments", "comment": null}, "organization_id": {"type": "bigint", "index": 18, "name": "organization_id", "comment": null}, "phone": {"type": "integer", "index": 19, "name": "phone", "comment": null}, "remote_photo_url": {"type": "integer", "index": 20, "name": "remote_photo_url", "comment": null}, "restricted_agent": {"type": "boolean", "index": 21, "name": "restricted_agent", "comment": null}, "role": {"type": "text", "index": 22, "name": "role", "comment": null}, "shared": {"type": "boolean", "index": 23, "name": "shared", "comment": null}, "shared_agent": {"type": "boolean", "index": 24, "name": "shared_agent", "comment": null}, "signature": {"type": "integer", "index": 25, "name": "signature", "comment": null}, "suspended": {"type": "boolean", "index": 26, "name": "suspended", "comment": null}, "ticket_restriction": {"type": "text", "index": 27, "name": "ticket_restriction", "comment": null}, "time_zone": {"type": "text", "index": 28, "name": "time_zone", "comment": null}, "two_factor_auth_enabled": {"type": "boolean", "index": 29, "name": "two_factor_auth_enabled", "comment": null}, "updated_at": {"type": "timestamp without time zone", "index": 30, "name": "updated_at", "comment": null}, "url": {"type": "text", "index": 31, "name": "url", "comment": null}, "verified": {"type": "boolean", "index": 32, "name": "verified", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.zendesk_source.zendesk.user"}, "source.zendesk_source.zendesk.user_tag": {"metadata": {"type": "BASE TABLE", "schema": "zendesk_integration_tests_61", "name": "user_tag_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"tag": {"type": "text", "index": 1, "name": "tag", "comment": null}, "user_id": {"type": "bigint", "index": 2, "name": "user_id", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.zendesk_source.zendesk.user_tag"}}, "errors": null} \ No newline at end of file diff --git a/docs/index.html b/docs/index.html index c580ce9..ca1e6f8 100644 --- a/docs/index.html +++ b/docs/index.html @@ -1,4 +1,30 @@ -
Source | \nTable | \nDescription | \nLink | \nMore? | \n
---|---|---|---|---|
\n \n {{ source.source_name }}\n \n | \n \n {{ source.name }}\n | \n \n\n View docs\n | \n\n \n \n \n \n \n \n \n \n | \n|
\n \n \n \n \n Description\n \n | \n