diff --git a/.circleci/config.yml b/.circleci/config.yml index 0d320e0c..02ad3464 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -30,8 +30,9 @@ jobs: cd integration_tests dbt deps dbt seed --target redshift --full-refresh + dbt run --vars '{using_schedules: false, using_domain_names: false, using_user_tags: false, using_ticket_form_history: false, using_organization_tags: false}' --target redshift --full-refresh dbt run --target redshift --full-refresh - dbt run --vars '{using_schedules: false, using_domain_names: false, using_user_tags: false, using_ticket_form_history: false, using_organization_tags: false}' --target redshift + dbt run --target redshift dbt test --target redshift - run: name: "Run Tests - Postgres" @@ -41,8 +42,9 @@ jobs: cd integration_tests dbt deps dbt seed --target postgres --full-refresh + dbt run --vars '{using_schedules: false, using_domain_names: false, using_user_tags: false, using_ticket_form_history: false, using_organization_tags: false}' --target postgres --full-refresh dbt run --target postgres --full-refresh - dbt run --vars '{using_schedules: false, using_domain_names: false, using_user_tags: false, using_ticket_form_history: false, using_organization_tags: false}' --target postgres + dbt run --target postgres dbt test --target postgres - run: name: "Run Tests - Snowflake" @@ -52,8 +54,9 @@ jobs: cd integration_tests dbt deps dbt seed --target snowflake --full-refresh + dbt run --vars '{using_schedules: false, using_domain_names: false, using_user_tags: false, using_ticket_form_history: false, using_organization_tags: false}' --target snowflake --full-refresh dbt run --target snowflake --full-refresh - dbt run --vars '{using_schedules: false, using_domain_names: false, using_user_tags: false, using_ticket_form_history: false, using_organization_tags: false}' --target snowflake + dbt run --target snowflake dbt test --target snowflake - run: name: "Run Tests - BigQuery" @@ -66,8 +69,9 @@ jobs: cd integration_tests dbt deps dbt seed --target bigquery --full-refresh + dbt run --vars '{using_schedules: false, using_domain_names: false, using_user_tags: false, using_ticket_form_history: false, using_organization_tags: false}' --target bigquery --full-refresh dbt run --target bigquery --full-refresh - dbt run --vars '{using_schedules: false, using_domain_names: false, using_user_tags: false, using_ticket_form_history: false, using_organization_tags: false}' --target bigquery + dbt run --target bigquery dbt test --target bigquery - save_cache: key: deps2-{{ .Branch }} diff --git a/CHANGELOG.md b/CHANGELOG.md index 15de5d31..fe7bf0f0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,15 @@ +# dbt_zendesk v0.8.0 +# 🚨 Breaking Changes 🚨 +- The logic used to generate the `zendesk__ticket_backlog` model was updated to more accurately map backlog changes to tickets. As the underlying `zendesk__ticket_field_history` model is incremental, we recommend a `--full-refresh` after installing this latest version of the package. ([#61](https://github.com/fivetran/dbt_zendesk/pull/61)) +# Features +- Addition of the [DECISIONLOG.md](https://github.com/fivetran/dbt_zendesk/blob/main/DECISIONLOG.md). This file contains detailed explanations for the opinionated transformation logic found within this dbt package. ([#59](https://github.com/fivetran/dbt_zendesk/pull/59)) +# Bug Fixes +- Added logic required to account for the `first_reply_time` when the first commenter is an internal comment and there are no previous external comments applied to the ticket. ([#59](https://github.com/fivetran/dbt_zendesk/pull/59)) +- For those using schedules, incorporates Daylight Savings Time to use the proper timezone offsets for calculating UTC timestamps. Business minute metrics are more accurately calculated, as previously the package did not acknowledge daylight time and only used the standard time offsets ([#62](https://github.com/fivetran/dbt_zendesk/issues/62)). + +## Under the Hood +- Updated the incremental logic within `int_zendesk__field_history_scd` to include an additional partition for `ticket_id`. This allows for a more accurate generation of ticket backlog records. ([#61](https://github.com/fivetran/dbt_zendesk/pull/61)) +- Corrected the spelling of the partition field within the cte in `int_zendesk__field_history_scd` to be `partition` opposed to `patition`. ([#61](https://github.com/fivetran/dbt_zendesk/pull/61)) # dbt_zendesk v0.8.0-b1 🎉 dbt v1.0.0 Compatibility Pre Release 🎉 An official dbt v1.0.0 compatible version of the package will be released once existing feature/bug PRs are merged. ## 🚨 Breaking Changes 🚨 diff --git a/DECISIONLOG.md b/DECISIONLOG.md index fee1e877..c3ac55eb 100644 --- a/DECISIONLOG.md +++ b/DECISIONLOG.md @@ -1,10 +1,114 @@ -### Zendesk Backlog Tickets +# Decision Log + +## Zendesk Backlog Tickets - You may find some discrepancies between what Zendesk reports and our model the total number of backlog tickets on a given day. After investigating this we have realized this is due to Zendesk taking a snapshot of each day sometime in the 23rd hour as stated in their [article.](https://support.zendesk.com/hc/en-us/articles/4408819342490-Why-does-the-Backlog-dataset-only-show-the-Backlog-recorded-Hour-as-23-). - + ``` Because backlog data is captured on a per-day basis, it cannot be segmented hourly. The Backlog recorded - Hour is listed as 23 because data is captured daily between 11 pm, 12 am, or 1 am depending on factors like Daylight Saving Time (DST). For more information, see the article: Analyzing your ticket backlog history with Explore. ``` - While Zendesk doesn't segment their backlog data per hour, on the other hand we always try to model our data starting at a greater granularity. This means we start by taking the _hour_ from the timestamp field from the Zendesk source tables then bringing it to _day_. Therefore there will be edge cases where tickets updated near the end of day may fall into different statuses, depending on whether you're looking at the Zendesk Backlog dashboard or our model outputs. + +## Business Time Metrics +When developing this package we noticed Zendesk reported ticket response times in business minutes based on the last schedule which is applied to the ticket. However, we felt this is not an accurate representation of the true ticket elapsed time in business minutes. Therefore, we took the opinionated decision to apply logic within our transformations to calculate the cumulative elapsed time in business minutes of a ticket across **all** schedules which the ticket was assigned during it's lifetime. + +Below is a quick explanation of how this is calculated within the dbt package for **first_reply_time_business_minutes** as well as how this differs from Zendesk's logic: +> Note: While this is an example of `first_reply_time_business_minutes`, the logic is the same for other business minute metrics. + +- A ticket (`941606`) is created on `2020-09-29 17:01:38 UTC` and first solved at `2020-10-01 15:03:44 UTC`. +- When the ticket was created it was assigned the schedule `Level 1 Chicago` + - The schedule intervals are expressed as the number of minutes since the start of the week. + - Sunday is considered the start of the week. +- The `Level 1 Chicago` schedule can be interpreted as the following: + +| **start_time_utc** | **end_time_utc** | +| ------------------ | ----------------- | +| 720 | 1560 | +| 2160 | 3000 | +| 3600 | 4440 | +| 5040 | 5880 | +| 6480 | 7320 | +| 7920 | 8760 | +| 9360 | 10200 | + +- Looking closer into the ticket, we also see another schedule `Level 2 San Francisco` was assigned to the ticket on `2020-09-30 19:01:25 UTC` +- The `Level 2 San Francisco` schedule can be interpreted as the following: + +| **start_time_utc** | **end_time_utc** | +| ------------------ | ----------------- | +| 2340 | 2910 | +| 3780 | 4350 | +| 5220 | 5790 | +| 6660 | 7230 | +| 8100 | 8670 | + +- Now that we know the ticket had two schedules, let's see the comments exchanged within this ticket to capture when the `first_reply_time` was recorded. + +| **ticket_id** | **field_name** | **is_public** | **commenter_role** | **valid_starting_at** | +| ------------- | -------------- | ------------- | ------------------ | --------------------- | +| 941606 | comment | TRUE | external_comment | 2020-09-29 17:01:38 UTC | +| 941606 | comment | FALSE | internal_comment | 2020-09-30 19:01:25 UTC | +| 941606 | comment | TRUE | internal_comment | 2020-09-30 19:01:46 UTC | +| 941606 | comment | TRUE | internal_comment | 2020-10-01 15:03:44 UTC | + +- Seeing the comments made to the ticket, we understand that the customer commented on the ticket at `2020-09-29 17:01:38 UTC` and the first **public** internal comment was made at `2020-09-30 19:01:46 UTC`. +- In comparison of the two schedules associated with this ticket, we can see that the `Level 1 Chicago` schedule was set for almost the entire duration of the ticket before the first reply. Whereas, the `Level 2 San Francisco` schedule was only set for 21 seconds. + - Regardless, we will be using both schedules in the calculation of the `first_reply_time_business_minutes`. +- Now that we have the schedules, the schedule intervals, and the first_reply_time we can calculate the total elapsed `first_reply_time_business_minutes`. But, let's first convert the UTC timestamps to the Zendesk-esque intervals expressed within the schedules: +> The `Interval Results` are calculate via: `(Full Days From Sunday * 24 * 60) + (Hours * 60) + Minutes` + +| **Action** | **Timestamp** | **Full Days from Sunday** | **Hours** | **Minutes** | **Interval Result** | +| ---------- | ------------- | ------------------------- | --------- | ----------- | ------------------- | +| Ticket Created and Schedule set to Level 1 Chicago | `Tuesday, September 29, 2020 at 5:01:38 PM` | 2 | 17 | 2 | 3902 | +| Schedule changed to Level 2 San Francisco | `Wednesday, September 30, 2020 at 7:01:25 PM` | 3 | 19 | 1.25 | 5461.25 | +| First Public Internal Comment | `Wednesday, September 30, 2020 at 7:01:46 PM` | 3 | 19 | 1.46 | 5461.46 | + +- With the Interval Results obtained above, we can see where these overlap within the schedules. + +**Level 1 Chicago** +> Overlap was from 3902 to 5461.25 and falls within two intervals + +| **start_time_utc** | **end_time_utc** | +| ------------------ | ----------------- | +| 720 | 1560 | +| 2160 | 3000 | +| >**3600**< | >**4440**< | +| >**5040**< | >**5880**< | +| 6480 | 7320 | +| 7920 | 8760 | +| 9360 | 10200 | + +**Level 2 San Francisco** +> Only overlap was from 5461.25 to 5461.46 and falls within one interval + +| **start_time_utc** | **end_time_utc** | +| ------------------ | ----------------- | +| 2340 | 2910 | +| 3780 | 4350 | +| >**5220**< | >**5790**< | +| 6660 | 7230 | +| 8100 | 8670 | + +- Now let's figure out the overlapping duration + +| **Schedule** | **Schedule start_time_utc** | **Schedule end_time_utc** | **Ticket Start** | **Ticket End** | **Difference** | +|----| ------------------ | -----------------| ------------------ | -----------------| ------------------ | +| `Level 1 Chicago` | 3600 | >**4440**< | >**3902**< | 5461.25 | 538 | +| `Level 1 Chicago` | >**5040**< | 5880 | 3902 | >**5461.25**< | 421.25 | +| `Level 2 San Francisco` | >**5220**< (We use **5461.25** to account for overlap) | 5790 | 5462 | >**5461.46**< | .21 | + +- Adding the differences above we arrive at a total `first_reply_time_business_minutes` of 959.46 minutes. + +- So how does Zendesk calculate this? + - Instead of taking into account the various schedules used by the ticket, Zendesk will instead use the **last** schedule applied to the ticket to record the duration in business minutes. +- Therefore, in the example above Zendesk will **only** use the `Level 2 San Francisco` schedule when calculating the `first_reply_time_business_minutes` for ticket `941606`. + - Below is an example of how Zendesk calculates this: + +| **Schedule** | **Schedule start_time_utc** | **Schedule end_time_utc** | **Ticket Start** | **Ticket End** | **Difference** | +|----| ------------------ | -----------------| ------------------ | -----------------| ------------------ | +| `Level 2 San Francisco` | 3780 | >**4350**< | 3902 | 5461.46 | 448 | +| `Level 2 San Francisco` | >**5220**< | 5790 | 3902 | 5461.46 | 241.46 | + +- Adding the differences above we arrive at a total `first_reply_time_business_minutes` of 689.46 minutes. \ No newline at end of file diff --git a/README.md b/README.md index 3c4d9b41..f86ad9e5 100644 --- a/README.md +++ b/README.md @@ -30,7 +30,7 @@ Include in your `packages.yml` to stay up to date with the latest release! ```yaml packages: - package: fivetran/zendesk - version: 0.8.0-b1 + version: [">=0.8.0", "<0.9.0"] ``` ## Package Maintenance The Fivetran team maintaining this package **only** maintains the latest version. We highly recommend you keep your `packages.yml` updated with the [dbt hub latest version](https://hub.getdbt.com/fivetran/zendesk/latest/). You may refer to the [CHANGELOG](/CHANGELOG.md) and release notes for more information on changes across versions. @@ -137,7 +137,9 @@ vars: zendesk: ticket_field_history_timeframe_years: integer_number_of_years # default = 50 (everything) ``` - +## Opinionated Modelling Decisions +### Business Time Metrics Logic +This dbt package takes an opinionated stance on how business time metrics are calculated. The dbt package takes **all** schedules into account when calculating the business time duration. Whereas, the Zendesk UI logic takes into account **only** the latest schedule assigned to the ticket. If you would like a deeper explanation of the logic used by default in the dbt package you may reference the [DECISIONLOG](/DECISIONLOG.md). ## Database support This package is compatible with BigQuery, Snowflake, Redshift and Postgres. diff --git a/dbt_project.yml b/dbt_project.yml index 49387bf8..5c3f34f0 100644 --- a/dbt_project.yml +++ b/dbt_project.yml @@ -43,6 +43,8 @@ vars: ticket_tag: "{{ ref('stg_zendesk__ticket_tag') }}" user_tag: "{{ ref('stg_zendesk__user_tag') }}" user: "{{ ref('stg_zendesk__user') }}" + daylight_time: "{{ ref('stg_zendesk__daylight_time') }}" + time_zone: "{{ ref('stg_zendesk__time_zone') }}" using_schedules: true using_domain_names: true using_user_tags: true diff --git a/docs/catalog.json b/docs/catalog.json index 4f06355e..9e24954a 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": "0.19.0", "generated_at": "2021-03-11T15:26:24.851484Z", "invocation_id": "ecff4bad-3dd9-4165-89b8-5ed23819450a", "env": {}}, "nodes": {"model.zendesk.int_zendesk__ticket_historical_status": {"metadata": {"type": "table", "database": "dbt-package-testing", "schema": "zendesk_integration_tests_zendesk_intermediate", "name": "int_zendesk__ticket_historical_status", "comment": null, "owner": null}, "columns": {"ticket_id": {"type": "INT64", "comment": null, "index": 1, "name": "ticket_id"}, "valid_starting_at": {"type": "TIMESTAMP", "comment": null, "index": 2, "name": "valid_starting_at"}, "valid_ending_at": {"type": "TIMESTAMP", "comment": null, "index": 3, "name": "valid_ending_at"}, "status_duration_calendar_minutes": {"type": "INT64", "comment": null, "index": 4, "name": "status_duration_calendar_minutes"}, "status": {"type": "STRING", "comment": null, "index": 5, "name": "status"}, "ticket_status_counter": {"type": "INT64", "comment": null, "index": 6, "name": "ticket_status_counter"}, "unique_status_counter": {"type": "INT64", "comment": null, "index": 7, "name": "unique_status_counter"}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 18.0, "description": "Approximate count of rows in this table", "include": true}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 888.0, "description": "Approximate size of table as reported by BigQuery", "include": true}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "description": "Indicates whether there are statistics for this table", "include": false}}, "unique_id": "model.zendesk.int_zendesk__ticket_historical_status"}, "model.zendesk.int_zendesk__ticket_schedules": {"metadata": {"type": "table", "database": "dbt-package-testing", "schema": "zendesk_integration_tests_zendesk_intermediate", "name": "int_zendesk__ticket_schedules", "comment": null, "owner": null}, "columns": {"ticket_id": {"type": "INT64", "comment": null, "index": 1, "name": "ticket_id"}, "schedule_id": {"type": "STRING", "comment": null, "index": 2, "name": "schedule_id"}, "schedule_created_at": {"type": "TIMESTAMP", "comment": null, "index": 3, "name": "schedule_created_at"}, "schedule_invalidated_at": {"type": "TIMESTAMP", "comment": null, "index": 4, "name": "schedule_invalidated_at"}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 11.0, "description": "Approximate count of rows in this table", "include": true}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 388.0, "description": "Approximate size of table as reported by BigQuery", "include": true}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "description": "Indicates whether there are statistics for this table", "include": false}}, "unique_id": "model.zendesk.int_zendesk__ticket_schedules"}, "model.zendesk.int_zendesk__requester_wait_time_calendar_hours": {"metadata": {"type": "table", "database": "dbt-package-testing", "schema": "zendesk_integration_tests_zendesk_intermediate", "name": "int_zendesk__requester_wait_time_calendar_hours", "comment": null, "owner": null}, "columns": {"ticket_id": {"type": "INT64", "comment": null, "index": 1, "name": "ticket_id"}, "valid_starting_at": {"type": "TIMESTAMP", "comment": null, "index": 2, "name": "valid_starting_at"}, "valid_ending_at": {"type": "TIMESTAMP", "comment": null, "index": 3, "name": "valid_ending_at"}, "ticket_status": {"type": "STRING", "comment": null, "index": 4, "name": "ticket_status"}, "sla_applied_at": {"type": "TIMESTAMP", "comment": null, "index": 5, "name": "sla_applied_at"}, "target": {"type": "INT64", "comment": null, "index": 6, "name": "target"}, "sla_policy_name": {"type": "STRING", "comment": null, "index": 7, "name": "sla_policy_name"}, "ticket_created_at": {"type": "TIMESTAMP", "comment": null, "index": 8, "name": "ticket_created_at"}, "in_business_hours": {"type": "STRING", "comment": null, "index": 9, "name": "in_business_hours"}, "calendar_minutes": {"type": "INT64", "comment": null, "index": 10, "name": "calendar_minutes"}, "running_total_calendar_minutes": {"type": "INT64", "comment": null, "index": 11, "name": "running_total_calendar_minutes"}, "remaining_target_minutes": {"type": "INT64", "comment": null, "index": 12, "name": "remaining_target_minutes"}, "is_breached_during_schedule": {"type": "BOOL", "comment": null, "index": 13, "name": "is_breached_during_schedule"}, "breach_minutes": {"type": "INT64", "comment": null, "index": 14, "name": "breach_minutes"}, "sla_breach_at": {"type": "TIMESTAMP", "comment": null, "index": 15, "name": "sla_breach_at"}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 0.0, "description": "Approximate count of rows in this table", "include": true}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 0.0, "description": "Approximate size of table as reported by BigQuery", "include": true}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "description": "Indicates whether there are statistics for this table", "include": false}}, "unique_id": "model.zendesk.int_zendesk__requester_wait_time_calendar_hours"}, "model.zendesk.int_zendesk__requester_wait_time_business_hours": {"metadata": {"type": "table", "database": "dbt-package-testing", "schema": "zendesk_integration_tests_zendesk_intermediate", "name": "int_zendesk__requester_wait_time_business_hours", "comment": null, "owner": null}, "columns": {"ticket_id": {"type": "INT64", "comment": null, "index": 1, "name": "ticket_id"}, "sla_applied_at": {"type": "TIMESTAMP", "comment": null, "index": 2, "name": "sla_applied_at"}, "target": {"type": "INT64", "comment": null, "index": 3, "name": "target"}, "sla_policy_name": {"type": "STRING", "comment": null, "index": 4, "name": "sla_policy_name"}, "valid_starting_at": {"type": "TIMESTAMP", "comment": null, "index": 5, "name": "valid_starting_at"}, "valid_ending_at": {"type": "TIMESTAMP", "comment": null, "index": 6, "name": "valid_ending_at"}, "week_number": {"type": "FLOAT64", "comment": null, "index": 7, "name": "week_number"}, "ticket_week_start_time_minute": {"type": "FLOAT64", "comment": null, "index": 8, "name": "ticket_week_start_time_minute"}, "ticket_week_end_time_minute": {"type": "FLOAT64", "comment": null, "index": 9, "name": "ticket_week_end_time_minute"}, "schedule_start_time": {"type": "INT64", "comment": null, "index": 10, "name": "schedule_start_time"}, "schedule_end_time": {"type": "INT64", "comment": null, "index": 11, "name": "schedule_end_time"}, "scheduled_minutes": {"type": "FLOAT64", "comment": null, "index": 12, "name": "scheduled_minutes"}, "running_total_scheduled_minutes": {"type": "FLOAT64", "comment": null, "index": 13, "name": "running_total_scheduled_minutes"}, "remaining_target_minutes": {"type": "FLOAT64", "comment": null, "index": 14, "name": "remaining_target_minutes"}, "lag_check": {"type": "FLOAT64", "comment": null, "index": 15, "name": "lag_check"}, "is_breached_during_schedule": {"type": "BOOL", "comment": null, "index": 16, "name": "is_breached_during_schedule"}, "breach_minutes": {"type": "FLOAT64", "comment": null, "index": 17, "name": "breach_minutes"}, "breach_minutes_from_week": {"type": "FLOAT64", "comment": null, "index": 18, "name": "breach_minutes_from_week"}, "sla_breach_at": {"type": "TIMESTAMP", "comment": null, "index": 19, "name": "sla_breach_at"}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 0.0, "description": "Approximate count of rows in this table", "include": true}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 0.0, "description": "Approximate size of table as reported by BigQuery", "include": true}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "description": "Indicates whether there are statistics for this table", "include": false}}, "unique_id": "model.zendesk.int_zendesk__requester_wait_time_business_hours"}, "model.zendesk.int_zendesk__ticket_aggregates": {"metadata": {"type": "table", "database": "dbt-package-testing", "schema": "zendesk_integration_tests_zendesk_intermediate", "name": "int_zendesk__ticket_aggregates", "comment": null, "owner": null}, "columns": {"ticket_id": {"type": "INT64", "comment": null, "index": 1, "name": "ticket_id"}, "_fivetran_synced": {"type": "TIMESTAMP", "comment": null, "index": 2, "name": "_fivetran_synced"}, "assignee_id": {"type": "INT64", "comment": null, "index": 3, "name": "assignee_id"}, "brand_id": {"type": "INT64", "comment": null, "index": 4, "name": "brand_id"}, "created_at": {"type": "TIMESTAMP", "comment": null, "index": 5, "name": "created_at"}, "description": {"type": "STRING", "comment": null, "index": 6, "name": "description"}, "due_at": {"type": "TIMESTAMP", "comment": null, "index": 7, "name": "due_at"}, "group_id": {"type": "INT64", "comment": null, "index": 8, "name": "group_id"}, "external_id": {"type": "INT64", "comment": null, "index": 9, "name": "external_id"}, "is_public": {"type": "BOOL", "comment": null, "index": 10, "name": "is_public"}, "organization_id": {"type": "INT64", "comment": null, "index": 11, "name": "organization_id"}, "priority": {"type": "INT64", "comment": null, "index": 12, "name": "priority"}, "recipient": {"type": "STRING", "comment": null, "index": 13, "name": "recipient"}, "requester_id": {"type": "INT64", "comment": null, "index": 14, "name": "requester_id"}, "status": {"type": "STRING", "comment": null, "index": 15, "name": "status"}, "subject": {"type": "STRING", "comment": null, "index": 16, "name": "subject"}, "problem_id": {"type": "INT64", "comment": null, "index": 17, "name": "problem_id"}, "submitter_id": {"type": "INT64", "comment": null, "index": 18, "name": "submitter_id"}, "ticket_form_id": {"type": "INT64", "comment": null, "index": 19, "name": "ticket_form_id"}, "type": {"type": "STRING", "comment": null, "index": 20, "name": "type"}, "updated_at": {"type": "DATETIME", "comment": null, "index": 21, "name": "updated_at"}, "url": {"type": "STRING", "comment": null, "index": 22, "name": "url"}, "created_channel": {"type": "STRING", "comment": null, "index": 23, "name": "created_channel"}, "source_from_id": {"type": "INT64", "comment": null, "index": 24, "name": "source_from_id"}, "source_from_title": {"type": "INT64", "comment": null, "index": 25, "name": "source_from_title"}, "source_rel": {"type": "INT64", "comment": null, "index": 26, "name": "source_rel"}, "source_to_address": {"type": "STRING", "comment": null, "index": 27, "name": "source_to_address"}, "source_to_name": {"type": "STRING", "comment": null, "index": 28, "name": "source_to_name"}, "is_incident": {"type": "BOOL", "comment": null, "index": 29, "name": "is_incident"}, "ticket_brand_name": {"type": "STRING", "comment": null, "index": 30, "name": "ticket_brand_name"}, "ticket_tags": {"type": "STRING", "comment": null, "index": 31, "name": "ticket_tags"}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 10.0, "description": "Approximate count of rows in this table", "include": true}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 2132.0, "description": "Approximate size of table as reported by BigQuery", "include": true}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "description": "Indicates whether there are statistics for this table", "include": false}}, "unique_id": "model.zendesk.int_zendesk__ticket_aggregates"}, "model.zendesk.int_zendesk__updates": {"metadata": {"type": "table", "database": "dbt-package-testing", "schema": "zendesk_integration_tests_zendesk_intermediate", "name": "int_zendesk__updates", "comment": null, "owner": null}, "columns": {"ticket_id": {"type": "INT64", "comment": null, "index": 1, "name": "ticket_id"}, "field_name": {"type": "STRING", "comment": null, "index": 2, "name": "field_name"}, "value": {"type": "STRING", "comment": null, "index": 3, "name": "value"}, "is_public": {"type": "BOOL", "comment": null, "index": 4, "name": "is_public"}, "user_id": {"type": "INT64", "comment": null, "index": 5, "name": "user_id"}, "valid_starting_at": {"type": "TIMESTAMP", "comment": null, "index": 6, "name": "valid_starting_at"}, "valid_ending_at": {"type": "TIMESTAMP", "comment": null, "index": 7, "name": "valid_ending_at"}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 40.0, "description": "Approximate count of rows in this table", "include": true}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 1604.0, "description": "Approximate size of table as reported by BigQuery", "include": true}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "description": "Indicates whether there are statistics for this table", "include": false}}, "unique_id": "model.zendesk.int_zendesk__updates"}, "model.zendesk.int_zendesk__organization_aggregates": {"metadata": {"type": "table", "database": "dbt-package-testing", "schema": "zendesk_integration_tests_zendesk_intermediate", "name": "int_zendesk__organization_aggregates", "comment": null, "owner": null}, "columns": {"organization_id": {"type": "INT64", "comment": null, "index": 1, "name": "organization_id"}, "created_at": {"type": "TIMESTAMP", "comment": null, "index": 2, "name": "created_at"}, "updated_at": {"type": "TIMESTAMP", "comment": null, "index": 3, "name": "updated_at"}, "details": {"type": "INT64", "comment": null, "index": 4, "name": "details"}, "name": {"type": "STRING", "comment": null, "index": 5, "name": "name"}, "external_id": {"type": "INT64", "comment": null, "index": 6, "name": "external_id"}, "organization_tags": {"type": "STRING", "comment": null, "index": 7, "name": "organization_tags"}, "domain_names": {"type": "STRING", "comment": null, "index": 8, "name": "domain_names"}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 10.0, "description": "Approximate count of rows in this table", "include": true}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 311.0, "description": "Approximate size of table as reported by BigQuery", "include": true}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "description": "Indicates whether there are statistics for this table", "include": false}}, "unique_id": "model.zendesk.int_zendesk__organization_aggregates"}, "model.zendesk.int_zendesk__latest_ticket_form": {"metadata": {"type": "table", "database": "dbt-package-testing", "schema": "zendesk_integration_tests_zendesk_intermediate", "name": "int_zendesk__latest_ticket_form", "comment": null, "owner": null}, "columns": {"ticket_form_id": {"type": "INT64", "comment": null, "index": 1, "name": "ticket_form_id"}, "created_at": {"type": "DATETIME", "comment": null, "index": 2, "name": "created_at"}, "updated_at": {"type": "DATETIME", "comment": null, "index": 3, "name": "updated_at"}, "display_name": {"type": "STRING", "comment": null, "index": 4, "name": "display_name"}, "is_active": {"type": "BOOL", "comment": null, "index": 5, "name": "is_active"}, "name": {"type": "STRING", "comment": null, "index": 6, "name": "name"}, "latest_form_index": {"type": "INT64", "comment": null, "index": 7, "name": "latest_form_index"}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 3.0, "description": "Approximate count of rows in this table", "include": true}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 303.0, "description": "Approximate size of table as reported by BigQuery", "include": true}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "description": "Indicates whether there are statistics for this table", "include": false}}, "unique_id": "model.zendesk.int_zendesk__latest_ticket_form"}, "model.zendesk.int_zendesk__agent_work_time_filtered_statuses": {"metadata": {"type": "table", "database": "dbt-package-testing", "schema": "zendesk_integration_tests_zendesk_intermediate", "name": "int_zendesk__agent_work_time_filtered_statuses", "comment": null, "owner": null}, "columns": {"ticket_id": {"type": "INT64", "comment": null, "index": 1, "name": "ticket_id"}, "valid_starting_at": {"type": "TIMESTAMP", "comment": null, "index": 2, "name": "valid_starting_at"}, "valid_ending_at": {"type": "TIMESTAMP", "comment": null, "index": 3, "name": "valid_ending_at"}, "ticket_status": {"type": "STRING", "comment": null, "index": 4, "name": "ticket_status"}, "sla_applied_at": {"type": "TIMESTAMP", "comment": null, "index": 5, "name": "sla_applied_at"}, "target": {"type": "INT64", "comment": null, "index": 6, "name": "target"}, "sla_policy_name": {"type": "STRING", "comment": null, "index": 7, "name": "sla_policy_name"}, "ticket_created_at": {"type": "TIMESTAMP", "comment": null, "index": 8, "name": "ticket_created_at"}, "in_business_hours": {"type": "STRING", "comment": null, "index": 9, "name": "in_business_hours"}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 0.0, "description": "Approximate count of rows in this table", "include": true}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 0.0, "description": "Approximate size of table as reported by BigQuery", "include": true}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "description": "Indicates whether there are statistics for this table", "include": false}}, "unique_id": "model.zendesk.int_zendesk__agent_work_time_filtered_statuses"}, "model.zendesk.int_zendesk__ticket_historical_group": {"metadata": {"type": "table", "database": "dbt-package-testing", "schema": "zendesk_integration_tests_zendesk_intermediate", "name": "int_zendesk__ticket_historical_group", "comment": null, "owner": null}, "columns": {"ticket_id": {"type": "INT64", "comment": null, "index": 1, "name": "ticket_id"}, "group_stations_count": {"type": "INT64", "comment": null, "index": 2, "name": "group_stations_count"}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 0.0, "description": "Approximate count of rows in this table", "include": true}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 0.0, "description": "Approximate size of table as reported by BigQuery", "include": true}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "description": "Indicates whether there are statistics for this table", "include": false}}, "unique_id": "model.zendesk.int_zendesk__ticket_historical_group"}, "model.zendesk.int_zendesk__field_history_pivot": {"metadata": {"type": "table", "database": "dbt-package-testing", "schema": "zendesk_integration_tests_zendesk_intermediate", "name": "int_zendesk__field_history_pivot", "comment": null, "owner": null}, "columns": {"ticket_id": {"type": "INT64", "comment": null, "index": 1, "name": "ticket_id"}, "date_day": {"type": "DATE", "comment": null, "index": 2, "name": "date_day"}, "status": {"type": "STRING", "comment": null, "index": 3, "name": "status"}, "priority": {"type": "STRING", "comment": null, "index": 4, "name": "priority"}, "assignee_id": {"type": "STRING", "comment": null, "index": 5, "name": "assignee_id"}, "ticket_day_id": {"type": "STRING", "comment": null, "index": 6, "name": "ticket_day_id"}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 17.0, "description": "Approximate count of rows in this table", "include": true}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 984.0, "description": "Approximate size of table as reported by BigQuery", "include": true}, "partitioning_type": {"id": "partitioning_type", "label": "Partitioned By", "value": "date_day", "description": "The partitioning column for this table", "include": true}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "description": "Indicates whether there are statistics for this table", "include": false}}, "unique_id": "model.zendesk.int_zendesk__field_history_pivot"}, "model.zendesk.int_zendesk__reply_time_combined": {"metadata": {"type": "table", "database": "dbt-package-testing", "schema": "zendesk_integration_tests_zendesk_intermediate", "name": "int_zendesk__reply_time_combined", "comment": null, "owner": null}, "columns": {"ticket_id": {"type": "INT64", "comment": null, "index": 1, "name": "ticket_id"}, "sla_policy_name": {"type": "STRING", "comment": null, "index": 2, "name": "sla_policy_name"}, "metric": {"type": "STRING", "comment": null, "index": 3, "name": "metric"}, "sla_applied_at": {"type": "TIMESTAMP", "comment": null, "index": 4, "name": "sla_applied_at"}, "target": {"type": "INT64", "comment": null, "index": 5, "name": "target"}, "in_business_hours": {"type": "STRING", "comment": null, "index": 6, "name": "in_business_hours"}, "sla_breach_at": {"type": "TIMESTAMP", "comment": null, "index": 7, "name": "sla_breach_at"}, "agent_reply_at": {"type": "TIMESTAMP", "comment": null, "index": 8, "name": "agent_reply_at"}, "next_solved_at": {"type": "TIMESTAMP", "comment": null, "index": 9, "name": "next_solved_at"}, "updated_sla_policy_starts_at": {"type": "TIMESTAMP", "comment": null, "index": 10, "name": "updated_sla_policy_starts_at"}, "is_stale_sla_policy": {"type": "BOOL", "comment": null, "index": 11, "name": "is_stale_sla_policy"}, "is_sla_breached": {"type": "BOOL", "comment": null, "index": 12, "name": "is_sla_breached"}, "sla_elapsed_time": {"type": "INT64", "comment": null, "index": 13, "name": "sla_elapsed_time"}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 0.0, "description": "Approximate count of rows in this table", "include": true}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 0.0, "description": "Approximate size of table as reported by BigQuery", "include": true}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "description": "Indicates whether there are statistics for this table", "include": false}}, "unique_id": "model.zendesk.int_zendesk__reply_time_combined"}, "model.zendesk.int_zendesk__reply_time_calendar_hours": {"metadata": {"type": "table", "database": "dbt-package-testing", "schema": "zendesk_integration_tests_zendesk_intermediate", "name": "int_zendesk__reply_time_calendar_hours", "comment": null, "owner": null}, "columns": {"ticket_id": {"type": "INT64", "comment": null, "index": 1, "name": "ticket_id"}, "ticket_created_at": {"type": "TIMESTAMP", "comment": null, "index": 2, "name": "ticket_created_at"}, "ticket_current_status": {"type": "STRING", "comment": null, "index": 3, "name": "ticket_current_status"}, "metric": {"type": "STRING", "comment": null, "index": 4, "name": "metric"}, "sla_applied_at": {"type": "TIMESTAMP", "comment": null, "index": 5, "name": "sla_applied_at"}, "target": {"type": "INT64", "comment": null, "index": 6, "name": "target"}, "in_business_hours": {"type": "STRING", "comment": null, "index": 7, "name": "in_business_hours"}, "sla_policy_name": {"type": "STRING", "comment": null, "index": 8, "name": "sla_policy_name"}, "sla_breach_at": {"type": "TIMESTAMP", "comment": null, "index": 9, "name": "sla_breach_at"}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 0.0, "description": "Approximate count of rows in this table", "include": true}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 0.0, "description": "Approximate size of table as reported by BigQuery", "include": true}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "description": "Indicates whether there are statistics for this table", "include": false}}, "unique_id": "model.zendesk.int_zendesk__reply_time_calendar_hours"}, "model.zendesk.int_zendesk__ticket_historical_satisfaction": {"metadata": {"type": "table", "database": "dbt-package-testing", "schema": "zendesk_integration_tests_zendesk_intermediate", "name": "int_zendesk__ticket_historical_satisfaction", "comment": null, "owner": null}, "columns": {"ticket_id": {"type": "INT64", "comment": null, "index": 1, "name": "ticket_id"}, "latest_satisfaction_reason": {"type": "STRING", "comment": null, "index": 2, "name": "latest_satisfaction_reason"}, "latest_satisfaction_comment": {"type": "STRING", "comment": null, "index": 3, "name": "latest_satisfaction_comment"}, "first_satisfaction_score": {"type": "STRING", "comment": null, "index": 4, "name": "first_satisfaction_score"}, "latest_satisfaction_score": {"type": "STRING", "comment": null, "index": 5, "name": "latest_satisfaction_score"}, "count_satisfaction_scores": {"type": "INT64", "comment": null, "index": 6, "name": "count_satisfaction_scores"}, "is_good_to_bad_satisfaction_score": {"type": "BOOL", "comment": null, "index": 7, "name": "is_good_to_bad_satisfaction_score"}, "is_bad_to_good_satisfaction_score": {"type": "BOOL", "comment": null, "index": 8, "name": "is_bad_to_good_satisfaction_score"}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 0.0, "description": "Approximate count of rows in this table", "include": true}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 0.0, "description": "Approximate size of table as reported by BigQuery", "include": true}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "description": "Indicates whether there are statistics for this table", "include": false}}, "unique_id": "model.zendesk.int_zendesk__ticket_historical_satisfaction"}, "model.zendesk.int_zendesk__field_history_scd": {"metadata": {"type": "table", "database": "dbt-package-testing", "schema": "zendesk_integration_tests_zendesk_intermediate", "name": "int_zendesk__field_history_scd", "comment": null, "owner": null}, "columns": {"valid_from": {"type": "DATE", "comment": null, "index": 1, "name": "valid_from"}, "ticket_id": {"type": "INT64", "comment": null, "index": 2, "name": "ticket_id"}, "ticket_day_id": {"type": "STRING", "comment": null, "index": 3, "name": "ticket_day_id"}, "status": {"type": "STRING", "comment": null, "index": 4, "name": "status"}, "priority": {"type": "STRING", "comment": null, "index": 5, "name": "priority"}, "assignee_id": {"type": "STRING", "comment": null, "index": 6, "name": "assignee_id"}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 17.0, "description": "Approximate count of rows in this table", "include": true}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 984.0, "description": "Approximate size of table as reported by BigQuery", "include": true}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "description": "Indicates whether there are statistics for this table", "include": false}}, "unique_id": "model.zendesk.int_zendesk__field_history_scd"}, "model.zendesk.int_zendesk__sla_policy_applied": {"metadata": {"type": "table", "database": "dbt-package-testing", "schema": "zendesk_integration_tests_zendesk_intermediate", "name": "int_zendesk__sla_policy_applied", "comment": null, "owner": null}, "columns": {"ticket_id": {"type": "INT64", "comment": null, "index": 1, "name": "ticket_id"}, "ticket_created_at": {"type": "TIMESTAMP", "comment": null, "index": 2, "name": "ticket_created_at"}, "ticket_current_status": {"type": "STRING", "comment": null, "index": 3, "name": "ticket_current_status"}, "metric": {"type": "STRING", "comment": null, "index": 4, "name": "metric"}, "sla_applied_at": {"type": "TIMESTAMP", "comment": null, "index": 5, "name": "sla_applied_at"}, "target": {"type": "INT64", "comment": null, "index": 6, "name": "target"}, "in_business_hours": {"type": "STRING", "comment": null, "index": 7, "name": "in_business_hours"}, "sla_policy_name": {"type": "STRING", "comment": null, "index": 8, "name": "sla_policy_name"}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 0.0, "description": "Approximate count of rows in this table", "include": true}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 0.0, "description": "Approximate size of table as reported by BigQuery", "include": true}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "description": "Indicates whether there are statistics for this table", "include": false}}, "unique_id": "model.zendesk.int_zendesk__sla_policy_applied"}, "model.zendesk.int_zendesk__agent_work_time_business_hours": {"metadata": {"type": "table", "database": "dbt-package-testing", "schema": "zendesk_integration_tests_zendesk_intermediate", "name": "int_zendesk__agent_work_time_business_hours", "comment": null, "owner": null}, "columns": {"ticket_id": {"type": "INT64", "comment": null, "index": 1, "name": "ticket_id"}, "sla_applied_at": {"type": "TIMESTAMP", "comment": null, "index": 2, "name": "sla_applied_at"}, "target": {"type": "INT64", "comment": null, "index": 3, "name": "target"}, "sla_policy_name": {"type": "STRING", "comment": null, "index": 4, "name": "sla_policy_name"}, "valid_starting_at": {"type": "TIMESTAMP", "comment": null, "index": 5, "name": "valid_starting_at"}, "valid_ending_at": {"type": "TIMESTAMP", "comment": null, "index": 6, "name": "valid_ending_at"}, "week_number": {"type": "FLOAT64", "comment": null, "index": 7, "name": "week_number"}, "ticket_week_start_time_minute": {"type": "FLOAT64", "comment": null, "index": 8, "name": "ticket_week_start_time_minute"}, "ticket_week_end_time_minute": {"type": "FLOAT64", "comment": null, "index": 9, "name": "ticket_week_end_time_minute"}, "schedule_start_time": {"type": "INT64", "comment": null, "index": 10, "name": "schedule_start_time"}, "schedule_end_time": {"type": "INT64", "comment": null, "index": 11, "name": "schedule_end_time"}, "scheduled_minutes": {"type": "FLOAT64", "comment": null, "index": 12, "name": "scheduled_minutes"}, "running_total_scheduled_minutes": {"type": "FLOAT64", "comment": null, "index": 13, "name": "running_total_scheduled_minutes"}, "remaining_target_minutes": {"type": "FLOAT64", "comment": null, "index": 14, "name": "remaining_target_minutes"}, "lag_check": {"type": "FLOAT64", "comment": null, "index": 15, "name": "lag_check"}, "is_breached_during_schedule": {"type": "BOOL", "comment": null, "index": 16, "name": "is_breached_during_schedule"}, "breach_minutes": {"type": "FLOAT64", "comment": null, "index": 17, "name": "breach_minutes"}, "breach_minutes_from_week": {"type": "FLOAT64", "comment": null, "index": 18, "name": "breach_minutes_from_week"}, "sla_breach_at": {"type": "TIMESTAMP", "comment": null, "index": 19, "name": "sla_breach_at"}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 0.0, "description": "Approximate count of rows in this table", "include": true}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 0.0, "description": "Approximate size of table as reported by BigQuery", "include": true}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "description": "Indicates whether there are statistics for this table", "include": false}}, "unique_id": "model.zendesk.int_zendesk__agent_work_time_business_hours"}, "model.zendesk.int_zendesk__field_calendar_spine": {"metadata": {"type": "table", "database": "dbt-package-testing", "schema": "zendesk_integration_tests_zendesk_intermediate", "name": "int_zendesk__field_calendar_spine", "comment": null, "owner": null}, "columns": {"date_day": {"type": "DATE", "comment": null, "index": 1, "name": "date_day"}, "ticket_id": {"type": "INT64", "comment": null, "index": 2, "name": "ticket_id"}, "ticket_day_id": {"type": "STRING", "comment": null, "index": 3, "name": "ticket_day_id"}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 2732.0, "description": "Approximate count of rows in this table", "include": true}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 136600.0, "description": "Approximate size of table as reported by BigQuery", "include": true}, "partitioning_type": {"id": "partitioning_type", "label": "Partitioned By", "value": "date_day", "description": "The partitioning column for this table", "include": true}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "description": "Indicates whether there are statistics for this table", "include": false}}, "unique_id": "model.zendesk.int_zendesk__field_calendar_spine"}, "model.zendesk.int_zendesk__ticket_historical_assignee": {"metadata": {"type": "table", "database": "dbt-package-testing", "schema": "zendesk_integration_tests_zendesk_intermediate", "name": "int_zendesk__ticket_historical_assignee", "comment": null, "owner": null}, "columns": {"ticket_id": {"type": "INT64", "comment": null, "index": 1, "name": "ticket_id"}, "first_agent_assignment_date": {"type": "TIMESTAMP", "comment": null, "index": 2, "name": "first_agent_assignment_date"}, "first_assignee_id": {"type": "STRING", "comment": null, "index": 3, "name": "first_assignee_id"}, "last_agent_assignment_date": {"type": "TIMESTAMP", "comment": null, "index": 4, "name": "last_agent_assignment_date"}, "last_assignee_id": {"type": "STRING", "comment": null, "index": 5, "name": "last_assignee_id"}, "assignee_stations_count": {"type": "INT64", "comment": null, "index": 6, "name": "assignee_stations_count"}, "unique_assignee_count": {"type": "INT64", "comment": null, "index": 7, "name": "unique_assignee_count"}, "ticket_unassigned_duration_calendar_minutes": {"type": "FLOAT64", "comment": null, "index": 8, "name": "ticket_unassigned_duration_calendar_minutes"}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 1.0, "description": "Approximate count of rows in this table", "include": true}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 52.0, "description": "Approximate size of table as reported by BigQuery", "include": true}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "description": "Indicates whether there are statistics for this table", "include": false}}, "unique_id": "model.zendesk.int_zendesk__ticket_historical_assignee"}, "model.zendesk.int_zendesk__user_aggregates": {"metadata": {"type": "table", "database": "dbt-package-testing", "schema": "zendesk_integration_tests_zendesk_intermediate", "name": "int_zendesk__user_aggregates", "comment": null, "owner": null}, "columns": {"user_id": {"type": "INT64", "comment": null, "index": 1, "name": "user_id"}, "external_id": {"type": "STRING", "comment": null, "index": 2, "name": "external_id"}, "_fivetran_synced": {"type": "TIMESTAMP", "comment": null, "index": 3, "name": "_fivetran_synced"}, "created_at": {"type": "TIMESTAMP", "comment": null, "index": 4, "name": "created_at"}, "updated_at": {"type": "DATETIME", "comment": null, "index": 5, "name": "updated_at"}, "email": {"type": "STRING", "comment": null, "index": 6, "name": "email"}, "name": {"type": "STRING", "comment": null, "index": 7, "name": "name"}, "organization_id": {"type": "INT64", "comment": null, "index": 8, "name": "organization_id"}, "role": {"type": "STRING", "comment": null, "index": 9, "name": "role"}, "ticket_restriction": {"type": "STRING", "comment": null, "index": 10, "name": "ticket_restriction"}, "time_zone": {"type": "STRING", "comment": null, "index": 11, "name": "time_zone"}, "locale": {"type": "STRING", "comment": null, "index": 12, "name": "locale"}, "is_active": {"type": "BOOL", "comment": null, "index": 13, "name": "is_active"}, "is_suspended": {"type": "BOOL", "comment": null, "index": 14, "name": "is_suspended"}, "last_login_at": {"type": "TIMESTAMP", "comment": null, "index": 15, "name": "last_login_at"}, "user_tags": {"type": "STRING", "comment": null, "index": 16, "name": "user_tags"}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 10.0, "description": "Approximate count of rows in this table", "include": true}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 1290.0, "description": "Approximate size of table as reported by BigQuery", "include": true}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "description": "Indicates whether there are statistics for this table", "include": false}}, "unique_id": "model.zendesk.int_zendesk__user_aggregates"}, "model.zendesk.int_zendesk__assignee_updates": {"metadata": {"type": "table", "database": "dbt-package-testing", "schema": "zendesk_integration_tests_zendesk_intermediate", "name": "int_zendesk__assignee_updates", "comment": null, "owner": null}, "columns": {"ticket_id": {"type": "INT64", "comment": null, "index": 1, "name": "ticket_id"}, "assignee_id": {"type": "INT64", "comment": null, "index": 2, "name": "assignee_id"}, "last_updated": {"type": "TIMESTAMP", "comment": null, "index": 3, "name": "last_updated"}, "total_updates": {"type": "INT64", "comment": null, "index": 4, "name": "total_updates"}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 10.0, "description": "Approximate count of rows in this table", "include": true}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 224.0, "description": "Approximate size of table as reported by BigQuery", "include": true}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "description": "Indicates whether there are statistics for this table", "include": false}}, "unique_id": "model.zendesk.int_zendesk__assignee_updates"}, "model.zendesk.int_zendesk__requester_updates": {"metadata": {"type": "table", "database": "dbt-package-testing", "schema": "zendesk_integration_tests_zendesk_intermediate", "name": "int_zendesk__requester_updates", "comment": null, "owner": null}, "columns": {"ticket_id": {"type": "INT64", "comment": null, "index": 1, "name": "ticket_id"}, "requester_id": {"type": "INT64", "comment": null, "index": 2, "name": "requester_id"}, "last_updated": {"type": "TIMESTAMP", "comment": null, "index": 3, "name": "last_updated"}, "total_updates": {"type": "INT64", "comment": null, "index": 4, "name": "total_updates"}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 10.0, "description": "Approximate count of rows in this table", "include": true}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 240.0, "description": "Approximate size of table as reported by BigQuery", "include": true}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "description": "Indicates whether there are statistics for this table", "include": false}}, "unique_id": "model.zendesk.int_zendesk__requester_updates"}, "model.zendesk.int_zendesk__requester_wait_time_filtered_statuses": {"metadata": {"type": "table", "database": "dbt-package-testing", "schema": "zendesk_integration_tests_zendesk_intermediate", "name": "int_zendesk__requester_wait_time_filtered_statuses", "comment": null, "owner": null}, "columns": {"ticket_id": {"type": "INT64", "comment": null, "index": 1, "name": "ticket_id"}, "valid_starting_at": {"type": "TIMESTAMP", "comment": null, "index": 2, "name": "valid_starting_at"}, "valid_ending_at": {"type": "TIMESTAMP", "comment": null, "index": 3, "name": "valid_ending_at"}, "ticket_status": {"type": "STRING", "comment": null, "index": 4, "name": "ticket_status"}, "sla_applied_at": {"type": "TIMESTAMP", "comment": null, "index": 5, "name": "sla_applied_at"}, "target": {"type": "INT64", "comment": null, "index": 6, "name": "target"}, "sla_policy_name": {"type": "STRING", "comment": null, "index": 7, "name": "sla_policy_name"}, "ticket_created_at": {"type": "TIMESTAMP", "comment": null, "index": 8, "name": "ticket_created_at"}, "in_business_hours": {"type": "STRING", "comment": null, "index": 9, "name": "in_business_hours"}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 0.0, "description": "Approximate count of rows in this table", "include": true}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 0.0, "description": "Approximate size of table as reported by BigQuery", "include": true}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "description": "Indicates whether there are statistics for this table", "include": false}}, "unique_id": "model.zendesk.int_zendesk__requester_wait_time_filtered_statuses"}, "model.zendesk.int_zendesk__comment_metrics": {"metadata": {"type": "table", "database": "dbt-package-testing", "schema": "zendesk_integration_tests_zendesk_intermediate", "name": "int_zendesk__comment_metrics", "comment": null, "owner": null}, "columns": {"ticket_id": {"type": "INT64", "comment": null, "index": 1, "name": "ticket_id"}, "last_comment_added_at": {"type": "TIMESTAMP", "comment": null, "index": 2, "name": "last_comment_added_at"}, "count_agent_comments": {"type": "INT64", "comment": null, "index": 3, "name": "count_agent_comments"}, "count_end_user_comments": {"type": "INT64", "comment": null, "index": 4, "name": "count_end_user_comments"}, "count_public_comments": {"type": "INT64", "comment": null, "index": 5, "name": "count_public_comments"}, "count_internal_comments": {"type": "INT64", "comment": null, "index": 6, "name": "count_internal_comments"}, "total_comments": {"type": "INT64", "comment": null, "index": 7, "name": "total_comments"}, "is_one_touch_resolution": {"type": "BOOL", "comment": null, "index": 8, "name": "is_one_touch_resolution"}, "is_two_touch_resolution": {"type": "BOOL", "comment": null, "index": 9, "name": "is_two_touch_resolution"}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 0.0, "description": "Approximate count of rows in this table", "include": true}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 0.0, "description": "Approximate size of table as reported by BigQuery", "include": true}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "description": "Indicates whether there are statistics for this table", "include": false}}, "unique_id": "model.zendesk.int_zendesk__comment_metrics"}, "model.zendesk.int_zendesk__reply_time_business_hours": {"metadata": {"type": "table", "database": "dbt-package-testing", "schema": "zendesk_integration_tests_zendesk_intermediate", "name": "int_zendesk__reply_time_business_hours", "comment": null, "owner": null}, "columns": {"ticket_id": {"type": "INT64", "comment": null, "index": 1, "name": "ticket_id"}, "sla_policy_name": {"type": "STRING", "comment": null, "index": 2, "name": "sla_policy_name"}, "metric": {"type": "STRING", "comment": null, "index": 3, "name": "metric"}, "sla_applied_at": {"type": "TIMESTAMP", "comment": null, "index": 4, "name": "sla_applied_at"}, "target": {"type": "INT64", "comment": null, "index": 5, "name": "target"}, "in_business_hours": {"type": "STRING", "comment": null, "index": 6, "name": "in_business_hours"}, "sla_breach_at": {"type": "TIMESTAMP", "comment": null, "index": 7, "name": "sla_breach_at"}, "is_breached_during_schedule": {"type": "BOOL", "comment": null, "index": 8, "name": "is_breached_during_schedule"}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 0.0, "description": "Approximate count of rows in this table", "include": true}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 0.0, "description": "Approximate size of table as reported by BigQuery", "include": true}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "description": "Indicates whether there are statistics for this table", "include": false}}, "unique_id": "model.zendesk.int_zendesk__reply_time_business_hours"}, "model.zendesk.int_zendesk__agent_work_time_calendar_hours": {"metadata": {"type": "table", "database": "dbt-package-testing", "schema": "zendesk_integration_tests_zendesk_intermediate", "name": "int_zendesk__agent_work_time_calendar_hours", "comment": null, "owner": null}, "columns": {"ticket_id": {"type": "INT64", "comment": null, "index": 1, "name": "ticket_id"}, "valid_starting_at": {"type": "TIMESTAMP", "comment": null, "index": 2, "name": "valid_starting_at"}, "valid_ending_at": {"type": "TIMESTAMP", "comment": null, "index": 3, "name": "valid_ending_at"}, "ticket_status": {"type": "STRING", "comment": null, "index": 4, "name": "ticket_status"}, "sla_applied_at": {"type": "TIMESTAMP", "comment": null, "index": 5, "name": "sla_applied_at"}, "target": {"type": "INT64", "comment": null, "index": 6, "name": "target"}, "sla_policy_name": {"type": "STRING", "comment": null, "index": 7, "name": "sla_policy_name"}, "ticket_created_at": {"type": "TIMESTAMP", "comment": null, "index": 8, "name": "ticket_created_at"}, "in_business_hours": {"type": "STRING", "comment": null, "index": 9, "name": "in_business_hours"}, "calendar_minutes": {"type": "INT64", "comment": null, "index": 10, "name": "calendar_minutes"}, "running_total_calendar_minutes": {"type": "INT64", "comment": null, "index": 11, "name": "running_total_calendar_minutes"}, "remaining_target_minutes": {"type": "INT64", "comment": null, "index": 12, "name": "remaining_target_minutes"}, "is_breached_during_schedule": {"type": "BOOL", "comment": null, "index": 13, "name": "is_breached_during_schedule"}, "breach_minutes": {"type": "INT64", "comment": null, "index": 14, "name": "breach_minutes"}, "sla_breach_at": {"type": "TIMESTAMP", "comment": null, "index": 15, "name": "sla_breach_at"}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 0.0, "description": "Approximate count of rows in this table", "include": true}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 0.0, "description": "Approximate size of table as reported by BigQuery", "include": true}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "description": "Indicates whether there are statistics for this table", "include": false}}, "unique_id": "model.zendesk.int_zendesk__agent_work_time_calendar_hours"}, "model.zendesk.zendesk__ticket_summary": {"metadata": {"type": "table", "database": "dbt-package-testing", "schema": "zendesk_integration_tests", "name": "zendesk__ticket_summary", "comment": null, "owner": null}, "columns": {"user_count": {"type": "INT64", "comment": null, "index": 1, "name": "user_count"}, "active_agent_count": {"type": "INT64", "comment": null, "index": 2, "name": "active_agent_count"}, "deleted_user_count": {"type": "INT64", "comment": null, "index": 3, "name": "deleted_user_count"}, "end_user_count": {"type": "INT64", "comment": null, "index": 4, "name": "end_user_count"}, "suspended_user_count": {"type": "INT64", "comment": null, "index": 5, "name": "suspended_user_count"}, "new_ticket_count": {"type": "INT64", "comment": null, "index": 6, "name": "new_ticket_count"}, "on_hold_ticket_count": {"type": "INT64", "comment": null, "index": 7, "name": "on_hold_ticket_count"}, "open_ticket_count": {"type": "INT64", "comment": null, "index": 8, "name": "open_ticket_count"}, "pending_ticket_count": {"type": "INT64", "comment": null, "index": 9, "name": "pending_ticket_count"}, "solved_ticket_count": {"type": "INT64", "comment": null, "index": 10, "name": "solved_ticket_count"}, "problem_ticket_count": {"type": "INT64", "comment": null, "index": 11, "name": "problem_ticket_count"}, "assigned_ticket_count": {"type": "INT64", "comment": null, "index": 12, "name": "assigned_ticket_count"}, "reassigned_ticket_count": {"type": "INT64", "comment": null, "index": 13, "name": "reassigned_ticket_count"}, "reopened_ticket_count": {"type": "INT64", "comment": null, "index": 14, "name": "reopened_ticket_count"}, "surveyed_satisfaction_ticket_count": {"type": "INT64", "comment": null, "index": 15, "name": "surveyed_satisfaction_ticket_count"}, "unassigned_unsolved_ticket_count": {"type": "INT64", "comment": null, "index": 16, "name": "unassigned_unsolved_ticket_count"}, "unreplied_ticket_count": {"type": "INT64", "comment": null, "index": 17, "name": "unreplied_ticket_count"}, "unreplied_unsolved_ticket_count": {"type": "INT64", "comment": null, "index": 18, "name": "unreplied_unsolved_ticket_count"}, "unsolved_ticket_count": {"type": "INT64", "comment": null, "index": 19, "name": "unsolved_ticket_count"}, "recovered_ticket_count": {"type": "INT64", "comment": null, "index": 20, "name": "recovered_ticket_count"}, "deleted_ticket_count": {"type": "INT64", "comment": null, "index": 21, "name": "deleted_ticket_count"}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 1.0, "description": "Approximate count of rows in this table", "include": true}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 40.0, "description": "Approximate size of table as reported by BigQuery", "include": true}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "description": "Indicates whether there are statistics for this table", "include": false}}, "unique_id": "model.zendesk.zendesk__ticket_summary"}, "seed.zendesk_integration_tests.ticket_schedule_data": {"metadata": {"type": "table", "database": "dbt-package-testing", "schema": "zendesk_integration_tests", "name": "ticket_schedule_data", "comment": null, "owner": null}, "columns": {"created_at": {"type": "TIMESTAMP", "comment": null, "index": 1, "name": "created_at"}, "ticket_id": {"type": "INT64", "comment": null, "index": 2, "name": "ticket_id"}, "_fivetran_synced": {"type": "TIMESTAMP", "comment": null, "index": 3, "name": "_fivetran_synced"}, "schedule_id": {"type": "INT64", "comment": null, "index": 4, "name": "schedule_id"}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 10.0, "description": "Approximate count of rows in this table", "include": true}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 320.0, "description": "Approximate size of table as reported by BigQuery", "include": true}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "description": "Indicates whether there are statistics for this table", "include": false}}, "unique_id": "seed.zendesk_integration_tests.ticket_schedule_data"}, "seed.zendesk_integration_tests.ticket_field_history_data": {"metadata": {"type": "table", "database": "dbt-package-testing", "schema": "zendesk_integration_tests", "name": "ticket_field_history_data", "comment": null, "owner": null}, "columns": {"field_name": {"type": "STRING", "comment": null, "index": 1, "name": "field_name"}, "ticket_id": {"type": "INT64", "comment": null, "index": 2, "name": "ticket_id"}, "updated": {"type": "TIMESTAMP", "comment": null, "index": 3, "name": "updated"}, "_fivetran_synced": {"type": "TIMESTAMP", "comment": null, "index": 4, "name": "_fivetran_synced"}, "user_id": {"type": "INT64", "comment": null, "index": 5, "name": "user_id"}, "value": {"type": "STRING", "comment": null, "index": 6, "name": "value"}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 20.0, "description": "Approximate count of rows in this table", "include": true}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 805.0, "description": "Approximate size of table as reported by BigQuery", "include": true}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "description": "Indicates whether there are statistics for this table", "include": false}}, "unique_id": "seed.zendesk_integration_tests.ticket_field_history_data"}, "seed.zendesk_integration_tests.brand_data": {"metadata": {"type": "table", "database": "dbt-package-testing", "schema": "zendesk_integration_tests", "name": "brand_data", "comment": null, "owner": null}, "columns": {"id": {"type": "INT64", "comment": null, "index": 1, "name": "id"}, "_fivetran_deleted": {"type": "BOOL", "comment": null, "index": 2, "name": "_fivetran_deleted"}, "_fivetran_synced": {"type": "TIMESTAMP", "comment": null, "index": 3, "name": "_fivetran_synced"}, "active": {"type": "BOOL", "comment": null, "index": 4, "name": "active"}, "brand_url": {"type": "STRING", "comment": null, "index": 5, "name": "brand_url"}, "default": {"type": "BOOL", "comment": null, "index": 6, "name": "default"}, "has_help_center": {"type": "BOOL", "comment": null, "index": 7, "name": "has_help_center"}, "help_center_state": {"type": "STRING", "comment": null, "index": 8, "name": "help_center_state"}, "logo_content_type": {"type": "STRING", "comment": null, "index": 9, "name": "logo_content_type"}, "logo_content_url": {"type": "STRING", "comment": null, "index": 10, "name": "logo_content_url"}, "logo_deleted": {"type": "BOOL", "comment": null, "index": 11, "name": "logo_deleted"}, "logo_file_name": {"type": "STRING", "comment": null, "index": 12, "name": "logo_file_name"}, "logo_height": {"type": "INT64", "comment": null, "index": 13, "name": "logo_height"}, "logo_id": {"type": "INT64", "comment": null, "index": 14, "name": "logo_id"}, "logo_inline": {"type": "BOOL", "comment": null, "index": 15, "name": "logo_inline"}, "logo_mapped_content_url": {"type": "STRING", "comment": null, "index": 16, "name": "logo_mapped_content_url"}, "logo_size": {"type": "INT64", "comment": null, "index": 17, "name": "logo_size"}, "logo_url": {"type": "STRING", "comment": null, "index": 18, "name": "logo_url"}, "logo_width": {"type": "INT64", "comment": null, "index": 19, "name": "logo_width"}, "name": {"type": "STRING", "comment": null, "index": 20, "name": "name"}, "subdomain": {"type": "STRING", "comment": null, "index": 21, "name": "subdomain"}, "url": {"type": "STRING", "comment": null, "index": 22, "name": "url"}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 1.0, "description": "Approximate count of rows in this table", "include": true}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 346.0, "description": "Approximate size of table as reported by BigQuery", "include": true}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "description": "Indicates whether there are statistics for this table", "include": false}}, "unique_id": "seed.zendesk_integration_tests.brand_data"}, "seed.zendesk_integration_tests.ticket_form_history_data": {"metadata": {"type": "table", "database": "dbt-package-testing", "schema": "zendesk_integration_tests", "name": "ticket_form_history_data", "comment": null, "owner": null}, "columns": {"id": {"type": "INT64", "comment": null, "index": 1, "name": "id"}, "updated_at": {"type": "DATETIME", "comment": null, "index": 2, "name": "updated_at"}, "_fivetran_deleted": {"type": "BOOL", "comment": null, "index": 3, "name": "_fivetran_deleted"}, "_fivetran_synced": {"type": "TIMESTAMP", "comment": null, "index": 4, "name": "_fivetran_synced"}, "active": {"type": "BOOL", "comment": null, "index": 5, "name": "active"}, "created_at": {"type": "DATETIME", "comment": null, "index": 6, "name": "created_at"}, "display_name": {"type": "STRING", "comment": null, "index": 7, "name": "display_name"}, "end_user_visible": {"type": "BOOL", "comment": null, "index": 8, "name": "end_user_visible"}, "name": {"type": "STRING", "comment": null, "index": 9, "name": "name"}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 15.0, "description": "Approximate count of rows in this table", "include": true}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 1545.0, "description": "Approximate size of table as reported by BigQuery", "include": true}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "description": "Indicates whether there are statistics for this table", "include": false}}, "unique_id": "seed.zendesk_integration_tests.ticket_form_history_data"}, "seed.zendesk_integration_tests.user_data": {"metadata": {"type": "table", "database": "dbt-package-testing", "schema": "zendesk_integration_tests", "name": "user_data", "comment": null, "owner": null}, "columns": {"id": {"type": "INT64", "comment": null, "index": 1, "name": "id"}, "_fivetran_synced": {"type": "TIMESTAMP", "comment": null, "index": 2, "name": "_fivetran_synced"}, "active": {"type": "BOOL", "comment": null, "index": 3, "name": "active"}, "alias": {"type": "INT64", "comment": null, "index": 4, "name": "alias"}, "authenticity_token": {"type": "INT64", "comment": null, "index": 5, "name": "authenticity_token"}, "chat_only": {"type": "BOOL", "comment": null, "index": 6, "name": "chat_only"}, "created_at": {"type": "TIMESTAMP", "comment": null, "index": 7, "name": "created_at"}, "details": {"type": "INT64", "comment": null, "index": 8, "name": "details"}, "email": {"type": "STRING", "comment": null, "index": 9, "name": "email"}, "external_id": {"type": "STRING", "comment": null, "index": 10, "name": "external_id"}, "last_login_at": {"type": "TIMESTAMP", "comment": null, "index": 11, "name": "last_login_at"}, "locale": {"type": "STRING", "comment": null, "index": 12, "name": "locale"}, "locale_id": {"type": "INT64", "comment": null, "index": 13, "name": "locale_id"}, "moderator": {"type": "BOOL", "comment": null, "index": 14, "name": "moderator"}, "name": {"type": "STRING", "comment": null, "index": 15, "name": "name"}, "notes": {"type": "INT64", "comment": null, "index": 16, "name": "notes"}, "only_private_comments": {"type": "BOOL", "comment": null, "index": 17, "name": "only_private_comments"}, "organization_id": {"type": "INT64", "comment": null, "index": 18, "name": "organization_id"}, "phone": {"type": "INT64", "comment": null, "index": 19, "name": "phone"}, "remote_photo_url": {"type": "INT64", "comment": null, "index": 20, "name": "remote_photo_url"}, "restricted_agent": {"type": "BOOL", "comment": null, "index": 21, "name": "restricted_agent"}, "role": {"type": "STRING", "comment": null, "index": 22, "name": "role"}, "shared": {"type": "BOOL", "comment": null, "index": 23, "name": "shared"}, "shared_agent": {"type": "BOOL", "comment": null, "index": 24, "name": "shared_agent"}, "signature": {"type": "INT64", "comment": null, "index": 25, "name": "signature"}, "suspended": {"type": "BOOL", "comment": null, "index": 26, "name": "suspended"}, "ticket_restriction": {"type": "STRING", "comment": null, "index": 27, "name": "ticket_restriction"}, "time_zone": {"type": "STRING", "comment": null, "index": 28, "name": "time_zone"}, "two_factor_auth_enabled": {"type": "BOOL", "comment": null, "index": 29, "name": "two_factor_auth_enabled"}, "updated_at": {"type": "DATETIME", "comment": null, "index": 30, "name": "updated_at"}, "url": {"type": "STRING", "comment": null, "index": 31, "name": "url"}, "verified": {"type": "BOOL", "comment": null, "index": 32, "name": "verified"}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 10.0, "description": "Approximate count of rows in this table", "include": true}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 2100.0, "description": "Approximate size of table as reported by BigQuery", "include": true}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "description": "Indicates whether there are statistics for this table", "include": false}}, "unique_id": "seed.zendesk_integration_tests.user_data"}, "seed.zendesk_integration_tests.domain_name_data": {"metadata": {"type": "table", "database": "dbt-package-testing", "schema": "zendesk_integration_tests", "name": "domain_name_data", "comment": null, "owner": null}, "columns": {"index": {"type": "INT64", "comment": null, "index": 1, "name": "index"}, "organization_id": {"type": "INT64", "comment": null, "index": 2, "name": "organization_id"}, "_fivetran_synced": {"type": "TIMESTAMP", "comment": null, "index": 3, "name": "_fivetran_synced"}, "domain_name": {"type": "STRING", "comment": null, "index": 4, "name": "domain_name"}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 10.0, "description": "Approximate count of rows in this table", "include": true}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 580.0, "description": "Approximate size of table as reported by BigQuery", "include": true}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "description": "Indicates whether there are statistics for this table", "include": false}}, "unique_id": "seed.zendesk_integration_tests.domain_name_data"}, "seed.zendesk_integration_tests.ticket_comment_data": {"metadata": {"type": "table", "database": "dbt-package-testing", "schema": "zendesk_integration_tests", "name": "ticket_comment_data", "comment": null, "owner": null}, "columns": {"id": {"type": "INT64", "comment": null, "index": 1, "name": "id"}, "_fivetran_synced": {"type": "TIMESTAMP", "comment": null, "index": 2, "name": "_fivetran_synced"}, "body": {"type": "STRING", "comment": null, "index": 3, "name": "body"}, "created": {"type": "TIMESTAMP", "comment": null, "index": 4, "name": "created"}, "facebook_comment": {"type": "BOOL", "comment": null, "index": 5, "name": "facebook_comment"}, "public": {"type": "BOOL", "comment": null, "index": 6, "name": "public"}, "ticket_id": {"type": "INT64", "comment": null, "index": 7, "name": "ticket_id"}, "tweet": {"type": "BOOL", "comment": null, "index": 8, "name": "tweet"}, "user_id": {"type": "INT64", "comment": null, "index": 9, "name": "user_id"}, "voice_comment": {"type": "BOOL", "comment": null, "index": 10, "name": "voice_comment"}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 20.0, "description": "Approximate count of rows in this table", "include": true}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 1031.0, "description": "Approximate size of table as reported by BigQuery", "include": true}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "description": "Indicates whether there are statistics for this table", "include": false}}, "unique_id": "seed.zendesk_integration_tests.ticket_comment_data"}, "seed.zendesk_integration_tests.user_tag_data": {"metadata": {"type": "table", "database": "dbt-package-testing", "schema": "zendesk_integration_tests", "name": "user_tag_data", "comment": null, "owner": null}, "columns": {"tag": {"type": "STRING", "comment": null, "index": 1, "name": "tag"}, "user_id": {"type": "INT64", "comment": null, "index": 2, "name": "user_id"}, "_fivetran_synced": {"type": "TIMESTAMP", "comment": null, "index": 3, "name": "_fivetran_synced"}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 10.0, "description": "Approximate count of rows in this table", "include": true}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 500.0, "description": "Approximate size of table as reported by BigQuery", "include": true}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "description": "Indicates whether there are statistics for this table", "include": false}}, "unique_id": "seed.zendesk_integration_tests.user_tag_data"}, "model.zendesk.zendesk__ticket_enriched": {"metadata": {"type": "table", "database": "dbt-package-testing", "schema": "zendesk_integration_tests", "name": "zendesk__ticket_enriched", "comment": null, "owner": null}, "columns": {"ticket_id": {"type": "INT64", "comment": null, "index": 1, "name": "ticket_id"}, "_fivetran_synced": {"type": "TIMESTAMP", "comment": null, "index": 2, "name": "_fivetran_synced"}, "assignee_id": {"type": "INT64", "comment": null, "index": 3, "name": "assignee_id"}, "brand_id": {"type": "INT64", "comment": null, "index": 4, "name": "brand_id"}, "created_at": {"type": "TIMESTAMP", "comment": null, "index": 5, "name": "created_at"}, "description": {"type": "STRING", "comment": null, "index": 6, "name": "description"}, "due_at": {"type": "TIMESTAMP", "comment": null, "index": 7, "name": "due_at"}, "group_id": {"type": "INT64", "comment": null, "index": 8, "name": "group_id"}, "external_id": {"type": "INT64", "comment": null, "index": 9, "name": "external_id"}, "is_public": {"type": "BOOL", "comment": null, "index": 10, "name": "is_public"}, "organization_id": {"type": "INT64", "comment": null, "index": 11, "name": "organization_id"}, "priority": {"type": "INT64", "comment": null, "index": 12, "name": "priority"}, "recipient": {"type": "STRING", "comment": null, "index": 13, "name": "recipient"}, "requester_id": {"type": "INT64", "comment": null, "index": 14, "name": "requester_id"}, "status": {"type": "STRING", "comment": null, "index": 15, "name": "status"}, "subject": {"type": "STRING", "comment": null, "index": 16, "name": "subject"}, "problem_id": {"type": "INT64", "comment": null, "index": 17, "name": "problem_id"}, "submitter_id": {"type": "INT64", "comment": null, "index": 18, "name": "submitter_id"}, "ticket_form_id": {"type": "INT64", "comment": null, "index": 19, "name": "ticket_form_id"}, "type": {"type": "STRING", "comment": null, "index": 20, "name": "type"}, "updated_at": {"type": "DATETIME", "comment": null, "index": 21, "name": "updated_at"}, "url": {"type": "STRING", "comment": null, "index": 22, "name": "url"}, "created_channel": {"type": "STRING", "comment": null, "index": 23, "name": "created_channel"}, "source_from_id": {"type": "INT64", "comment": null, "index": 24, "name": "source_from_id"}, "source_from_title": {"type": "INT64", "comment": null, "index": 25, "name": "source_from_title"}, "source_rel": {"type": "INT64", "comment": null, "index": 26, "name": "source_rel"}, "source_to_address": {"type": "STRING", "comment": null, "index": 27, "name": "source_to_address"}, "source_to_name": {"type": "STRING", "comment": null, "index": 28, "name": "source_to_name"}, "is_incident": {"type": "BOOL", "comment": null, "index": 29, "name": "is_incident"}, "ticket_brand_name": {"type": "STRING", "comment": null, "index": 30, "name": "ticket_brand_name"}, "ticket_tags": {"type": "STRING", "comment": null, "index": 31, "name": "ticket_tags"}, "ticket_form_name": {"type": "STRING", "comment": null, "index": 32, "name": "ticket_form_name"}, "ticket_total_satisfaction_scores": {"type": "INT64", "comment": null, "index": 33, "name": "ticket_total_satisfaction_scores"}, "ticket_first_satisfaction_score": {"type": "STRING", "comment": null, "index": 34, "name": "ticket_first_satisfaction_score"}, "ticket_satisfaction_score": {"type": "STRING", "comment": null, "index": 35, "name": "ticket_satisfaction_score"}, "ticket_satisfaction_comment": {"type": "STRING", "comment": null, "index": 36, "name": "ticket_satisfaction_comment"}, "ticket_satisfaction_reason": {"type": "STRING", "comment": null, "index": 37, "name": "ticket_satisfaction_reason"}, "is_good_to_bad_satisfaction_score": {"type": "BOOL", "comment": null, "index": 38, "name": "is_good_to_bad_satisfaction_score"}, "is_bad_to_good_satisfaction_score": {"type": "BOOL", "comment": null, "index": 39, "name": "is_bad_to_good_satisfaction_score"}, "ticket_organization_domain_names": {"type": "STRING", "comment": null, "index": 40, "name": "ticket_organization_domain_names"}, "requester_organization_domain_names": {"type": "STRING", "comment": null, "index": 41, "name": "requester_organization_domain_names"}, "requester_external_id": {"type": "STRING", "comment": null, "index": 42, "name": "requester_external_id"}, "requester_created_at": {"type": "TIMESTAMP", "comment": null, "index": 43, "name": "requester_created_at"}, "requester_updated_at": {"type": "DATETIME", "comment": null, "index": 44, "name": "requester_updated_at"}, "requester_role": {"type": "STRING", "comment": null, "index": 45, "name": "requester_role"}, "requester_email": {"type": "STRING", "comment": null, "index": 46, "name": "requester_email"}, "requester_name": {"type": "STRING", "comment": null, "index": 47, "name": "requester_name"}, "is_requester_active": {"type": "BOOL", "comment": null, "index": 48, "name": "is_requester_active"}, "requester_locale": {"type": "STRING", "comment": null, "index": 49, "name": "requester_locale"}, "requester_time_zone": {"type": "STRING", "comment": null, "index": 50, "name": "requester_time_zone"}, "requester_ticket_update_count": {"type": "INT64", "comment": null, "index": 51, "name": "requester_ticket_update_count"}, "requester_ticket_last_update_at": {"type": "TIMESTAMP", "comment": null, "index": 52, "name": "requester_ticket_last_update_at"}, "requester_last_login_at": {"type": "TIMESTAMP", "comment": null, "index": 53, "name": "requester_last_login_at"}, "requester_organization_id": {"type": "INT64", "comment": null, "index": 54, "name": "requester_organization_id"}, "requester_organization_name": {"type": "STRING", "comment": null, "index": 55, "name": "requester_organization_name"}, "requester_organization_tags": {"type": "STRING", "comment": null, "index": 56, "name": "requester_organization_tags"}, "requester_organization_external_id": {"type": "INT64", "comment": null, "index": 57, "name": "requester_organization_external_id"}, "requester_organization_created_at": {"type": "TIMESTAMP", "comment": null, "index": 58, "name": "requester_organization_created_at"}, "requester_organization_updated_at": {"type": "TIMESTAMP", "comment": null, "index": 59, "name": "requester_organization_updated_at"}, "submitter_external_id": {"type": "STRING", "comment": null, "index": 60, "name": "submitter_external_id"}, "submitter_role": {"type": "STRING", "comment": null, "index": 61, "name": "submitter_role"}, "is_agent_submitted": {"type": "BOOL", "comment": null, "index": 62, "name": "is_agent_submitted"}, "submitter_email": {"type": "STRING", "comment": null, "index": 63, "name": "submitter_email"}, "submitter_name": {"type": "STRING", "comment": null, "index": 64, "name": "submitter_name"}, "is_submitter_active": {"type": "BOOL", "comment": null, "index": 65, "name": "is_submitter_active"}, "submitter_locale": {"type": "STRING", "comment": null, "index": 66, "name": "submitter_locale"}, "submitter_time_zone": {"type": "STRING", "comment": null, "index": 67, "name": "submitter_time_zone"}, "assignee_external_id": {"type": "STRING", "comment": null, "index": 68, "name": "assignee_external_id"}, "assignee_role": {"type": "STRING", "comment": null, "index": 69, "name": "assignee_role"}, "assignee_email": {"type": "STRING", "comment": null, "index": 70, "name": "assignee_email"}, "assignee_name": {"type": "STRING", "comment": null, "index": 71, "name": "assignee_name"}, "is_assignee_active": {"type": "BOOL", "comment": null, "index": 72, "name": "is_assignee_active"}, "assignee_locale": {"type": "STRING", "comment": null, "index": 73, "name": "assignee_locale"}, "assignee_time_zone": {"type": "STRING", "comment": null, "index": 74, "name": "assignee_time_zone"}, "assignee_ticket_update_count": {"type": "INT64", "comment": null, "index": 75, "name": "assignee_ticket_update_count"}, "assignee_ticket_last_update_at": {"type": "TIMESTAMP", "comment": null, "index": 76, "name": "assignee_ticket_last_update_at"}, "assignee_last_login_at": {"type": "TIMESTAMP", "comment": null, "index": 77, "name": "assignee_last_login_at"}, "group_name": {"type": "STRING", "comment": null, "index": 78, "name": "group_name"}, "organization_name": {"type": "STRING", "comment": null, "index": 79, "name": "organization_name"}, "requester_tag": {"type": "STRING", "comment": null, "index": 80, "name": "requester_tag"}, "submitter_tag": {"type": "STRING", "comment": null, "index": 81, "name": "submitter_tag"}, "assignee_tag": {"type": "STRING", "comment": null, "index": 82, "name": "assignee_tag"}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 0.0, "description": "Approximate count of rows in this table", "include": true}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 0.0, "description": "Approximate size of table as reported by BigQuery", "include": true}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "description": "Indicates whether there are statistics for this table", "include": false}}, "unique_id": "model.zendesk.zendesk__ticket_enriched"}, "seed.zendesk_integration_tests.ticket_data": {"metadata": {"type": "table", "database": "dbt-package-testing", "schema": "zendesk_integration_tests", "name": "ticket_data", "comment": null, "owner": null}, "columns": {"id": {"type": "INT64", "comment": null, "index": 1, "name": "id"}, "_fivetran_synced": {"type": "TIMESTAMP", "comment": null, "index": 2, "name": "_fivetran_synced"}, "allow_channelback": {"type": "BOOL", "comment": null, "index": 3, "name": "allow_channelback"}, "assignee_id": {"type": "INT64", "comment": null, "index": 4, "name": "assignee_id"}, "brand_id": {"type": "INT64", "comment": null, "index": 5, "name": "brand_id"}, "created_at": {"type": "TIMESTAMP", "comment": null, "index": 6, "name": "created_at"}, "description": {"type": "STRING", "comment": null, "index": 7, "name": "description"}, "due_at": {"type": "TIMESTAMP", "comment": null, "index": 8, "name": "due_at"}, "external_id": {"type": "INT64", "comment": null, "index": 9, "name": "external_id"}, "forum_topic_id": {"type": "INT64", "comment": null, "index": 10, "name": "forum_topic_id"}, "group_id": {"type": "INT64", "comment": null, "index": 11, "name": "group_id"}, "has_incidents": {"type": "BOOL", "comment": null, "index": 12, "name": "has_incidents"}, "is_public": {"type": "BOOL", "comment": null, "index": 13, "name": "is_public"}, "organization_id": {"type": "INT64", "comment": null, "index": 14, "name": "organization_id"}, "priority": {"type": "INT64", "comment": null, "index": 15, "name": "priority"}, "problem_id": {"type": "INT64", "comment": null, "index": 16, "name": "problem_id"}, "recipient": {"type": "STRING", "comment": null, "index": 17, "name": "recipient"}, "requester_id": {"type": "INT64", "comment": null, "index": 18, "name": "requester_id"}, "status": {"type": "STRING", "comment": null, "index": 19, "name": "status"}, "subject": {"type": "STRING", "comment": null, "index": 20, "name": "subject"}, "submitter_id": {"type": "INT64", "comment": null, "index": 21, "name": "submitter_id"}, "system_client": {"type": "INT64", "comment": null, "index": 22, "name": "system_client"}, "ticket_form_id": {"type": "INT64", "comment": null, "index": 23, "name": "ticket_form_id"}, "type": {"type": "STRING", "comment": null, "index": 24, "name": "type"}, "updated_at": {"type": "DATETIME", "comment": null, "index": 25, "name": "updated_at"}, "url": {"type": "STRING", "comment": null, "index": 26, "name": "url"}, "via_channel": {"type": "STRING", "comment": null, "index": 27, "name": "via_channel"}, "via_source_from_id": {"type": "INT64", "comment": null, "index": 28, "name": "via_source_from_id"}, "via_source_from_title": {"type": "INT64", "comment": null, "index": 29, "name": "via_source_from_title"}, "via_source_rel": {"type": "INT64", "comment": null, "index": 30, "name": "via_source_rel"}, "via_source_to_address": {"type": "STRING", "comment": null, "index": 31, "name": "via_source_to_address"}, "via_source_to_name": {"type": "STRING", "comment": null, "index": 32, "name": "via_source_to_name"}, "merged_ticket_ids": {"type": "STRING", "comment": null, "index": 33, "name": "merged_ticket_ids"}, "via_source_from_address": {"type": "INT64", "comment": null, "index": 34, "name": "via_source_from_address"}, "followup_ids": {"type": "STRING", "comment": null, "index": 35, "name": "followup_ids"}, "via_followup_source_id": {"type": "INT64", "comment": null, "index": 36, "name": "via_followup_source_id"}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 10.0, "description": "Approximate count of rows in this table", "include": true}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 2186.0, "description": "Approximate size of table as reported by BigQuery", "include": true}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "description": "Indicates whether there are statistics for this table", "include": false}}, "unique_id": "seed.zendesk_integration_tests.ticket_data"}, "model.zendesk.zendesk__ticket_field_history": {"metadata": {"type": "table", "database": "dbt-package-testing", "schema": "zendesk_integration_tests", "name": "zendesk__ticket_field_history", "comment": null, "owner": null}, "columns": {"date_day": {"type": "DATE", "comment": null, "index": 1, "name": "date_day"}, "ticket_id": {"type": "INT64", "comment": null, "index": 2, "name": "ticket_id"}, "status": {"type": "STRING", "comment": null, "index": 3, "name": "status"}, "priority": {"type": "STRING", "comment": null, "index": 4, "name": "priority"}, "assignee_id": {"type": "STRING", "comment": null, "index": 5, "name": "assignee_id"}, "ticket_day_id": {"type": "STRING", "comment": null, "index": 6, "name": "ticket_day_id"}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 2672.0, "description": "Approximate count of rows in this table", "include": true}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 135120.0, "description": "Approximate size of table as reported by BigQuery", "include": true}, "partitioning_type": {"id": "partitioning_type", "label": "Partitioned By", "value": "date_day", "description": "The partitioning column for this table", "include": true}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "description": "Indicates whether there are statistics for this table", "include": false}}, "unique_id": "model.zendesk.zendesk__ticket_field_history"}, "seed.zendesk_integration_tests.ticket_tag_data": {"metadata": {"type": "table", "database": "dbt-package-testing", "schema": "zendesk_integration_tests", "name": "ticket_tag_data", "comment": null, "owner": null}, "columns": {"tag": {"type": "STRING", "comment": null, "index": 1, "name": "tag"}, "ticket_id": {"type": "INT64", "comment": null, "index": 2, "name": "ticket_id"}, "_fivetran_synced": {"type": "TIMESTAMP", "comment": null, "index": 3, "name": "_fivetran_synced"}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 10.0, "description": "Approximate count of rows in this table", "include": true}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 261.0, "description": "Approximate size of table as reported by BigQuery", "include": true}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "description": "Indicates whether there are statistics for this table", "include": false}}, "unique_id": "seed.zendesk_integration_tests.ticket_tag_data"}, "model.zendesk.zendesk__ticket_metrics": {"metadata": {"type": "table", "database": "dbt-package-testing", "schema": "zendesk_integration_tests", "name": "zendesk__ticket_metrics", "comment": null, "owner": null}, "columns": {"ticket_id": {"type": "INT64", "comment": null, "index": 1, "name": "ticket_id"}, "_fivetran_synced": {"type": "TIMESTAMP", "comment": null, "index": 2, "name": "_fivetran_synced"}, "assignee_id": {"type": "INT64", "comment": null, "index": 3, "name": "assignee_id"}, "brand_id": {"type": "INT64", "comment": null, "index": 4, "name": "brand_id"}, "created_at": {"type": "TIMESTAMP", "comment": null, "index": 5, "name": "created_at"}, "description": {"type": "STRING", "comment": null, "index": 6, "name": "description"}, "due_at": {"type": "TIMESTAMP", "comment": null, "index": 7, "name": "due_at"}, "group_id": {"type": "INT64", "comment": null, "index": 8, "name": "group_id"}, "external_id": {"type": "INT64", "comment": null, "index": 9, "name": "external_id"}, "is_public": {"type": "BOOL", "comment": null, "index": 10, "name": "is_public"}, "organization_id": {"type": "INT64", "comment": null, "index": 11, "name": "organization_id"}, "priority": {"type": "INT64", "comment": null, "index": 12, "name": "priority"}, "recipient": {"type": "STRING", "comment": null, "index": 13, "name": "recipient"}, "requester_id": {"type": "INT64", "comment": null, "index": 14, "name": "requester_id"}, "status": {"type": "STRING", "comment": null, "index": 15, "name": "status"}, "subject": {"type": "STRING", "comment": null, "index": 16, "name": "subject"}, "problem_id": {"type": "INT64", "comment": null, "index": 17, "name": "problem_id"}, "submitter_id": {"type": "INT64", "comment": null, "index": 18, "name": "submitter_id"}, "ticket_form_id": {"type": "INT64", "comment": null, "index": 19, "name": "ticket_form_id"}, "type": {"type": "STRING", "comment": null, "index": 20, "name": "type"}, "updated_at": {"type": "DATETIME", "comment": null, "index": 21, "name": "updated_at"}, "url": {"type": "STRING", "comment": null, "index": 22, "name": "url"}, "created_channel": {"type": "STRING", "comment": null, "index": 23, "name": "created_channel"}, "source_from_id": {"type": "INT64", "comment": null, "index": 24, "name": "source_from_id"}, "source_from_title": {"type": "INT64", "comment": null, "index": 25, "name": "source_from_title"}, "source_rel": {"type": "INT64", "comment": null, "index": 26, "name": "source_rel"}, "source_to_address": {"type": "STRING", "comment": null, "index": 27, "name": "source_to_address"}, "source_to_name": {"type": "STRING", "comment": null, "index": 28, "name": "source_to_name"}, "is_incident": {"type": "BOOL", "comment": null, "index": 29, "name": "is_incident"}, "ticket_brand_name": {"type": "STRING", "comment": null, "index": 30, "name": "ticket_brand_name"}, "ticket_tags": {"type": "STRING", "comment": null, "index": 31, "name": "ticket_tags"}, "ticket_form_name": {"type": "STRING", "comment": null, "index": 32, "name": "ticket_form_name"}, "ticket_total_satisfaction_scores": {"type": "INT64", "comment": null, "index": 33, "name": "ticket_total_satisfaction_scores"}, "ticket_first_satisfaction_score": {"type": "STRING", "comment": null, "index": 34, "name": "ticket_first_satisfaction_score"}, "ticket_satisfaction_score": {"type": "STRING", "comment": null, "index": 35, "name": "ticket_satisfaction_score"}, "ticket_satisfaction_comment": {"type": "STRING", "comment": null, "index": 36, "name": "ticket_satisfaction_comment"}, "ticket_satisfaction_reason": {"type": "STRING", "comment": null, "index": 37, "name": "ticket_satisfaction_reason"}, "is_good_to_bad_satisfaction_score": {"type": "BOOL", "comment": null, "index": 38, "name": "is_good_to_bad_satisfaction_score"}, "is_bad_to_good_satisfaction_score": {"type": "BOOL", "comment": null, "index": 39, "name": "is_bad_to_good_satisfaction_score"}, "ticket_organization_domain_names": {"type": "STRING", "comment": null, "index": 40, "name": "ticket_organization_domain_names"}, "requester_organization_domain_names": {"type": "STRING", "comment": null, "index": 41, "name": "requester_organization_domain_names"}, "requester_external_id": {"type": "STRING", "comment": null, "index": 42, "name": "requester_external_id"}, "requester_created_at": {"type": "TIMESTAMP", "comment": null, "index": 43, "name": "requester_created_at"}, "requester_updated_at": {"type": "DATETIME", "comment": null, "index": 44, "name": "requester_updated_at"}, "requester_role": {"type": "STRING", "comment": null, "index": 45, "name": "requester_role"}, "requester_email": {"type": "STRING", "comment": null, "index": 46, "name": "requester_email"}, "requester_name": {"type": "STRING", "comment": null, "index": 47, "name": "requester_name"}, "is_requester_active": {"type": "BOOL", "comment": null, "index": 48, "name": "is_requester_active"}, "requester_locale": {"type": "STRING", "comment": null, "index": 49, "name": "requester_locale"}, "requester_time_zone": {"type": "STRING", "comment": null, "index": 50, "name": "requester_time_zone"}, "requester_ticket_update_count": {"type": "INT64", "comment": null, "index": 51, "name": "requester_ticket_update_count"}, "requester_ticket_last_update_at": {"type": "TIMESTAMP", "comment": null, "index": 52, "name": "requester_ticket_last_update_at"}, "requester_last_login_at": {"type": "TIMESTAMP", "comment": null, "index": 53, "name": "requester_last_login_at"}, "requester_organization_id": {"type": "INT64", "comment": null, "index": 54, "name": "requester_organization_id"}, "requester_organization_name": {"type": "STRING", "comment": null, "index": 55, "name": "requester_organization_name"}, "requester_organization_tags": {"type": "STRING", "comment": null, "index": 56, "name": "requester_organization_tags"}, "requester_organization_external_id": {"type": "INT64", "comment": null, "index": 57, "name": "requester_organization_external_id"}, "requester_organization_created_at": {"type": "TIMESTAMP", "comment": null, "index": 58, "name": "requester_organization_created_at"}, "requester_organization_updated_at": {"type": "TIMESTAMP", "comment": null, "index": 59, "name": "requester_organization_updated_at"}, "submitter_external_id": {"type": "STRING", "comment": null, "index": 60, "name": "submitter_external_id"}, "submitter_role": {"type": "STRING", "comment": null, "index": 61, "name": "submitter_role"}, "is_agent_submitted": {"type": "BOOL", "comment": null, "index": 62, "name": "is_agent_submitted"}, "submitter_email": {"type": "STRING", "comment": null, "index": 63, "name": "submitter_email"}, "submitter_name": {"type": "STRING", "comment": null, "index": 64, "name": "submitter_name"}, "is_submitter_active": {"type": "BOOL", "comment": null, "index": 65, "name": "is_submitter_active"}, "submitter_locale": {"type": "STRING", "comment": null, "index": 66, "name": "submitter_locale"}, "submitter_time_zone": {"type": "STRING", "comment": null, "index": 67, "name": "submitter_time_zone"}, "assignee_external_id": {"type": "STRING", "comment": null, "index": 68, "name": "assignee_external_id"}, "assignee_role": {"type": "STRING", "comment": null, "index": 69, "name": "assignee_role"}, "assignee_email": {"type": "STRING", "comment": null, "index": 70, "name": "assignee_email"}, "assignee_name": {"type": "STRING", "comment": null, "index": 71, "name": "assignee_name"}, "is_assignee_active": {"type": "BOOL", "comment": null, "index": 72, "name": "is_assignee_active"}, "assignee_locale": {"type": "STRING", "comment": null, "index": 73, "name": "assignee_locale"}, "assignee_time_zone": {"type": "STRING", "comment": null, "index": 74, "name": "assignee_time_zone"}, "assignee_ticket_update_count": {"type": "INT64", "comment": null, "index": 75, "name": "assignee_ticket_update_count"}, "assignee_ticket_last_update_at": {"type": "TIMESTAMP", "comment": null, "index": 76, "name": "assignee_ticket_last_update_at"}, "assignee_last_login_at": {"type": "TIMESTAMP", "comment": null, "index": 77, "name": "assignee_last_login_at"}, "group_name": {"type": "STRING", "comment": null, "index": 78, "name": "group_name"}, "organization_name": {"type": "STRING", "comment": null, "index": 79, "name": "organization_name"}, "requester_tag": {"type": "STRING", "comment": null, "index": 80, "name": "requester_tag"}, "submitter_tag": {"type": "STRING", "comment": null, "index": 81, "name": "submitter_tag"}, "assignee_tag": {"type": "STRING", "comment": null, "index": 82, "name": "assignee_tag"}, "first_reply_time_calendar_minutes": {"type": "INT64", "comment": null, "index": 83, "name": "first_reply_time_calendar_minutes"}, "total_reply_time_calendar_minutes": {"type": "INT64", "comment": null, "index": 84, "name": "total_reply_time_calendar_minutes"}, "count_agent_comments": {"type": "INT64", "comment": null, "index": 85, "name": "count_agent_comments"}, "count_end_user_comments": {"type": "INT64", "comment": null, "index": 86, "name": "count_end_user_comments"}, "count_internal_comments": {"type": "INT64", "comment": null, "index": 87, "name": "count_internal_comments"}, "count_public_comments": {"type": "INT64", "comment": null, "index": 88, "name": "count_public_comments"}, "total_comments": {"type": "INT64", "comment": null, "index": 89, "name": "total_comments"}, "ticket_last_comment_date": {"type": "TIMESTAMP", "comment": null, "index": 90, "name": "ticket_last_comment_date"}, "unique_assignee_count": {"type": "INT64", "comment": null, "index": 91, "name": "unique_assignee_count"}, "assignee_stations_count": {"type": "INT64", "comment": null, "index": 92, "name": "assignee_stations_count"}, "group_stations_count": {"type": "INT64", "comment": null, "index": 93, "name": "group_stations_count"}, "first_assignee_id": {"type": "STRING", "comment": null, "index": 94, "name": "first_assignee_id"}, "last_assignee_id": {"type": "STRING", "comment": null, "index": 95, "name": "last_assignee_id"}, "first_agent_assignment_date": {"type": "TIMESTAMP", "comment": null, "index": 96, "name": "first_agent_assignment_date"}, "last_agent_assignment_date": {"type": "TIMESTAMP", "comment": null, "index": 97, "name": "last_agent_assignment_date"}, "first_solved_at": {"type": "TIMESTAMP", "comment": null, "index": 98, "name": "first_solved_at"}, "last_solved_at": {"type": "TIMESTAMP", "comment": null, "index": 99, "name": "last_solved_at"}, "first_assignment_to_resolution_calendar_minutes": {"type": "INT64", "comment": null, "index": 100, "name": "first_assignment_to_resolution_calendar_minutes"}, "last_assignment_to_resolution_calendar_minutes": {"type": "INT64", "comment": null, "index": 101, "name": "last_assignment_to_resolution_calendar_minutes"}, "ticket_unassigned_duration_calendar_minutes": {"type": "FLOAT64", "comment": null, "index": 102, "name": "ticket_unassigned_duration_calendar_minutes"}, "first_resolution_calendar_minutes": {"type": "INT64", "comment": null, "index": 103, "name": "first_resolution_calendar_minutes"}, "final_resolution_calendar_minutes": {"type": "INT64", "comment": null, "index": 104, "name": "final_resolution_calendar_minutes"}, "count_resolutions": {"type": "INT64", "comment": null, "index": 105, "name": "count_resolutions"}, "count_reopens": {"type": "INT64", "comment": null, "index": 106, "name": "count_reopens"}, "ticket_deleted_count": {"type": "INT64", "comment": null, "index": 107, "name": "ticket_deleted_count"}, "total_ticket_recoveries": {"type": "INT64", "comment": null, "index": 108, "name": "total_ticket_recoveries"}, "last_status_assignment_date": {"type": "TIMESTAMP", "comment": null, "index": 109, "name": "last_status_assignment_date"}, "new_status_duration_in_calendar_minutes": {"type": "INT64", "comment": null, "index": 110, "name": "new_status_duration_in_calendar_minutes"}, "open_status_duration_in_calendar_minutes": {"type": "INT64", "comment": null, "index": 111, "name": "open_status_duration_in_calendar_minutes"}, "agent_wait_time_in_calendar_minutes": {"type": "INT64", "comment": null, "index": 112, "name": "agent_wait_time_in_calendar_minutes"}, "requester_wait_time_in_calendar_minutes": {"type": "INT64", "comment": null, "index": 113, "name": "requester_wait_time_in_calendar_minutes"}, "agent_work_time_in_calendar_minutes": {"type": "INT64", "comment": null, "index": 114, "name": "agent_work_time_in_calendar_minutes"}, "on_hold_time_in_calendar_minutes": {"type": "INT64", "comment": null, "index": 115, "name": "on_hold_time_in_calendar_minutes"}, "total_agent_replies": {"type": "INT64", "comment": null, "index": 116, "name": "total_agent_replies"}, "requester_last_login_age_minutes": {"type": "FLOAT64", "comment": null, "index": 117, "name": "requester_last_login_age_minutes"}, "assignee_last_login_age_minutes": {"type": "FLOAT64", "comment": null, "index": 118, "name": "assignee_last_login_age_minutes"}, "unsolved_ticket_age_minutes": {"type": "FLOAT64", "comment": null, "index": 119, "name": "unsolved_ticket_age_minutes"}, "unsolved_ticket_age_since_update_minutes": {"type": "FLOAT64", "comment": null, "index": 120, "name": "unsolved_ticket_age_since_update_minutes"}, "is_one_touch_resolution": {"type": "BOOL", "comment": null, "index": 121, "name": "is_one_touch_resolution"}, "is_two_touch_resolution": {"type": "BOOL", "comment": null, "index": 122, "name": "is_two_touch_resolution"}, "is_multi_touch_resolution": {"type": "BOOL", "comment": null, "index": 123, "name": "is_multi_touch_resolution"}, "first_resolution_business_minutes": {"type": "FLOAT64", "comment": null, "index": 124, "name": "first_resolution_business_minutes"}, "full_resolution_business_minutes": {"type": "FLOAT64", "comment": null, "index": 125, "name": "full_resolution_business_minutes"}, "first_reply_time_business_minutes": {"type": "FLOAT64", "comment": null, "index": 126, "name": "first_reply_time_business_minutes"}, "agent_wait_time_in_business_minutes": {"type": "FLOAT64", "comment": null, "index": 127, "name": "agent_wait_time_in_business_minutes"}, "requester_wait_time_in_business_minutes": {"type": "FLOAT64", "comment": null, "index": 128, "name": "requester_wait_time_in_business_minutes"}, "agent_work_time_in_business_minutes": {"type": "FLOAT64", "comment": null, "index": 129, "name": "agent_work_time_in_business_minutes"}, "on_hold_time_in_business_minutes": {"type": "FLOAT64", "comment": null, "index": 130, "name": "on_hold_time_in_business_minutes"}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 0.0, "description": "Approximate count of rows in this table", "include": true}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 0.0, "description": "Approximate size of table as reported by BigQuery", "include": true}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "description": "Indicates whether there are statistics for this table", "include": false}}, "unique_id": "model.zendesk.zendesk__ticket_metrics"}, "model.zendesk.zendesk__ticket_backlog": {"metadata": {"type": "table", "database": "dbt-package-testing", "schema": "zendesk_integration_tests", "name": "zendesk__ticket_backlog", "comment": null, "owner": null}, "columns": {"date_day": {"type": "DATE", "comment": null, "index": 1, "name": "date_day"}, "ticket_id": {"type": "INT64", "comment": null, "index": 2, "name": "ticket_id"}, "status": {"type": "STRING", "comment": null, "index": 3, "name": "status"}, "created_channel": {"type": "STRING", "comment": null, "index": 4, "name": "created_channel"}, "assignee_name": {"type": "STRING", "comment": null, "index": 5, "name": "assignee_name"}, "priority": {"type": "STRING", "comment": null, "index": 6, "name": "priority"}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 0.0, "description": "Approximate count of rows in this table", "include": true}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 0.0, "description": "Approximate size of table as reported by BigQuery", "include": true}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "description": "Indicates whether there are statistics for this table", "include": false}}, "unique_id": "model.zendesk.zendesk__ticket_backlog"}, "seed.zendesk_integration_tests.organization_data": {"metadata": {"type": "table", "database": "dbt-package-testing", "schema": "zendesk_integration_tests", "name": "organization_data", "comment": null, "owner": null}, "columns": {"id": {"type": "INT64", "comment": null, "index": 1, "name": "id"}, "_fivetran_synced": {"type": "TIMESTAMP", "comment": null, "index": 2, "name": "_fivetran_synced"}, "created_at": {"type": "TIMESTAMP", "comment": null, "index": 3, "name": "created_at"}, "details": {"type": "INT64", "comment": null, "index": 4, "name": "details"}, "external_id": {"type": "INT64", "comment": null, "index": 5, "name": "external_id"}, "group_id": {"type": "INT64", "comment": null, "index": 6, "name": "group_id"}, "name": {"type": "STRING", "comment": null, "index": 7, "name": "name"}, "notes": {"type": "INT64", "comment": null, "index": 8, "name": "notes"}, "shared_comments": {"type": "BOOL", "comment": null, "index": 9, "name": "shared_comments"}, "shared_tickets": {"type": "BOOL", "comment": null, "index": 10, "name": "shared_tickets"}, "updated_at": {"type": "TIMESTAMP", "comment": null, "index": 11, "name": "updated_at"}, "url": {"type": "STRING", "comment": null, "index": 12, "name": "url"}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 10.0, "description": "Approximate count of rows in this table", "include": true}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 1011.0, "description": "Approximate size of table as reported by BigQuery", "include": true}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "description": "Indicates whether there are statistics for this table", "include": false}}, "unique_id": "seed.zendesk_integration_tests.organization_data"}, "seed.zendesk_integration_tests.user_tag_data_snowflake": {"metadata": {"type": "table", "database": "dbt-package-testing", "schema": "zendesk_integration_tests", "name": "user_tag_data_snowflake", "comment": null, "owner": null}, "columns": {"TAG": {"type": "STRING", "comment": null, "index": 1, "name": "TAG"}, "user_id": {"type": "INT64", "comment": null, "index": 2, "name": "user_id"}, "_fivetran_synced": {"type": "TIMESTAMP", "comment": null, "index": 3, "name": "_fivetran_synced"}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 10.0, "description": "Approximate count of rows in this table", "include": true}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 500.0, "description": "Approximate size of table as reported by BigQuery", "include": true}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "description": "Indicates whether there are statistics for this table", "include": false}}, "unique_id": "seed.zendesk_integration_tests.user_tag_data_snowflake"}, "seed.zendesk_integration_tests.schedule_data": {"metadata": {"type": "table", "database": "dbt-package-testing", "schema": "zendesk_integration_tests", "name": "schedule_data", "comment": null, "owner": null}, "columns": {"end_time": {"type": "INT64", "comment": null, "index": 1, "name": "end_time"}, "id": {"type": "INT64", "comment": null, "index": 2, "name": "id"}, "start_time": {"type": "INT64", "comment": null, "index": 3, "name": "start_time"}, "_fivetran_deleted": {"type": "BOOL", "comment": null, "index": 4, "name": "_fivetran_deleted"}, "_fivetran_synced": {"type": "TIMESTAMP", "comment": null, "index": 5, "name": "_fivetran_synced"}, "end_time_utc": {"type": "INT64", "comment": null, "index": 6, "name": "end_time_utc"}, "name": {"type": "STRING", "comment": null, "index": 7, "name": "name"}, "start_time_utc": {"type": "INT64", "comment": null, "index": 8, "name": "start_time_utc"}, "time_zone": {"type": "STRING", "comment": null, "index": 9, "name": "time_zone"}, "created_at": {"type": "TIMESTAMP", "comment": null, "index": 10, "name": "created_at"}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 5.0, "description": "Approximate count of rows in this table", "include": true}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 480.0, "description": "Approximate size of table as reported by BigQuery", "include": true}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "description": "Indicates whether there are statistics for this table", "include": false}}, "unique_id": "seed.zendesk_integration_tests.schedule_data"}, "model.zendesk.zendesk__sla_policies": {"metadata": {"type": "table", "database": "dbt-package-testing", "schema": "zendesk_integration_tests", "name": "zendesk__sla_policies", "comment": null, "owner": null}, "columns": {"sla_event_id": {"type": "STRING", "comment": null, "index": 1, "name": "sla_event_id"}, "ticket_id": {"type": "INT64", "comment": null, "index": 2, "name": "ticket_id"}, "sla_policy_name": {"type": "STRING", "comment": null, "index": 3, "name": "sla_policy_name"}, "metric": {"type": "STRING", "comment": null, "index": 4, "name": "metric"}, "sla_applied_at": {"type": "TIMESTAMP", "comment": null, "index": 5, "name": "sla_applied_at"}, "target": {"type": "INT64", "comment": null, "index": 6, "name": "target"}, "in_business_hours": {"type": "STRING", "comment": null, "index": 7, "name": "in_business_hours"}, "sla_breach_at": {"type": "TIMESTAMP", "comment": null, "index": 8, "name": "sla_breach_at"}, "sla_elapsed_time": {"type": "FLOAT64", "comment": null, "index": 9, "name": "sla_elapsed_time"}, "is_active_sla": {"type": "BOOL", "comment": null, "index": 10, "name": "is_active_sla"}, "is_sla_breach": {"type": "BOOL", "comment": null, "index": 11, "name": "is_sla_breach"}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 0.0, "description": "Approximate count of rows in this table", "include": true}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 0.0, "description": "Approximate size of table as reported by BigQuery", "include": true}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "description": "Indicates whether there are statistics for this table", "include": false}}, "unique_id": "model.zendesk.zendesk__sla_policies"}, "seed.zendesk_integration_tests.group_data": {"metadata": {"type": "table", "database": "dbt-package-testing", "schema": "zendesk_integration_tests", "name": "group_data", "comment": null, "owner": null}, "columns": {"id": {"type": "INT64", "comment": null, "index": 1, "name": "id"}, "_fivetran_deleted": {"type": "BOOL", "comment": null, "index": 2, "name": "_fivetran_deleted"}, "_fivetran_synced": {"type": "TIMESTAMP", "comment": null, "index": 3, "name": "_fivetran_synced"}, "created_at": {"type": "TIMESTAMP", "comment": null, "index": 4, "name": "created_at"}, "name": {"type": "STRING", "comment": null, "index": 5, "name": "name"}, "updated_at": {"type": "TIMESTAMP", "comment": null, "index": 6, "name": "updated_at"}, "url": {"type": "STRING", "comment": null, "index": 7, "name": "url"}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 8.0, "description": "Approximate count of rows in this table", "include": true}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 879.0, "description": "Approximate size of table as reported by BigQuery", "include": true}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "description": "Indicates whether there are statistics for this table", "include": false}}, "unique_id": "seed.zendesk_integration_tests.group_data"}, "seed.zendesk_integration_tests.organization_tag_data": {"metadata": {"type": "table", "database": "dbt-package-testing", "schema": "zendesk_integration_tests", "name": "organization_tag_data", "comment": null, "owner": null}, "columns": {"organization_id": {"type": "INT64", "comment": null, "index": 1, "name": "organization_id"}, "tag": {"type": "STRING", "comment": null, "index": 2, "name": "tag"}, "_fivetran_synced": {"type": "TIMESTAMP", "comment": null, "index": 3, "name": "_fivetran_synced"}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 12.0, "description": "Approximate count of rows in this table", "include": true}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 600.0, "description": "Approximate size of table as reported by BigQuery", "include": true}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "description": "Indicates whether there are statistics for this table", "include": false}}, "unique_id": "seed.zendesk_integration_tests.organization_tag_data"}, "seed.zendesk_integration_tests.organization_tag_data_snowflake": {"metadata": {"type": "table", "database": "dbt-package-testing", "schema": "zendesk_integration_tests", "name": "organization_tag_data_snowflake", "comment": null, "owner": null}, "columns": {"organization_id": {"type": "INT64", "comment": null, "index": 1, "name": "organization_id"}, "TAG": {"type": "STRING", "comment": null, "index": 2, "name": "TAG"}, "_fivetran_synced": {"type": "TIMESTAMP", "comment": null, "index": 3, "name": "_fivetran_synced"}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 12.0, "description": "Approximate count of rows in this table", "include": true}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 600.0, "description": "Approximate size of table as reported by BigQuery", "include": true}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "description": "Indicates whether there are statistics for this table", "include": false}}, "unique_id": "seed.zendesk_integration_tests.organization_tag_data_snowflake"}, "model.zendesk_source.stg_zendesk__user_tmp": {"metadata": {"type": "view", "database": "dbt-package-testing", "schema": "zendesk_integration_tests_zendesk_staging", "name": "stg_zendesk__user_tmp", "comment": null, "owner": null}, "columns": {"id": {"type": "INT64", "comment": null, "index": 1, "name": "id"}, "_fivetran_synced": {"type": "TIMESTAMP", "comment": null, "index": 2, "name": "_fivetran_synced"}, "active": {"type": "BOOL", "comment": null, "index": 3, "name": "active"}, "alias": {"type": "INT64", "comment": null, "index": 4, "name": "alias"}, "authenticity_token": {"type": "INT64", "comment": null, "index": 5, "name": "authenticity_token"}, "chat_only": {"type": "BOOL", "comment": null, "index": 6, "name": "chat_only"}, "created_at": {"type": "TIMESTAMP", "comment": null, "index": 7, "name": "created_at"}, "details": {"type": "INT64", "comment": null, "index": 8, "name": "details"}, "email": {"type": "STRING", "comment": null, "index": 9, "name": "email"}, "external_id": {"type": "STRING", "comment": null, "index": 10, "name": "external_id"}, "last_login_at": {"type": "TIMESTAMP", "comment": null, "index": 11, "name": "last_login_at"}, "locale": {"type": "STRING", "comment": null, "index": 12, "name": "locale"}, "locale_id": {"type": "INT64", "comment": null, "index": 13, "name": "locale_id"}, "moderator": {"type": "BOOL", "comment": null, "index": 14, "name": "moderator"}, "name": {"type": "STRING", "comment": null, "index": 15, "name": "name"}, "notes": {"type": "INT64", "comment": null, "index": 16, "name": "notes"}, "only_private_comments": {"type": "BOOL", "comment": null, "index": 17, "name": "only_private_comments"}, "organization_id": {"type": "INT64", "comment": null, "index": 18, "name": "organization_id"}, "phone": {"type": "INT64", "comment": null, "index": 19, "name": "phone"}, "remote_photo_url": {"type": "INT64", "comment": null, "index": 20, "name": "remote_photo_url"}, "restricted_agent": {"type": "BOOL", "comment": null, "index": 21, "name": "restricted_agent"}, "role": {"type": "STRING", "comment": null, "index": 22, "name": "role"}, "shared": {"type": "BOOL", "comment": null, "index": 23, "name": "shared"}, "shared_agent": {"type": "BOOL", "comment": null, "index": 24, "name": "shared_agent"}, "signature": {"type": "INT64", "comment": null, "index": 25, "name": "signature"}, "suspended": {"type": "BOOL", "comment": null, "index": 26, "name": "suspended"}, "ticket_restriction": {"type": "STRING", "comment": null, "index": 27, "name": "ticket_restriction"}, "time_zone": {"type": "STRING", "comment": null, "index": 28, "name": "time_zone"}, "two_factor_auth_enabled": {"type": "BOOL", "comment": null, "index": 29, "name": "two_factor_auth_enabled"}, "updated_at": {"type": "DATETIME", "comment": null, "index": 30, "name": "updated_at"}, "url": {"type": "STRING", "comment": null, "index": 31, "name": "url"}, "verified": {"type": "BOOL", "comment": null, "index": 32, "name": "verified"}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "description": "Indicates whether there are statistics for this table", "include": false}}, "unique_id": "model.zendesk_source.stg_zendesk__user_tmp"}, "model.zendesk_source.stg_zendesk__ticket_field_history_tmp": {"metadata": {"type": "view", "database": "dbt-package-testing", "schema": "zendesk_integration_tests_zendesk_staging", "name": "stg_zendesk__ticket_field_history_tmp", "comment": null, "owner": null}, "columns": {"field_name": {"type": "STRING", "comment": null, "index": 1, "name": "field_name"}, "ticket_id": {"type": "INT64", "comment": null, "index": 2, "name": "ticket_id"}, "updated": {"type": "TIMESTAMP", "comment": null, "index": 3, "name": "updated"}, "_fivetran_synced": {"type": "TIMESTAMP", "comment": null, "index": 4, "name": "_fivetran_synced"}, "user_id": {"type": "INT64", "comment": null, "index": 5, "name": "user_id"}, "value": {"type": "STRING", "comment": null, "index": 6, "name": "value"}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "description": "Indicates whether there are statistics for this table", "include": false}}, "unique_id": "model.zendesk_source.stg_zendesk__ticket_field_history_tmp"}, "model.zendesk_source.stg_zendesk__ticket_comment": {"metadata": {"type": "table", "database": "dbt-package-testing", "schema": "zendesk_integration_tests_zendesk_staging", "name": "stg_zendesk__ticket_comment", "comment": null, "owner": null}, "columns": {"ticket_comment_id": {"type": "INT64", "comment": null, "index": 1, "name": "ticket_comment_id"}, "_fivetran_synced": {"type": "TIMESTAMP", "comment": null, "index": 2, "name": "_fivetran_synced"}, "body": {"type": "STRING", "comment": null, "index": 3, "name": "body"}, "created_at": {"type": "TIMESTAMP", "comment": null, "index": 4, "name": "created_at"}, "is_public": {"type": "BOOL", "comment": null, "index": 5, "name": "is_public"}, "ticket_id": {"type": "INT64", "comment": null, "index": 6, "name": "ticket_id"}, "user_id": {"type": "INT64", "comment": null, "index": 7, "name": "user_id"}, "is_facebook_comment": {"type": "BOOL", "comment": null, "index": 8, "name": "is_facebook_comment"}, "is_tweet": {"type": "BOOL", "comment": null, "index": 9, "name": "is_tweet"}, "is_voice_comment": {"type": "BOOL", "comment": null, "index": 10, "name": "is_voice_comment"}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 20.0, "description": "Approximate count of rows in this table", "include": true}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 1031.0, "description": "Approximate size of table as reported by BigQuery", "include": true}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "description": "Indicates whether there are statistics for this table", "include": false}}, "unique_id": "model.zendesk_source.stg_zendesk__ticket_comment"}, "model.zendesk_source.stg_zendesk__schedule_tmp": {"metadata": {"type": "view", "database": "dbt-package-testing", "schema": "zendesk_integration_tests_zendesk_staging", "name": "stg_zendesk__schedule_tmp", "comment": null, "owner": null}, "columns": {"end_time": {"type": "INT64", "comment": null, "index": 1, "name": "end_time"}, "id": {"type": "INT64", "comment": null, "index": 2, "name": "id"}, "start_time": {"type": "INT64", "comment": null, "index": 3, "name": "start_time"}, "_fivetran_deleted": {"type": "BOOL", "comment": null, "index": 4, "name": "_fivetran_deleted"}, "_fivetran_synced": {"type": "TIMESTAMP", "comment": null, "index": 5, "name": "_fivetran_synced"}, "end_time_utc": {"type": "INT64", "comment": null, "index": 6, "name": "end_time_utc"}, "name": {"type": "STRING", "comment": null, "index": 7, "name": "name"}, "start_time_utc": {"type": "INT64", "comment": null, "index": 8, "name": "start_time_utc"}, "time_zone": {"type": "STRING", "comment": null, "index": 9, "name": "time_zone"}, "created_at": {"type": "TIMESTAMP", "comment": null, "index": 10, "name": "created_at"}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "description": "Indicates whether there are statistics for this table", "include": false}}, "unique_id": "model.zendesk_source.stg_zendesk__schedule_tmp"}, "model.zendesk_source.stg_zendesk__ticket_field_history": {"metadata": {"type": "table", "database": "dbt-package-testing", "schema": "zendesk_integration_tests_zendesk_staging", "name": "stg_zendesk__ticket_field_history", "comment": null, "owner": null}, "columns": {"ticket_id": {"type": "INT64", "comment": null, "index": 1, "name": "ticket_id"}, "field_name": {"type": "STRING", "comment": null, "index": 2, "name": "field_name"}, "valid_starting_at": {"type": "TIMESTAMP", "comment": null, "index": 3, "name": "valid_starting_at"}, "valid_ending_at": {"type": "TIMESTAMP", "comment": null, "index": 4, "name": "valid_ending_at"}, "value": {"type": "STRING", "comment": null, "index": 5, "name": "value"}, "user_id": {"type": "INT64", "comment": null, "index": 6, "name": "user_id"}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 20.0, "description": "Approximate count of rows in this table", "include": true}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 669.0, "description": "Approximate size of table as reported by BigQuery", "include": true}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "description": "Indicates whether there are statistics for this table", "include": false}}, "unique_id": "model.zendesk_source.stg_zendesk__ticket_field_history"}, "model.zendesk_source.stg_zendesk__organization_tag": {"metadata": {"type": "table", "database": "dbt-package-testing", "schema": "zendesk_integration_tests_zendesk_staging", "name": "stg_zendesk__organization_tag", "comment": null, "owner": null}, "columns": {"organization_id": {"type": "INT64", "comment": null, "index": 1, "name": "organization_id"}, "tags": {"type": "STRING", "comment": null, "index": 2, "name": "tags"}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 12.0, "description": "Approximate count of rows in this table", "include": true}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 504.0, "description": "Approximate size of table as reported by BigQuery", "include": true}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "description": "Indicates whether there are statistics for this table", "include": false}}, "unique_id": "model.zendesk_source.stg_zendesk__organization_tag"}, "model.zendesk_source.stg_zendesk__ticket_tag_tmp": {"metadata": {"type": "view", "database": "dbt-package-testing", "schema": "zendesk_integration_tests_zendesk_staging", "name": "stg_zendesk__ticket_tag_tmp", "comment": null, "owner": null}, "columns": {"tag": {"type": "STRING", "comment": null, "index": 1, "name": "tag"}, "ticket_id": {"type": "INT64", "comment": null, "index": 2, "name": "ticket_id"}, "_fivetran_synced": {"type": "TIMESTAMP", "comment": null, "index": 3, "name": "_fivetran_synced"}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "description": "Indicates whether there are statistics for this table", "include": false}}, "unique_id": "model.zendesk_source.stg_zendesk__ticket_tag_tmp"}, "model.zendesk_source.stg_zendesk__brand_tmp": {"metadata": {"type": "view", "database": "dbt-package-testing", "schema": "zendesk_integration_tests_zendesk_staging", "name": "stg_zendesk__brand_tmp", "comment": null, "owner": null}, "columns": {"id": {"type": "INT64", "comment": null, "index": 1, "name": "id"}, "_fivetran_deleted": {"type": "BOOL", "comment": null, "index": 2, "name": "_fivetran_deleted"}, "_fivetran_synced": {"type": "TIMESTAMP", "comment": null, "index": 3, "name": "_fivetran_synced"}, "active": {"type": "BOOL", "comment": null, "index": 4, "name": "active"}, "brand_url": {"type": "STRING", "comment": null, "index": 5, "name": "brand_url"}, "default": {"type": "BOOL", "comment": null, "index": 6, "name": "default"}, "has_help_center": {"type": "BOOL", "comment": null, "index": 7, "name": "has_help_center"}, "help_center_state": {"type": "STRING", "comment": null, "index": 8, "name": "help_center_state"}, "logo_content_type": {"type": "STRING", "comment": null, "index": 9, "name": "logo_content_type"}, "logo_content_url": {"type": "STRING", "comment": null, "index": 10, "name": "logo_content_url"}, "logo_deleted": {"type": "BOOL", "comment": null, "index": 11, "name": "logo_deleted"}, "logo_file_name": {"type": "STRING", "comment": null, "index": 12, "name": "logo_file_name"}, "logo_height": {"type": "INT64", "comment": null, "index": 13, "name": "logo_height"}, "logo_id": {"type": "INT64", "comment": null, "index": 14, "name": "logo_id"}, "logo_inline": {"type": "BOOL", "comment": null, "index": 15, "name": "logo_inline"}, "logo_mapped_content_url": {"type": "STRING", "comment": null, "index": 16, "name": "logo_mapped_content_url"}, "logo_size": {"type": "INT64", "comment": null, "index": 17, "name": "logo_size"}, "logo_url": {"type": "STRING", "comment": null, "index": 18, "name": "logo_url"}, "logo_width": {"type": "INT64", "comment": null, "index": 19, "name": "logo_width"}, "name": {"type": "STRING", "comment": null, "index": 20, "name": "name"}, "subdomain": {"type": "STRING", "comment": null, "index": 21, "name": "subdomain"}, "url": {"type": "STRING", "comment": null, "index": 22, "name": "url"}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "description": "Indicates whether there are statistics for this table", "include": false}}, "unique_id": "model.zendesk_source.stg_zendesk__brand_tmp"}, "model.zendesk_source.stg_zendesk__domain_name": {"metadata": {"type": "table", "database": "dbt-package-testing", "schema": "zendesk_integration_tests_zendesk_staging", "name": "stg_zendesk__domain_name", "comment": null, "owner": null}, "columns": {"organization_id": {"type": "INT64", "comment": null, "index": 1, "name": "organization_id"}, "domain_name": {"type": "STRING", "comment": null, "index": 2, "name": "domain_name"}, "index": {"type": "INT64", "comment": null, "index": 3, "name": "index"}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 10.0, "description": "Approximate count of rows in this table", "include": true}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 500.0, "description": "Approximate size of table as reported by BigQuery", "include": true}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "description": "Indicates whether there are statistics for this table", "include": false}}, "unique_id": "model.zendesk_source.stg_zendesk__domain_name"}, "model.zendesk_source.stg_zendesk__ticket_tmp": {"metadata": {"type": "view", "database": "dbt-package-testing", "schema": "zendesk_integration_tests_zendesk_staging", "name": "stg_zendesk__ticket_tmp", "comment": null, "owner": null}, "columns": {"id": {"type": "INT64", "comment": null, "index": 1, "name": "id"}, "_fivetran_synced": {"type": "TIMESTAMP", "comment": null, "index": 2, "name": "_fivetran_synced"}, "allow_channelback": {"type": "BOOL", "comment": null, "index": 3, "name": "allow_channelback"}, "assignee_id": {"type": "INT64", "comment": null, "index": 4, "name": "assignee_id"}, "brand_id": {"type": "INT64", "comment": null, "index": 5, "name": "brand_id"}, "created_at": {"type": "TIMESTAMP", "comment": null, "index": 6, "name": "created_at"}, "description": {"type": "STRING", "comment": null, "index": 7, "name": "description"}, "due_at": {"type": "TIMESTAMP", "comment": null, "index": 8, "name": "due_at"}, "external_id": {"type": "INT64", "comment": null, "index": 9, "name": "external_id"}, "forum_topic_id": {"type": "INT64", "comment": null, "index": 10, "name": "forum_topic_id"}, "group_id": {"type": "INT64", "comment": null, "index": 11, "name": "group_id"}, "has_incidents": {"type": "BOOL", "comment": null, "index": 12, "name": "has_incidents"}, "is_public": {"type": "BOOL", "comment": null, "index": 13, "name": "is_public"}, "organization_id": {"type": "INT64", "comment": null, "index": 14, "name": "organization_id"}, "priority": {"type": "INT64", "comment": null, "index": 15, "name": "priority"}, "problem_id": {"type": "INT64", "comment": null, "index": 16, "name": "problem_id"}, "recipient": {"type": "STRING", "comment": null, "index": 17, "name": "recipient"}, "requester_id": {"type": "INT64", "comment": null, "index": 18, "name": "requester_id"}, "status": {"type": "STRING", "comment": null, "index": 19, "name": "status"}, "subject": {"type": "STRING", "comment": null, "index": 20, "name": "subject"}, "submitter_id": {"type": "INT64", "comment": null, "index": 21, "name": "submitter_id"}, "system_client": {"type": "INT64", "comment": null, "index": 22, "name": "system_client"}, "ticket_form_id": {"type": "INT64", "comment": null, "index": 23, "name": "ticket_form_id"}, "type": {"type": "STRING", "comment": null, "index": 24, "name": "type"}, "updated_at": {"type": "DATETIME", "comment": null, "index": 25, "name": "updated_at"}, "url": {"type": "STRING", "comment": null, "index": 26, "name": "url"}, "via_channel": {"type": "STRING", "comment": null, "index": 27, "name": "via_channel"}, "via_source_from_id": {"type": "INT64", "comment": null, "index": 28, "name": "via_source_from_id"}, "via_source_from_title": {"type": "INT64", "comment": null, "index": 29, "name": "via_source_from_title"}, "via_source_rel": {"type": "INT64", "comment": null, "index": 30, "name": "via_source_rel"}, "via_source_to_address": {"type": "STRING", "comment": null, "index": 31, "name": "via_source_to_address"}, "via_source_to_name": {"type": "STRING", "comment": null, "index": 32, "name": "via_source_to_name"}, "merged_ticket_ids": {"type": "STRING", "comment": null, "index": 33, "name": "merged_ticket_ids"}, "via_source_from_address": {"type": "INT64", "comment": null, "index": 34, "name": "via_source_from_address"}, "followup_ids": {"type": "STRING", "comment": null, "index": 35, "name": "followup_ids"}, "via_followup_source_id": {"type": "INT64", "comment": null, "index": 36, "name": "via_followup_source_id"}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "description": "Indicates whether there are statistics for this table", "include": false}}, "unique_id": "model.zendesk_source.stg_zendesk__ticket_tmp"}, "model.zendesk_source.stg_zendesk__user_tag": {"metadata": {"type": "table", "database": "dbt-package-testing", "schema": "zendesk_integration_tests_zendesk_staging", "name": "stg_zendesk__user_tag", "comment": null, "owner": null}, "columns": {"user_id": {"type": "INT64", "comment": null, "index": 1, "name": "user_id"}, "tags": {"type": "STRING", "comment": null, "index": 2, "name": "tags"}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 10.0, "description": "Approximate count of rows in this table", "include": true}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 420.0, "description": "Approximate size of table as reported by BigQuery", "include": true}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "description": "Indicates whether there are statistics for this table", "include": false}}, "unique_id": "model.zendesk_source.stg_zendesk__user_tag"}, "model.zendesk_source.stg_zendesk__group": {"metadata": {"type": "table", "database": "dbt-package-testing", "schema": "zendesk_integration_tests_zendesk_staging", "name": "stg_zendesk__group", "comment": null, "owner": null}, "columns": {"group_id": {"type": "INT64", "comment": null, "index": 1, "name": "group_id"}, "name": {"type": "STRING", "comment": null, "index": 2, "name": "name"}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 8.0, "description": "Approximate count of rows in this table", "include": true}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 255.0, "description": "Approximate size of table as reported by BigQuery", "include": true}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "description": "Indicates whether there are statistics for this table", "include": false}}, "unique_id": "model.zendesk_source.stg_zendesk__group"}, "model.zendesk_source.stg_zendesk__user_tag_tmp": {"metadata": {"type": "view", "database": "dbt-package-testing", "schema": "zendesk_integration_tests_zendesk_staging", "name": "stg_zendesk__user_tag_tmp", "comment": null, "owner": null}, "columns": {"tag": {"type": "STRING", "comment": null, "index": 1, "name": "tag"}, "user_id": {"type": "INT64", "comment": null, "index": 2, "name": "user_id"}, "_fivetran_synced": {"type": "TIMESTAMP", "comment": null, "index": 3, "name": "_fivetran_synced"}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "description": "Indicates whether there are statistics for this table", "include": false}}, "unique_id": "model.zendesk_source.stg_zendesk__user_tag_tmp"}, "model.zendesk_source.stg_zendesk__ticket_comment_tmp": {"metadata": {"type": "view", "database": "dbt-package-testing", "schema": "zendesk_integration_tests_zendesk_staging", "name": "stg_zendesk__ticket_comment_tmp", "comment": null, "owner": null}, "columns": {"id": {"type": "INT64", "comment": null, "index": 1, "name": "id"}, "_fivetran_synced": {"type": "TIMESTAMP", "comment": null, "index": 2, "name": "_fivetran_synced"}, "body": {"type": "STRING", "comment": null, "index": 3, "name": "body"}, "created": {"type": "TIMESTAMP", "comment": null, "index": 4, "name": "created"}, "facebook_comment": {"type": "BOOL", "comment": null, "index": 5, "name": "facebook_comment"}, "public": {"type": "BOOL", "comment": null, "index": 6, "name": "public"}, "ticket_id": {"type": "INT64", "comment": null, "index": 7, "name": "ticket_id"}, "tweet": {"type": "BOOL", "comment": null, "index": 8, "name": "tweet"}, "user_id": {"type": "INT64", "comment": null, "index": 9, "name": "user_id"}, "voice_comment": {"type": "BOOL", "comment": null, "index": 10, "name": "voice_comment"}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "description": "Indicates whether there are statistics for this table", "include": false}}, "unique_id": "model.zendesk_source.stg_zendesk__ticket_comment_tmp"}, "model.zendesk_source.stg_zendesk__brand": {"metadata": {"type": "table", "database": "dbt-package-testing", "schema": "zendesk_integration_tests_zendesk_staging", "name": "stg_zendesk__brand", "comment": null, "owner": null}, "columns": {"brand_id": {"type": "INT64", "comment": null, "index": 1, "name": "brand_id"}, "brand_url": {"type": "STRING", "comment": null, "index": 2, "name": "brand_url"}, "name": {"type": "STRING", "comment": null, "index": 3, "name": "name"}, "subdomain": {"type": "STRING", "comment": null, "index": 4, "name": "subdomain"}, "is_active": {"type": "BOOL", "comment": null, "index": 5, "name": "is_active"}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 1.0, "description": "Approximate count of rows in this table", "include": true}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 111.0, "description": "Approximate size of table as reported by BigQuery", "include": true}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "description": "Indicates whether there are statistics for this table", "include": false}}, "unique_id": "model.zendesk_source.stg_zendesk__brand"}, "model.zendesk_source.stg_zendesk__organization_tag_tmp": {"metadata": {"type": "view", "database": "dbt-package-testing", "schema": "zendesk_integration_tests_zendesk_staging", "name": "stg_zendesk__organization_tag_tmp", "comment": null, "owner": null}, "columns": {"organization_id": {"type": "INT64", "comment": null, "index": 1, "name": "organization_id"}, "tag": {"type": "STRING", "comment": null, "index": 2, "name": "tag"}, "_fivetran_synced": {"type": "TIMESTAMP", "comment": null, "index": 3, "name": "_fivetran_synced"}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "description": "Indicates whether there are statistics for this table", "include": false}}, "unique_id": "model.zendesk_source.stg_zendesk__organization_tag_tmp"}, "model.zendesk_source.stg_zendesk__ticket_schedule_tmp": {"metadata": {"type": "view", "database": "dbt-package-testing", "schema": "zendesk_integration_tests_zendesk_staging", "name": "stg_zendesk__ticket_schedule_tmp", "comment": null, "owner": null}, "columns": {"_fivetran_synced": {"type": "TIMESTAMP", "comment": null, "index": 1, "name": "_fivetran_synced"}, "created_at": {"type": "TIMESTAMP", "comment": null, "index": 2, "name": "created_at"}, "schedule_id": {"type": "INT64", "comment": null, "index": 3, "name": "schedule_id"}, "ticket_id": {"type": "INT64", "comment": null, "index": 4, "name": "ticket_id"}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "description": "Indicates whether there are statistics for this table", "include": false}}, "unique_id": "model.zendesk_source.stg_zendesk__ticket_schedule_tmp"}, "model.zendesk_source.stg_zendesk__schedule": {"metadata": {"type": "table", "database": "dbt-package-testing", "schema": "zendesk_integration_tests_zendesk_staging", "name": "stg_zendesk__schedule", "comment": null, "owner": null}, "columns": {"schedule_id": {"type": "STRING", "comment": null, "index": 1, "name": "schedule_id"}, "end_time_utc": {"type": "INT64", "comment": null, "index": 2, "name": "end_time_utc"}, "start_time_utc": {"type": "INT64", "comment": null, "index": 3, "name": "start_time_utc"}, "schedule_name": {"type": "STRING", "comment": null, "index": 4, "name": "schedule_name"}, "created_at": {"type": "TIMESTAMP", "comment": null, "index": 5, "name": "created_at"}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 5.0, "description": "Approximate count of rows in this table", "include": true}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 245.0, "description": "Approximate size of table as reported by BigQuery", "include": true}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "description": "Indicates whether there are statistics for this table", "include": false}}, "unique_id": "model.zendesk_source.stg_zendesk__schedule"}, "model.zendesk_source.stg_zendesk__organization_tmp": {"metadata": {"type": "view", "database": "dbt-package-testing", "schema": "zendesk_integration_tests_zendesk_staging", "name": "stg_zendesk__organization_tmp", "comment": null, "owner": null}, "columns": {"id": {"type": "INT64", "comment": null, "index": 1, "name": "id"}, "_fivetran_synced": {"type": "TIMESTAMP", "comment": null, "index": 2, "name": "_fivetran_synced"}, "created_at": {"type": "TIMESTAMP", "comment": null, "index": 3, "name": "created_at"}, "details": {"type": "INT64", "comment": null, "index": 4, "name": "details"}, "external_id": {"type": "INT64", "comment": null, "index": 5, "name": "external_id"}, "group_id": {"type": "INT64", "comment": null, "index": 6, "name": "group_id"}, "name": {"type": "STRING", "comment": null, "index": 7, "name": "name"}, "notes": {"type": "INT64", "comment": null, "index": 8, "name": "notes"}, "shared_comments": {"type": "BOOL", "comment": null, "index": 9, "name": "shared_comments"}, "shared_tickets": {"type": "BOOL", "comment": null, "index": 10, "name": "shared_tickets"}, "updated_at": {"type": "TIMESTAMP", "comment": null, "index": 11, "name": "updated_at"}, "url": {"type": "STRING", "comment": null, "index": 12, "name": "url"}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "description": "Indicates whether there are statistics for this table", "include": false}}, "unique_id": "model.zendesk_source.stg_zendesk__organization_tmp"}, "model.zendesk_source.stg_zendesk__domain_name_tmp": {"metadata": {"type": "view", "database": "dbt-package-testing", "schema": "zendesk_integration_tests_zendesk_staging", "name": "stg_zendesk__domain_name_tmp", "comment": null, "owner": null}, "columns": {"index": {"type": "INT64", "comment": null, "index": 1, "name": "index"}, "organization_id": {"type": "INT64", "comment": null, "index": 2, "name": "organization_id"}, "_fivetran_synced": {"type": "TIMESTAMP", "comment": null, "index": 3, "name": "_fivetran_synced"}, "domain_name": {"type": "STRING", "comment": null, "index": 4, "name": "domain_name"}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "description": "Indicates whether there are statistics for this table", "include": false}}, "unique_id": "model.zendesk_source.stg_zendesk__domain_name_tmp"}, "model.zendesk_source.stg_zendesk__group_tmp": {"metadata": {"type": "view", "database": "dbt-package-testing", "schema": "zendesk_integration_tests_zendesk_staging", "name": "stg_zendesk__group_tmp", "comment": null, "owner": null}, "columns": {"id": {"type": "INT64", "comment": null, "index": 1, "name": "id"}, "_fivetran_deleted": {"type": "BOOL", "comment": null, "index": 2, "name": "_fivetran_deleted"}, "_fivetran_synced": {"type": "TIMESTAMP", "comment": null, "index": 3, "name": "_fivetran_synced"}, "created_at": {"type": "TIMESTAMP", "comment": null, "index": 4, "name": "created_at"}, "name": {"type": "STRING", "comment": null, "index": 5, "name": "name"}, "updated_at": {"type": "TIMESTAMP", "comment": null, "index": 6, "name": "updated_at"}, "url": {"type": "STRING", "comment": null, "index": 7, "name": "url"}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "description": "Indicates whether there are statistics for this table", "include": false}}, "unique_id": "model.zendesk_source.stg_zendesk__group_tmp"}, "model.zendesk_source.stg_zendesk__ticket_schedule": {"metadata": {"type": "table", "database": "dbt-package-testing", "schema": "zendesk_integration_tests_zendesk_staging", "name": "stg_zendesk__ticket_schedule", "comment": null, "owner": null}, "columns": {"ticket_id": {"type": "INT64", "comment": null, "index": 1, "name": "ticket_id"}, "created_at": {"type": "TIMESTAMP", "comment": null, "index": 2, "name": "created_at"}, "schedule_id": {"type": "STRING", "comment": null, "index": 3, "name": "schedule_id"}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 1.0, "description": "Approximate count of rows in this table", "include": true}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 0.0, "description": "Approximate size of table as reported by BigQuery", "include": true}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "description": "Indicates whether there are statistics for this table", "include": false}}, "unique_id": "model.zendesk_source.stg_zendesk__ticket_schedule"}, "model.zendesk_source.stg_zendesk__ticket_form_history_tmp": {"metadata": {"type": "view", "database": "dbt-package-testing", "schema": "zendesk_integration_tests_zendesk_staging", "name": "stg_zendesk__ticket_form_history_tmp", "comment": null, "owner": null}, "columns": {"id": {"type": "INT64", "comment": null, "index": 1, "name": "id"}, "updated_at": {"type": "DATETIME", "comment": null, "index": 2, "name": "updated_at"}, "_fivetran_deleted": {"type": "BOOL", "comment": null, "index": 3, "name": "_fivetran_deleted"}, "_fivetran_synced": {"type": "TIMESTAMP", "comment": null, "index": 4, "name": "_fivetran_synced"}, "active": {"type": "BOOL", "comment": null, "index": 5, "name": "active"}, "created_at": {"type": "DATETIME", "comment": null, "index": 6, "name": "created_at"}, "display_name": {"type": "STRING", "comment": null, "index": 7, "name": "display_name"}, "end_user_visible": {"type": "BOOL", "comment": null, "index": 8, "name": "end_user_visible"}, "name": {"type": "STRING", "comment": null, "index": 9, "name": "name"}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "description": "Indicates whether there are statistics for this table", "include": false}}, "unique_id": "model.zendesk_source.stg_zendesk__ticket_form_history_tmp"}, "model.zendesk_source.stg_zendesk__ticket": {"metadata": {"type": "table", "database": "dbt-package-testing", "schema": "zendesk_integration_tests_zendesk_staging", "name": "stg_zendesk__ticket", "comment": null, "owner": null}, "columns": {"ticket_id": {"type": "INT64", "comment": null, "index": 1, "name": "ticket_id"}, "_fivetran_synced": {"type": "TIMESTAMP", "comment": null, "index": 2, "name": "_fivetran_synced"}, "assignee_id": {"type": "INT64", "comment": null, "index": 3, "name": "assignee_id"}, "brand_id": {"type": "INT64", "comment": null, "index": 4, "name": "brand_id"}, "created_at": {"type": "TIMESTAMP", "comment": null, "index": 5, "name": "created_at"}, "description": {"type": "STRING", "comment": null, "index": 6, "name": "description"}, "due_at": {"type": "TIMESTAMP", "comment": null, "index": 7, "name": "due_at"}, "group_id": {"type": "INT64", "comment": null, "index": 8, "name": "group_id"}, "external_id": {"type": "INT64", "comment": null, "index": 9, "name": "external_id"}, "is_public": {"type": "BOOL", "comment": null, "index": 10, "name": "is_public"}, "organization_id": {"type": "INT64", "comment": null, "index": 11, "name": "organization_id"}, "priority": {"type": "INT64", "comment": null, "index": 12, "name": "priority"}, "recipient": {"type": "STRING", "comment": null, "index": 13, "name": "recipient"}, "requester_id": {"type": "INT64", "comment": null, "index": 14, "name": "requester_id"}, "status": {"type": "STRING", "comment": null, "index": 15, "name": "status"}, "subject": {"type": "STRING", "comment": null, "index": 16, "name": "subject"}, "problem_id": {"type": "INT64", "comment": null, "index": 17, "name": "problem_id"}, "submitter_id": {"type": "INT64", "comment": null, "index": 18, "name": "submitter_id"}, "ticket_form_id": {"type": "INT64", "comment": null, "index": 19, "name": "ticket_form_id"}, "type": {"type": "STRING", "comment": null, "index": 20, "name": "type"}, "updated_at": {"type": "DATETIME", "comment": null, "index": 21, "name": "updated_at"}, "url": {"type": "STRING", "comment": null, "index": 22, "name": "url"}, "created_channel": {"type": "STRING", "comment": null, "index": 23, "name": "created_channel"}, "source_from_id": {"type": "INT64", "comment": null, "index": 24, "name": "source_from_id"}, "source_from_title": {"type": "INT64", "comment": null, "index": 25, "name": "source_from_title"}, "source_rel": {"type": "INT64", "comment": null, "index": 26, "name": "source_rel"}, "source_to_address": {"type": "STRING", "comment": null, "index": 27, "name": "source_to_address"}, "source_to_name": {"type": "STRING", "comment": null, "index": 28, "name": "source_to_name"}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 10.0, "description": "Approximate count of rows in this table", "include": true}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 2122.0, "description": "Approximate size of table as reported by BigQuery", "include": true}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "description": "Indicates whether there are statistics for this table", "include": false}}, "unique_id": "model.zendesk_source.stg_zendesk__ticket"}, "model.zendesk_source.stg_zendesk__ticket_tag": {"metadata": {"type": "table", "database": "dbt-package-testing", "schema": "zendesk_integration_tests_zendesk_staging", "name": "stg_zendesk__ticket_tag", "comment": null, "owner": null}, "columns": {"ticket_id": {"type": "INT64", "comment": null, "index": 1, "name": "ticket_id"}, "tags": {"type": "STRING", "comment": null, "index": 2, "name": "tags"}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 10.0, "description": "Approximate count of rows in this table", "include": true}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 181.0, "description": "Approximate size of table as reported by BigQuery", "include": true}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "description": "Indicates whether there are statistics for this table", "include": false}}, "unique_id": "model.zendesk_source.stg_zendesk__ticket_tag"}, "model.zendesk_source.stg_zendesk__user": {"metadata": {"type": "table", "database": "dbt-package-testing", "schema": "zendesk_integration_tests_zendesk_staging", "name": "stg_zendesk__user", "comment": null, "owner": null}, "columns": {"user_id": {"type": "INT64", "comment": null, "index": 1, "name": "user_id"}, "external_id": {"type": "STRING", "comment": null, "index": 2, "name": "external_id"}, "_fivetran_synced": {"type": "TIMESTAMP", "comment": null, "index": 3, "name": "_fivetran_synced"}, "created_at": {"type": "TIMESTAMP", "comment": null, "index": 4, "name": "created_at"}, "updated_at": {"type": "DATETIME", "comment": null, "index": 5, "name": "updated_at"}, "email": {"type": "STRING", "comment": null, "index": 6, "name": "email"}, "name": {"type": "STRING", "comment": null, "index": 7, "name": "name"}, "organization_id": {"type": "INT64", "comment": null, "index": 8, "name": "organization_id"}, "role": {"type": "STRING", "comment": null, "index": 9, "name": "role"}, "ticket_restriction": {"type": "STRING", "comment": null, "index": 10, "name": "ticket_restriction"}, "time_zone": {"type": "STRING", "comment": null, "index": 11, "name": "time_zone"}, "locale": {"type": "STRING", "comment": null, "index": 12, "name": "locale"}, "is_active": {"type": "BOOL", "comment": null, "index": 13, "name": "is_active"}, "is_suspended": {"type": "BOOL", "comment": null, "index": 14, "name": "is_suspended"}, "last_login_at": {"type": "TIMESTAMP", "comment": null, "index": 15, "name": "last_login_at"}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 10.0, "description": "Approximate count of rows in this table", "include": true}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 1290.0, "description": "Approximate size of table as reported by BigQuery", "include": true}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "description": "Indicates whether there are statistics for this table", "include": false}}, "unique_id": "model.zendesk_source.stg_zendesk__user"}, "model.zendesk_source.stg_zendesk__organization": {"metadata": {"type": "table", "database": "dbt-package-testing", "schema": "zendesk_integration_tests_zendesk_staging", "name": "stg_zendesk__organization", "comment": null, "owner": null}, "columns": {"organization_id": {"type": "INT64", "comment": null, "index": 1, "name": "organization_id"}, "created_at": {"type": "TIMESTAMP", "comment": null, "index": 2, "name": "created_at"}, "updated_at": {"type": "TIMESTAMP", "comment": null, "index": 3, "name": "updated_at"}, "details": {"type": "INT64", "comment": null, "index": 4, "name": "details"}, "name": {"type": "STRING", "comment": null, "index": 5, "name": "name"}, "external_id": {"type": "INT64", "comment": null, "index": 6, "name": "external_id"}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 10.0, "description": "Approximate count of rows in this table", "include": true}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 311.0, "description": "Approximate size of table as reported by BigQuery", "include": true}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "description": "Indicates whether there are statistics for this table", "include": false}}, "unique_id": "model.zendesk_source.stg_zendesk__organization"}, "model.zendesk_source.stg_zendesk__ticket_form_history": {"metadata": {"type": "table", "database": "dbt-package-testing", "schema": "zendesk_integration_tests_zendesk_staging", "name": "stg_zendesk__ticket_form_history", "comment": null, "owner": null}, "columns": {"ticket_form_id": {"type": "INT64", "comment": null, "index": 1, "name": "ticket_form_id"}, "created_at": {"type": "DATETIME", "comment": null, "index": 2, "name": "created_at"}, "updated_at": {"type": "DATETIME", "comment": null, "index": 3, "name": "updated_at"}, "display_name": {"type": "STRING", "comment": null, "index": 4, "name": "display_name"}, "is_active": {"type": "BOOL", "comment": null, "index": 5, "name": "is_active"}, "name": {"type": "STRING", "comment": null, "index": 6, "name": "name"}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 15.0, "description": "Approximate count of rows in this table", "include": true}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 1395.0, "description": "Approximate size of table as reported by BigQuery", "include": true}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "description": "Indicates whether there are statistics for this table", "include": false}}, "unique_id": "model.zendesk_source.stg_zendesk__ticket_form_history"}}, "sources": {}, "errors": null} \ No newline at end of file +{"metadata": {"dbt_schema_version": "https://schemas.getdbt.com/dbt/catalog/v1.json", "dbt_version": "1.0.1", "generated_at": "2022-02-11T22:35:52.425997Z", "invocation_id": "98c5cc93-363f-4652-bdde-d79dc6e6d77e", "env": {}}, "nodes": {"model.zendesk.int_zendesk__ticket_reply_times_calendar": {"metadata": {"type": "table", "schema": "dbt_zendesk", "name": "int_zendesk__ticket_reply_times_calendar", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"ticket_id": {"type": "INT64", "index": 1, "name": "ticket_id", "comment": null}, "first_reply_time_calendar_minutes": {"type": "FLOAT64", "index": 2, "name": "first_reply_time_calendar_minutes", "comment": null}, "total_reply_time_calendar_minutes": {"type": "FLOAT64", "index": 3, "name": "total_reply_time_calendar_minutes", "comment": null}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 50891.0, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 976616.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_reply_times_calendar"}, "model.zendesk.int_zendesk__ticket_first_resolution_time_business": {"metadata": {"type": "table", "schema": "dbt_zendesk", "name": "int_zendesk__ticket_first_resolution_time_business", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"ticket_id": {"type": "INT64", "index": 1, "name": "ticket_id", "comment": null}, "first_resolution_business_minutes": {"type": "FLOAT64", "index": 2, "name": "first_resolution_business_minutes", "comment": null}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 30625.0, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 490000.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_first_resolution_time_business"}, "model.zendesk.int_zendesk__comments_enriched": {"metadata": {"type": "table", "schema": "dbt_zendesk", "name": "int_zendesk__comments_enriched", "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}, "value": {"type": "STRING", "index": 3, "name": "value", "comment": null}, "is_public": {"type": "BOOL", "index": 4, "name": "is_public", "comment": null}, "user_id": {"type": "INT64", "index": 5, "name": "user_id", "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}, "ticket_created_date": {"type": "TIMESTAMP", "index": 8, "name": "ticket_created_date", "comment": null}, "commenter_role": {"type": "STRING", "index": 9, "name": "commenter_role", "comment": null}, "previous_commenter_role": {"type": "STRING", "index": 10, "name": "previous_commenter_role", "comment": null}, "last_comment_added_at": {"type": "TIMESTAMP", "index": 11, "name": "last_comment_added_at", "comment": null}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 550306.0, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 357267901.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__comments_enriched"}, "model.zendesk.int_zendesk__ticket_full_resolution_time_business": {"metadata": {"type": "table", "schema": "dbt_zendesk", "name": "int_zendesk__ticket_full_resolution_time_business", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"ticket_id": {"type": "INT64", "index": 1, "name": "ticket_id", "comment": null}, "full_resolution_business_minutes": {"type": "FLOAT64", "index": 2, "name": "full_resolution_business_minutes", "comment": null}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 30625.0, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 490000.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_full_resolution_time_business"}, "model.zendesk.int_zendesk__ticket_resolution_times_calendar": {"metadata": {"type": "table", "schema": "dbt_zendesk", "name": "int_zendesk__ticket_resolution_times_calendar", "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}, "first_solved_at": {"type": "TIMESTAMP", "index": 3, "name": "first_solved_at", "comment": null}, "last_solved_at": {"type": "TIMESTAMP", "index": 4, "name": "last_solved_at", "comment": null}, "unique_assignee_count": {"type": "INT64", "index": 5, "name": "unique_assignee_count", "comment": null}, "assignee_stations_count": {"type": "INT64", "index": 6, "name": "assignee_stations_count", "comment": null}, "group_stations_count": {"type": "INT64", "index": 7, "name": "group_stations_count", "comment": null}, "first_assignee_id": {"type": "STRING", "index": 8, "name": "first_assignee_id", "comment": null}, "last_assignee_id": {"type": "STRING", "index": 9, "name": "last_assignee_id", "comment": null}, "first_agent_assignment_date": {"type": "TIMESTAMP", "index": 10, "name": "first_agent_assignment_date", "comment": null}, "last_agent_assignment_date": {"type": "TIMESTAMP", "index": 11, "name": "last_agent_assignment_date", "comment": null}, "ticket_unassigned_duration_calendar_minutes": {"type": "FLOAT64", "index": 12, "name": "ticket_unassigned_duration_calendar_minutes", "comment": null}, "total_resolutions": {"type": "INT64", "index": 13, "name": "total_resolutions", "comment": null}, "count_reopens": {"type": "INT64", "index": 14, "name": "count_reopens", "comment": null}, "first_assignment_to_resolution_calendar_minutes": {"type": "INT64", "index": 15, "name": "first_assignment_to_resolution_calendar_minutes", "comment": null}, "last_assignment_to_resolution_calendar_minutes": {"type": "INT64", "index": 16, "name": "last_assignment_to_resolution_calendar_minutes", "comment": null}, "first_resolution_calendar_minutes": {"type": "INT64", "index": 17, "name": "first_resolution_calendar_minutes", "comment": null}, "final_resolution_calendar_minutes": {"type": "INT64", "index": 18, "name": "final_resolution_calendar_minutes", "comment": null}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 50891.0, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 6166221.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_resolution_times_calendar"}, "model.zendesk.zendesk__sla_policies": {"metadata": {"type": "table", "schema": "dbt_zendesk", "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}, "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}, "sla_applied_at": {"type": "TIMESTAMP", "index": 5, "name": "sla_applied_at", "comment": null}, "target": {"type": "INT64", "index": 6, "name": "target", "comment": null}, "in_business_hours": {"type": "BOOL", "index": 7, "name": "in_business_hours", "comment": null}, "sla_breach_at": {"type": "TIMESTAMP", "index": 8, "name": "sla_breach_at", "comment": null}, "sla_elapsed_time": {"type": "FLOAT64", "index": 9, "name": "sla_elapsed_time", "comment": null}, "is_active_sla": {"type": "BOOL", "index": 10, "name": "is_active_sla", "comment": null}, "is_sla_breach": {"type": "BOOL", "index": 11, "name": "is_sla_breach", "comment": null}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 38316.0, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 4788084.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.int_zendesk__ticket_reply_times": {"metadata": {"type": "table", "schema": "dbt_zendesk", "name": "int_zendesk__ticket_reply_times", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"ticket_id": {"type": "INT64", "index": 1, "name": "ticket_id", "comment": null}, "end_user_comment_created_at": {"type": "TIMESTAMP", "index": 2, "name": "end_user_comment_created_at", "comment": null}, "is_first_comment": {"type": "BOOL", "index": 3, "name": "is_first_comment", "comment": null}, "agent_responded_at": {"type": "TIMESTAMP", "index": 4, "name": "agent_responded_at", "comment": null}, "reply_time_calendar_minutes": {"type": "FLOAT64", "index": 5, "name": "reply_time_calendar_minutes", "comment": null}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 122106.0, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 3706410.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_reply_times"}, "model.zendesk.zendesk__ticket_backlog": {"metadata": {"type": "table", "schema": "dbt_zendesk", "name": "zendesk__ticket_backlog", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"date_day": {"type": "DATE", "index": 1, "name": "date_day", "comment": null}, "ticket_id": {"type": "INT64", "index": 2, "name": "ticket_id", "comment": null}, "status": {"type": "STRING", "index": 3, "name": "status", "comment": null}, "created_channel": {"type": "STRING", "index": 4, "name": "created_channel", "comment": null}, "assignee_name": {"type": "STRING", "index": 5, "name": "assignee_name", "comment": null}, "priority": {"type": "STRING", "index": 6, "name": "priority", "comment": null}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 738568.0, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 33937402.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__ticket_backlog"}, "model.zendesk.zendesk__ticket_field_history": {"metadata": {"type": "table", "schema": "dbt_zendesk", "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}, "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}, "priority": {"type": "STRING", "index": 5, "name": "priority", "comment": null}, "assignee_id": {"type": "STRING", "index": 6, "name": "assignee_id", "comment": null}}, "stats": {"partitioning_type": {"id": "partitioning_type", "label": "Partitioned By", "value": "date_day", "include": true, "description": "The partitioning column for this table"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 2629943.0, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 203627480.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__ticket_field_history"}, "model.zendesk.zendesk__ticket_metrics": {"metadata": {"type": "table", "schema": "dbt_zendesk", "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}, "assignee_id": {"type": "INT64", "index": 3, "name": "assignee_id", "comment": null}, "brand_id": {"type": "INT64", "index": 4, "name": "brand_id", "comment": null}, "created_at": {"type": "TIMESTAMP", "index": 5, "name": "created_at", "comment": null}, "updated_at": {"type": "TIMESTAMP", "index": 6, "name": "updated_at", "comment": null}, "description": {"type": "STRING", "index": 7, "name": "description", "comment": null}, "due_at": {"type": "TIMESTAMP", "index": 8, "name": "due_at", "comment": null}, "group_id": {"type": "INT64", "index": 9, "name": "group_id", "comment": null}, "external_id": {"type": "STRING", "index": 10, "name": "external_id", "comment": null}, "is_public": {"type": "BOOL", "index": 11, "name": "is_public", "comment": null}, "organization_id": {"type": "INT64", "index": 12, "name": "organization_id", "comment": null}, "priority": {"type": "STRING", "index": 13, "name": "priority", "comment": null}, "recipient": {"type": "STRING", "index": 14, "name": "recipient", "comment": null}, "requester_id": {"type": "INT64", "index": 15, "name": "requester_id", "comment": null}, "status": {"type": "STRING", "index": 16, "name": "status", "comment": null}, "subject": {"type": "STRING", "index": 17, "name": "subject", "comment": null}, "problem_id": {"type": "INT64", "index": 18, "name": "problem_id", "comment": null}, "submitter_id": {"type": "INT64", "index": 19, "name": "submitter_id", "comment": null}, "ticket_form_id": {"type": "INT64", "index": 20, "name": "ticket_form_id", "comment": null}, "type": {"type": "STRING", "index": 21, "name": "type", "comment": null}, "url": {"type": "STRING", "index": 22, "name": "url", "comment": null}, "created_channel": {"type": "STRING", "index": 23, "name": "created_channel", "comment": null}, "source_from_id": {"type": "INT64", "index": 24, "name": "source_from_id", "comment": null}, "source_from_title": {"type": "STRING", "index": 25, "name": "source_from_title", "comment": null}, "source_rel": {"type": "STRING", "index": 26, "name": "source_rel", "comment": null}, "source_to_address": {"type": "STRING", "index": 27, "name": "source_to_address", "comment": null}, "source_to_name": {"type": "STRING", "index": 28, "name": "source_to_name", "comment": null}, "is_incident": {"type": "BOOL", "index": 29, "name": "is_incident", "comment": null}, "ticket_brand_name": {"type": "STRING", "index": 30, "name": "ticket_brand_name", "comment": null}, "ticket_tags": {"type": "STRING", "index": 31, "name": "ticket_tags", "comment": null}, "ticket_form_name": {"type": "STRING", "index": 32, "name": "ticket_form_name", "comment": null}, "ticket_total_satisfaction_scores": {"type": "INT64", "index": 33, "name": "ticket_total_satisfaction_scores", "comment": null}, "ticket_first_satisfaction_score": {"type": "STRING", "index": 34, "name": "ticket_first_satisfaction_score", "comment": null}, "ticket_satisfaction_score": {"type": "STRING", "index": 35, "name": "ticket_satisfaction_score", "comment": null}, "ticket_satisfaction_comment": {"type": "STRING", "index": 36, "name": "ticket_satisfaction_comment", "comment": null}, "ticket_satisfaction_reason": {"type": "STRING", "index": 37, "name": "ticket_satisfaction_reason", "comment": null}, "is_good_to_bad_satisfaction_score": {"type": "BOOL", "index": 38, "name": "is_good_to_bad_satisfaction_score", "comment": null}, "is_bad_to_good_satisfaction_score": {"type": "BOOL", "index": 39, "name": "is_bad_to_good_satisfaction_score", "comment": null}, "ticket_organization_domain_names": {"type": "STRING", "index": 40, "name": "ticket_organization_domain_names", "comment": null}, "requester_organization_domain_names": {"type": "STRING", "index": 41, "name": "requester_organization_domain_names", "comment": null}, "requester_external_id": {"type": "STRING", "index": 42, "name": "requester_external_id", "comment": null}, "requester_created_at": {"type": "TIMESTAMP", "index": 43, "name": "requester_created_at", "comment": null}, "requester_updated_at": {"type": "TIMESTAMP", "index": 44, "name": "requester_updated_at", "comment": null}, "requester_role": {"type": "STRING", "index": 45, "name": "requester_role", "comment": null}, "requester_email": {"type": "STRING", "index": 46, "name": "requester_email", "comment": null}, "requester_name": {"type": "STRING", "index": 47, "name": "requester_name", "comment": null}, "is_requester_active": {"type": "BOOL", "index": 48, "name": "is_requester_active", "comment": null}, "requester_locale": {"type": "STRING", "index": 49, "name": "requester_locale", "comment": null}, "requester_time_zone": {"type": "STRING", "index": 50, "name": "requester_time_zone", "comment": null}, "requester_ticket_update_count": {"type": "INT64", "index": 51, "name": "requester_ticket_update_count", "comment": null}, "requester_ticket_last_update_at": {"type": "TIMESTAMP", "index": 52, "name": "requester_ticket_last_update_at", "comment": null}, "requester_last_login_at": {"type": "TIMESTAMP", "index": 53, "name": "requester_last_login_at", "comment": null}, "requester_organization_id": {"type": "INT64", "index": 54, "name": "requester_organization_id", "comment": null}, "requester_organization_name": {"type": "STRING", "index": 55, "name": "requester_organization_name", "comment": null}, "requester_organization_tags": {"type": "STRING", "index": 56, "name": "requester_organization_tags", "comment": null}, "requester_organization_external_id": {"type": "STRING", "index": 57, "name": "requester_organization_external_id", "comment": null}, "requester_organization_created_at": {"type": "TIMESTAMP", "index": 58, "name": "requester_organization_created_at", "comment": null}, "requester_organization_updated_at": {"type": "TIMESTAMP", "index": 59, "name": "requester_organization_updated_at", "comment": null}, "submitter_external_id": {"type": "STRING", "index": 60, "name": "submitter_external_id", "comment": null}, "submitter_role": {"type": "STRING", "index": 61, "name": "submitter_role", "comment": null}, "is_agent_submitted": {"type": "BOOL", "index": 62, "name": "is_agent_submitted", "comment": null}, "submitter_email": {"type": "STRING", "index": 63, "name": "submitter_email", "comment": null}, "submitter_name": {"type": "STRING", "index": 64, "name": "submitter_name", "comment": null}, "is_submitter_active": {"type": "BOOL", "index": 65, "name": "is_submitter_active", "comment": null}, "submitter_locale": {"type": "STRING", "index": 66, "name": "submitter_locale", "comment": null}, "submitter_time_zone": {"type": "STRING", "index": 67, "name": "submitter_time_zone", "comment": null}, "assignee_external_id": {"type": "STRING", "index": 68, "name": "assignee_external_id", "comment": null}, "assignee_role": {"type": "STRING", "index": 69, "name": "assignee_role", "comment": null}, "assignee_email": {"type": "STRING", "index": 70, "name": "assignee_email", "comment": null}, "assignee_name": {"type": "STRING", "index": 71, "name": "assignee_name", "comment": null}, "is_assignee_active": {"type": "BOOL", "index": 72, "name": "is_assignee_active", "comment": null}, "assignee_locale": {"type": "STRING", "index": 73, "name": "assignee_locale", "comment": null}, "assignee_time_zone": {"type": "STRING", "index": 74, "name": "assignee_time_zone", "comment": null}, "assignee_ticket_update_count": {"type": "INT64", "index": 75, "name": "assignee_ticket_update_count", "comment": null}, "assignee_ticket_last_update_at": {"type": "TIMESTAMP", "index": 76, "name": "assignee_ticket_last_update_at", "comment": null}, "assignee_last_login_at": {"type": "TIMESTAMP", "index": 77, "name": "assignee_last_login_at", "comment": null}, "group_name": {"type": "STRING", "index": 78, "name": "group_name", "comment": null}, "organization_name": {"type": "STRING", "index": 79, "name": "organization_name", "comment": null}, "requester_tag": {"type": "STRING", "index": 80, "name": "requester_tag", "comment": null}, "submitter_tag": {"type": "STRING", "index": 81, "name": "submitter_tag", "comment": null}, "assignee_tag": {"type": "STRING", "index": 82, "name": "assignee_tag", "comment": null}, "first_reply_time_calendar_minutes": {"type": "FLOAT64", "index": 83, "name": "first_reply_time_calendar_minutes", "comment": null}, "total_reply_time_calendar_minutes": {"type": "FLOAT64", "index": 84, "name": "total_reply_time_calendar_minutes", "comment": null}, "count_agent_comments": {"type": "INT64", "index": 85, "name": "count_agent_comments", "comment": null}, "count_public_agent_comments": {"type": "INT64", "index": 86, "name": "count_public_agent_comments", "comment": null}, "count_end_user_comments": {"type": "INT64", "index": 87, "name": "count_end_user_comments", "comment": null}, "count_public_comments": {"type": "INT64", "index": 88, "name": "count_public_comments", "comment": null}, "count_internal_comments": {"type": "INT64", "index": 89, "name": "count_internal_comments", "comment": null}, "total_comments": {"type": "INT64", "index": 90, "name": "total_comments", "comment": null}, "count_ticket_handoffs": {"type": "INT64", "index": 91, "name": "count_ticket_handoffs", "comment": null}, "ticket_last_comment_date": {"type": "TIMESTAMP", "index": 92, "name": "ticket_last_comment_date", "comment": null}, "unique_assignee_count": {"type": "INT64", "index": 93, "name": "unique_assignee_count", "comment": null}, "assignee_stations_count": {"type": "INT64", "index": 94, "name": "assignee_stations_count", "comment": null}, "group_stations_count": {"type": "INT64", "index": 95, "name": "group_stations_count", "comment": null}, "first_assignee_id": {"type": "STRING", "index": 96, "name": "first_assignee_id", "comment": null}, "last_assignee_id": {"type": "STRING", "index": 97, "name": "last_assignee_id", "comment": null}, "first_agent_assignment_date": {"type": "TIMESTAMP", "index": 98, "name": "first_agent_assignment_date", "comment": null}, "last_agent_assignment_date": {"type": "TIMESTAMP", "index": 99, "name": "last_agent_assignment_date", "comment": null}, "first_solved_at": {"type": "TIMESTAMP", "index": 100, "name": "first_solved_at", "comment": null}, "last_solved_at": {"type": "TIMESTAMP", "index": 101, "name": "last_solved_at", "comment": null}, "first_assignment_to_resolution_calendar_minutes": {"type": "INT64", "index": 102, "name": "first_assignment_to_resolution_calendar_minutes", "comment": null}, "last_assignment_to_resolution_calendar_minutes": {"type": "INT64", "index": 103, "name": "last_assignment_to_resolution_calendar_minutes", "comment": null}, "ticket_unassigned_duration_calendar_minutes": {"type": "FLOAT64", "index": 104, "name": "ticket_unassigned_duration_calendar_minutes", "comment": null}, "first_resolution_calendar_minutes": {"type": "INT64", "index": 105, "name": "first_resolution_calendar_minutes", "comment": null}, "final_resolution_calendar_minutes": {"type": "INT64", "index": 106, "name": "final_resolution_calendar_minutes", "comment": null}, "count_resolutions": {"type": "INT64", "index": 107, "name": "count_resolutions", "comment": null}, "count_reopens": {"type": "INT64", "index": 108, "name": "count_reopens", "comment": null}, "ticket_deleted_count": {"type": "INT64", "index": 109, "name": "ticket_deleted_count", "comment": null}, "total_ticket_recoveries": {"type": "INT64", "index": 110, "name": "total_ticket_recoveries", "comment": null}, "last_status_assignment_date": {"type": "TIMESTAMP", "index": 111, "name": "last_status_assignment_date", "comment": null}, "new_status_duration_in_calendar_minutes": {"type": "INT64", "index": 112, "name": "new_status_duration_in_calendar_minutes", "comment": null}, "open_status_duration_in_calendar_minutes": {"type": "INT64", "index": 113, "name": "open_status_duration_in_calendar_minutes", "comment": null}, "agent_wait_time_in_calendar_minutes": {"type": "INT64", "index": 114, "name": "agent_wait_time_in_calendar_minutes", "comment": null}, "requester_wait_time_in_calendar_minutes": {"type": "INT64", "index": 115, "name": "requester_wait_time_in_calendar_minutes", "comment": null}, "agent_work_time_in_calendar_minutes": {"type": "INT64", "index": 116, "name": "agent_work_time_in_calendar_minutes", "comment": null}, "on_hold_time_in_calendar_minutes": {"type": "INT64", "index": 117, "name": "on_hold_time_in_calendar_minutes", "comment": null}, "total_agent_replies": {"type": "INT64", "index": 118, "name": "total_agent_replies", "comment": null}, "requester_last_login_age_minutes": {"type": "FLOAT64", "index": 119, "name": "requester_last_login_age_minutes", "comment": null}, "assignee_last_login_age_minutes": {"type": "FLOAT64", "index": 120, "name": "assignee_last_login_age_minutes", "comment": null}, "unsolved_ticket_age_minutes": {"type": "FLOAT64", "index": 121, "name": "unsolved_ticket_age_minutes", "comment": null}, "unsolved_ticket_age_since_update_minutes": {"type": "FLOAT64", "index": 122, "name": "unsolved_ticket_age_since_update_minutes", "comment": null}, "is_one_touch_resolution": {"type": "BOOL", "index": 123, "name": "is_one_touch_resolution", "comment": null}, "is_two_touch_resolution": {"type": "BOOL", "index": 124, "name": "is_two_touch_resolution", "comment": null}, "is_multi_touch_resolution": {"type": "BOOL", "index": 125, "name": "is_multi_touch_resolution", "comment": null}, "first_resolution_business_minutes": {"type": "FLOAT64", "index": 126, "name": "first_resolution_business_minutes", "comment": null}, "full_resolution_business_minutes": {"type": "FLOAT64", "index": 127, "name": "full_resolution_business_minutes", "comment": null}, "first_reply_time_business_minutes": {"type": "FLOAT64", "index": 128, "name": "first_reply_time_business_minutes", "comment": null}, "agent_wait_time_in_business_minutes": {"type": "FLOAT64", "index": 129, "name": "agent_wait_time_in_business_minutes", "comment": null}, "requester_wait_time_in_business_minutes": {"type": "FLOAT64", "index": 130, "name": "requester_wait_time_in_business_minutes", "comment": null}, "agent_work_time_in_business_minutes": {"type": "FLOAT64", "index": 131, "name": "agent_work_time_in_business_minutes", "comment": null}, "on_hold_time_in_business_minutes": {"type": "FLOAT64", "index": 132, "name": "on_hold_time_in_business_minutes", "comment": null}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 50892.0, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 85418525.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__ticket_metrics"}, "model.zendesk.int_zendesk__ticket_first_reply_time_business": {"metadata": {"type": "table", "schema": "dbt_zendesk", "name": "int_zendesk__ticket_first_reply_time_business", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"ticket_id": {"type": "INT64", "index": 1, "name": "ticket_id", "comment": null}, "first_reply_time_business_minutes": {"type": "FLOAT64", "index": 2, "name": "first_reply_time_business_minutes", "comment": null}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 35593.0, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 569488.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_first_reply_time_business"}, "model.zendesk.int_zendesk__ticket_work_time_business": {"metadata": {"type": "table", "schema": "dbt_zendesk", "name": "int_zendesk__ticket_work_time_business", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"ticket_id": {"type": "INT64", "index": 1, "name": "ticket_id", "comment": null}, "agent_wait_time_in_business_minutes": {"type": "FLOAT64", "index": 2, "name": "agent_wait_time_in_business_minutes", "comment": null}, "requester_wait_time_in_business_minutes": {"type": "FLOAT64", "index": 3, "name": "requester_wait_time_in_business_minutes", "comment": null}, "agent_work_time_in_business_minutes": {"type": "FLOAT64", "index": 4, "name": "agent_work_time_in_business_minutes", "comment": null}, "on_hold_time_in_business_minutes": {"type": "FLOAT64", "index": 5, "name": "on_hold_time_in_business_minutes", "comment": null}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 48188.0, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 1927520.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_work_time_business"}, "model.zendesk.int_zendesk__ticket_work_time_calendar": {"metadata": {"type": "table", "schema": "dbt_zendesk", "name": "int_zendesk__ticket_work_time_calendar", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"ticket_id": {"type": "INT64", "index": 1, "name": "ticket_id", "comment": null}, "last_status_assignment_date": {"type": "TIMESTAMP", "index": 2, "name": "last_status_assignment_date", "comment": null}, "ticket_deleted_count": {"type": "INT64", "index": 3, "name": "ticket_deleted_count", "comment": null}, "agent_wait_time_in_calendar_minutes": {"type": "INT64", "index": 4, "name": "agent_wait_time_in_calendar_minutes", "comment": null}, "requester_wait_time_in_calendar_minutes": {"type": "INT64", "index": 5, "name": "requester_wait_time_in_calendar_minutes", "comment": null}, "agent_work_time_in_calendar_minutes": {"type": "INT64", "index": 6, "name": "agent_work_time_in_calendar_minutes", "comment": null}, "on_hold_time_in_calendar_minutes": {"type": "INT64", "index": 7, "name": "on_hold_time_in_calendar_minutes", "comment": null}, "new_status_duration_in_calendar_minutes": {"type": "INT64", "index": 8, "name": "new_status_duration_in_calendar_minutes", "comment": null}, "open_status_duration_in_calendar_minutes": {"type": "INT64", "index": 9, "name": "open_status_duration_in_calendar_minutes", "comment": null}, "total_ticket_recoveries": {"type": "INT64", "index": 10, "name": "total_ticket_recoveries", "comment": null}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 50890.0, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 4071200.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_work_time_calendar"}, "model.zendesk.zendesk__ticket_summary": {"metadata": {"type": "table", "schema": "dbt_zendesk", "name": "zendesk__ticket_summary", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"user_count": {"type": "INT64", "index": 1, "name": "user_count", "comment": null}, "active_agent_count": {"type": "INT64", "index": 2, "name": "active_agent_count", "comment": null}, "deleted_user_count": {"type": "INT64", "index": 3, "name": "deleted_user_count", "comment": null}, "end_user_count": {"type": "INT64", "index": 4, "name": "end_user_count", "comment": null}, "suspended_user_count": {"type": "INT64", "index": 5, "name": "suspended_user_count", "comment": null}, "new_ticket_count": {"type": "INT64", "index": 6, "name": "new_ticket_count", "comment": null}, "on_hold_ticket_count": {"type": "INT64", "index": 7, "name": "on_hold_ticket_count", "comment": null}, "open_ticket_count": {"type": "INT64", "index": 8, "name": "open_ticket_count", "comment": null}, "pending_ticket_count": {"type": "INT64", "index": 9, "name": "pending_ticket_count", "comment": null}, "solved_ticket_count": {"type": "INT64", "index": 10, "name": "solved_ticket_count", "comment": null}, "problem_ticket_count": {"type": "INT64", "index": 11, "name": "problem_ticket_count", "comment": null}, "assigned_ticket_count": {"type": "INT64", "index": 12, "name": "assigned_ticket_count", "comment": null}, "reassigned_ticket_count": {"type": "INT64", "index": 13, "name": "reassigned_ticket_count", "comment": null}, "reopened_ticket_count": {"type": "INT64", "index": 14, "name": "reopened_ticket_count", "comment": null}, "surveyed_satisfaction_ticket_count": {"type": "INT64", "index": 15, "name": "surveyed_satisfaction_ticket_count", "comment": null}, "unassigned_unsolved_ticket_count": {"type": "INT64", "index": 16, "name": "unassigned_unsolved_ticket_count", "comment": null}, "unreplied_ticket_count": {"type": "INT64", "index": 17, "name": "unreplied_ticket_count", "comment": null}, "unreplied_unsolved_ticket_count": {"type": "INT64", "index": 18, "name": "unreplied_unsolved_ticket_count", "comment": null}, "unsolved_ticket_count": {"type": "INT64", "index": 19, "name": "unsolved_ticket_count", "comment": null}, "recovered_ticket_count": {"type": "INT64", "index": 20, "name": "recovered_ticket_count", "comment": null}, "deleted_ticket_count": {"type": "INT64", "index": 21, "name": "deleted_ticket_count", "comment": null}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 1.0, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 168.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__ticket_summary"}, "model.zendesk.zendesk__ticket_enriched": {"metadata": {"type": "table", "schema": "dbt_zendesk", "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}, "assignee_id": {"type": "INT64", "index": 3, "name": "assignee_id", "comment": null}, "brand_id": {"type": "INT64", "index": 4, "name": "brand_id", "comment": null}, "created_at": {"type": "TIMESTAMP", "index": 5, "name": "created_at", "comment": null}, "updated_at": {"type": "TIMESTAMP", "index": 6, "name": "updated_at", "comment": null}, "description": {"type": "STRING", "index": 7, "name": "description", "comment": null}, "due_at": {"type": "TIMESTAMP", "index": 8, "name": "due_at", "comment": null}, "group_id": {"type": "INT64", "index": 9, "name": "group_id", "comment": null}, "external_id": {"type": "STRING", "index": 10, "name": "external_id", "comment": null}, "is_public": {"type": "BOOL", "index": 11, "name": "is_public", "comment": null}, "organization_id": {"type": "INT64", "index": 12, "name": "organization_id", "comment": null}, "priority": {"type": "STRING", "index": 13, "name": "priority", "comment": null}, "recipient": {"type": "STRING", "index": 14, "name": "recipient", "comment": null}, "requester_id": {"type": "INT64", "index": 15, "name": "requester_id", "comment": null}, "status": {"type": "STRING", "index": 16, "name": "status", "comment": null}, "subject": {"type": "STRING", "index": 17, "name": "subject", "comment": null}, "problem_id": {"type": "INT64", "index": 18, "name": "problem_id", "comment": null}, "submitter_id": {"type": "INT64", "index": 19, "name": "submitter_id", "comment": null}, "ticket_form_id": {"type": "INT64", "index": 20, "name": "ticket_form_id", "comment": null}, "type": {"type": "STRING", "index": 21, "name": "type", "comment": null}, "url": {"type": "STRING", "index": 22, "name": "url", "comment": null}, "created_channel": {"type": "STRING", "index": 23, "name": "created_channel", "comment": null}, "source_from_id": {"type": "INT64", "index": 24, "name": "source_from_id", "comment": null}, "source_from_title": {"type": "STRING", "index": 25, "name": "source_from_title", "comment": null}, "source_rel": {"type": "STRING", "index": 26, "name": "source_rel", "comment": null}, "source_to_address": {"type": "STRING", "index": 27, "name": "source_to_address", "comment": null}, "source_to_name": {"type": "STRING", "index": 28, "name": "source_to_name", "comment": null}, "is_incident": {"type": "BOOL", "index": 29, "name": "is_incident", "comment": null}, "ticket_brand_name": {"type": "STRING", "index": 30, "name": "ticket_brand_name", "comment": null}, "ticket_tags": {"type": "STRING", "index": 31, "name": "ticket_tags", "comment": null}, "ticket_form_name": {"type": "STRING", "index": 32, "name": "ticket_form_name", "comment": null}, "ticket_total_satisfaction_scores": {"type": "INT64", "index": 33, "name": "ticket_total_satisfaction_scores", "comment": null}, "ticket_first_satisfaction_score": {"type": "STRING", "index": 34, "name": "ticket_first_satisfaction_score", "comment": null}, "ticket_satisfaction_score": {"type": "STRING", "index": 35, "name": "ticket_satisfaction_score", "comment": null}, "ticket_satisfaction_comment": {"type": "STRING", "index": 36, "name": "ticket_satisfaction_comment", "comment": null}, "ticket_satisfaction_reason": {"type": "STRING", "index": 37, "name": "ticket_satisfaction_reason", "comment": null}, "is_good_to_bad_satisfaction_score": {"type": "BOOL", "index": 38, "name": "is_good_to_bad_satisfaction_score", "comment": null}, "is_bad_to_good_satisfaction_score": {"type": "BOOL", "index": 39, "name": "is_bad_to_good_satisfaction_score", "comment": null}, "ticket_organization_domain_names": {"type": "STRING", "index": 40, "name": "ticket_organization_domain_names", "comment": null}, "requester_organization_domain_names": {"type": "STRING", "index": 41, "name": "requester_organization_domain_names", "comment": null}, "requester_external_id": {"type": "STRING", "index": 42, "name": "requester_external_id", "comment": null}, "requester_created_at": {"type": "TIMESTAMP", "index": 43, "name": "requester_created_at", "comment": null}, "requester_updated_at": {"type": "TIMESTAMP", "index": 44, "name": "requester_updated_at", "comment": null}, "requester_role": {"type": "STRING", "index": 45, "name": "requester_role", "comment": null}, "requester_email": {"type": "STRING", "index": 46, "name": "requester_email", "comment": null}, "requester_name": {"type": "STRING", "index": 47, "name": "requester_name", "comment": null}, "is_requester_active": {"type": "BOOL", "index": 48, "name": "is_requester_active", "comment": null}, "requester_locale": {"type": "STRING", "index": 49, "name": "requester_locale", "comment": null}, "requester_time_zone": {"type": "STRING", "index": 50, "name": "requester_time_zone", "comment": null}, "requester_ticket_update_count": {"type": "INT64", "index": 51, "name": "requester_ticket_update_count", "comment": null}, "requester_ticket_last_update_at": {"type": "TIMESTAMP", "index": 52, "name": "requester_ticket_last_update_at", "comment": null}, "requester_last_login_at": {"type": "TIMESTAMP", "index": 53, "name": "requester_last_login_at", "comment": null}, "requester_organization_id": {"type": "INT64", "index": 54, "name": "requester_organization_id", "comment": null}, "requester_organization_name": {"type": "STRING", "index": 55, "name": "requester_organization_name", "comment": null}, "requester_organization_tags": {"type": "STRING", "index": 56, "name": "requester_organization_tags", "comment": null}, "requester_organization_external_id": {"type": "STRING", "index": 57, "name": "requester_organization_external_id", "comment": null}, "requester_organization_created_at": {"type": "TIMESTAMP", "index": 58, "name": "requester_organization_created_at", "comment": null}, "requester_organization_updated_at": {"type": "TIMESTAMP", "index": 59, "name": "requester_organization_updated_at", "comment": null}, "submitter_external_id": {"type": "STRING", "index": 60, "name": "submitter_external_id", "comment": null}, "submitter_role": {"type": "STRING", "index": 61, "name": "submitter_role", "comment": null}, "is_agent_submitted": {"type": "BOOL", "index": 62, "name": "is_agent_submitted", "comment": null}, "submitter_email": {"type": "STRING", "index": 63, "name": "submitter_email", "comment": null}, "submitter_name": {"type": "STRING", "index": 64, "name": "submitter_name", "comment": null}, "is_submitter_active": {"type": "BOOL", "index": 65, "name": "is_submitter_active", "comment": null}, "submitter_locale": {"type": "STRING", "index": 66, "name": "submitter_locale", "comment": null}, "submitter_time_zone": {"type": "STRING", "index": 67, "name": "submitter_time_zone", "comment": null}, "assignee_external_id": {"type": "STRING", "index": 68, "name": "assignee_external_id", "comment": null}, "assignee_role": {"type": "STRING", "index": 69, "name": "assignee_role", "comment": null}, "assignee_email": {"type": "STRING", "index": 70, "name": "assignee_email", "comment": null}, "assignee_name": {"type": "STRING", "index": 71, "name": "assignee_name", "comment": null}, "is_assignee_active": {"type": "BOOL", "index": 72, "name": "is_assignee_active", "comment": null}, "assignee_locale": {"type": "STRING", "index": 73, "name": "assignee_locale", "comment": null}, "assignee_time_zone": {"type": "STRING", "index": 74, "name": "assignee_time_zone", "comment": null}, "assignee_ticket_update_count": {"type": "INT64", "index": 75, "name": "assignee_ticket_update_count", "comment": null}, "assignee_ticket_last_update_at": {"type": "TIMESTAMP", "index": 76, "name": "assignee_ticket_last_update_at", "comment": null}, "assignee_last_login_at": {"type": "TIMESTAMP", "index": 77, "name": "assignee_last_login_at", "comment": null}, "group_name": {"type": "STRING", "index": 78, "name": "group_name", "comment": null}, "organization_name": {"type": "STRING", "index": 79, "name": "organization_name", "comment": null}, "requester_tag": {"type": "STRING", "index": 80, "name": "requester_tag", "comment": null}, "submitter_tag": {"type": "STRING", "index": 81, "name": "submitter_tag", "comment": null}, "assignee_tag": {"type": "STRING", "index": 82, "name": "assignee_tag", "comment": null}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 50892.0, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 68956370.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__ticket_enriched"}, "model.zendesk.int_zendesk__reply_time_combined": {"metadata": {"type": "table", "schema": "dbt_zendesk_intermediate", "name": "int_zendesk__reply_time_combined", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"ticket_id": {"type": "INT64", "index": 1, "name": "ticket_id", "comment": null}, "sla_policy_name": {"type": "STRING", "index": 2, "name": "sla_policy_name", "comment": null}, "metric": {"type": "STRING", "index": 3, "name": "metric", "comment": null}, "sla_applied_at": {"type": "TIMESTAMP", "index": 4, "name": "sla_applied_at", "comment": null}, "target": {"type": "INT64", "index": 5, "name": "target", "comment": null}, "in_business_hours": {"type": "BOOL", "index": 6, "name": "in_business_hours", "comment": null}, "sla_breach_at": {"type": "TIMESTAMP", "index": 7, "name": "sla_breach_at", "comment": null}, "agent_reply_at": {"type": "TIMESTAMP", "index": 8, "name": "agent_reply_at", "comment": null}, "next_solved_at": {"type": "TIMESTAMP", "index": 9, "name": "next_solved_at", "comment": null}, "updated_sla_policy_starts_at": {"type": "TIMESTAMP", "index": 10, "name": "updated_sla_policy_starts_at", "comment": null}, "is_stale_sla_policy": {"type": "BOOL", "index": 11, "name": "is_stale_sla_policy", "comment": null}, "is_sla_breached": {"type": "BOOL", "index": 12, "name": "is_sla_breached", "comment": null}, "sla_elapsed_time": {"type": "INT64", "index": 13, "name": "sla_elapsed_time", "comment": null}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 38316.0, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 4148164.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__field_history_pivot": {"metadata": {"type": "table", "schema": "dbt_zendesk_intermediate", "name": "int_zendesk__field_history_pivot", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"ticket_id": {"type": "INT64", "index": 1, "name": "ticket_id", "comment": null}, "date_day": {"type": "DATE", "index": 2, "name": "date_day", "comment": null}, "status": {"type": "STRING", "index": 3, "name": "status", "comment": null}, "priority": {"type": "STRING", "index": 4, "name": "priority", "comment": null}, "assignee_id": {"type": "STRING", "index": 5, "name": "assignee_id", "comment": null}, "ticket_day_id": {"type": "STRING", "index": 6, "name": "ticket_day_id", "comment": null}}, "stats": {"partitioning_type": {"id": "partitioning_type", "label": "Partitioned By", "value": "date_day", "include": true, "description": "The partitioning column for this table"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 239418.0, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 14715603.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__field_history_pivot"}, "model.zendesk.int_zendesk__ticket_historical_assignee": {"metadata": {"type": "table", "schema": "dbt_zendesk_intermediate", "name": "int_zendesk__ticket_historical_assignee", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"ticket_id": {"type": "INT64", "index": 1, "name": "ticket_id", "comment": null}, "first_agent_assignment_date": {"type": "TIMESTAMP", "index": 2, "name": "first_agent_assignment_date", "comment": null}, "first_assignee_id": {"type": "STRING", "index": 3, "name": "first_assignee_id", "comment": null}, "last_agent_assignment_date": {"type": "TIMESTAMP", "index": 4, "name": "last_agent_assignment_date", "comment": null}, "last_assignee_id": {"type": "STRING", "index": 5, "name": "last_assignee_id", "comment": null}, "assignee_stations_count": {"type": "INT64", "index": 6, "name": "assignee_stations_count", "comment": null}, "unique_assignee_count": {"type": "INT64", "index": 7, "name": "unique_assignee_count", "comment": null}, "ticket_unassigned_duration_calendar_minutes": {"type": "FLOAT64", "index": 8, "name": "ticket_unassigned_duration_calendar_minutes", "comment": null}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 43796.0, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 3341047.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_assignee"}, "model.zendesk.int_zendesk__schedule_spine": {"metadata": {"type": "table", "schema": "dbt_zendesk_intermediate", "name": "int_zendesk__schedule_spine", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"schedule_id": {"type": "STRING", "index": 1, "name": "schedule_id", "comment": null}, "time_zone": {"type": "STRING", "index": 2, "name": "time_zone", "comment": null}, "start_time": {"type": "INT64", "index": 3, "name": "start_time", "comment": null}, "end_time": {"type": "INT64", "index": 4, "name": "end_time", "comment": null}, "created_at": {"type": "TIMESTAMP", "index": 5, "name": "created_at", "comment": null}, "schedule_name": {"type": "STRING", "index": 6, "name": "schedule_name", "comment": null}, "start_time_utc": {"type": "INT64", "index": 7, "name": "start_time_utc", "comment": null}, "end_time_utc": {"type": "INT64", "index": 8, "name": "end_time_utc", "comment": null}, "valid_from": {"type": "DATETIME", "index": 9, "name": "valid_from", "comment": null}, "valid_until": {"type": "DATETIME", "index": 10, "name": "valid_until", "comment": null}, "unqiue_schedule_spine_key": {"type": "STRING", "index": 11, "name": "unqiue_schedule_spine_key", "comment": null}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 7.0, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 882.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__assignee_updates": {"metadata": {"type": "table", "schema": "dbt_zendesk_intermediate", "name": "int_zendesk__assignee_updates", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"ticket_id": {"type": "INT64", "index": 1, "name": "ticket_id", "comment": null}, "assignee_id": {"type": "INT64", "index": 2, "name": "assignee_id", "comment": null}, "last_updated": {"type": "TIMESTAMP", "index": 3, "name": "last_updated", "comment": null}, "total_updates": {"type": "INT64", "index": 4, "name": "total_updates", "comment": null}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 50892.0, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 1507832.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__assignee_updates"}, "model.zendesk.int_zendesk__ticket_schedules": {"metadata": {"type": "table", "schema": "dbt_zendesk_intermediate", "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}, "schedule_id": {"type": "STRING", "index": 2, "name": "schedule_id", "comment": null}, "schedule_created_at": {"type": "TIMESTAMP", "index": 3, "name": "schedule_created_at", "comment": null}, "schedule_invalidated_at": {"type": "TIMESTAMP", "index": 4, "name": "schedule_invalidated_at", "comment": null}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 50893.0, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 1984796.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_schedules"}, "model.zendesk.int_zendesk__updates": {"metadata": {"type": "table", "schema": "dbt_zendesk_intermediate", "name": "int_zendesk__updates", "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}, "value": {"type": "STRING", "index": 3, "name": "value", "comment": null}, "is_public": {"type": "BOOL", "index": 4, "name": "is_public", "comment": null}, "user_id": {"type": "INT64", "index": 5, "name": "user_id", "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}, "ticket_created_date": {"type": "TIMESTAMP", "index": 8, "name": "ticket_created_date", "comment": null}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 2104332.0, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 452709634.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__updates"}, "model.zendesk.int_zendesk__requester_wait_time_business_hours": {"metadata": {"type": "table", "schema": "dbt_zendesk_intermediate", "name": "int_zendesk__requester_wait_time_business_hours", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"ticket_id": {"type": "INT64", "index": 1, "name": "ticket_id", "comment": null}, "sla_applied_at": {"type": "TIMESTAMP", "index": 2, "name": "sla_applied_at", "comment": null}, "target": {"type": "INT64", "index": 3, "name": "target", "comment": null}, "sla_policy_name": {"type": "STRING", "index": 4, "name": "sla_policy_name", "comment": null}, "valid_starting_at": {"type": "TIMESTAMP", "index": 5, "name": "valid_starting_at", "comment": null}, "valid_ending_at": {"type": "TIMESTAMP", "index": 6, "name": "valid_ending_at", "comment": null}, "week_number": {"type": "FLOAT64", "index": 7, "name": "week_number", "comment": null}, "ticket_week_start_time_minute": {"type": "FLOAT64", "index": 8, "name": "ticket_week_start_time_minute", "comment": null}, "ticket_week_end_time_minute": {"type": "FLOAT64", "index": 9, "name": "ticket_week_end_time_minute", "comment": null}, "schedule_start_time": {"type": "INT64", "index": 10, "name": "schedule_start_time", "comment": null}, "schedule_end_time": {"type": "INT64", "index": 11, "name": "schedule_end_time", "comment": null}, "scheduled_minutes": {"type": "FLOAT64", "index": 12, "name": "scheduled_minutes", "comment": null}, "running_total_scheduled_minutes": {"type": "FLOAT64", "index": 13, "name": "running_total_scheduled_minutes", "comment": null}, "remaining_target_minutes": {"type": "FLOAT64", "index": 14, "name": "remaining_target_minutes", "comment": null}, "lag_check": {"type": "FLOAT64", "index": 15, "name": "lag_check", "comment": null}, "is_breached_during_schedule": {"type": "BOOL", "index": 16, "name": "is_breached_during_schedule", "comment": null}, "breach_minutes": {"type": "FLOAT64", "index": 17, "name": "breach_minutes", "comment": null}, "breach_minutes_from_week": {"type": "FLOAT64", "index": 18, "name": "breach_minutes_from_week", "comment": null}, "sla_breach_at": {"type": "TIMESTAMP", "index": 19, "name": "sla_breach_at", "comment": null}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 0.0, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 0.0, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.zendesk.int_zendesk__requester_wait_time_business_hours"}, "model.zendesk.int_zendesk__requester_wait_time_calendar_hours": {"metadata": {"type": "table", "schema": "dbt_zendesk_intermediate", "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}, "valid_starting_at": {"type": "TIMESTAMP", "index": 2, "name": "valid_starting_at", "comment": null}, "valid_ending_at": {"type": "TIMESTAMP", "index": 3, "name": "valid_ending_at", "comment": null}, "ticket_status": {"type": "STRING", "index": 4, "name": "ticket_status", "comment": null}, "sla_applied_at": {"type": "TIMESTAMP", "index": 5, "name": "sla_applied_at", "comment": null}, "target": {"type": "INT64", "index": 6, "name": "target", "comment": null}, "sla_policy_name": {"type": "STRING", "index": 7, "name": "sla_policy_name", "comment": null}, "ticket_created_at": {"type": "TIMESTAMP", "index": 8, "name": "ticket_created_at", "comment": null}, "in_business_hours": {"type": "BOOL", "index": 9, "name": "in_business_hours", "comment": null}, "calendar_minutes": {"type": "INT64", "index": 10, "name": "calendar_minutes", "comment": null}, "running_total_calendar_minutes": {"type": "INT64", "index": 11, "name": "running_total_calendar_minutes", "comment": null}, "remaining_target_minutes": {"type": "INT64", "index": 12, "name": "remaining_target_minutes", "comment": null}, "is_breached_during_schedule": {"type": "BOOL", "index": 13, "name": "is_breached_during_schedule", "comment": null}, "breach_minutes": {"type": "INT64", "index": 14, "name": "breach_minutes", "comment": null}, "sla_breach_at": {"type": "TIMESTAMP", "index": 15, "name": "sla_breach_at", "comment": null}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 0.0, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 0.0, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.zendesk.int_zendesk__requester_wait_time_calendar_hours"}, "model.zendesk.int_zendesk__ticket_historical_group": {"metadata": {"type": "table", "schema": "dbt_zendesk_intermediate", "name": "int_zendesk__ticket_historical_group", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"ticket_id": {"type": "INT64", "index": 1, "name": "ticket_id", "comment": null}, "group_stations_count": {"type": "INT64", "index": 2, "name": "group_stations_count", "comment": null}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 50233.0, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 803728.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__agent_work_time_calendar_hours": {"metadata": {"type": "table", "schema": "dbt_zendesk_intermediate", "name": "int_zendesk__agent_work_time_calendar_hours", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"ticket_id": {"type": "INT64", "index": 1, "name": "ticket_id", "comment": null}, "valid_starting_at": {"type": "TIMESTAMP", "index": 2, "name": "valid_starting_at", "comment": null}, "valid_ending_at": {"type": "TIMESTAMP", "index": 3, "name": "valid_ending_at", "comment": null}, "ticket_status": {"type": "STRING", "index": 4, "name": "ticket_status", "comment": null}, "sla_applied_at": {"type": "TIMESTAMP", "index": 5, "name": "sla_applied_at", "comment": null}, "target": {"type": "INT64", "index": 6, "name": "target", "comment": null}, "sla_policy_name": {"type": "STRING", "index": 7, "name": "sla_policy_name", "comment": null}, "ticket_created_at": {"type": "TIMESTAMP", "index": 8, "name": "ticket_created_at", "comment": null}, "in_business_hours": {"type": "BOOL", "index": 9, "name": "in_business_hours", "comment": null}, "calendar_minutes": {"type": "INT64", "index": 10, "name": "calendar_minutes", "comment": null}, "running_total_calendar_minutes": {"type": "INT64", "index": 11, "name": "running_total_calendar_minutes", "comment": null}, "remaining_target_minutes": {"type": "INT64", "index": 12, "name": "remaining_target_minutes", "comment": null}, "is_breached_during_schedule": {"type": "BOOL", "index": 13, "name": "is_breached_during_schedule", "comment": null}, "breach_minutes": {"type": "INT64", "index": 14, "name": "breach_minutes", "comment": null}, "sla_breach_at": {"type": "TIMESTAMP", "index": 15, "name": "sla_breach_at", "comment": null}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 0.0, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 0.0, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.zendesk.int_zendesk__agent_work_time_calendar_hours"}, "model.zendesk.int_zendesk__reply_time_business_hours": {"metadata": {"type": "table", "schema": "dbt_zendesk_intermediate", "name": "int_zendesk__reply_time_business_hours", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"ticket_id": {"type": "INT64", "index": 1, "name": "ticket_id", "comment": null}, "sla_policy_name": {"type": "STRING", "index": 2, "name": "sla_policy_name", "comment": null}, "metric": {"type": "STRING", "index": 3, "name": "metric", "comment": null}, "sla_applied_at": {"type": "TIMESTAMP", "index": 4, "name": "sla_applied_at", "comment": null}, "target": {"type": "INT64", "index": 5, "name": "target", "comment": null}, "in_business_hours": {"type": "BOOL", "index": 6, "name": "in_business_hours", "comment": null}, "sla_breach_at": {"type": "TIMESTAMP", "index": 7, "name": "sla_breach_at", "comment": null}, "is_breached_during_schedule": {"type": "BOOL", "index": 8, "name": "is_breached_during_schedule", "comment": null}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 134.0, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 10452.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__ticket_aggregates": {"metadata": {"type": "table", "schema": "dbt_zendesk_intermediate", "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}, "assignee_id": {"type": "INT64", "index": 3, "name": "assignee_id", "comment": null}, "brand_id": {"type": "INT64", "index": 4, "name": "brand_id", "comment": null}, "created_at": {"type": "TIMESTAMP", "index": 5, "name": "created_at", "comment": null}, "updated_at": {"type": "TIMESTAMP", "index": 6, "name": "updated_at", "comment": null}, "description": {"type": "STRING", "index": 7, "name": "description", "comment": null}, "due_at": {"type": "TIMESTAMP", "index": 8, "name": "due_at", "comment": null}, "group_id": {"type": "INT64", "index": 9, "name": "group_id", "comment": null}, "external_id": {"type": "STRING", "index": 10, "name": "external_id", "comment": null}, "is_public": {"type": "BOOL", "index": 11, "name": "is_public", "comment": null}, "organization_id": {"type": "INT64", "index": 12, "name": "organization_id", "comment": null}, "priority": {"type": "STRING", "index": 13, "name": "priority", "comment": null}, "recipient": {"type": "STRING", "index": 14, "name": "recipient", "comment": null}, "requester_id": {"type": "INT64", "index": 15, "name": "requester_id", "comment": null}, "status": {"type": "STRING", "index": 16, "name": "status", "comment": null}, "subject": {"type": "STRING", "index": 17, "name": "subject", "comment": null}, "problem_id": {"type": "INT64", "index": 18, "name": "problem_id", "comment": null}, "submitter_id": {"type": "INT64", "index": 19, "name": "submitter_id", "comment": null}, "ticket_form_id": {"type": "INT64", "index": 20, "name": "ticket_form_id", "comment": null}, "type": {"type": "STRING", "index": 21, "name": "type", "comment": null}, "url": {"type": "STRING", "index": 22, "name": "url", "comment": null}, "created_channel": {"type": "STRING", "index": 23, "name": "created_channel", "comment": null}, "source_from_id": {"type": "INT64", "index": 24, "name": "source_from_id", "comment": null}, "source_from_title": {"type": "STRING", "index": 25, "name": "source_from_title", "comment": null}, "source_rel": {"type": "STRING", "index": 26, "name": "source_rel", "comment": null}, "source_to_address": {"type": "STRING", "index": 27, "name": "source_to_address", "comment": null}, "source_to_name": {"type": "STRING", "index": 28, "name": "source_to_name", "comment": null}, "is_incident": {"type": "BOOL", "index": 29, "name": "is_incident", "comment": null}, "ticket_brand_name": {"type": "STRING", "index": 30, "name": "ticket_brand_name", "comment": null}, "ticket_tags": {"type": "STRING", "index": 31, "name": "ticket_tags", "comment": null}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 50892.0, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 46511763.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_aggregates"}, "model.zendesk.int_zendesk__reply_time_calendar_hours": {"metadata": {"type": "table", "schema": "dbt_zendesk_intermediate", "name": "int_zendesk__reply_time_calendar_hours", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"ticket_id": {"type": "INT64", "index": 1, "name": "ticket_id", "comment": null}, "ticket_created_at": {"type": "TIMESTAMP", "index": 2, "name": "ticket_created_at", "comment": null}, "ticket_current_status": {"type": "STRING", "index": 3, "name": "ticket_current_status", "comment": null}, "metric": {"type": "STRING", "index": 4, "name": "metric", "comment": null}, "latest_sla": {"type": "INT64", "index": 5, "name": "latest_sla", "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_policy_name": {"type": "STRING", "index": 9, "name": "sla_policy_name", "comment": null}, "sla_breach_at": {"type": "TIMESTAMP", "index": 10, "name": "sla_breach_at", "comment": null}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 38305.0, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 4017943.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__field_calendar_spine": {"metadata": {"type": "table", "schema": "dbt_zendesk_intermediate", "name": "int_zendesk__field_calendar_spine", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"date_day": {"type": "DATE", "index": 1, "name": "date_day", "comment": null}, "ticket_id": {"type": "INT64", "index": 2, "name": "ticket_id", "comment": null}, "ticket_day_id": {"type": "STRING", "index": 3, "name": "ticket_day_id", "comment": null}}, "stats": {"partitioning_type": {"id": "partitioning_type", "label": "Partitioned By", "value": "date_day", "include": true, "description": "The partitioning column for this table"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 2629943.0, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 131497150.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__field_calendar_spine"}, "model.zendesk.int_zendesk__ticket_historical_status": {"metadata": {"type": "table", "schema": "dbt_zendesk_intermediate", "name": "int_zendesk__ticket_historical_status", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"ticket_id": {"type": "INT64", "index": 1, "name": "ticket_id", "comment": null}, "valid_starting_at": {"type": "TIMESTAMP", "index": 2, "name": "valid_starting_at", "comment": null}, "valid_ending_at": {"type": "TIMESTAMP", "index": 3, "name": "valid_ending_at", "comment": null}, "status_duration_calendar_minutes": {"type": "INT64", "index": 4, "name": "status_duration_calendar_minutes", "comment": null}, "status": {"type": "STRING", "index": 5, "name": "status", "comment": null}, "ticket_status_counter": {"type": "INT64", "index": 6, "name": "ticket_status_counter", "comment": null}, "unique_status_counter": {"type": "INT64", "index": 7, "name": "unique_status_counter", "comment": null}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 414902.0, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 22396194.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_status"}, "model.zendesk.int_zendesk__agent_work_time_filtered_statuses": {"metadata": {"type": "table", "schema": "dbt_zendesk_intermediate", "name": "int_zendesk__agent_work_time_filtered_statuses", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"ticket_id": {"type": "INT64", "index": 1, "name": "ticket_id", "comment": null}, "valid_starting_at": {"type": "TIMESTAMP", "index": 2, "name": "valid_starting_at", "comment": null}, "valid_ending_at": {"type": "TIMESTAMP", "index": 3, "name": "valid_ending_at", "comment": null}, "ticket_status": {"type": "STRING", "index": 4, "name": "ticket_status", "comment": null}, "sla_applied_at": {"type": "TIMESTAMP", "index": 5, "name": "sla_applied_at", "comment": null}, "target": {"type": "INT64", "index": 6, "name": "target", "comment": null}, "sla_policy_name": {"type": "STRING", "index": 7, "name": "sla_policy_name", "comment": null}, "ticket_created_at": {"type": "TIMESTAMP", "index": 8, "name": "ticket_created_at", "comment": null}, "in_business_hours": {"type": "BOOL", "index": 9, "name": "in_business_hours", "comment": null}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 0.0, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 0.0, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.zendesk.int_zendesk__agent_work_time_filtered_statuses"}, "model.zendesk.int_zendesk__latest_ticket_form": {"metadata": {"type": "table", "schema": "dbt_zendesk_intermediate", "name": "int_zendesk__latest_ticket_form", "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}, "latest_form_index": {"type": "INT64", "index": 7, "name": "latest_form_index", "comment": null}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 12.0, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 1162.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__latest_ticket_form"}, "model.zendesk.int_zendesk__sla_policy_applied": {"metadata": {"type": "table", "schema": "dbt_zendesk_intermediate", "name": "int_zendesk__sla_policy_applied", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"ticket_id": {"type": "INT64", "index": 1, "name": "ticket_id", "comment": null}, "ticket_created_at": {"type": "TIMESTAMP", "index": 2, "name": "ticket_created_at", "comment": null}, "ticket_current_status": {"type": "STRING", "index": 3, "name": "ticket_current_status", "comment": null}, "metric": {"type": "STRING", "index": 4, "name": "metric", "comment": null}, "latest_sla": {"type": "INT64", "index": 5, "name": "latest_sla", "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_policy_name": {"type": "STRING", "index": 9, "name": "sla_policy_name", "comment": null}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 38319.0, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 3712805.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__user_aggregates": {"metadata": {"type": "table", "schema": "dbt_zendesk_intermediate", "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": "STRING", "index": 2, "name": "external_id", "comment": null}, "_fivetran_synced": {"type": "TIMESTAMP", "index": 3, "name": "_fivetran_synced", "comment": null}, "last_login_at": {"type": "TIMESTAMP", "index": 4, "name": "last_login_at", "comment": null}, "created_at": {"type": "TIMESTAMP", "index": 5, "name": "created_at", "comment": null}, "updated_at": {"type": "TIMESTAMP", "index": 6, "name": "updated_at", "comment": null}, "email": {"type": "STRING", "index": 7, "name": "email", "comment": null}, "name": {"type": "STRING", "index": 8, "name": "name", "comment": null}, "organization_id": {"type": "INT64", "index": 9, "name": "organization_id", "comment": null}, "role": {"type": "STRING", "index": 10, "name": "role", "comment": null}, "ticket_restriction": {"type": "STRING", "index": 11, "name": "ticket_restriction", "comment": null}, "time_zone": {"type": "STRING", "index": 12, "name": "time_zone", "comment": null}, "locale": {"type": "STRING", "index": 13, "name": "locale", "comment": null}, "is_active": {"type": "BOOL", "index": 14, "name": "is_active", "comment": null}, "is_suspended": {"type": "BOOL", "index": 15, "name": "is_suspended", "comment": null}, "user_tags": {"type": "STRING", "index": 16, "name": "user_tags", "comment": null}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 52850.0, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 6683039.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__user_aggregates"}, "model.zendesk.int_zendesk__organization_aggregates": {"metadata": {"type": "table", "schema": "dbt_zendesk_intermediate", "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": "STRING", "index": 4, "name": "details", "comment": null}, "name": {"type": "STRING", "index": 5, "name": "name", "comment": null}, "external_id": {"type": "STRING", "index": 6, "name": "external_id", "comment": null}, "organization_tags": {"type": "STRING", "index": 7, "name": "organization_tags", "comment": null}, "domain_names": {"type": "STRING", "index": 8, "name": "domain_names", "comment": null}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 483724.0, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 41973103.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__organization_aggregates"}, "model.zendesk.int_zendesk__agent_work_time_business_hours": {"metadata": {"type": "table", "schema": "dbt_zendesk_intermediate", "name": "int_zendesk__agent_work_time_business_hours", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"ticket_id": {"type": "INT64", "index": 1, "name": "ticket_id", "comment": null}, "sla_applied_at": {"type": "TIMESTAMP", "index": 2, "name": "sla_applied_at", "comment": null}, "target": {"type": "INT64", "index": 3, "name": "target", "comment": null}, "sla_policy_name": {"type": "STRING", "index": 4, "name": "sla_policy_name", "comment": null}, "valid_starting_at": {"type": "TIMESTAMP", "index": 5, "name": "valid_starting_at", "comment": null}, "valid_ending_at": {"type": "TIMESTAMP", "index": 6, "name": "valid_ending_at", "comment": null}, "week_number": {"type": "FLOAT64", "index": 7, "name": "week_number", "comment": null}, "ticket_week_start_time_minute": {"type": "FLOAT64", "index": 8, "name": "ticket_week_start_time_minute", "comment": null}, "ticket_week_end_time_minute": {"type": "FLOAT64", "index": 9, "name": "ticket_week_end_time_minute", "comment": null}, "schedule_start_time": {"type": "INT64", "index": 10, "name": "schedule_start_time", "comment": null}, "schedule_end_time": {"type": "INT64", "index": 11, "name": "schedule_end_time", "comment": null}, "scheduled_minutes": {"type": "FLOAT64", "index": 12, "name": "scheduled_minutes", "comment": null}, "running_total_scheduled_minutes": {"type": "FLOAT64", "index": 13, "name": "running_total_scheduled_minutes", "comment": null}, "remaining_target_minutes": {"type": "FLOAT64", "index": 14, "name": "remaining_target_minutes", "comment": null}, "lag_check": {"type": "FLOAT64", "index": 15, "name": "lag_check", "comment": null}, "is_breached_during_schedule": {"type": "BOOL", "index": 16, "name": "is_breached_during_schedule", "comment": null}, "breach_minutes": {"type": "FLOAT64", "index": 17, "name": "breach_minutes", "comment": null}, "breach_minutes_from_week": {"type": "FLOAT64", "index": 18, "name": "breach_minutes_from_week", "comment": null}, "sla_breach_at": {"type": "TIMESTAMP", "index": 19, "name": "sla_breach_at", "comment": null}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 0.0, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 0.0, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.zendesk.int_zendesk__agent_work_time_business_hours"}, "model.zendesk.int_zendesk__field_history_scd": {"metadata": {"type": "table", "schema": "dbt_zendesk_intermediate", "name": "int_zendesk__field_history_scd", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"valid_from": {"type": "DATE", "index": 1, "name": "valid_from", "comment": null}, "ticket_id": {"type": "INT64", "index": 2, "name": "ticket_id", "comment": null}, "ticket_day_id": {"type": "STRING", "index": 3, "name": "ticket_day_id", "comment": null}, "status": {"type": "STRING", "index": 4, "name": "status", "comment": null}, "priority": {"type": "STRING", "index": 5, "name": "priority", "comment": null}, "assignee_id": {"type": "STRING", "index": 6, "name": "assignee_id", "comment": null}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 239418.0, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 18647410.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__field_history_scd"}, "model.zendesk.int_zendesk__comment_metrics": {"metadata": {"type": "table", "schema": "dbt_zendesk_intermediate", "name": "int_zendesk__comment_metrics", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"ticket_id": {"type": "INT64", "index": 1, "name": "ticket_id", "comment": null}, "last_comment_added_at": {"type": "TIMESTAMP", "index": 2, "name": "last_comment_added_at", "comment": null}, "count_public_agent_comments": {"type": "INT64", "index": 3, "name": "count_public_agent_comments", "comment": null}, "count_agent_comments": {"type": "INT64", "index": 4, "name": "count_agent_comments", "comment": null}, "count_end_user_comments": {"type": "INT64", "index": 5, "name": "count_end_user_comments", "comment": null}, "count_public_comments": {"type": "INT64", "index": 6, "name": "count_public_comments", "comment": null}, "count_internal_comments": {"type": "INT64", "index": 7, "name": "count_internal_comments", "comment": null}, "total_comments": {"type": "INT64", "index": 8, "name": "total_comments", "comment": null}, "count_ticket_handoffs": {"type": "INT64", "index": 9, "name": "count_ticket_handoffs", "comment": null}, "is_one_touch_resolution": {"type": "BOOL", "index": 10, "name": "is_one_touch_resolution", "comment": null}, "is_two_touch_resolution": {"type": "BOOL", "index": 11, "name": "is_two_touch_resolution", "comment": null}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 50471.0, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 3734854.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__requester_updates": {"metadata": {"type": "table", "schema": "dbt_zendesk_intermediate", "name": "int_zendesk__requester_updates", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"ticket_id": {"type": "INT64", "index": 1, "name": "ticket_id", "comment": null}, "requester_id": {"type": "INT64", "index": 2, "name": "requester_id", "comment": null}, "last_updated": {"type": "TIMESTAMP", "index": 3, "name": "last_updated", "comment": null}, "total_updates": {"type": "INT64", "index": 4, "name": "total_updates", "comment": null}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 50892.0, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 1615872.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_updates"}, "model.zendesk.int_zendesk__requester_wait_time_filtered_statuses": {"metadata": {"type": "table", "schema": "dbt_zendesk_intermediate", "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}, "valid_starting_at": {"type": "TIMESTAMP", "index": 2, "name": "valid_starting_at", "comment": null}, "valid_ending_at": {"type": "TIMESTAMP", "index": 3, "name": "valid_ending_at", "comment": null}, "ticket_status": {"type": "STRING", "index": 4, "name": "ticket_status", "comment": null}, "sla_applied_at": {"type": "TIMESTAMP", "index": 5, "name": "sla_applied_at", "comment": null}, "target": {"type": "INT64", "index": 6, "name": "target", "comment": null}, "sla_policy_name": {"type": "STRING", "index": 7, "name": "sla_policy_name", "comment": null}, "ticket_created_at": {"type": "TIMESTAMP", "index": 8, "name": "ticket_created_at", "comment": null}, "in_business_hours": {"type": "BOOL", "index": 9, "name": "in_business_hours", "comment": null}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 0.0, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 0.0, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.zendesk.int_zendesk__requester_wait_time_filtered_statuses"}, "model.zendesk.int_zendesk__ticket_historical_satisfaction": {"metadata": {"type": "table", "schema": "dbt_zendesk_intermediate", "name": "int_zendesk__ticket_historical_satisfaction", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"ticket_id": {"type": "INT64", "index": 1, "name": "ticket_id", "comment": null}, "latest_satisfaction_reason": {"type": "STRING", "index": 2, "name": "latest_satisfaction_reason", "comment": null}, "latest_satisfaction_comment": {"type": "STRING", "index": 3, "name": "latest_satisfaction_comment", "comment": null}, "first_satisfaction_score": {"type": "STRING", "index": 4, "name": "first_satisfaction_score", "comment": null}, "latest_satisfaction_score": {"type": "STRING", "index": 5, "name": "latest_satisfaction_score", "comment": null}, "count_satisfaction_scores": {"type": "INT64", "index": 6, "name": "count_satisfaction_scores", "comment": null}, "is_good_to_bad_satisfaction_score": {"type": "BOOL", "index": 7, "name": "is_good_to_bad_satisfaction_score", "comment": null}, "is_bad_to_good_satisfaction_score": {"type": "BOOL", "index": 8, "name": "is_bad_to_good_satisfaction_score", "comment": null}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 19585.0, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 529423.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_source.stg_zendesk__ticket_form_history": {"metadata": {"type": "table", "schema": "dbt_zendesk_staging", "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}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 235.0, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 20324.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_source.stg_zendesk__ticket_form_history"}, "model.zendesk_source.stg_zendesk__ticket_comment": {"metadata": {"type": "table", "schema": "dbt_zendesk_staging", "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}, "body": {"type": "STRING", "index": 3, "name": "body", "comment": null}, "created_at": {"type": "TIMESTAMP", "index": 4, "name": "created_at", "comment": null}, "is_public": {"type": "BOOL", "index": 5, "name": "is_public", "comment": null}, "ticket_id": {"type": "INT64", "index": 6, "name": "ticket_id", "comment": null}, "user_id": {"type": "INT64", "index": 7, "name": "user_id", "comment": null}, "is_facebook_comment": {"type": "BOOL", "index": 8, "name": "is_facebook_comment", "comment": null}, "is_tweet": {"type": "BOOL", "index": 9, "name": "is_tweet", "comment": null}, "is_voice_comment": {"type": "BOOL", "index": 10, "name": "is_voice_comment", "comment": null}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 550325.0, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 329812966.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_source.stg_zendesk__ticket_comment"}, "model.zendesk_source.stg_zendesk__user": {"metadata": {"type": "table", "schema": "dbt_zendesk_staging", "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": "STRING", "index": 2, "name": "external_id", "comment": null}, "_fivetran_synced": {"type": "TIMESTAMP", "index": 3, "name": "_fivetran_synced", "comment": null}, "last_login_at": {"type": "TIMESTAMP", "index": 4, "name": "last_login_at", "comment": null}, "created_at": {"type": "TIMESTAMP", "index": 5, "name": "created_at", "comment": null}, "updated_at": {"type": "TIMESTAMP", "index": 6, "name": "updated_at", "comment": null}, "email": {"type": "STRING", "index": 7, "name": "email", "comment": null}, "name": {"type": "STRING", "index": 8, "name": "name", "comment": null}, "organization_id": {"type": "INT64", "index": 9, "name": "organization_id", "comment": null}, "role": {"type": "STRING", "index": 10, "name": "role", "comment": null}, "ticket_restriction": {"type": "STRING", "index": 11, "name": "ticket_restriction", "comment": null}, "time_zone": {"type": "STRING", "index": 12, "name": "time_zone", "comment": null}, "locale": {"type": "STRING", "index": 13, "name": "locale", "comment": null}, "is_active": {"type": "BOOL", "index": 14, "name": "is_active", "comment": null}, "is_suspended": {"type": "BOOL", "index": 15, "name": "is_suspended", "comment": null}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 52850.0, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 6682869.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_source.stg_zendesk__user"}, "model.zendesk_source.stg_zendesk__organization_tag": {"metadata": {"type": "table", "schema": "dbt_zendesk_staging", "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}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 989290.0, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 20552952.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_source.stg_zendesk__organization_tag"}, "model.zendesk_source.stg_zendesk__ticket_tmp": {"metadata": {"type": "view", "schema": "dbt_zendesk_staging", "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}, "custom_additional_details": {"type": "STRING", "index": 7, "name": "custom_additional_details", "comment": null}, "custom_alternatives": {"type": "STRING", "index": 8, "name": "custom_alternatives", "comment": null}, "custom_connector": {"type": "STRING", "index": 9, "name": "custom_connector", "comment": null}, "custom_consent_to_access": {"type": "BOOL", "index": 10, "name": "custom_consent_to_access", "comment": null}, "custom_current_state": {"type": "STRING", "index": 11, "name": "custom_current_state", "comment": null}, "custom_error_messages": {"type": "STRING", "index": 12, "name": "custom_error_messages", "comment": null}, "custom_git_zen_data": {"type": "STRING", "index": 13, "name": "custom_git_zen_data", "comment": null}, "custom_origin": {"type": "STRING", "index": 14, "name": "custom_origin", "comment": null}, "custom_proposed_solution": {"type": "STRING", "index": 15, "name": "custom_proposed_solution", "comment": null}, "custom_severity": {"type": "STRING", "index": 16, "name": "custom_severity", "comment": null}, "custom_sql_query": {"type": "STRING", "index": 17, "name": "custom_sql_query", "comment": null}, "custom_steps_to_reproduce": {"type": "STRING", "index": 18, "name": "custom_steps_to_reproduce", "comment": null}, "description": {"type": "STRING", "index": 19, "name": "description", "comment": null}, "due_at": {"type": "TIMESTAMP", "index": 20, "name": "due_at", "comment": null}, "external_id": {"type": "STRING", "index": 21, "name": "external_id", "comment": null}, "forum_topic_id": {"type": "INT64", "index": 22, "name": "forum_topic_id", "comment": null}, "group_id": {"type": "INT64", "index": 23, "name": "group_id", "comment": null}, "has_incidents": {"type": "BOOL", "index": 24, "name": "has_incidents", "comment": null}, "is_public": {"type": "BOOL", "index": 25, "name": "is_public", "comment": null}, "organization_id": {"type": "INT64", "index": 26, "name": "organization_id", "comment": null}, "priority": {"type": "STRING", "index": 27, "name": "priority", "comment": null}, "problem_id": {"type": "INT64", "index": 28, "name": "problem_id", "comment": null}, "recipient": {"type": "STRING", "index": 29, "name": "recipient", "comment": null}, "requester_id": {"type": "INT64", "index": 30, "name": "requester_id", "comment": null}, "status": {"type": "STRING", "index": 31, "name": "status", "comment": null}, "subject": {"type": "STRING", "index": 32, "name": "subject", "comment": null}, "submitter_id": {"type": "INT64", "index": 33, "name": "submitter_id", "comment": null}, "system_client": {"type": "STRING", "index": 34, "name": "system_client", "comment": null}, "system_ip_address": {"type": "STRING", "index": 35, "name": "system_ip_address", "comment": null}, "system_json_email_identifier": {"type": "STRING", "index": 36, "name": "system_json_email_identifier", "comment": null}, "system_latitude": {"type": "FLOAT64", "index": 37, "name": "system_latitude", "comment": null}, "system_location": {"type": "STRING", "index": 38, "name": "system_location", "comment": null}, "system_longitude": {"type": "FLOAT64", "index": 39, "name": "system_longitude", "comment": null}, "system_message_id": {"type": "STRING", "index": 40, "name": "system_message_id", "comment": null}, "system_raw_email_identifier": {"type": "STRING", "index": 41, "name": "system_raw_email_identifier", "comment": null}, "ticket_form_id": {"type": "INT64", "index": 42, "name": "ticket_form_id", "comment": null}, "type": {"type": "STRING", "index": 43, "name": "type", "comment": null}, "updated_at": {"type": "TIMESTAMP", "index": 44, "name": "updated_at", "comment": null}, "url": {"type": "STRING", "index": 45, "name": "url", "comment": null}, "via_channel": {"type": "STRING", "index": 46, "name": "via_channel", "comment": null}, "via_source_from_id": {"type": "INT64", "index": 47, "name": "via_source_from_id", "comment": null}, "via_source_from_title": {"type": "STRING", "index": 48, "name": "via_source_from_title", "comment": null}, "via_source_rel": {"type": "STRING", "index": 49, "name": "via_source_rel", "comment": null}, "via_source_to_address": {"type": "STRING", "index": 50, "name": "via_source_to_address", "comment": null}, "via_source_to_name": {"type": "STRING", "index": 51, "name": "via_source_to_name", "comment": null}, "custom_sfdc_case_": {"type": "STRING", "index": 52, "name": "custom_sfdc_case_", "comment": null}, "custom_connector_type": {"type": "STRING", "index": 53, "name": "custom_connector_type", "comment": null}, "custom_se_notes": {"type": "STRING", "index": 54, "name": "custom_se_notes", "comment": null}, "custom_warehouse_id": {"type": "STRING", "index": 55, "name": "custom_warehouse_id", "comment": null}, "custom_github_link": {"type": "STRING", "index": 56, "name": "custom_github_link", "comment": null}, "custom_classification": {"type": "STRING", "index": 57, "name": "custom_classification", "comment": null}, "custom_ticket_priority": {"type": "STRING", "index": 58, "name": "custom_ticket_priority", "comment": null}, "custom_customer_risk": {"type": "STRING", "index": 59, "name": "custom_customer_risk", "comment": null}, "system_machine_generated": {"type": "BOOL", "index": 60, "name": "system_machine_generated", "comment": null}, "custom_escalated": {"type": "BOOL", "index": 61, "name": "custom_escalated", "comment": null}, "custom_issue_escalation_notes": {"type": "STRING", "index": 62, "name": "custom_issue_escalation_notes", "comment": null}, "custom_se_manager_notes": {"type": "STRING", "index": 63, "name": "custom_se_manager_notes", "comment": null}, "custom_related_to": {"type": "STRING", "index": 64, "name": "custom_related_to", "comment": null}, "merged_ticket_ids": {"type": "STRING", "index": 65, "name": "merged_ticket_ids", "comment": null}, "custom_connector_name": {"type": "STRING", "index": 66, "name": "custom_connector_name", "comment": null}, "custom_destination_type": {"type": "STRING", "index": 67, "name": "custom_destination_type", "comment": null}, "custom_group_id": {"type": "STRING", "index": 68, "name": "custom_group_id", "comment": null}, "custom_fivetran_warehouse": {"type": "STRING", "index": 69, "name": "custom_fivetran_warehouse", "comment": null}, "custom_slack_channel_id": {"type": "STRING", "index": 70, "name": "custom_slack_channel_id", "comment": null}, "custom_ticket_quality": {"type": "BOOL", "index": 71, "name": "custom_ticket_quality", "comment": null}, "via_source_from_address": {"type": "STRING", "index": 72, "name": "via_source_from_address", "comment": null}, "custom_escalation_reason": {"type": "STRING", "index": 73, "name": "custom_escalation_reason", "comment": null}, "followup_ids": {"type": "STRING", "index": 74, "name": "followup_ids", "comment": null}, "via_followup_source_id": {"type": "INT64", "index": 75, "name": "via_followup_source_id", "comment": null}, "custom_post_id": {"type": "INT64", "index": 76, "name": "custom_post_id", "comment": null}, "custom_post_name": {"type": "STRING", "index": 77, "name": "custom_post_name", "comment": null}, "custom_post_path": {"type": "STRING", "index": 78, "name": "custom_post_path", "comment": null}, "custom_grant_access_status": {"type": "STRING", "index": 79, "name": "custom_grant_access_status", "comment": null}, "custom_grant_access_service": {"type": "STRING", "index": 80, "name": "custom_grant_access_service", "comment": null}, "custom_grant_access_scope": {"type": "STRING", "index": 81, "name": "custom_grant_access_scope", "comment": null}, "custom_grant_access_schema": {"type": "STRING", "index": 82, "name": "custom_grant_access_schema", "comment": null}, "custom_grant_access_group": {"type": "STRING", "index": 83, "name": "custom_grant_access_group", "comment": null}, "custom_grant_access_expiration": {"type": "STRING", "index": 84, "name": "custom_grant_access_expiration", "comment": null}, "custom_grant_access_approved_at": {"type": "STRING", "index": 85, "name": "custom_grant_access_approved_at", "comment": null}, "custom_grant_access_group_name": {"type": "STRING", "index": 86, "name": "custom_grant_access_group_name", "comment": null}, "custom_grant_access_revoked_at": {"type": "STRING", "index": 87, "name": "custom_grant_access_revoked_at", "comment": null}, "custom_bug_sub_category": {"type": "STRING", "index": 88, "name": "custom_bug_sub_category", "comment": null}, "custom_fivetran_group_name": {"type": "STRING", "index": 89, "name": "custom_fivetran_group_name", "comment": null}, "custom_fivetran_destination_type": {"type": "STRING", "index": 90, "name": "custom_fivetran_destination_type", "comment": null}, "custom_subcategory_bug": {"type": "STRING", "index": 91, "name": "custom_subcategory_bug", "comment": null}, "custom_sub_classification_bug": {"type": "STRING", "index": 92, "name": "custom_sub_classification_bug", "comment": null}, "custom_sub_classification_data_integrity": {"type": "STRING", "index": 93, "name": "custom_sub_classification_data_integrity", "comment": null}, "custom_sub_classification_account_management": {"type": "STRING", "index": 94, "name": "custom_sub_classification_account_management", "comment": null}, "custom_sub_classification_other": {"type": "STRING", "index": 95, "name": "custom_sub_classification_other", "comment": null}, "custom_sub_classification_sync_issue": {"type": "STRING", "index": 96, "name": "custom_sub_classification_sync_issue", "comment": null}, "custom_sub_classification_education_needed": {"type": "STRING", "index": 97, "name": "custom_sub_classification_education_needed", "comment": null}, "custom_sub_classification_connector_issue": {"type": "STRING", "index": 98, "name": "custom_sub_classification_connector_issue", "comment": null}, "custom_sub_classification_network_security": {"type": "STRING", "index": 99, "name": "custom_sub_classification_network_security", "comment": null}, "custom_sub_classification_incident": {"type": "STRING", "index": 100, "name": "custom_sub_classification_incident", "comment": null}, "custom_sub_classification_feature_flag": {"type": "STRING", "index": 101, "name": "custom_sub_classification_feature_flag", "comment": null}, "custom_sub_classification_fivetran_platform": {"type": "STRING", "index": 102, "name": "custom_sub_classification_fivetran_platform", "comment": null}, "custom_sub_classification_destination_issue": {"type": "STRING", "index": 103, "name": "custom_sub_classification_destination_issue", "comment": null}, "custom_sub_classification_transformations": {"type": "STRING", "index": 104, "name": "custom_sub_classification_transformations", "comment": null}, "custom_sub_classification_billing": {"type": "STRING", "index": 105, "name": "custom_sub_classification_billing", "comment": null}, "custom_sub_classification_sales_inquiry": {"type": "STRING", "index": 106, "name": "custom_sub_classification_sales_inquiry", "comment": null}, "custom_reopen": {"type": "TIMESTAMP", "index": 107, "name": "custom_reopen", "comment": null}, "custom_total_time_spent_sec_": {"type": "INT64", "index": 108, "name": "custom_total_time_spent_sec_", "comment": null}, "custom_time_spent_last_update_sec_": {"type": "INT64", "index": 109, "name": "custom_time_spent_last_update_sec_", "comment": null}, "custom_fivetran_account_status": {"type": "STRING", "index": 110, "name": "custom_fivetran_account_status", "comment": null}, "custom_snooze": {"type": "TIMESTAMP", "index": 111, "name": "custom_snooze", "comment": null}, "custom_customer_data_check": {"type": "BOOL", "index": 112, "name": "custom_customer_data_check", "comment": null}, "custom_screenshot_of_connector_s_setup_page_included": {"type": "BOOL", "index": 113, "name": "custom_screenshot_of_connector_s_setup_page_included", "comment": null}, "custom_on_hold_reason_": {"type": "STRING", "index": 114, "name": "custom_on_hold_reason_", "comment": null}, "custom_request_type_": {"type": "STRING", "index": 115, "name": "custom_request_type_", "comment": null}, "custom_screenshot_of_transformation_setup_page_included": {"type": "BOOL", "index": 116, "name": "custom_screenshot_of_transformation_setup_page_included", "comment": null}, "custom_account_level": {"type": "STRING", "index": 117, "name": "custom_account_level", "comment": null}, "custom_pbf_": {"type": "STRING", "index": 118, "name": "custom_pbf_", "comment": null}, "custom_reported_severity_": {"type": "STRING", "index": 119, "name": "custom_reported_severity_", "comment": null}, "custom_error_shown_in_connector_s_setup_page_": {"type": "STRING", "index": 120, "name": "custom_error_shown_in_connector_s_setup_page_", "comment": null}, "custom_details_of_issue_with_alert_shown_in_connector_s_dashboard_": {"type": "STRING", "index": 121, "name": "custom_details_of_issue_with_alert_shown_in_connector_s_dashboard_", "comment": null}, "custom_query_used_to_verify_data_integrity_": {"type": "STRING", "index": 122, "name": "custom_query_used_to_verify_data_integrity_", "comment": null}, "custom_unique_ids_for_source_records_not_showing_": {"type": "STRING", "index": 123, "name": "custom_unique_ids_for_source_records_not_showing_", "comment": null}, "custom_number_of_end_customers_impacted_due_to_inquiry_": {"type": "STRING", "index": 124, "name": "custom_number_of_end_customers_impacted_due_to_inquiry_", "comment": null}, "custom_error_shown_in_logs_status_bar_in_connector_s_dashboard_": {"type": "STRING", "index": 125, "name": "custom_error_shown_in_logs_status_bar_in_connector_s_dashboard_", "comment": null}, "custom_name_of_schema_table_column_seen_in_source_not_showing_in_the_destination_": {"type": "STRING", "index": 126, "name": "custom_name_of_schema_table_column_seen_in_source_not_showing_in_the_destination_", "comment": null}, "custom_steps_taken_that_lead_to_ui_error_": {"type": "STRING", "index": 127, "name": "custom_steps_taken_that_lead_to_ui_error_", "comment": null}, "custom_user_s_email_address_and_current_role_": {"type": "STRING", "index": 128, "name": "custom_user_s_email_address_and_current_role_", "comment": null}, "custom_estimated_number_of_records_of_mar_dispute_": {"type": "STRING", "index": 129, "name": "custom_estimated_number_of_records_of_mar_dispute_", "comment": null}, "custom_reasoning_for_mar_dispute_": {"type": "STRING", "index": 130, "name": "custom_reasoning_for_mar_dispute_", "comment": null}, "custom_date_range_of_mar_dispute_": {"type": "STRING", "index": 131, "name": "custom_date_range_of_mar_dispute_", "comment": null}, "custom_support_case_numbers_related_to_mar_dispute_": {"type": "STRING", "index": 132, "name": "custom_support_case_numbers_related_to_mar_dispute_", "comment": null}, "custom_type_of_ssh_setup_being_used_": {"type": "STRING", "index": 133, "name": "custom_type_of_ssh_setup_being_used_", "comment": null}, "custom_ticket_note_": {"type": "STRING", "index": 134, "name": "custom_ticket_note_", "comment": null}, "custom_support_case_numbers_related_to_sla_dispute_": {"type": "STRING", "index": 135, "name": "custom_support_case_numbers_related_to_sla_dispute_", "comment": null}, "custom_estimated_number_of_records_of_sla_dispute_": {"type": "INT64", "index": 136, "name": "custom_estimated_number_of_records_of_sla_dispute_", "comment": null}, "custom_date_range_of_sla_dispute_": {"type": "STRING", "index": 137, "name": "custom_date_range_of_sla_dispute_", "comment": null}, "custom_reasoning_for_sla_dispute_": {"type": "STRING", "index": 138, "name": "custom_reasoning_for_sla_dispute_", "comment": null}, "custom_security_request_type_": {"type": "STRING", "index": 139, "name": "custom_security_request_type_", "comment": null}, "custom_account_id": {"type": "STRING", "index": 140, "name": "custom_account_id", "comment": null}, "custom_grant_access_account_name": {"type": "STRING", "index": 141, "name": "custom_grant_access_account_name", "comment": null}, "custom_account_name": {"type": "STRING", "index": 142, "name": "custom_account_name", "comment": null}, "custom_grant_access_account": {"type": "STRING", "index": 143, "name": "custom_grant_access_account", "comment": null}, "custom_snooze_state": {"type": "STRING", "index": 144, "name": "custom_snooze_state", "comment": null}, "custom_snoozed_until": {"type": "STRING", "index": 145, "name": "custom_snoozed_until", "comment": null}, "custom_on_hold_reason_security_": {"type": "STRING", "index": 146, "name": "custom_on_hold_reason_security_", "comment": null}, "custom_classification_old": {"type": "STRING", "index": 147, "name": "custom_classification_old", "comment": null}, "custom_sub_classification_data_integrity_old": {"type": "STRING", "index": 148, "name": "custom_sub_classification_data_integrity_old", "comment": null}, "custom_sub_classification_sync_issue_old": {"type": "STRING", "index": 149, "name": "custom_sub_classification_sync_issue_old", "comment": null}, "custom_reason_for_ticket_creation_classification_": {"type": "STRING", "index": 150, "name": "custom_reason_for_ticket_creation_classification_", "comment": null}, "custom_sub_classification_billing_old": {"type": "STRING", "index": 151, "name": "custom_sub_classification_billing_old", "comment": null}, "custom_sub_classification_feature_flag_old": {"type": "STRING", "index": 152, "name": "custom_sub_classification_feature_flag_old", "comment": null}, "custom_sub_classification_education_needed_old": {"type": "STRING", "index": 153, "name": "custom_sub_classification_education_needed_old", "comment": null}, "custom_sub_classification_transformations_old": {"type": "STRING", "index": 154, "name": "custom_sub_classification_transformations_old", "comment": null}, "custom_sub_classification_bug_old": {"type": "STRING", "index": 155, "name": "custom_sub_classification_bug_old", "comment": null}, "custom_sub_classification_destination_issue_old": {"type": "STRING", "index": 156, "name": "custom_sub_classification_destination_issue_old", "comment": null}, "custom_resolution_description_": {"type": "STRING", "index": 157, "name": "custom_resolution_description_", "comment": null}, "custom_sub_classification_network_security_old": {"type": "STRING", "index": 158, "name": "custom_sub_classification_network_security_old", "comment": null}, "custom_sub_classification_connector_issue_old": {"type": "STRING", "index": 159, "name": "custom_sub_classification_connector_issue_old", "comment": null}, "custom_sub_classification_incident_old": {"type": "STRING", "index": 160, "name": "custom_sub_classification_incident_old", "comment": null}, "custom_sub_classification_other_old": {"type": "STRING", "index": 161, "name": "custom_sub_classification_other_old", "comment": null}, "custom_sub_classification_fivetran_platform_old": {"type": "STRING", "index": 162, "name": "custom_sub_classification_fivetran_platform_old", "comment": null}, "custom_sub_classification_account_management_old": {"type": "STRING", "index": 163, "name": "custom_sub_classification_account_management_old", "comment": null}, "custom_sub_classification_sales_inquiry_old": {"type": "STRING", "index": 164, "name": "custom_sub_classification_sales_inquiry_old", "comment": null}, "custom_logs_improvement_note": {"type": "STRING", "index": 165, "name": "custom_logs_improvement_note", "comment": null}, "custom_logs_improvement": {"type": "STRING", "index": 166, "name": "custom_logs_improvement", "comment": null}, "custom_hub_os_": {"type": "STRING", "index": 167, "name": "custom_hub_os_", "comment": null}, "custom_environment_": {"type": "STRING", "index": 168, "name": "custom_environment_", "comment": null}, "custom_source_os_": {"type": "STRING", "index": 169, "name": "custom_source_os_", "comment": null}, "custom_target_os_": {"type": "STRING", "index": 170, "name": "custom_target_os_", "comment": null}, "custom_source_": {"type": "STRING", "index": 171, "name": "custom_source_", "comment": null}, "custom_source_dbms_": {"type": "STRING", "index": 172, "name": "custom_source_dbms_", "comment": null}, "custom_target_dbms_": {"type": "STRING", "index": 173, "name": "custom_target_dbms_", "comment": null}, "custom_hub_dbms_": {"type": "STRING", "index": 174, "name": "custom_hub_dbms_", "comment": null}, "custom_hub_": {"type": "STRING", "index": 175, "name": "custom_hub_", "comment": null}, "custom_target_": {"type": "STRING", "index": 176, "name": "custom_target_", "comment": null}, "custom_reason_for_ticket_classification_": {"type": "STRING", "index": 177, "name": "custom_reason_for_ticket_classification_", "comment": null}}, "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__ticket_field_history": {"metadata": {"type": "table", "schema": "dbt_zendesk_staging", "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}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 1554007.0, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 107566430.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_source.stg_zendesk__ticket_field_history"}, "model.zendesk_source.stg_zendesk__ticket_form_history_tmp": {"metadata": {"type": "view", "schema": "dbt_zendesk_staging", "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": "TIMESTAMP", "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": "TIMESTAMP", "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__user_tag_tmp": {"metadata": {"type": "view", "schema": "dbt_zendesk_staging", "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__schedule": {"metadata": {"type": "table", "schema": "dbt_zendesk_staging", "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}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 7.0, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 420.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_source.stg_zendesk__schedule"}, "model.zendesk_source.stg_zendesk__ticket_tag": {"metadata": {"type": "table", "schema": "dbt_zendesk_staging", "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}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 417342.0, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 10919600.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_source.stg_zendesk__ticket_tag"}, "model.zendesk_source.stg_zendesk__ticket_schedule": {"metadata": {"type": "table", "schema": "dbt_zendesk_staging", "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}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 1.0, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 0.0, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.zendesk_source.stg_zendesk__ticket_schedule"}, "model.zendesk_source.stg_zendesk__ticket_schedule_tmp": {"metadata": {"type": "view", "schema": "dbt_zendesk_staging", "name": "stg_zendesk__ticket_schedule_tmp", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"_fivetran_synced": {"type": "TIMESTAMP", "index": 1, "name": "_fivetran_synced", "comment": null}, "created_at": {"type": "TIMESTAMP", "index": 2, "name": "created_at", "comment": null}, "schedule_id": {"type": "INT64", "index": 3, "name": "schedule_id", "comment": null}, "ticket_id": {"type": "INT64", "index": 4, "name": "ticket_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__time_zone": {"metadata": {"type": "table", "schema": "dbt_zendesk_staging", "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}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 151.0, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 4035.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_source.stg_zendesk__time_zone"}, "model.zendesk_source.stg_zendesk__time_zone_tmp": {"metadata": {"type": "view", "schema": "dbt_zendesk_staging", "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__domain_name_tmp": {"metadata": {"type": "view", "schema": "dbt_zendesk_staging", "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__organization": {"metadata": {"type": "table", "schema": "dbt_zendesk_staging", "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": "STRING", "index": 4, "name": "details", "comment": null}, "name": {"type": "STRING", "index": 5, "name": "name", "comment": null}, "external_id": {"type": "STRING", "index": 6, "name": "external_id", "comment": null}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 483724.0, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 21784254.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_source.stg_zendesk__organization"}, "model.zendesk_source.stg_zendesk__group": {"metadata": {"type": "table", "schema": "dbt_zendesk_staging", "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}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 19.0, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 534.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_source.stg_zendesk__group"}, "model.zendesk_source.stg_zendesk__daylight_time": {"metadata": {"type": "table", "schema": "dbt_zendesk_staging", "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}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 2938.0, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 150474.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_source.stg_zendesk__daylight_time"}, "model.zendesk_source.stg_zendesk__ticket_tag_tmp": {"metadata": {"type": "view", "schema": "dbt_zendesk_staging", "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__schedule_tmp": {"metadata": {"type": "view", "schema": "dbt_zendesk_staging", "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__user_tmp": {"metadata": {"type": "view", "schema": "dbt_zendesk_staging", "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": "STRING", "index": 4, "name": "alias", "comment": null}, "authenticity_token": {"type": "STRING", "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}, "custom_role_id": {"type": "INT64", "index": 8, "name": "custom_role_id", "comment": null}, "custom_test": {"type": "STRING", "index": 9, "name": "custom_test", "comment": null}, "details": {"type": "STRING", "index": 10, "name": "details", "comment": null}, "email": {"type": "STRING", "index": 11, "name": "email", "comment": null}, "external_id": {"type": "STRING", "index": 12, "name": "external_id", "comment": null}, "last_login_at": {"type": "TIMESTAMP", "index": 13, "name": "last_login_at", "comment": null}, "locale": {"type": "STRING", "index": 14, "name": "locale", "comment": null}, "locale_id": {"type": "INT64", "index": 15, "name": "locale_id", "comment": null}, "moderator": {"type": "BOOL", "index": 16, "name": "moderator", "comment": null}, "name": {"type": "STRING", "index": 17, "name": "name", "comment": null}, "notes": {"type": "STRING", "index": 18, "name": "notes", "comment": null}, "only_private_comments": {"type": "BOOL", "index": 19, "name": "only_private_comments", "comment": null}, "organization_id": {"type": "INT64", "index": 20, "name": "organization_id", "comment": null}, "phone": {"type": "STRING", "index": 21, "name": "phone", "comment": null}, "remote_photo_url": {"type": "STRING", "index": 22, "name": "remote_photo_url", "comment": null}, "restricted_agent": {"type": "BOOL", "index": 23, "name": "restricted_agent", "comment": null}, "role": {"type": "STRING", "index": 24, "name": "role", "comment": null}, "shared": {"type": "BOOL", "index": 25, "name": "shared", "comment": null}, "shared_agent": {"type": "BOOL", "index": 26, "name": "shared_agent", "comment": null}, "signature": {"type": "STRING", "index": 27, "name": "signature", "comment": null}, "suspended": {"type": "BOOL", "index": 28, "name": "suspended", "comment": null}, "ticket_restriction": {"type": "STRING", "index": 29, "name": "ticket_restriction", "comment": null}, "time_zone": {"type": "STRING", "index": 30, "name": "time_zone", "comment": null}, "two_factor_auth_enabled": {"type": "BOOL", "index": 31, "name": "two_factor_auth_enabled", "comment": null}, "updated_at": {"type": "TIMESTAMP", "index": 32, "name": "updated_at", "comment": null}, "url": {"type": "STRING", "index": 33, "name": "url", "comment": null}, "verified": {"type": "BOOL", "index": 34, "name": "verified", "comment": null}, "custom_test_user_field": {"type": "STRING", "index": 35, "name": "custom_test_user_field", "comment": null}, "custom_birthday": {"type": "TIMESTAMP", "index": 36, "name": "custom_birthday", "comment": null}, "custom_int": {"type": "STRING", "index": 37, "name": "custom_int", "comment": null}, "custom_integrations": {"type": "STRING", "index": 38, "name": "custom_integrations", "comment": null}, "custom_account": {"type": "STRING", "index": 39, "name": "custom_account", "comment": null}, "custom_group": {"type": "STRING", "index": 40, "name": "custom_group", "comment": null}, "custom_fivetran_account_id": {"type": "STRING", "index": 41, "name": "custom_fivetran_account_id", "comment": null}, "custom_fivetran_group_id": {"type": "STRING", "index": 42, "name": "custom_fivetran_group_id", "comment": null}, "custom_fivetran_user_id": {"type": "STRING", "index": 43, "name": "custom_fivetran_user_id", "comment": null}, "custom_fivetran_group_name": {"type": "STRING", "index": 44, "name": "custom_fivetran_group_name", "comment": null}, "custom_fivetran_destination_type": {"type": "STRING", "index": 45, "name": "custom_fivetran_destination_type", "comment": null}, "custom_fivetran_account_status": {"type": "STRING", "index": 46, "name": "custom_fivetran_account_status", "comment": null}, "iana_time_zone": {"type": "STRING", "index": 47, "name": "iana_time_zone", "comment": null}, "report_csv": {"type": "BOOL", "index": 48, "name": "report_csv", "comment": null}, "default_group_id": {"type": "INT64", "index": 49, "name": "default_group_id", "comment": null}, "custom_fivetran_account_name": {"type": "STRING", "index": 50, "name": "custom_fivetran_account_name", "comment": null}, "custom_hvr_customer": {"type": "BOOL", "index": 51, "name": "custom_hvr_customer", "comment": null}}, "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_source.stg_zendesk__daylight_time_tmp": {"metadata": {"type": "view", "schema": "dbt_zendesk_staging", "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__organization_tag_tmp": {"metadata": {"type": "view", "schema": "dbt_zendesk_staging", "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__group_tmp": {"metadata": {"type": "view", "schema": "dbt_zendesk_staging", "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__ticket": {"metadata": {"type": "table", "schema": "dbt_zendesk_staging", "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}, "assignee_id": {"type": "INT64", "index": 3, "name": "assignee_id", "comment": null}, "brand_id": {"type": "INT64", "index": 4, "name": "brand_id", "comment": null}, "created_at": {"type": "TIMESTAMP", "index": 5, "name": "created_at", "comment": null}, "updated_at": {"type": "TIMESTAMP", "index": 6, "name": "updated_at", "comment": null}, "description": {"type": "STRING", "index": 7, "name": "description", "comment": null}, "due_at": {"type": "TIMESTAMP", "index": 8, "name": "due_at", "comment": null}, "group_id": {"type": "INT64", "index": 9, "name": "group_id", "comment": null}, "external_id": {"type": "STRING", "index": 10, "name": "external_id", "comment": null}, "is_public": {"type": "BOOL", "index": 11, "name": "is_public", "comment": null}, "organization_id": {"type": "INT64", "index": 12, "name": "organization_id", "comment": null}, "priority": {"type": "STRING", "index": 13, "name": "priority", "comment": null}, "recipient": {"type": "STRING", "index": 14, "name": "recipient", "comment": null}, "requester_id": {"type": "INT64", "index": 15, "name": "requester_id", "comment": null}, "status": {"type": "STRING", "index": 16, "name": "status", "comment": null}, "subject": {"type": "STRING", "index": 17, "name": "subject", "comment": null}, "problem_id": {"type": "INT64", "index": 18, "name": "problem_id", "comment": null}, "submitter_id": {"type": "INT64", "index": 19, "name": "submitter_id", "comment": null}, "ticket_form_id": {"type": "INT64", "index": 20, "name": "ticket_form_id", "comment": null}, "type": {"type": "STRING", "index": 21, "name": "type", "comment": null}, "url": {"type": "STRING", "index": 22, "name": "url", "comment": null}, "created_channel": {"type": "STRING", "index": 23, "name": "created_channel", "comment": null}, "source_from_id": {"type": "INT64", "index": 24, "name": "source_from_id", "comment": null}, "source_from_title": {"type": "STRING", "index": 25, "name": "source_from_title", "comment": null}, "source_rel": {"type": "STRING", "index": 26, "name": "source_rel", "comment": null}, "source_to_address": {"type": "STRING", "index": 27, "name": "source_to_address", "comment": null}, "source_to_name": {"type": "STRING", "index": 28, "name": "source_to_name", "comment": null}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 50892.0, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 37963951.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_source.stg_zendesk__ticket"}, "model.zendesk_source.stg_zendesk__organization_tmp": {"metadata": {"type": "view", "schema": "dbt_zendesk_staging", "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}, "custom_account_id": {"type": "STRING", "index": 4, "name": "custom_account_id", "comment": null}, "custom_account_owner": {"type": "STRING", "index": 5, "name": "custom_account_owner", "comment": null}, "custom_account_owner_email": {"type": "STRING", "index": 6, "name": "custom_account_owner_email", "comment": null}, "custom_funnel_stage": {"type": "STRING", "index": 7, "name": "custom_funnel_stage", "comment": null}, "custom_last_modified_date": {"type": "TIMESTAMP", "index": 8, "name": "custom_last_modified_date", "comment": null}, "custom_type": {"type": "STRING", "index": 9, "name": "custom_type", "comment": null}, "details": {"type": "STRING", "index": 10, "name": "details", "comment": null}, "external_id": {"type": "STRING", "index": 11, "name": "external_id", "comment": null}, "group_id": {"type": "INT64", "index": 12, "name": "group_id", "comment": null}, "name": {"type": "STRING", "index": 13, "name": "name", "comment": null}, "notes": {"type": "STRING", "index": 14, "name": "notes", "comment": null}, "shared_comments": {"type": "BOOL", "index": 15, "name": "shared_comments", "comment": null}, "shared_tickets": {"type": "BOOL", "index": 16, "name": "shared_tickets", "comment": null}, "updated_at": {"type": "TIMESTAMP", "index": 17, "name": "updated_at", "comment": null}, "url": {"type": "STRING", "index": 18, "name": "url", "comment": null}, "custom_assigned_se": {"type": "STRING", "index": 19, "name": "custom_assigned_se", "comment": null}, "custom_sync_with_salesforce": {"type": "BOOL", "index": 20, "name": "custom_sync_with_salesforce", "comment": null}, "custom_partner_type": {"type": "STRING", "index": 21, "name": "custom_partner_type", "comment": null}, "custom_partner_tier": {"type": "STRING", "index": 22, "name": "custom_partner_tier", "comment": null}, "custom_platform_level": {"type": "STRING", "index": 23, "name": "custom_platform_level", "comment": null}, "custom_last_sync_time": {"type": "TIMESTAMP", "index": 24, "name": "custom_last_sync_time", "comment": null}, "custom_account_status": {"type": "STRING", "index": 25, "name": "custom_account_status", "comment": null}, "custom_health_score": {"type": "FLOAT64", "index": 26, "name": "custom_health_score", "comment": null}, "custom_region": {"type": "STRING", "index": 27, "name": "custom_region", "comment": null}, "custom_segment": {"type": "STRING", "index": 28, "name": "custom_segment", "comment": null}, "custom_customer_type": {"type": "STRING", "index": 29, "name": "custom_customer_type", "comment": null}, "custom_first_won_date": {"type": "TIMESTAMP", "index": 30, "name": "custom_first_won_date", "comment": null}, "custom_assigned_tsm_email": {"type": "STRING", "index": 31, "name": "custom_assigned_tsm_email", "comment": null}, "custom_us_only_support": {"type": "BOOL", "index": 32, "name": "custom_us_only_support", "comment": null}, "custom_account_level": {"type": "STRING", "index": 33, "name": "custom_account_level", "comment": null}, "custom_vip_org": {"type": "BOOL", "index": 34, "name": "custom_vip_org", "comment": null}, "custom_bcf": {"type": "BOOL", "index": 35, "name": "custom_bcf", "comment": null}, "custom_pbf_account": {"type": "BOOL", "index": 36, "name": "custom_pbf_account", "comment": null}, "custom_hvr_update": {"type": "BOOL", "index": 37, "name": "custom_hvr_update", "comment": null}, "custom_hvr_migrated_account": {"type": "BOOL", "index": 38, "name": "custom_hvr_migrated_account", "comment": null}}, "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__ticket_comment_tmp": {"metadata": {"type": "view", "schema": "dbt_zendesk_staging", "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__brand": {"metadata": {"type": "table", "schema": "dbt_zendesk_staging", "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}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 1.0, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 71.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_source.stg_zendesk__brand"}, "model.zendesk_source.stg_zendesk__domain_name": {"metadata": {"type": "table", "schema": "dbt_zendesk_staging", "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}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 468298.0, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 15042985.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_source.stg_zendesk__domain_name"}, "model.zendesk_source.stg_zendesk__user_tag": {"metadata": {"type": "table", "schema": "dbt_zendesk_staging", "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}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 11.0, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 258.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_source.stg_zendesk__user_tag"}, "model.zendesk_source.stg_zendesk__ticket_field_history_tmp": {"metadata": {"type": "view", "schema": "dbt_zendesk_staging", "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__brand_tmp": {"metadata": {"type": "view", "schema": "dbt_zendesk_staging", "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"}}, "sources": {"source.zendesk_source.zendesk.organization_tag": {"metadata": {"type": "table", "schema": "zendesk_new", "name": "organization_tag", "database": "db", "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": 989366.0, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 28469239.0, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.zendesk_source.zendesk.organization_tag"}, "source.zendesk_source.zendesk.organization": {"metadata": {"type": "table", "schema": "zendesk_new", "name": "organization", "database": "db", "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}, "custom_account_id": {"type": "STRING", "index": 4, "name": "custom_account_id", "comment": null}, "custom_account_owner": {"type": "STRING", "index": 5, "name": "custom_account_owner", "comment": null}, "custom_account_owner_email": {"type": "STRING", "index": 6, "name": "custom_account_owner_email", "comment": null}, "custom_funnel_stage": {"type": "STRING", "index": 7, "name": "custom_funnel_stage", "comment": null}, "custom_last_modified_date": {"type": "TIMESTAMP", "index": 8, "name": "custom_last_modified_date", "comment": null}, "custom_type": {"type": "STRING", "index": 9, "name": "custom_type", "comment": null}, "details": {"type": "STRING", "index": 10, "name": "details", "comment": null}, "external_id": {"type": "STRING", "index": 11, "name": "external_id", "comment": null}, "group_id": {"type": "INT64", "index": 12, "name": "group_id", "comment": null}, "name": {"type": "STRING", "index": 13, "name": "name", "comment": null}, "notes": {"type": "STRING", "index": 14, "name": "notes", "comment": null}, "shared_comments": {"type": "BOOL", "index": 15, "name": "shared_comments", "comment": null}, "shared_tickets": {"type": "BOOL", "index": 16, "name": "shared_tickets", "comment": null}, "updated_at": {"type": "TIMESTAMP", "index": 17, "name": "updated_at", "comment": null}, "url": {"type": "STRING", "index": 18, "name": "url", "comment": null}, "custom_assigned_se": {"type": "STRING", "index": 19, "name": "custom_assigned_se", "comment": null}, "custom_sync_with_salesforce": {"type": "BOOL", "index": 20, "name": "custom_sync_with_salesforce", "comment": null}, "custom_partner_type": {"type": "STRING", "index": 21, "name": "custom_partner_type", "comment": null}, "custom_partner_tier": {"type": "STRING", "index": 22, "name": "custom_partner_tier", "comment": null}, "custom_platform_level": {"type": "STRING", "index": 23, "name": "custom_platform_level", "comment": null}, "custom_last_sync_time": {"type": "TIMESTAMP", "index": 24, "name": "custom_last_sync_time", "comment": null}, "custom_account_status": {"type": "STRING", "index": 25, "name": "custom_account_status", "comment": null}, "custom_health_score": {"type": "FLOAT64", "index": 26, "name": "custom_health_score", "comment": null}, "custom_region": {"type": "STRING", "index": 27, "name": "custom_region", "comment": null}, "custom_segment": {"type": "STRING", "index": 28, "name": "custom_segment", "comment": null}, "custom_customer_type": {"type": "STRING", "index": 29, "name": "custom_customer_type", "comment": null}, "custom_first_won_date": {"type": "TIMESTAMP", "index": 30, "name": "custom_first_won_date", "comment": null}, "custom_assigned_tsm_email": {"type": "STRING", "index": 31, "name": "custom_assigned_tsm_email", "comment": null}, "custom_us_only_support": {"type": "BOOL", "index": 32, "name": "custom_us_only_support", "comment": null}, "custom_account_level": {"type": "STRING", "index": 33, "name": "custom_account_level", "comment": null}, "custom_vip_org": {"type": "BOOL", "index": 34, "name": "custom_vip_org", "comment": null}, "custom_bcf": {"type": "BOOL", "index": 35, "name": "custom_bcf", "comment": null}, "custom_pbf_account": {"type": "BOOL", "index": 36, "name": "custom_pbf_account", "comment": null}, "custom_hvr_update": {"type": "BOOL", "index": 37, "name": "custom_hvr_update", "comment": null}, "custom_hvr_migrated_account": {"type": "BOOL", "index": 38, "name": "custom_hvr_migrated_account", "comment": null}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 483740.0, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 123415719.0, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.zendesk_source.zendesk.organization"}, "source.zendesk_source.zendesk.time_zone": {"metadata": {"type": "table", "schema": "zendesk_new", "name": "time_zone", "database": "db", "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": 151.0, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 4035.0, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.zendesk_source.zendesk.time_zone"}, "source.zendesk_source.zendesk.domain_name": {"metadata": {"type": "table", "schema": "zendesk_new", "name": "domain_name", "database": "db", "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": 468312.0, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 18789914.0, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.zendesk_source.zendesk.domain_name"}, "source.zendesk_source.zendesk.brand": {"metadata": {"type": "table", "schema": "zendesk_new", "name": "brand", "database": "db", "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.0, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 458.0, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.zendesk_source.zendesk.brand"}, "source.zendesk_source.zendesk.group": {"metadata": {"type": "table", "schema": "zendesk_new", "name": "group", "database": "db", "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": 37.0, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 4367.0, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.zendesk_source.zendesk.group"}, "source.zendesk_source.zendesk.daylight_time": {"metadata": {"type": "table", "schema": "zendesk_new", "name": "daylight_time", "database": "db", "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": 2938.0, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 150474.0, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.zendesk_source.zendesk.daylight_time"}, "source.zendesk_source.zendesk.ticket_field_history": {"metadata": {"type": "table", "schema": "zendesk_new", "name": "ticket_field_history", "database": "db", "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": 1554182.0, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 115960588.0, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.zendesk_source.zendesk.ticket_field_history"}, "source.zendesk_source.zendesk.user_tag": {"metadata": {"type": "table", "schema": "zendesk_new", "name": "user_tag", "database": "db", "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": 11.0, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 346.0, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.zendesk_source.zendesk.user_tag"}, "source.zendesk_source.zendesk.ticket_tag": {"metadata": {"type": "table", "schema": "zendesk_new", "name": "ticket_tag", "database": "db", "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": 417391.0, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 14260105.0, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.zendesk_source.zendesk.ticket_tag"}, "source.zendesk_source.zendesk.ticket_comment": {"metadata": {"type": "table", "schema": "zendesk_new", "name": "ticket_comment", "database": "db", "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": 550409.0, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 329859048.0, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.zendesk_source.zendesk.ticket_comment"}, "source.zendesk_source.zendesk.ticket": {"metadata": {"type": "table", "schema": "zendesk_new", "name": "ticket", "database": "db", "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}, "custom_additional_details": {"type": "STRING", "index": 7, "name": "custom_additional_details", "comment": null}, "custom_alternatives": {"type": "STRING", "index": 8, "name": "custom_alternatives", "comment": null}, "custom_connector": {"type": "STRING", "index": 9, "name": "custom_connector", "comment": null}, "custom_consent_to_access": {"type": "BOOL", "index": 10, "name": "custom_consent_to_access", "comment": null}, "custom_current_state": {"type": "STRING", "index": 11, "name": "custom_current_state", "comment": null}, "custom_error_messages": {"type": "STRING", "index": 12, "name": "custom_error_messages", "comment": null}, "custom_git_zen_data": {"type": "STRING", "index": 13, "name": "custom_git_zen_data", "comment": null}, "custom_origin": {"type": "STRING", "index": 14, "name": "custom_origin", "comment": null}, "custom_proposed_solution": {"type": "STRING", "index": 15, "name": "custom_proposed_solution", "comment": null}, "custom_severity": {"type": "STRING", "index": 16, "name": "custom_severity", "comment": null}, "custom_sql_query": {"type": "STRING", "index": 17, "name": "custom_sql_query", "comment": null}, "custom_steps_to_reproduce": {"type": "STRING", "index": 18, "name": "custom_steps_to_reproduce", "comment": null}, "description": {"type": "STRING", "index": 19, "name": "description", "comment": null}, "due_at": {"type": "TIMESTAMP", "index": 20, "name": "due_at", "comment": null}, "external_id": {"type": "STRING", "index": 21, "name": "external_id", "comment": null}, "forum_topic_id": {"type": "INT64", "index": 22, "name": "forum_topic_id", "comment": null}, "group_id": {"type": "INT64", "index": 23, "name": "group_id", "comment": null}, "has_incidents": {"type": "BOOL", "index": 24, "name": "has_incidents", "comment": null}, "is_public": {"type": "BOOL", "index": 25, "name": "is_public", "comment": null}, "organization_id": {"type": "INT64", "index": 26, "name": "organization_id", "comment": null}, "priority": {"type": "STRING", "index": 27, "name": "priority", "comment": null}, "problem_id": {"type": "INT64", "index": 28, "name": "problem_id", "comment": null}, "recipient": {"type": "STRING", "index": 29, "name": "recipient", "comment": null}, "requester_id": {"type": "INT64", "index": 30, "name": "requester_id", "comment": null}, "status": {"type": "STRING", "index": 31, "name": "status", "comment": null}, "subject": {"type": "STRING", "index": 32, "name": "subject", "comment": null}, "submitter_id": {"type": "INT64", "index": 33, "name": "submitter_id", "comment": null}, "system_client": {"type": "STRING", "index": 34, "name": "system_client", "comment": null}, "system_ip_address": {"type": "STRING", "index": 35, "name": "system_ip_address", "comment": null}, "system_json_email_identifier": {"type": "STRING", "index": 36, "name": "system_json_email_identifier", "comment": null}, "system_latitude": {"type": "FLOAT64", "index": 37, "name": "system_latitude", "comment": null}, "system_location": {"type": "STRING", "index": 38, "name": "system_location", "comment": null}, "system_longitude": {"type": "FLOAT64", "index": 39, "name": "system_longitude", "comment": null}, "system_message_id": {"type": "STRING", "index": 40, "name": "system_message_id", "comment": null}, "system_raw_email_identifier": {"type": "STRING", "index": 41, "name": "system_raw_email_identifier", "comment": null}, "ticket_form_id": {"type": "INT64", "index": 42, "name": "ticket_form_id", "comment": null}, "type": {"type": "STRING", "index": 43, "name": "type", "comment": null}, "updated_at": {"type": "TIMESTAMP", "index": 44, "name": "updated_at", "comment": null}, "url": {"type": "STRING", "index": 45, "name": "url", "comment": null}, "via_channel": {"type": "STRING", "index": 46, "name": "via_channel", "comment": null}, "via_source_from_id": {"type": "INT64", "index": 47, "name": "via_source_from_id", "comment": null}, "via_source_from_title": {"type": "STRING", "index": 48, "name": "via_source_from_title", "comment": null}, "via_source_rel": {"type": "STRING", "index": 49, "name": "via_source_rel", "comment": null}, "via_source_to_address": {"type": "STRING", "index": 50, "name": "via_source_to_address", "comment": null}, "via_source_to_name": {"type": "STRING", "index": 51, "name": "via_source_to_name", "comment": null}, "custom_sfdc_case_": {"type": "STRING", "index": 52, "name": "custom_sfdc_case_", "comment": null}, "custom_connector_type": {"type": "STRING", "index": 53, "name": "custom_connector_type", "comment": null}, "custom_se_notes": {"type": "STRING", "index": 54, "name": "custom_se_notes", "comment": null}, "custom_warehouse_id": {"type": "STRING", "index": 55, "name": "custom_warehouse_id", "comment": null}, "custom_github_link": {"type": "STRING", "index": 56, "name": "custom_github_link", "comment": null}, "custom_classification": {"type": "STRING", "index": 57, "name": "custom_classification", "comment": null}, "custom_ticket_priority": {"type": "STRING", "index": 58, "name": "custom_ticket_priority", "comment": null}, "custom_customer_risk": {"type": "STRING", "index": 59, "name": "custom_customer_risk", "comment": null}, "system_machine_generated": {"type": "BOOL", "index": 60, "name": "system_machine_generated", "comment": null}, "custom_escalated": {"type": "BOOL", "index": 61, "name": "custom_escalated", "comment": null}, "custom_issue_escalation_notes": {"type": "STRING", "index": 62, "name": "custom_issue_escalation_notes", "comment": null}, "custom_se_manager_notes": {"type": "STRING", "index": 63, "name": "custom_se_manager_notes", "comment": null}, "custom_related_to": {"type": "STRING", "index": 64, "name": "custom_related_to", "comment": null}, "merged_ticket_ids": {"type": "STRING", "index": 65, "name": "merged_ticket_ids", "comment": null}, "custom_connector_name": {"type": "STRING", "index": 66, "name": "custom_connector_name", "comment": null}, "custom_destination_type": {"type": "STRING", "index": 67, "name": "custom_destination_type", "comment": null}, "custom_group_id": {"type": "STRING", "index": 68, "name": "custom_group_id", "comment": null}, "custom_fivetran_warehouse": {"type": "STRING", "index": 69, "name": "custom_fivetran_warehouse", "comment": null}, "custom_slack_channel_id": {"type": "STRING", "index": 70, "name": "custom_slack_channel_id", "comment": null}, "custom_ticket_quality": {"type": "BOOL", "index": 71, "name": "custom_ticket_quality", "comment": null}, "via_source_from_address": {"type": "STRING", "index": 72, "name": "via_source_from_address", "comment": null}, "custom_escalation_reason": {"type": "STRING", "index": 73, "name": "custom_escalation_reason", "comment": null}, "followup_ids": {"type": "STRING", "index": 74, "name": "followup_ids", "comment": null}, "via_followup_source_id": {"type": "INT64", "index": 75, "name": "via_followup_source_id", "comment": null}, "custom_post_id": {"type": "INT64", "index": 76, "name": "custom_post_id", "comment": null}, "custom_post_name": {"type": "STRING", "index": 77, "name": "custom_post_name", "comment": null}, "custom_post_path": {"type": "STRING", "index": 78, "name": "custom_post_path", "comment": null}, "custom_grant_access_status": {"type": "STRING", "index": 79, "name": "custom_grant_access_status", "comment": null}, "custom_grant_access_service": {"type": "STRING", "index": 80, "name": "custom_grant_access_service", "comment": null}, "custom_grant_access_scope": {"type": "STRING", "index": 81, "name": "custom_grant_access_scope", "comment": null}, "custom_grant_access_schema": {"type": "STRING", "index": 82, "name": "custom_grant_access_schema", "comment": null}, "custom_grant_access_group": {"type": "STRING", "index": 83, "name": "custom_grant_access_group", "comment": null}, "custom_grant_access_expiration": {"type": "STRING", "index": 84, "name": "custom_grant_access_expiration", "comment": null}, "custom_grant_access_approved_at": {"type": "STRING", "index": 85, "name": "custom_grant_access_approved_at", "comment": null}, "custom_grant_access_group_name": {"type": "STRING", "index": 86, "name": "custom_grant_access_group_name", "comment": null}, "custom_grant_access_revoked_at": {"type": "STRING", "index": 87, "name": "custom_grant_access_revoked_at", "comment": null}, "custom_bug_sub_category": {"type": "STRING", "index": 88, "name": "custom_bug_sub_category", "comment": null}, "custom_fivetran_group_name": {"type": "STRING", "index": 89, "name": "custom_fivetran_group_name", "comment": null}, "custom_fivetran_destination_type": {"type": "STRING", "index": 90, "name": "custom_fivetran_destination_type", "comment": null}, "custom_subcategory_bug": {"type": "STRING", "index": 91, "name": "custom_subcategory_bug", "comment": null}, "custom_sub_classification_bug": {"type": "STRING", "index": 92, "name": "custom_sub_classification_bug", "comment": null}, "custom_sub_classification_data_integrity": {"type": "STRING", "index": 93, "name": "custom_sub_classification_data_integrity", "comment": null}, "custom_sub_classification_account_management": {"type": "STRING", "index": 94, "name": "custom_sub_classification_account_management", "comment": null}, "custom_sub_classification_other": {"type": "STRING", "index": 95, "name": "custom_sub_classification_other", "comment": null}, "custom_sub_classification_sync_issue": {"type": "STRING", "index": 96, "name": "custom_sub_classification_sync_issue", "comment": null}, "custom_sub_classification_education_needed": {"type": "STRING", "index": 97, "name": "custom_sub_classification_education_needed", "comment": null}, "custom_sub_classification_connector_issue": {"type": "STRING", "index": 98, "name": "custom_sub_classification_connector_issue", "comment": null}, "custom_sub_classification_network_security": {"type": "STRING", "index": 99, "name": "custom_sub_classification_network_security", "comment": null}, "custom_sub_classification_incident": {"type": "STRING", "index": 100, "name": "custom_sub_classification_incident", "comment": null}, "custom_sub_classification_feature_flag": {"type": "STRING", "index": 101, "name": "custom_sub_classification_feature_flag", "comment": null}, "custom_sub_classification_fivetran_platform": {"type": "STRING", "index": 102, "name": "custom_sub_classification_fivetran_platform", "comment": null}, "custom_sub_classification_destination_issue": {"type": "STRING", "index": 103, "name": "custom_sub_classification_destination_issue", "comment": null}, "custom_sub_classification_transformations": {"type": "STRING", "index": 104, "name": "custom_sub_classification_transformations", "comment": null}, "custom_sub_classification_billing": {"type": "STRING", "index": 105, "name": "custom_sub_classification_billing", "comment": null}, "custom_sub_classification_sales_inquiry": {"type": "STRING", "index": 106, "name": "custom_sub_classification_sales_inquiry", "comment": null}, "custom_reopen": {"type": "TIMESTAMP", "index": 107, "name": "custom_reopen", "comment": null}, "custom_total_time_spent_sec_": {"type": "INT64", "index": 108, "name": "custom_total_time_spent_sec_", "comment": null}, "custom_time_spent_last_update_sec_": {"type": "INT64", "index": 109, "name": "custom_time_spent_last_update_sec_", "comment": null}, "custom_fivetran_account_status": {"type": "STRING", "index": 110, "name": "custom_fivetran_account_status", "comment": null}, "custom_snooze": {"type": "TIMESTAMP", "index": 111, "name": "custom_snooze", "comment": null}, "custom_customer_data_check": {"type": "BOOL", "index": 112, "name": "custom_customer_data_check", "comment": null}, "custom_screenshot_of_connector_s_setup_page_included": {"type": "BOOL", "index": 113, "name": "custom_screenshot_of_connector_s_setup_page_included", "comment": null}, "custom_on_hold_reason_": {"type": "STRING", "index": 114, "name": "custom_on_hold_reason_", "comment": null}, "custom_request_type_": {"type": "STRING", "index": 115, "name": "custom_request_type_", "comment": null}, "custom_screenshot_of_transformation_setup_page_included": {"type": "BOOL", "index": 116, "name": "custom_screenshot_of_transformation_setup_page_included", "comment": null}, "custom_account_level": {"type": "STRING", "index": 117, "name": "custom_account_level", "comment": null}, "custom_pbf_": {"type": "STRING", "index": 118, "name": "custom_pbf_", "comment": null}, "custom_reported_severity_": {"type": "STRING", "index": 119, "name": "custom_reported_severity_", "comment": null}, "custom_error_shown_in_connector_s_setup_page_": {"type": "STRING", "index": 120, "name": "custom_error_shown_in_connector_s_setup_page_", "comment": null}, "custom_details_of_issue_with_alert_shown_in_connector_s_dashboard_": {"type": "STRING", "index": 121, "name": "custom_details_of_issue_with_alert_shown_in_connector_s_dashboard_", "comment": null}, "custom_query_used_to_verify_data_integrity_": {"type": "STRING", "index": 122, "name": "custom_query_used_to_verify_data_integrity_", "comment": null}, "custom_unique_ids_for_source_records_not_showing_": {"type": "STRING", "index": 123, "name": "custom_unique_ids_for_source_records_not_showing_", "comment": null}, "custom_number_of_end_customers_impacted_due_to_inquiry_": {"type": "STRING", "index": 124, "name": "custom_number_of_end_customers_impacted_due_to_inquiry_", "comment": null}, "custom_error_shown_in_logs_status_bar_in_connector_s_dashboard_": {"type": "STRING", "index": 125, "name": "custom_error_shown_in_logs_status_bar_in_connector_s_dashboard_", "comment": null}, "custom_name_of_schema_table_column_seen_in_source_not_showing_in_the_destination_": {"type": "STRING", "index": 126, "name": "custom_name_of_schema_table_column_seen_in_source_not_showing_in_the_destination_", "comment": null}, "custom_steps_taken_that_lead_to_ui_error_": {"type": "STRING", "index": 127, "name": "custom_steps_taken_that_lead_to_ui_error_", "comment": null}, "custom_user_s_email_address_and_current_role_": {"type": "STRING", "index": 128, "name": "custom_user_s_email_address_and_current_role_", "comment": null}, "custom_estimated_number_of_records_of_mar_dispute_": {"type": "STRING", "index": 129, "name": "custom_estimated_number_of_records_of_mar_dispute_", "comment": null}, "custom_reasoning_for_mar_dispute_": {"type": "STRING", "index": 130, "name": "custom_reasoning_for_mar_dispute_", "comment": null}, "custom_date_range_of_mar_dispute_": {"type": "STRING", "index": 131, "name": "custom_date_range_of_mar_dispute_", "comment": null}, "custom_support_case_numbers_related_to_mar_dispute_": {"type": "STRING", "index": 132, "name": "custom_support_case_numbers_related_to_mar_dispute_", "comment": null}, "custom_type_of_ssh_setup_being_used_": {"type": "STRING", "index": 133, "name": "custom_type_of_ssh_setup_being_used_", "comment": null}, "custom_ticket_note_": {"type": "STRING", "index": 134, "name": "custom_ticket_note_", "comment": null}, "custom_support_case_numbers_related_to_sla_dispute_": {"type": "STRING", "index": 135, "name": "custom_support_case_numbers_related_to_sla_dispute_", "comment": null}, "custom_estimated_number_of_records_of_sla_dispute_": {"type": "INT64", "index": 136, "name": "custom_estimated_number_of_records_of_sla_dispute_", "comment": null}, "custom_date_range_of_sla_dispute_": {"type": "STRING", "index": 137, "name": "custom_date_range_of_sla_dispute_", "comment": null}, "custom_reasoning_for_sla_dispute_": {"type": "STRING", "index": 138, "name": "custom_reasoning_for_sla_dispute_", "comment": null}, "custom_security_request_type_": {"type": "STRING", "index": 139, "name": "custom_security_request_type_", "comment": null}, "custom_account_id": {"type": "STRING", "index": 140, "name": "custom_account_id", "comment": null}, "custom_grant_access_account_name": {"type": "STRING", "index": 141, "name": "custom_grant_access_account_name", "comment": null}, "custom_account_name": {"type": "STRING", "index": 142, "name": "custom_account_name", "comment": null}, "custom_grant_access_account": {"type": "STRING", "index": 143, "name": "custom_grant_access_account", "comment": null}, "custom_snooze_state": {"type": "STRING", "index": 144, "name": "custom_snooze_state", "comment": null}, "custom_snoozed_until": {"type": "STRING", "index": 145, "name": "custom_snoozed_until", "comment": null}, "custom_on_hold_reason_security_": {"type": "STRING", "index": 146, "name": "custom_on_hold_reason_security_", "comment": null}, "custom_classification_old": {"type": "STRING", "index": 147, "name": "custom_classification_old", "comment": null}, "custom_sub_classification_data_integrity_old": {"type": "STRING", "index": 148, "name": "custom_sub_classification_data_integrity_old", "comment": null}, "custom_sub_classification_sync_issue_old": {"type": "STRING", "index": 149, "name": "custom_sub_classification_sync_issue_old", "comment": null}, "custom_reason_for_ticket_creation_classification_": {"type": "STRING", "index": 150, "name": "custom_reason_for_ticket_creation_classification_", "comment": null}, "custom_sub_classification_billing_old": {"type": "STRING", "index": 151, "name": "custom_sub_classification_billing_old", "comment": null}, "custom_sub_classification_feature_flag_old": {"type": "STRING", "index": 152, "name": "custom_sub_classification_feature_flag_old", "comment": null}, "custom_sub_classification_education_needed_old": {"type": "STRING", "index": 153, "name": "custom_sub_classification_education_needed_old", "comment": null}, "custom_sub_classification_transformations_old": {"type": "STRING", "index": 154, "name": "custom_sub_classification_transformations_old", "comment": null}, "custom_sub_classification_bug_old": {"type": "STRING", "index": 155, "name": "custom_sub_classification_bug_old", "comment": null}, "custom_sub_classification_destination_issue_old": {"type": "STRING", "index": 156, "name": "custom_sub_classification_destination_issue_old", "comment": null}, "custom_resolution_description_": {"type": "STRING", "index": 157, "name": "custom_resolution_description_", "comment": null}, "custom_sub_classification_network_security_old": {"type": "STRING", "index": 158, "name": "custom_sub_classification_network_security_old", "comment": null}, "custom_sub_classification_connector_issue_old": {"type": "STRING", "index": 159, "name": "custom_sub_classification_connector_issue_old", "comment": null}, "custom_sub_classification_incident_old": {"type": "STRING", "index": 160, "name": "custom_sub_classification_incident_old", "comment": null}, "custom_sub_classification_other_old": {"type": "STRING", "index": 161, "name": "custom_sub_classification_other_old", "comment": null}, "custom_sub_classification_fivetran_platform_old": {"type": "STRING", "index": 162, "name": "custom_sub_classification_fivetran_platform_old", "comment": null}, "custom_sub_classification_account_management_old": {"type": "STRING", "index": 163, "name": "custom_sub_classification_account_management_old", "comment": null}, "custom_sub_classification_sales_inquiry_old": {"type": "STRING", "index": 164, "name": "custom_sub_classification_sales_inquiry_old", "comment": null}, "custom_logs_improvement_note": {"type": "STRING", "index": 165, "name": "custom_logs_improvement_note", "comment": null}, "custom_logs_improvement": {"type": "STRING", "index": 166, "name": "custom_logs_improvement", "comment": null}, "custom_hub_os_": {"type": "STRING", "index": 167, "name": "custom_hub_os_", "comment": null}, "custom_environment_": {"type": "STRING", "index": 168, "name": "custom_environment_", "comment": null}, "custom_source_os_": {"type": "STRING", "index": 169, "name": "custom_source_os_", "comment": null}, "custom_target_os_": {"type": "STRING", "index": 170, "name": "custom_target_os_", "comment": null}, "custom_source_": {"type": "STRING", "index": 171, "name": "custom_source_", "comment": null}, "custom_source_dbms_": {"type": "STRING", "index": 172, "name": "custom_source_dbms_", "comment": null}, "custom_target_dbms_": {"type": "STRING", "index": 173, "name": "custom_target_dbms_", "comment": null}, "custom_hub_dbms_": {"type": "STRING", "index": 174, "name": "custom_hub_dbms_", "comment": null}, "custom_hub_": {"type": "STRING", "index": 175, "name": "custom_hub_", "comment": null}, "custom_target_": {"type": "STRING", "index": 176, "name": "custom_target_", "comment": null}, "custom_reason_for_ticket_classification_": {"type": "STRING", "index": 177, "name": "custom_reason_for_ticket_classification_", "comment": null}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 50897.0, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 58380307.0, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.zendesk_source.zendesk.ticket"}, "source.zendesk_source.zendesk.user": {"metadata": {"type": "table", "schema": "zendesk_new", "name": "user", "database": "db", "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": "STRING", "index": 4, "name": "alias", "comment": null}, "authenticity_token": {"type": "STRING", "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}, "custom_role_id": {"type": "INT64", "index": 8, "name": "custom_role_id", "comment": null}, "custom_test": {"type": "STRING", "index": 9, "name": "custom_test", "comment": null}, "details": {"type": "STRING", "index": 10, "name": "details", "comment": null}, "email": {"type": "STRING", "index": 11, "name": "email", "comment": null}, "external_id": {"type": "STRING", "index": 12, "name": "external_id", "comment": null}, "last_login_at": {"type": "TIMESTAMP", "index": 13, "name": "last_login_at", "comment": null}, "locale": {"type": "STRING", "index": 14, "name": "locale", "comment": null}, "locale_id": {"type": "INT64", "index": 15, "name": "locale_id", "comment": null}, "moderator": {"type": "BOOL", "index": 16, "name": "moderator", "comment": null}, "name": {"type": "STRING", "index": 17, "name": "name", "comment": null}, "notes": {"type": "STRING", "index": 18, "name": "notes", "comment": null}, "only_private_comments": {"type": "BOOL", "index": 19, "name": "only_private_comments", "comment": null}, "organization_id": {"type": "INT64", "index": 20, "name": "organization_id", "comment": null}, "phone": {"type": "STRING", "index": 21, "name": "phone", "comment": null}, "remote_photo_url": {"type": "STRING", "index": 22, "name": "remote_photo_url", "comment": null}, "restricted_agent": {"type": "BOOL", "index": 23, "name": "restricted_agent", "comment": null}, "role": {"type": "STRING", "index": 24, "name": "role", "comment": null}, "shared": {"type": "BOOL", "index": 25, "name": "shared", "comment": null}, "shared_agent": {"type": "BOOL", "index": 26, "name": "shared_agent", "comment": null}, "signature": {"type": "STRING", "index": 27, "name": "signature", "comment": null}, "suspended": {"type": "BOOL", "index": 28, "name": "suspended", "comment": null}, "ticket_restriction": {"type": "STRING", "index": 29, "name": "ticket_restriction", "comment": null}, "time_zone": {"type": "STRING", "index": 30, "name": "time_zone", "comment": null}, "two_factor_auth_enabled": {"type": "BOOL", "index": 31, "name": "two_factor_auth_enabled", "comment": null}, "updated_at": {"type": "TIMESTAMP", "index": 32, "name": "updated_at", "comment": null}, "url": {"type": "STRING", "index": 33, "name": "url", "comment": null}, "verified": {"type": "BOOL", "index": 34, "name": "verified", "comment": null}, "custom_test_user_field": {"type": "STRING", "index": 35, "name": "custom_test_user_field", "comment": null}, "custom_birthday": {"type": "TIMESTAMP", "index": 36, "name": "custom_birthday", "comment": null}, "custom_int": {"type": "STRING", "index": 37, "name": "custom_int", "comment": null}, "custom_integrations": {"type": "STRING", "index": 38, "name": "custom_integrations", "comment": null}, "custom_account": {"type": "STRING", "index": 39, "name": "custom_account", "comment": null}, "custom_group": {"type": "STRING", "index": 40, "name": "custom_group", "comment": null}, "custom_fivetran_account_id": {"type": "STRING", "index": 41, "name": "custom_fivetran_account_id", "comment": null}, "custom_fivetran_group_id": {"type": "STRING", "index": 42, "name": "custom_fivetran_group_id", "comment": null}, "custom_fivetran_user_id": {"type": "STRING", "index": 43, "name": "custom_fivetran_user_id", "comment": null}, "custom_fivetran_group_name": {"type": "STRING", "index": 44, "name": "custom_fivetran_group_name", "comment": null}, "custom_fivetran_destination_type": {"type": "STRING", "index": 45, "name": "custom_fivetran_destination_type", "comment": null}, "custom_fivetran_account_status": {"type": "STRING", "index": 46, "name": "custom_fivetran_account_status", "comment": null}, "iana_time_zone": {"type": "STRING", "index": 47, "name": "iana_time_zone", "comment": null}, "report_csv": {"type": "BOOL", "index": 48, "name": "report_csv", "comment": null}, "default_group_id": {"type": "INT64", "index": 49, "name": "default_group_id", "comment": null}, "custom_fivetran_account_name": {"type": "STRING", "index": 50, "name": "custom_fivetran_account_name", "comment": null}, "custom_hvr_customer": {"type": "BOOL", "index": 51, "name": "custom_hvr_customer", "comment": null}}, "stats": {"num_rows": {"id": "num_rows", "label": "# Rows", "value": 52856.0, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 12635310.0, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.zendesk_source.zendesk.user"}, "source.zendesk_source.zendesk.schedule": {"metadata": {"type": "table", "schema": "zendesk_new", "name": "schedule", "database": "db", "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": 22.0, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 2016.0, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.zendesk_source.zendesk.schedule"}, "source.zendesk_source.zendesk.ticket_form_history": {"metadata": {"type": "table", "schema": "zendesk_new", "name": "ticket_form_history", "database": "db", "comment": null, "owner": null}, "columns": {"id": {"type": "INT64", "index": 1, "name": "id", "comment": null}, "updated_at": {"type": "TIMESTAMP", "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": "TIMESTAMP", "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": 235.0, "include": true, "description": "Approximate count of rows in this table"}, "num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 22674.0, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.zendesk_source.zendesk.ticket_form_history"}}, "errors": null} \ No newline at end of file diff --git a/docs/index.html b/docs/index.html index 360349ab..0c4d0ec4 100644 --- a/docs/index.html +++ b/docs/index.html @@ -8,7 +8,7 @@ - + @@ -16,17 +16,17 @@ - + - +
-