diff --git a/.circleci/config.yml b/.circleci/config.yml
index 244fb2f..a20989a 100644
--- a/.circleci/config.yml
+++ b/.circleci/config.yml
@@ -22,6 +22,16 @@ jobs:
pip install -r integration_tests/requirements.txt
mkdir -p ~/.dbt
cp integration_tests/ci/sample.profiles.yml ~/.dbt/profiles.yml
+ - run:
+ name: "Run Tests - Postgres"
+ command: |
+ . venv/bin/activate
+ echo `pwd`
+ cd integration_tests
+ dbt deps
+ dbt seed --target postgres --full-refresh
+ dbt run --target postgres --full-refresh
+ dbt test --target postgres
- run:
name: "Run Tests - Redshift"
command: |
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 178a3db..6cbdda8 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,21 @@
+# dbt_asana_source v0.6.0
+🛠 Deprecated columns fix 🛠
+## 🚨 Breaking Changes 🚨
+- As per our Release Notes for the Asana connector, this new version of the package removes deprecated columns from the Task table (https://fivetran.com/docs/applications/asana/changelog#june2021) - please refer to the June 2021 and May 2021 release notes. The following columns have been deprecated from the Task table:
+ - `assingee_status`
+ - `hearted` - the `liked` column has been added to replace hearted
+ - `num_hearts` - the `num_likes` column has been added to replace num_hearts
+Please be sure to update your queries.
+
+## 🎉 Features 🎉
+PR [#24](https://github.com/fivetran/dbt_asana_source/pull/24) introduced the following updates.
+- PostgreSQL compatibility
+- Updated README for enhanced user experience
+- Add source identifiers to give users more dynamic flexibility
+
+## Contributors
+- @fivetran-poonamagate ([#21](https://github.com/fivetran/dbt_asana_source/pull/21)).
+
# dbt_asana_source v0.5.1
## Under the Hood
- Leveraged the `{{ dbt_utils.type_timestamp() }}` macro within the staging models for all timestamp fields.
diff --git a/README.md b/README.md
index a1c443b..d6bd5f2 100644
--- a/README.md
+++ b/README.md
@@ -1,42 +1,45 @@
-[](https://opensource.org/licenses/Apache-2.0)
-# Asana
-
-This package models Asana data from [Fivetran's connector](https://fivetran.com/docs/applications/asana). It uses data in the format described by [this ERD](https://fivetran.com/docs/applications/asana#schemainformation).
-
-This package enriches your Fivetran data by doing the following:
-* Adds descriptions to tables and columns that are synced using Fivetran
-* Adds freshness tests to source data
-* Adds column-level testing where applicable. For example, all primary keys are tested for uniqueness and non-null values.
-* Models staging tables, which will be used in our transform package
-
-## Models
-
-This package contains staging models, designed to work simultaneously with our [Asana transform package](https://github.com/fivetran/dbt_asana). The staging models:
-* Remove any rows that are soft-deleted
-* Name columns consistently across all packages:
- * Boolean fields are prefixed with `is_` or `has_`
- * Timestamps are appended with `_at`
- * ID primary keys are prefixed with the name of the table. For example, the user table's ID column is renamed user_id.
- * Foreign keys include the table that they refer to. For example, the project table's owner ID column is renamed owner_user_id.
-
-## Installation Instructions
-Check [dbt Hub](https://hub.getdbt.com/) for the latest installation instructions, or [read the dbt docs](https://docs.getdbt.com/docs/package-management) for more information on installing packages.
-
-Include in your `packages.yml`
-
+
+
+
+
+
+
+
+
+
+
+
+# Asana Source dbt Package ([Docs](https://fivetran.github.io/dbt_asana_source/))
+# 📣 What does this dbt package do?
+- Materializes [Asana staging tables](https://fivetran.github.io/dbt_asana_source/#!/overview/asana_source/models/?g_v=1&g_e=seeds), which leverage data in the format described by [this ERD](https://fivetran.com/docs/applications/asana#schemainformation). These staging tables clean, test, and prepare your Asana data from [Fivetran's connector](https://fivetran.com/docs/applications/asana) for analysis by doing the following:
+ - Names columns for consistency across all packages and for easier analysis
+ - Removes any rows that are soft-deleted
+ - Adds freshness tests to source data
+ - Adds column-level testing where applicable. For example, all primary keys are tested for uniqueness and non-null values.
+- Generates a comprehensive data dictionary of your Asana data through the [dbt docs site](https://fivetran.github.io/dbt_asana_source/).
+- These tables are designed to work simultaneously with our [Asana transformation package](https://github.com/fivetran/dbt_asana).
+
+# 🎯 How do I use the dbt package?
+## Step 1: Prerequisites
+To use this dbt package, you must have the following:
+
+- At least one Fivetran Asana connector syncing data into your destination.
+- A **BigQuery**, **Snowflake**, **Redshift**, or **PostgreSQL** destination.
+
+## Step 2: Install the package
+Include the following asana_source package version in your `packages.yml` file.
+> TIP: Check [dbt Hub](https://hub.getdbt.com/) for the latest installation instructions, or [read the dbt docs](https://docs.getdbt.com/docs/package-management) for more information on installing packages.
```yaml
packages:
- package: fivetran/asana_source
- version: [">=0.5.0", "<0.6.0"]
+ version: [">=0.6.0", "<0.7.0"]
```
-## Configuration
-By default, this package will run using your target database and the `asana` schema. If this is not where your Asana data is (perhaps your Asana schema is `asana_fivetran`), add the following configuration to your `dbt_project.yml` file:
+## Step 3: Define database and schema variables
+By default, this package runs using your destination and the `asana` schema. If this is not where your Asana data is (for example, if your Asana schema is named `asana_fivetran`), add the following configuration to your root `dbt_project.yml` file:
```yml
-# dbt_project.yml
-
-...
config-version: 2
vars:
@@ -44,49 +47,67 @@ vars:
asana_database: your_database_name
asana_schema: your_schema_name
```
+## (Optional) Step 4: Additional configurations
+Expand for configurations
-To add additional columns to tasks use the pass-through column variable. This is useful for adding custom fields not already included in this package.
+### Passing Through Additional Columns
+To add additional columns to tasks use the pass-through column variable. This is useful for adding custom fields not already included in this package.
```yml
-# dbt_project.yml
-
-...
vars:
asana_source:
task_pass_through_columns: [custom_status, custom_department]
```
### Changing the Build Schema
-By default this package will build the Asana staging models within a schema titled ( + `_stg_asana`) in your target database. If this is not where you would like your Asana staging data to be written to, add the following configuration to your `dbt_project.yml` file:
+By default this package will build the Asana staging models within a schema titled ( + `_stg_asana`) in your destination. If this is not where you would like your Asana staging data to be written to, add the following configuration to your root `dbt_project.yml` file:
```yml
-# dbt_project.yml
-
-...
models:
asana_source:
+schema: my_new_schema_name # leave blank for just the target_schema
```
-## Database support
-This package is compatible with BigQuery, Snowflake, and Redshift.
+### Change the source table references
+If an individual source table has a different name than the package expects, add the table name as it appears in your destination to the respective variable:
+
+> IMPORTANT: See this project's [`dbt_project.yml`](https://github.com/fivetran/dbt_asana_source/blob/main/dbt_project.yml) variable declarations to see the expected names.
+
+```yml
+vars:
+ asana__identifier: your_table_name
+```
+
+
+
+## (Optional) Step 5: Orchestrate your models with Fivetran Transformations for dbt Core™
+Expand for more details
+
+Fivetran offers the ability for you to orchestrate your dbt project through [Fivetran Transformations for dbt Core™](https://fivetran.com/docs/transformations/dbt). Learn how to set up your project for orchestration through Fivetran in our [Transformations for dbt Core™ setup guides](https://fivetran.com/docs/transformations/dbt#setupguide).
+
+
+
+# 🔍 Does this package have dependencies?
+This dbt package is dependent on the following dbt packages. Please be aware that these dependencies are installed by default within this package. For more information on the following packages, refer to the [dbt hub](https://hub.getdbt.com/) site.
+> IMPORTANT: If you have any of these dependent packages in your own `packages.yml` file, we highly recommend that you remove them from your root `packages.yml` to avoid package version conflicts.
+```yml
+packages:
+ - package: fivetran/fivetran_utils
+ version: [">=0.3.0", "<0.4.0"]
+
+ - package: dbt-labs/dbt_utils
+ version: [">=0.8.0", "<0.9.0"]
+```
+# 🙌 How is this package maintained and can I contribute?
+## Package Maintenance
+The Fivetran team maintaining this package _only_ maintains the latest version of the package. We highly recommend that you stay consistent with the [latest version](https://hub.getdbt.com/fivetran/asana_source/latest/) of the package and refer to the [CHANGELOG](https://github.com/fivetran/dbt_asana_source/blob/main/CHANGELOG.md) and release notes for more information on changes across versions.
## Contributions
+A small team of analytics engineers at Fivetran develops these dbt packages. However, the packages are made better by community contributions!
+
+We highly encourage and welcome contributions to this package. Check out [this dbt Discourse article](https://discourse.getdbt.com/t/contributing-to-a-dbt-package/657) to learn how to contribute to a dbt package!
-Additional contributions to this package are very welcome! Please create issues
-or open PRs against `main`. Check out
-[this post](https://discourse.getdbt.com/t/contributing-to-a-dbt-package/657)
-on the best workflow for contributing to a package.
-
-## Resources:
-- Provide [feedback](https://www.surveymonkey.com/r/DQ7K7WW) on our existing dbt packages or what you'd like to see next
-- Have questions, feedback, or need help? Book a time during our office hours [using Calendly](https://calendly.com/fivetran-solutions-team/fivetran-solutions-team-office-hours) or email us at solutions@fivetran.com
-- Find all of Fivetran's pre-built dbt packages in our [dbt hub](https://hub.getdbt.com/fivetran/)
-- Learn how to orchestrate your models with [Fivetran Transformations for dbt Core™](https://fivetran.com/docs/transformations/dbt)
-- Learn more about Fivetran overall [in our docs](https://fivetran.com/docs)
-- Check out [Fivetran's blog](https://fivetran.com/blog)
-- Learn more about dbt [in the dbt docs](https://docs.getdbt.com/docs/introduction)
-- Check out [Discourse](https://discourse.getdbt.com/) for commonly asked questions and answers
-- Join the [chat](http://slack.getdbt.com/) on Slack for live discussions and support
-- Find [dbt events](https://events.getdbt.com) near you
-- Check out [the dbt blog](https://blog.getdbt.com/) for the latest news on dbt's development and best practices
+# 🏪 Are there any resources available?
+- If you have questions or want to reach out for help, please refer to the [GitHub Issue](https://github.com/fivetran/dbt_asana_source/issues/new/choose) section to find the right avenue of support for you.
+- If you would like to provide feedback to the dbt package team at Fivetran or would like to request a new dbt package, fill out our [Feedback Form](https://www.surveymonkey.com/r/DQ7K7WW).
+- Have questions or just want to say hi? Book a time during our office hours [on Calendly](https://calendly.com/fivetran-solutions-team/fivetran-solutions-team-office-hours) or email us at solutions@fivetran.com.
\ No newline at end of file
diff --git a/dbt_project.yml b/dbt_project.yml
index b60d054..b203d57 100644
--- a/dbt_project.yml
+++ b/dbt_project.yml
@@ -1,7 +1,7 @@
config-version: 2
name: 'asana_source'
-version: '0.5.1'
+version: '0.6.0'
require-dbt-version: [">=1.0.0", "<2.0.0"]
diff --git a/docs/catalog.json b/docs/catalog.json
index 21e9b2a..0d74639 100644
--- a/docs/catalog.json
+++ b/docs/catalog.json
@@ -1 +1 @@
-{"metadata": {"dbt_schema_version": "https://schemas.getdbt.com/dbt/catalog/v1.json", "dbt_version": "1.0.0", "generated_at": "2022-07-11T22:12:25.580948Z", "invocation_id": "fe278798-a8f1-428d-abca-bea216b78c92", "env": {}}, "nodes": {"seed.asana_source_integration_tests.project_data": {"metadata": {"type": "table", "schema": "asana_source_integration_tests", "name": "project_data", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"id": {"type": "INT64", "index": 1, "name": "id", "comment": null}, "_fivetran_deleted": {"type": "BOOL", "index": 2, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "TIMESTAMP", "index": 3, "name": "_fivetran_synced", "comment": null}, "archived": {"type": "BOOL", "index": 4, "name": "archived", "comment": null}, "color": {"type": "STRING", "index": 5, "name": "color", "comment": null}, "created_at": {"type": "DATETIME", "index": 6, "name": "created_at", "comment": null}, "current_status": {"type": "STRING", "index": 7, "name": "current_status", "comment": null}, "due_date": {"type": "DATETIME", "index": 8, "name": "due_date", "comment": null}, "modified_at": {"type": "DATETIME", "index": 9, "name": "modified_at", "comment": null}, "name": {"type": "STRING", "index": 10, "name": "name", "comment": null}, "notes": {"type": "STRING", "index": 11, "name": "notes", "comment": null}, "owner_id": {"type": "INT64", "index": 12, "name": "owner_id", "comment": null}, "public": {"type": "INT64", "index": 13, "name": "public", "comment": null}, "team_id": {"type": "INT64", "index": 14, "name": "team_id", "comment": null}, "workspace_id": {"type": "INT64", "index": 15, "name": "workspace_id", "comment": null}}, "stats": {"num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 1710.0, "include": 1.0, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 16.0, "include": 1.0, "description": "Approximate count of rows in this table"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.asana_source_integration_tests.project_data"}, "seed.asana_source_integration_tests.task_data": {"metadata": {"type": "table", "schema": "asana_source_integration_tests", "name": "task_data", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"id": {"type": "INT64", "index": 1, "name": "id", "comment": null}, "_fivetran_synced": {"type": "TIMESTAMP", "index": 2, "name": "_fivetran_synced", "comment": null}, "assignee_id": {"type": "INT64", "index": 3, "name": "assignee_id", "comment": null}, "assignee_status": {"type": "STRING", "index": 4, "name": "assignee_status", "comment": null}, "completed": {"type": "BOOL", "index": 5, "name": "completed", "comment": null}, "completed_at": {"type": "INT64", "index": 6, "name": "completed_at", "comment": null}, "completed_by_id": {"type": "INT64", "index": 7, "name": "completed_by_id", "comment": null}, "created_at": {"type": "DATETIME", "index": 8, "name": "created_at", "comment": null}, "due_at": {"type": "INT64", "index": 9, "name": "due_at", "comment": null}, "due_on": {"type": "INT64", "index": 10, "name": "due_on", "comment": null}, "hearted": {"type": "BOOL", "index": 11, "name": "hearted", "comment": null}, "modified_at": {"type": "DATETIME", "index": 12, "name": "modified_at", "comment": null}, "name": {"type": "STRING", "index": 13, "name": "name", "comment": null}, "notes": {"type": "INT64", "index": 14, "name": "notes", "comment": null}, "num_hearts": {"type": "INT64", "index": 15, "name": "num_hearts", "comment": null}, "parent_id": {"type": "INT64", "index": 16, "name": "parent_id", "comment": null}, "start_on": {"type": "INT64", "index": 17, "name": "start_on", "comment": null}, "workspace_id": {"type": "INT64", "index": 18, "name": "workspace_id", "comment": null}}, "stats": {"num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 99.0, "include": 1.0, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 1.0, "include": 1.0, "description": "Approximate count of rows in this table"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.asana_source_integration_tests.task_data"}, "seed.asana_source_integration_tests.task_follower_data": {"metadata": {"type": "table", "schema": "asana_source_integration_tests", "name": "task_follower_data", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"task_id": {"type": "INT64", "index": 1, "name": "task_id", "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_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 24.0, "include": 1.0, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 1.0, "include": 1.0, "description": "Approximate count of rows in this table"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.asana_source_integration_tests.task_follower_data"}, "seed.asana_source_integration_tests.tag_data": {"metadata": {"type": "table", "schema": "asana_source_integration_tests", "name": "tag_data", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"id": {"type": "INT64", "index": 1, "name": "id", "comment": null}, "_fivetran_deleted": {"type": "BOOL", "index": 2, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "TIMESTAMP", "index": 3, "name": "_fivetran_synced", "comment": null}, "color": {"type": "INT64", "index": 4, "name": "color", "comment": null}, "created_at": {"type": "DATETIME", "index": 5, "name": "created_at", "comment": null}, "message": {"type": "INT64", "index": 6, "name": "message", "comment": null}, "name": {"type": "STRING", "index": 7, "name": "name", "comment": null}, "notes": {"type": "INT64", "index": 8, "name": "notes", "comment": null}, "workspace_id": {"type": "INT64", "index": 9, "name": "workspace_id", "comment": null}}, "stats": {"num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 1139.0, "include": 1.0, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 17.0, "include": 1.0, "description": "Approximate count of rows in this table"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.asana_source_integration_tests.tag_data"}, "seed.asana_source_integration_tests.user_data": {"metadata": {"type": "table", "schema": "asana_source_integration_tests", "name": "user_data", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"id": {"type": "INT64", "index": 1, "name": "id", "comment": null}, "_fivetran_deleted": {"type": "BOOL", "index": 2, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "TIMESTAMP", "index": 3, "name": "_fivetran_synced", "comment": null}, "email": {"type": "STRING", "index": 4, "name": "email", "comment": null}, "name": {"type": "STRING", "index": 5, "name": "name", "comment": null}}, "stats": {"num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 1700.0, "include": 1.0, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 20.0, "include": 1.0, "description": "Approximate count of rows in this table"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.asana_source_integration_tests.user_data"}, "seed.asana_source_integration_tests.task_tag_data": {"metadata": {"type": "table", "schema": "asana_source_integration_tests", "name": "task_tag_data", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"tag_id": {"type": "INT64", "index": 1, "name": "tag_id", "comment": null}, "task_id": {"type": "INT64", "index": 2, "name": "task_id", "comment": null}, "_fivetran_synced": {"type": "TIMESTAMP", "index": 3, "name": "_fivetran_synced", "comment": null}}, "stats": {"num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 96.0, "include": 1.0, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 4.0, "include": 1.0, "description": "Approximate count of rows in this table"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.asana_source_integration_tests.task_tag_data"}, "seed.asana_source_integration_tests.task_section_data": {"metadata": {"type": "table", "schema": "asana_source_integration_tests", "name": "task_section_data", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"section_id": {"type": "INT64", "index": 1, "name": "section_id", "comment": null}, "task_id": {"type": "INT64", "index": 2, "name": "task_id", "comment": null}, "_fivetran_synced": {"type": "TIMESTAMP", "index": 3, "name": "_fivetran_synced", "comment": null}}, "stats": {"num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 48.0, "include": 1.0, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 2.0, "include": 1.0, "description": "Approximate count of rows in this table"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.asana_source_integration_tests.task_section_data"}, "seed.asana_source_integration_tests.team_data": {"metadata": {"type": "table", "schema": "asana_source_integration_tests", "name": "team_data", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"id": {"type": "INT64", "index": 1, "name": "id", "comment": null}, "_fivetran_deleted": {"type": "BOOL", "index": 2, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "TIMESTAMP", "index": 3, "name": "_fivetran_synced", "comment": null}, "name": {"type": "STRING", "index": 4, "name": "name", "comment": null}, "organization_id": {"type": "INT64", "index": 5, "name": "organization_id", "comment": null}}, "stats": {"num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 1475.0, "include": 1.0, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 25.0, "include": 1.0, "description": "Approximate count of rows in this table"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.asana_source_integration_tests.team_data"}, "seed.asana_source_integration_tests.story_data": {"metadata": {"type": "table", "schema": "asana_source_integration_tests", "name": "story_data", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"id": {"type": "INT64", "index": 1, "name": "id", "comment": null}, "_fivetran_synced": {"type": "TIMESTAMP", "index": 2, "name": "_fivetran_synced", "comment": null}, "created_at": {"type": "DATETIME", "index": 3, "name": "created_at", "comment": null}, "created_by_id": {"type": "INT64", "index": 4, "name": "created_by_id", "comment": null}, "hearted": {"type": "INT64", "index": 5, "name": "hearted", "comment": null}, "num_hearts": {"type": "INT64", "index": 6, "name": "num_hearts", "comment": null}, "source": {"type": "STRING", "index": 7, "name": "source", "comment": null}, "target_id": {"type": "INT64", "index": 8, "name": "target_id", "comment": null}, "text": {"type": "STRING", "index": 9, "name": "text", "comment": null}, "type": {"type": "STRING", "index": 10, "name": "type", "comment": null}}, "stats": {"num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 285.0, "include": 1.0, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 3.0, "include": 1.0, "description": "Approximate count of rows in this table"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.asana_source_integration_tests.story_data"}, "seed.asana_source_integration_tests.section_data": {"metadata": {"type": "table", "schema": "asana_source_integration_tests", "name": "section_data", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"id": {"type": "INT64", "index": 1, "name": "id", "comment": null}, "_fivetran_synced": {"type": "TIMESTAMP", "index": 2, "name": "_fivetran_synced", "comment": null}, "created_at": {"type": "DATETIME", "index": 3, "name": "created_at", "comment": null}, "name": {"type": "STRING", "index": 4, "name": "name", "comment": null}, "project_id": {"type": "INT64", "index": 5, "name": "project_id", "comment": null}}, "stats": {"num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 858.0, "include": 1.0, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 13.0, "include": 1.0, "description": "Approximate count of rows in this table"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.asana_source_integration_tests.section_data"}, "seed.asana_source_integration_tests.project_task_data": {"metadata": {"type": "table", "schema": "asana_source_integration_tests", "name": "project_task_data", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"project_id": {"type": "INT64", "index": 1, "name": "project_id", "comment": null}, "task_id": {"type": "INT64", "index": 2, "name": "task_id", "comment": null}, "_fivetran_synced": {"type": "TIMESTAMP", "index": 3, "name": "_fivetran_synced", "comment": null}}, "stats": {"num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 48.0, "include": 1.0, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 2.0, "include": 1.0, "description": "Approximate count of rows in this table"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.asana_source_integration_tests.project_task_data"}, "model.asana_source.stg_asana__project_tmp": {"metadata": {"type": "table", "schema": "asana_source_integration_tests_stg_asana", "name": "stg_asana__project_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}, "archived": {"type": "BOOL", "index": 4, "name": "archived", "comment": null}, "color": {"type": "STRING", "index": 5, "name": "color", "comment": null}, "created_at": {"type": "DATETIME", "index": 6, "name": "created_at", "comment": null}, "current_status": {"type": "STRING", "index": 7, "name": "current_status", "comment": null}, "due_date": {"type": "DATETIME", "index": 8, "name": "due_date", "comment": null}, "modified_at": {"type": "DATETIME", "index": 9, "name": "modified_at", "comment": null}, "name": {"type": "STRING", "index": 10, "name": "name", "comment": null}, "notes": {"type": "STRING", "index": 11, "name": "notes", "comment": null}, "owner_id": {"type": "INT64", "index": 12, "name": "owner_id", "comment": null}, "public": {"type": "INT64", "index": 13, "name": "public", "comment": null}, "team_id": {"type": "INT64", "index": 14, "name": "team_id", "comment": null}, "workspace_id": {"type": "INT64", "index": 15, "name": "workspace_id", "comment": null}}, "stats": {"num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 1710.0, "include": 1.0, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 16.0, "include": 1.0, "description": "Approximate count of rows in this table"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.asana_source.stg_asana__project_tmp"}, "model.asana_source.stg_asana__section_tmp": {"metadata": {"type": "table", "schema": "asana_source_integration_tests_stg_asana", "name": "stg_asana__section_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": "DATETIME", "index": 3, "name": "created_at", "comment": null}, "name": {"type": "STRING", "index": 4, "name": "name", "comment": null}, "project_id": {"type": "INT64", "index": 5, "name": "project_id", "comment": null}}, "stats": {"num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 858.0, "include": 1.0, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 13.0, "include": 1.0, "description": "Approximate count of rows in this table"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.asana_source.stg_asana__section_tmp"}, "model.asana_source.stg_asana__project_task_tmp": {"metadata": {"type": "table", "schema": "asana_source_integration_tests_stg_asana", "name": "stg_asana__project_task_tmp", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"project_id": {"type": "INT64", "index": 1, "name": "project_id", "comment": null}, "task_id": {"type": "INT64", "index": 2, "name": "task_id", "comment": null}, "_fivetran_synced": {"type": "TIMESTAMP", "index": 3, "name": "_fivetran_synced", "comment": null}}, "stats": {"num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 48.0, "include": 1.0, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 2.0, "include": 1.0, "description": "Approximate count of rows in this table"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.asana_source.stg_asana__project_task_tmp"}, "model.asana_source.stg_asana__user": {"metadata": {"type": "table", "schema": "asana_source_integration_tests_stg_asana", "name": "stg_asana__user", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"user_id": {"type": "INT64", "index": 1, "name": "user_id", "comment": null}, "email": {"type": "STRING", "index": 2, "name": "email", "comment": null}, "user_name": {"type": "STRING", "index": 3, "name": "user_name", "comment": null}}, "stats": {"num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 1520.0, "include": 1.0, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 20.0, "include": 1.0, "description": "Approximate count of rows in this table"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.asana_source.stg_asana__user"}, "model.asana_source.stg_asana__team": {"metadata": {"type": "table", "schema": "asana_source_integration_tests_stg_asana", "name": "stg_asana__team", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"team_id": {"type": "INT64", "index": 1, "name": "team_id", "comment": null}, "team_name": {"type": "STRING", "index": 2, "name": "team_name", "comment": null}}, "stats": {"num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 1050.0, "include": 1.0, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 25.0, "include": 1.0, "description": "Approximate count of rows in this table"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.asana_source.stg_asana__team"}, "model.asana_source.stg_asana__user_tmp": {"metadata": {"type": "table", "schema": "asana_source_integration_tests_stg_asana", "name": "stg_asana__user_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}, "email": {"type": "STRING", "index": 4, "name": "email", "comment": null}, "name": {"type": "STRING", "index": 5, "name": "name", "comment": null}}, "stats": {"num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 1700.0, "include": 1.0, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 20.0, "include": 1.0, "description": "Approximate count of rows in this table"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.asana_source.stg_asana__user_tmp"}, "model.asana_source.stg_asana__section": {"metadata": {"type": "table", "schema": "asana_source_integration_tests_stg_asana", "name": "stg_asana__section", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"section_id": {"type": "INT64", "index": 1, "name": "section_id", "comment": null}, "created_at": {"type": "TIMESTAMP", "index": 2, "name": "created_at", "comment": null}, "section_name": {"type": "STRING", "index": 3, "name": "section_name", "comment": null}, "project_id": {"type": "INT64", "index": 4, "name": "project_id", "comment": null}}, "stats": {"num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 754.0, "include": 1.0, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 13.0, "include": 1.0, "description": "Approximate count of rows in this table"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.asana_source.stg_asana__section"}, "model.asana_source.stg_asana__task_tag_tmp": {"metadata": {"type": "table", "schema": "asana_source_integration_tests_stg_asana", "name": "stg_asana__task_tag_tmp", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"tag_id": {"type": "INT64", "index": 1, "name": "tag_id", "comment": null}, "task_id": {"type": "INT64", "index": 2, "name": "task_id", "comment": null}, "_fivetran_synced": {"type": "TIMESTAMP", "index": 3, "name": "_fivetran_synced", "comment": null}}, "stats": {"num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 96.0, "include": 1.0, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 4.0, "include": 1.0, "description": "Approximate count of rows in this table"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.asana_source.stg_asana__task_tag_tmp"}, "model.asana_source.stg_asana__project": {"metadata": {"type": "table", "schema": "asana_source_integration_tests_stg_asana", "name": "stg_asana__project", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"project_id": {"type": "INT64", "index": 1, "name": "project_id", "comment": null}, "is_archived": {"type": "BOOL", "index": 2, "name": "is_archived", "comment": null}, "created_at": {"type": "TIMESTAMP", "index": 3, "name": "created_at", "comment": null}, "current_status": {"type": "STRING", "index": 4, "name": "current_status", "comment": null}, "due_date": {"type": "TIMESTAMP", "index": 5, "name": "due_date", "comment": null}, "modified_at": {"type": "TIMESTAMP", "index": 6, "name": "modified_at", "comment": null}, "project_name": {"type": "STRING", "index": 7, "name": "project_name", "comment": null}, "owner_user_id": {"type": "INT64", "index": 8, "name": "owner_user_id", "comment": null}, "is_public": {"type": "INT64", "index": 9, "name": "is_public", "comment": null}, "team_id": {"type": "INT64", "index": 10, "name": "team_id", "comment": null}, "workspace_id": {"type": "INT64", "index": 11, "name": "workspace_id", "comment": null}, "notes": {"type": "STRING", "index": 12, "name": "notes", "comment": null}}, "stats": {"num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 1448.0, "include": 1.0, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 16.0, "include": 1.0, "description": "Approximate count of rows in this table"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.asana_source.stg_asana__project"}, "model.asana_source.stg_asana__story": {"metadata": {"type": "table", "schema": "asana_source_integration_tests_stg_asana", "name": "stg_asana__story", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"story_id": {"type": "INT64", "index": 1, "name": "story_id", "comment": null}, "created_at": {"type": "TIMESTAMP", "index": 2, "name": "created_at", "comment": null}, "created_by_user_id": {"type": "INT64", "index": 3, "name": "created_by_user_id", "comment": null}, "target_task_id": {"type": "INT64", "index": 4, "name": "target_task_id", "comment": null}, "story_content": {"type": "STRING", "index": 5, "name": "story_content", "comment": null}, "event_type": {"type": "STRING", "index": 6, "name": "event_type", "comment": null}}, "stats": {"num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 222.0, "include": 1.0, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 3.0, "include": 1.0, "description": "Approximate count of rows in this table"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.asana_source.stg_asana__story"}, "model.asana_source.stg_asana__task_tmp": {"metadata": {"type": "table", "schema": "asana_source_integration_tests_stg_asana", "name": "stg_asana__task_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}, "assignee_id": {"type": "INT64", "index": 3, "name": "assignee_id", "comment": null}, "assignee_status": {"type": "STRING", "index": 4, "name": "assignee_status", "comment": null}, "completed": {"type": "BOOL", "index": 5, "name": "completed", "comment": null}, "completed_at": {"type": "INT64", "index": 6, "name": "completed_at", "comment": null}, "completed_by_id": {"type": "INT64", "index": 7, "name": "completed_by_id", "comment": null}, "created_at": {"type": "DATETIME", "index": 8, "name": "created_at", "comment": null}, "due_at": {"type": "INT64", "index": 9, "name": "due_at", "comment": null}, "due_on": {"type": "INT64", "index": 10, "name": "due_on", "comment": null}, "hearted": {"type": "BOOL", "index": 11, "name": "hearted", "comment": null}, "modified_at": {"type": "DATETIME", "index": 12, "name": "modified_at", "comment": null}, "name": {"type": "STRING", "index": 13, "name": "name", "comment": null}, "notes": {"type": "INT64", "index": 14, "name": "notes", "comment": null}, "num_hearts": {"type": "INT64", "index": 15, "name": "num_hearts", "comment": null}, "parent_id": {"type": "INT64", "index": 16, "name": "parent_id", "comment": null}, "start_on": {"type": "INT64", "index": 17, "name": "start_on", "comment": null}, "workspace_id": {"type": "INT64", "index": 18, "name": "workspace_id", "comment": null}}, "stats": {"num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 99.0, "include": 1.0, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 1.0, "include": 1.0, "description": "Approximate count of rows in this table"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.asana_source.stg_asana__task_tmp"}, "model.asana_source.stg_asana__story_tmp": {"metadata": {"type": "table", "schema": "asana_source_integration_tests_stg_asana", "name": "stg_asana__story_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": "DATETIME", "index": 3, "name": "created_at", "comment": null}, "created_by_id": {"type": "INT64", "index": 4, "name": "created_by_id", "comment": null}, "hearted": {"type": "INT64", "index": 5, "name": "hearted", "comment": null}, "num_hearts": {"type": "INT64", "index": 6, "name": "num_hearts", "comment": null}, "source": {"type": "STRING", "index": 7, "name": "source", "comment": null}, "target_id": {"type": "INT64", "index": 8, "name": "target_id", "comment": null}, "text": {"type": "STRING", "index": 9, "name": "text", "comment": null}, "type": {"type": "STRING", "index": 10, "name": "type", "comment": null}}, "stats": {"num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 285.0, "include": 1.0, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 3.0, "include": 1.0, "description": "Approximate count of rows in this table"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.asana_source.stg_asana__story_tmp"}, "model.asana_source.stg_asana__tag": {"metadata": {"type": "table", "schema": "asana_source_integration_tests_stg_asana", "name": "stg_asana__tag", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"tag_id": {"type": "INT64", "index": 1, "name": "tag_id", "comment": null}, "tag_name": {"type": "STRING", "index": 2, "name": "tag_name", "comment": null}, "created_at": {"type": "TIMESTAMP", "index": 3, "name": "created_at", "comment": null}}, "stats": {"num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 850.0, "include": 1.0, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 17.0, "include": 1.0, "description": "Approximate count of rows in this table"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.asana_source.stg_asana__tag"}, "model.asana_source.stg_asana__task_section": {"metadata": {"type": "table", "schema": "asana_source_integration_tests_stg_asana", "name": "stg_asana__task_section", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"section_id": {"type": "INT64", "index": 1, "name": "section_id", "comment": null}, "task_id": {"type": "INT64", "index": 2, "name": "task_id", "comment": null}}, "stats": {"num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 32.0, "include": 1.0, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 2.0, "include": 1.0, "description": "Approximate count of rows in this table"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.asana_source.stg_asana__task_section"}, "model.asana_source.stg_asana__task_follower_tmp": {"metadata": {"type": "table", "schema": "asana_source_integration_tests_stg_asana", "name": "stg_asana__task_follower_tmp", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"task_id": {"type": "INT64", "index": 1, "name": "task_id", "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_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 24.0, "include": 1.0, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 1.0, "include": 1.0, "description": "Approximate count of rows in this table"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.asana_source.stg_asana__task_follower_tmp"}, "model.asana_source.stg_asana__task_follower": {"metadata": {"type": "table", "schema": "asana_source_integration_tests_stg_asana", "name": "stg_asana__task_follower", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"task_id": {"type": "INT64", "index": 1, "name": "task_id", "comment": null}, "user_id": {"type": "INT64", "index": 2, "name": "user_id", "comment": null}}, "stats": {"num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 16.0, "include": 1.0, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 1.0, "include": 1.0, "description": "Approximate count of rows in this table"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.asana_source.stg_asana__task_follower"}, "model.asana_source.stg_asana__team_tmp": {"metadata": {"type": "table", "schema": "asana_source_integration_tests_stg_asana", "name": "stg_asana__team_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}, "name": {"type": "STRING", "index": 4, "name": "name", "comment": null}, "organization_id": {"type": "INT64", "index": 5, "name": "organization_id", "comment": null}}, "stats": {"num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 1475.0, "include": 1.0, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 25.0, "include": 1.0, "description": "Approximate count of rows in this table"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.asana_source.stg_asana__team_tmp"}, "model.asana_source.stg_asana__task_tag": {"metadata": {"type": "table", "schema": "asana_source_integration_tests_stg_asana", "name": "stg_asana__task_tag", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"tag_id": {"type": "INT64", "index": 1, "name": "tag_id", "comment": null}, "task_id": {"type": "INT64", "index": 2, "name": "task_id", "comment": null}}, "stats": {"num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 64.0, "include": 1.0, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 4.0, "include": 1.0, "description": "Approximate count of rows in this table"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.asana_source.stg_asana__task_tag"}, "model.asana_source.stg_asana__tag_tmp": {"metadata": {"type": "table", "schema": "asana_source_integration_tests_stg_asana", "name": "stg_asana__tag_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}, "color": {"type": "INT64", "index": 4, "name": "color", "comment": null}, "created_at": {"type": "DATETIME", "index": 5, "name": "created_at", "comment": null}, "message": {"type": "INT64", "index": 6, "name": "message", "comment": null}, "name": {"type": "STRING", "index": 7, "name": "name", "comment": null}, "notes": {"type": "INT64", "index": 8, "name": "notes", "comment": null}, "workspace_id": {"type": "INT64", "index": 9, "name": "workspace_id", "comment": null}}, "stats": {"num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 1139.0, "include": 1.0, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 17.0, "include": 1.0, "description": "Approximate count of rows in this table"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.asana_source.stg_asana__tag_tmp"}, "model.asana_source.stg_asana__project_task": {"metadata": {"type": "table", "schema": "asana_source_integration_tests_stg_asana", "name": "stg_asana__project_task", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"project_id": {"type": "INT64", "index": 1, "name": "project_id", "comment": null}, "task_id": {"type": "INT64", "index": 2, "name": "task_id", "comment": null}}, "stats": {"num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 32.0, "include": 1.0, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 2.0, "include": 1.0, "description": "Approximate count of rows in this table"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.asana_source.stg_asana__project_task"}, "model.asana_source.stg_asana__task_section_tmp": {"metadata": {"type": "table", "schema": "asana_source_integration_tests_stg_asana", "name": "stg_asana__task_section_tmp", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"section_id": {"type": "INT64", "index": 1, "name": "section_id", "comment": null}, "task_id": {"type": "INT64", "index": 2, "name": "task_id", "comment": null}, "_fivetran_synced": {"type": "TIMESTAMP", "index": 3, "name": "_fivetran_synced", "comment": null}}, "stats": {"num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 48.0, "include": 1.0, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 2.0, "include": 1.0, "description": "Approximate count of rows in this table"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.asana_source.stg_asana__task_section_tmp"}}, "sources": {}, "errors": null}
\ No newline at end of file
+{"metadata": {"dbt_schema_version": "https://schemas.getdbt.com/dbt/catalog/v1.json", "dbt_version": "1.2.0", "generated_at": "2022-09-16T23:08:11.157978Z", "invocation_id": "a0ad4c99-ae38-43ca-83f2-64ecbe18fa03", "env": {}}, "nodes": {"seed.asana_source_integration_tests.section_data": {"metadata": {"type": "table", "schema": "asana_source_integration_source", "name": "section_data", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"id": {"type": "INT64", "index": 1, "name": "id", "comment": null}, "_fivetran_synced": {"type": "TIMESTAMP", "index": 2, "name": "_fivetran_synced", "comment": null}, "created_at": {"type": "DATETIME", "index": 3, "name": "created_at", "comment": null}, "name": {"type": "STRING", "index": 4, "name": "name", "comment": null}, "project_id": {"type": "INT64", "index": 5, "name": "project_id", "comment": null}}, "stats": {"num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 858.0, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 13.0, "include": true, "description": "Approximate count of rows in this table"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.asana_source_integration_tests.section_data"}, "seed.asana_source_integration_tests.user_data": {"metadata": {"type": "table", "schema": "asana_source_integration_source", "name": "user_data", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"id": {"type": "INT64", "index": 1, "name": "id", "comment": null}, "_fivetran_deleted": {"type": "BOOL", "index": 2, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "TIMESTAMP", "index": 3, "name": "_fivetran_synced", "comment": null}, "email": {"type": "STRING", "index": 4, "name": "email", "comment": null}, "name": {"type": "STRING", "index": 5, "name": "name", "comment": null}}, "stats": {"num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 1700.0, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 20.0, "include": true, "description": "Approximate count of rows in this table"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.asana_source_integration_tests.user_data"}, "seed.asana_source_integration_tests.task_section_data": {"metadata": {"type": "table", "schema": "asana_source_integration_source", "name": "task_section_data", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"section_id": {"type": "INT64", "index": 1, "name": "section_id", "comment": null}, "task_id": {"type": "INT64", "index": 2, "name": "task_id", "comment": null}, "_fivetran_synced": {"type": "TIMESTAMP", "index": 3, "name": "_fivetran_synced", "comment": null}}, "stats": {"num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 48.0, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 2.0, "include": true, "description": "Approximate count of rows in this table"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.asana_source_integration_tests.task_section_data"}, "seed.asana_source_integration_tests.task_tag_data": {"metadata": {"type": "table", "schema": "asana_source_integration_source", "name": "task_tag_data", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"tag_id": {"type": "INT64", "index": 1, "name": "tag_id", "comment": null}, "task_id": {"type": "INT64", "index": 2, "name": "task_id", "comment": null}, "_fivetran_synced": {"type": "TIMESTAMP", "index": 3, "name": "_fivetran_synced", "comment": null}}, "stats": {"num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 96.0, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 4.0, "include": true, "description": "Approximate count of rows in this table"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.asana_source_integration_tests.task_tag_data"}, "seed.asana_source_integration_tests.project_task_data": {"metadata": {"type": "table", "schema": "asana_source_integration_source", "name": "project_task_data", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"project_id": {"type": "INT64", "index": 1, "name": "project_id", "comment": null}, "task_id": {"type": "INT64", "index": 2, "name": "task_id", "comment": null}, "_fivetran_synced": {"type": "TIMESTAMP", "index": 3, "name": "_fivetran_synced", "comment": null}}, "stats": {"num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 48.0, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 2.0, "include": true, "description": "Approximate count of rows in this table"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.asana_source_integration_tests.project_task_data"}, "seed.asana_source_integration_tests.task_follower_data": {"metadata": {"type": "table", "schema": "asana_source_integration_source", "name": "task_follower_data", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"task_id": {"type": "INT64", "index": 1, "name": "task_id", "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_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 24.0, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 1.0, "include": true, "description": "Approximate count of rows in this table"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.asana_source_integration_tests.task_follower_data"}, "seed.asana_source_integration_tests.team_data": {"metadata": {"type": "table", "schema": "asana_source_integration_source", "name": "team_data", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"id": {"type": "INT64", "index": 1, "name": "id", "comment": null}, "_fivetran_deleted": {"type": "BOOL", "index": 2, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "TIMESTAMP", "index": 3, "name": "_fivetran_synced", "comment": null}, "name": {"type": "STRING", "index": 4, "name": "name", "comment": null}, "organization_id": {"type": "INT64", "index": 5, "name": "organization_id", "comment": null}}, "stats": {"num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 1475.0, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 25.0, "include": true, "description": "Approximate count of rows in this table"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.asana_source_integration_tests.team_data"}, "seed.asana_source_integration_tests.task_data": {"metadata": {"type": "table", "schema": "asana_source_integration_source", "name": "task_data", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"id": {"type": "INT64", "index": 1, "name": "id", "comment": null}, "assignee_id": {"type": "INT64", "index": 2, "name": "assignee_id", "comment": null}, "completed": {"type": "BOOL", "index": 3, "name": "completed", "comment": null}, "completed_at": {"type": "TIMESTAMP", "index": 4, "name": "completed_at", "comment": null}, "completed_by_id": {"type": "INT64", "index": 5, "name": "completed_by_id", "comment": null}, "created_at": {"type": "TIMESTAMP", "index": 6, "name": "created_at", "comment": null}, "due_on": {"type": "TIMESTAMP", "index": 7, "name": "due_on", "comment": null}, "due_at": {"type": "TIMESTAMP", "index": 8, "name": "due_at", "comment": null}, "modified_at": {"type": "TIMESTAMP", "index": 9, "name": "modified_at", "comment": null}, "name": {"type": "STRING", "index": 10, "name": "name", "comment": null}, "parent_id": {"type": "INT64", "index": 11, "name": "parent_id", "comment": null}, "start_on": {"type": "TIMESTAMP", "index": 12, "name": "start_on", "comment": null}, "notes": {"type": "STRING", "index": 13, "name": "notes", "comment": null}, "workspace_id": {"type": "INT64", "index": 14, "name": "workspace_id", "comment": null}}, "stats": {"num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 80.0, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 1.0, "include": true, "description": "Approximate count of rows in this table"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.asana_source_integration_tests.task_data"}, "seed.asana_source_integration_tests.project_data": {"metadata": {"type": "table", "schema": "asana_source_integration_source", "name": "project_data", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"id": {"type": "INT64", "index": 1, "name": "id", "comment": null}, "_fivetran_deleted": {"type": "BOOL", "index": 2, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "TIMESTAMP", "index": 3, "name": "_fivetran_synced", "comment": null}, "archived": {"type": "BOOL", "index": 4, "name": "archived", "comment": null}, "color": {"type": "STRING", "index": 5, "name": "color", "comment": null}, "created_at": {"type": "DATETIME", "index": 6, "name": "created_at", "comment": null}, "current_status": {"type": "STRING", "index": 7, "name": "current_status", "comment": null}, "due_date": {"type": "DATETIME", "index": 8, "name": "due_date", "comment": null}, "modified_at": {"type": "DATETIME", "index": 9, "name": "modified_at", "comment": null}, "name": {"type": "STRING", "index": 10, "name": "name", "comment": null}, "notes": {"type": "STRING", "index": 11, "name": "notes", "comment": null}, "owner_id": {"type": "INT64", "index": 12, "name": "owner_id", "comment": null}, "public": {"type": "INT64", "index": 13, "name": "public", "comment": null}, "team_id": {"type": "INT64", "index": 14, "name": "team_id", "comment": null}, "workspace_id": {"type": "INT64", "index": 15, "name": "workspace_id", "comment": null}}, "stats": {"num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 1710.0, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 16.0, "include": true, "description": "Approximate count of rows in this table"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.asana_source_integration_tests.project_data"}, "seed.asana_source_integration_tests.tag_data": {"metadata": {"type": "table", "schema": "asana_source_integration_source", "name": "tag_data", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"id": {"type": "INT64", "index": 1, "name": "id", "comment": null}, "_fivetran_deleted": {"type": "BOOL", "index": 2, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "TIMESTAMP", "index": 3, "name": "_fivetran_synced", "comment": null}, "color": {"type": "INT64", "index": 4, "name": "color", "comment": null}, "created_at": {"type": "DATETIME", "index": 5, "name": "created_at", "comment": null}, "message": {"type": "INT64", "index": 6, "name": "message", "comment": null}, "name": {"type": "STRING", "index": 7, "name": "name", "comment": null}, "notes": {"type": "INT64", "index": 8, "name": "notes", "comment": null}, "workspace_id": {"type": "INT64", "index": 9, "name": "workspace_id", "comment": null}}, "stats": {"num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 1139.0, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 17.0, "include": true, "description": "Approximate count of rows in this table"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.asana_source_integration_tests.tag_data"}, "seed.asana_source_integration_tests.story_data": {"metadata": {"type": "table", "schema": "asana_source_integration_source", "name": "story_data", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"id": {"type": "INT64", "index": 1, "name": "id", "comment": null}, "_fivetran_synced": {"type": "TIMESTAMP", "index": 2, "name": "_fivetran_synced", "comment": null}, "created_at": {"type": "DATETIME", "index": 3, "name": "created_at", "comment": null}, "created_by_id": {"type": "INT64", "index": 4, "name": "created_by_id", "comment": null}, "hearted": {"type": "INT64", "index": 5, "name": "hearted", "comment": null}, "num_hearts": {"type": "INT64", "index": 6, "name": "num_hearts", "comment": null}, "source": {"type": "STRING", "index": 7, "name": "source", "comment": null}, "target_id": {"type": "INT64", "index": 8, "name": "target_id", "comment": null}, "text": {"type": "STRING", "index": 9, "name": "text", "comment": null}, "type": {"type": "STRING", "index": 10, "name": "type", "comment": null}}, "stats": {"num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 285.0, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 3.0, "include": true, "description": "Approximate count of rows in this table"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.asana_source_integration_tests.story_data"}, "model.asana_source.stg_asana__tag_tmp": {"metadata": {"type": "table", "schema": "asana_source_integration_source_stg_asana", "name": "stg_asana__tag_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}, "color": {"type": "INT64", "index": 4, "name": "color", "comment": null}, "created_at": {"type": "DATETIME", "index": 5, "name": "created_at", "comment": null}, "message": {"type": "INT64", "index": 6, "name": "message", "comment": null}, "name": {"type": "STRING", "index": 7, "name": "name", "comment": null}, "notes": {"type": "INT64", "index": 8, "name": "notes", "comment": null}, "workspace_id": {"type": "INT64", "index": 9, "name": "workspace_id", "comment": null}}, "stats": {"num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 1139.0, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 17.0, "include": true, "description": "Approximate count of rows in this table"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.asana_source.stg_asana__tag_tmp"}, "model.asana_source.stg_asana__task_section": {"metadata": {"type": "table", "schema": "asana_source_integration_source_stg_asana", "name": "stg_asana__task_section", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"section_id": {"type": "INT64", "index": 1, "name": "section_id", "comment": null}, "task_id": {"type": "INT64", "index": 2, "name": "task_id", "comment": null}}, "stats": {"num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 32.0, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 2.0, "include": true, "description": "Approximate count of rows in this table"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.asana_source.stg_asana__task_section"}, "model.asana_source.stg_asana__user_tmp": {"metadata": {"type": "table", "schema": "asana_source_integration_source_stg_asana", "name": "stg_asana__user_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}, "email": {"type": "STRING", "index": 4, "name": "email", "comment": null}, "name": {"type": "STRING", "index": 5, "name": "name", "comment": null}}, "stats": {"num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 1700.0, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 20.0, "include": true, "description": "Approximate count of rows in this table"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.asana_source.stg_asana__user_tmp"}, "model.asana_source.stg_asana__story": {"metadata": {"type": "table", "schema": "asana_source_integration_source_stg_asana", "name": "stg_asana__story", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"story_id": {"type": "INT64", "index": 1, "name": "story_id", "comment": null}, "created_at": {"type": "TIMESTAMP", "index": 2, "name": "created_at", "comment": null}, "created_by_user_id": {"type": "INT64", "index": 3, "name": "created_by_user_id", "comment": null}, "target_task_id": {"type": "INT64", "index": 4, "name": "target_task_id", "comment": null}, "story_content": {"type": "STRING", "index": 5, "name": "story_content", "comment": null}, "event_type": {"type": "STRING", "index": 6, "name": "event_type", "comment": null}}, "stats": {"num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 222.0, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 3.0, "include": true, "description": "Approximate count of rows in this table"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.asana_source.stg_asana__story"}, "model.asana_source.stg_asana__section": {"metadata": {"type": "table", "schema": "asana_source_integration_source_stg_asana", "name": "stg_asana__section", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"section_id": {"type": "INT64", "index": 1, "name": "section_id", "comment": null}, "created_at": {"type": "TIMESTAMP", "index": 2, "name": "created_at", "comment": null}, "section_name": {"type": "STRING", "index": 3, "name": "section_name", "comment": null}, "project_id": {"type": "INT64", "index": 4, "name": "project_id", "comment": null}}, "stats": {"num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 754.0, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 13.0, "include": true, "description": "Approximate count of rows in this table"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.asana_source.stg_asana__section"}, "model.asana_source.stg_asana__task_section_tmp": {"metadata": {"type": "table", "schema": "asana_source_integration_source_stg_asana", "name": "stg_asana__task_section_tmp", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"section_id": {"type": "INT64", "index": 1, "name": "section_id", "comment": null}, "task_id": {"type": "INT64", "index": 2, "name": "task_id", "comment": null}, "_fivetran_synced": {"type": "TIMESTAMP", "index": 3, "name": "_fivetran_synced", "comment": null}}, "stats": {"num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 48.0, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 2.0, "include": true, "description": "Approximate count of rows in this table"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.asana_source.stg_asana__task_section_tmp"}, "model.asana_source.stg_asana__story_tmp": {"metadata": {"type": "table", "schema": "asana_source_integration_source_stg_asana", "name": "stg_asana__story_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": "DATETIME", "index": 3, "name": "created_at", "comment": null}, "created_by_id": {"type": "INT64", "index": 4, "name": "created_by_id", "comment": null}, "hearted": {"type": "INT64", "index": 5, "name": "hearted", "comment": null}, "num_hearts": {"type": "INT64", "index": 6, "name": "num_hearts", "comment": null}, "source": {"type": "STRING", "index": 7, "name": "source", "comment": null}, "target_id": {"type": "INT64", "index": 8, "name": "target_id", "comment": null}, "text": {"type": "STRING", "index": 9, "name": "text", "comment": null}, "type": {"type": "STRING", "index": 10, "name": "type", "comment": null}}, "stats": {"num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 285.0, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 3.0, "include": true, "description": "Approximate count of rows in this table"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.asana_source.stg_asana__story_tmp"}, "model.asana_source.stg_asana__task_tag": {"metadata": {"type": "table", "schema": "asana_source_integration_source_stg_asana", "name": "stg_asana__task_tag", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"tag_id": {"type": "INT64", "index": 1, "name": "tag_id", "comment": null}, "task_id": {"type": "INT64", "index": 2, "name": "task_id", "comment": null}}, "stats": {"num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 64.0, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 4.0, "include": true, "description": "Approximate count of rows in this table"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.asana_source.stg_asana__task_tag"}, "model.asana_source.stg_asana__task_follower": {"metadata": {"type": "table", "schema": "asana_source_integration_source_stg_asana", "name": "stg_asana__task_follower", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"task_id": {"type": "INT64", "index": 1, "name": "task_id", "comment": null}, "user_id": {"type": "INT64", "index": 2, "name": "user_id", "comment": null}}, "stats": {"num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 16.0, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 1.0, "include": true, "description": "Approximate count of rows in this table"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.asana_source.stg_asana__task_follower"}, "model.asana_source.stg_asana__task_tag_tmp": {"metadata": {"type": "table", "schema": "asana_source_integration_source_stg_asana", "name": "stg_asana__task_tag_tmp", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"tag_id": {"type": "INT64", "index": 1, "name": "tag_id", "comment": null}, "task_id": {"type": "INT64", "index": 2, "name": "task_id", "comment": null}, "_fivetran_synced": {"type": "TIMESTAMP", "index": 3, "name": "_fivetran_synced", "comment": null}}, "stats": {"num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 96.0, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 4.0, "include": true, "description": "Approximate count of rows in this table"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.asana_source.stg_asana__task_tag_tmp"}, "model.asana_source.stg_asana__tag": {"metadata": {"type": "table", "schema": "asana_source_integration_source_stg_asana", "name": "stg_asana__tag", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"tag_id": {"type": "INT64", "index": 1, "name": "tag_id", "comment": null}, "tag_name": {"type": "STRING", "index": 2, "name": "tag_name", "comment": null}, "created_at": {"type": "TIMESTAMP", "index": 3, "name": "created_at", "comment": null}}, "stats": {"num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 850.0, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 17.0, "include": true, "description": "Approximate count of rows in this table"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.asana_source.stg_asana__tag"}, "model.asana_source.stg_asana__task": {"metadata": {"type": "table", "schema": "asana_source_integration_source_stg_asana", "name": "stg_asana__task", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"task_id": {"type": "INT64", "index": 1, "name": "task_id", "comment": null}, "assignee_user_id": {"type": "INT64", "index": 2, "name": "assignee_user_id", "comment": null}, "is_completed": {"type": "BOOL", "index": 3, "name": "is_completed", "comment": null}, "completed_at": {"type": "TIMESTAMP", "index": 4, "name": "completed_at", "comment": null}, "completed_by_user_id": {"type": "INT64", "index": 5, "name": "completed_by_user_id", "comment": null}, "created_at": {"type": "TIMESTAMP", "index": 6, "name": "created_at", "comment": null}, "due_date": {"type": "TIMESTAMP", "index": 7, "name": "due_date", "comment": null}, "modified_at": {"type": "TIMESTAMP", "index": 8, "name": "modified_at", "comment": null}, "task_name": {"type": "STRING", "index": 9, "name": "task_name", "comment": null}, "parent_task_id": {"type": "INT64", "index": 10, "name": "parent_task_id", "comment": null}, "start_date": {"type": "TIMESTAMP", "index": 11, "name": "start_date", "comment": null}, "task_description": {"type": "STRING", "index": 12, "name": "task_description", "comment": null}, "is_liked": {"type": "BOOL", "index": 13, "name": "is_liked", "comment": null}, "number_of_likes": {"type": "INT64", "index": 14, "name": "number_of_likes", "comment": null}, "workspace_id": {"type": "INT64", "index": 15, "name": "workspace_id", "comment": null}}, "stats": {"num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 80.0, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 1.0, "include": true, "description": "Approximate count of rows in this table"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.asana_source.stg_asana__task"}, "model.asana_source.stg_asana__task_tmp": {"metadata": {"type": "table", "schema": "asana_source_integration_source_stg_asana", "name": "stg_asana__task_tmp", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"id": {"type": "INT64", "index": 1, "name": "id", "comment": null}, "assignee_id": {"type": "INT64", "index": 2, "name": "assignee_id", "comment": null}, "completed": {"type": "BOOL", "index": 3, "name": "completed", "comment": null}, "completed_at": {"type": "TIMESTAMP", "index": 4, "name": "completed_at", "comment": null}, "completed_by_id": {"type": "INT64", "index": 5, "name": "completed_by_id", "comment": null}, "created_at": {"type": "TIMESTAMP", "index": 6, "name": "created_at", "comment": null}, "due_on": {"type": "TIMESTAMP", "index": 7, "name": "due_on", "comment": null}, "due_at": {"type": "TIMESTAMP", "index": 8, "name": "due_at", "comment": null}, "modified_at": {"type": "TIMESTAMP", "index": 9, "name": "modified_at", "comment": null}, "name": {"type": "STRING", "index": 10, "name": "name", "comment": null}, "parent_id": {"type": "INT64", "index": 11, "name": "parent_id", "comment": null}, "start_on": {"type": "TIMESTAMP", "index": 12, "name": "start_on", "comment": null}, "notes": {"type": "STRING", "index": 13, "name": "notes", "comment": null}, "workspace_id": {"type": "INT64", "index": 14, "name": "workspace_id", "comment": null}}, "stats": {"num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 80.0, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 1.0, "include": true, "description": "Approximate count of rows in this table"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.asana_source.stg_asana__task_tmp"}, "model.asana_source.stg_asana__task_follower_tmp": {"metadata": {"type": "table", "schema": "asana_source_integration_source_stg_asana", "name": "stg_asana__task_follower_tmp", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"task_id": {"type": "INT64", "index": 1, "name": "task_id", "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_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 24.0, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 1.0, "include": true, "description": "Approximate count of rows in this table"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.asana_source.stg_asana__task_follower_tmp"}, "model.asana_source.stg_asana__project_task": {"metadata": {"type": "table", "schema": "asana_source_integration_source_stg_asana", "name": "stg_asana__project_task", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"project_id": {"type": "INT64", "index": 1, "name": "project_id", "comment": null}, "task_id": {"type": "INT64", "index": 2, "name": "task_id", "comment": null}}, "stats": {"num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 32.0, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 2.0, "include": true, "description": "Approximate count of rows in this table"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.asana_source.stg_asana__project_task"}, "model.asana_source.stg_asana__team": {"metadata": {"type": "table", "schema": "asana_source_integration_source_stg_asana", "name": "stg_asana__team", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"team_id": {"type": "INT64", "index": 1, "name": "team_id", "comment": null}, "team_name": {"type": "STRING", "index": 2, "name": "team_name", "comment": null}}, "stats": {"num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 1050.0, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 25.0, "include": true, "description": "Approximate count of rows in this table"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.asana_source.stg_asana__team"}, "model.asana_source.stg_asana__project_tmp": {"metadata": {"type": "table", "schema": "asana_source_integration_source_stg_asana", "name": "stg_asana__project_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}, "archived": {"type": "BOOL", "index": 4, "name": "archived", "comment": null}, "color": {"type": "STRING", "index": 5, "name": "color", "comment": null}, "created_at": {"type": "DATETIME", "index": 6, "name": "created_at", "comment": null}, "current_status": {"type": "STRING", "index": 7, "name": "current_status", "comment": null}, "due_date": {"type": "DATETIME", "index": 8, "name": "due_date", "comment": null}, "modified_at": {"type": "DATETIME", "index": 9, "name": "modified_at", "comment": null}, "name": {"type": "STRING", "index": 10, "name": "name", "comment": null}, "notes": {"type": "STRING", "index": 11, "name": "notes", "comment": null}, "owner_id": {"type": "INT64", "index": 12, "name": "owner_id", "comment": null}, "public": {"type": "INT64", "index": 13, "name": "public", "comment": null}, "team_id": {"type": "INT64", "index": 14, "name": "team_id", "comment": null}, "workspace_id": {"type": "INT64", "index": 15, "name": "workspace_id", "comment": null}}, "stats": {"num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 1710.0, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 16.0, "include": true, "description": "Approximate count of rows in this table"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.asana_source.stg_asana__project_tmp"}, "model.asana_source.stg_asana__section_tmp": {"metadata": {"type": "table", "schema": "asana_source_integration_source_stg_asana", "name": "stg_asana__section_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": "DATETIME", "index": 3, "name": "created_at", "comment": null}, "name": {"type": "STRING", "index": 4, "name": "name", "comment": null}, "project_id": {"type": "INT64", "index": 5, "name": "project_id", "comment": null}}, "stats": {"num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 858.0, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 13.0, "include": true, "description": "Approximate count of rows in this table"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.asana_source.stg_asana__section_tmp"}, "model.asana_source.stg_asana__team_tmp": {"metadata": {"type": "table", "schema": "asana_source_integration_source_stg_asana", "name": "stg_asana__team_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}, "name": {"type": "STRING", "index": 4, "name": "name", "comment": null}, "organization_id": {"type": "INT64", "index": 5, "name": "organization_id", "comment": null}}, "stats": {"num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 1475.0, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 25.0, "include": true, "description": "Approximate count of rows in this table"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.asana_source.stg_asana__team_tmp"}, "model.asana_source.stg_asana__project_task_tmp": {"metadata": {"type": "table", "schema": "asana_source_integration_source_stg_asana", "name": "stg_asana__project_task_tmp", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"project_id": {"type": "INT64", "index": 1, "name": "project_id", "comment": null}, "task_id": {"type": "INT64", "index": 2, "name": "task_id", "comment": null}, "_fivetran_synced": {"type": "TIMESTAMP", "index": 3, "name": "_fivetran_synced", "comment": null}}, "stats": {"num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 48.0, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 2.0, "include": true, "description": "Approximate count of rows in this table"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.asana_source.stg_asana__project_task_tmp"}, "model.asana_source.stg_asana__project": {"metadata": {"type": "table", "schema": "asana_source_integration_source_stg_asana", "name": "stg_asana__project", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"project_id": {"type": "INT64", "index": 1, "name": "project_id", "comment": null}, "is_archived": {"type": "BOOL", "index": 2, "name": "is_archived", "comment": null}, "created_at": {"type": "TIMESTAMP", "index": 3, "name": "created_at", "comment": null}, "current_status": {"type": "STRING", "index": 4, "name": "current_status", "comment": null}, "due_date": {"type": "TIMESTAMP", "index": 5, "name": "due_date", "comment": null}, "modified_at": {"type": "TIMESTAMP", "index": 6, "name": "modified_at", "comment": null}, "project_name": {"type": "STRING", "index": 7, "name": "project_name", "comment": null}, "owner_user_id": {"type": "INT64", "index": 8, "name": "owner_user_id", "comment": null}, "is_public": {"type": "INT64", "index": 9, "name": "is_public", "comment": null}, "team_id": {"type": "INT64", "index": 10, "name": "team_id", "comment": null}, "workspace_id": {"type": "INT64", "index": 11, "name": "workspace_id", "comment": null}, "notes": {"type": "STRING", "index": 12, "name": "notes", "comment": null}}, "stats": {"num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 1448.0, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 16.0, "include": true, "description": "Approximate count of rows in this table"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.asana_source.stg_asana__project"}, "model.asana_source.stg_asana__user": {"metadata": {"type": "table", "schema": "asana_source_integration_source_stg_asana", "name": "stg_asana__user", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"user_id": {"type": "INT64", "index": 1, "name": "user_id", "comment": null}, "email": {"type": "STRING", "index": 2, "name": "email", "comment": null}, "user_name": {"type": "STRING", "index": 3, "name": "user_name", "comment": null}}, "stats": {"num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 1520.0, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 20.0, "include": true, "description": "Approximate count of rows in this table"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.asana_source.stg_asana__user"}}, "sources": {"source.asana_source.asana.story": {"metadata": {"type": "table", "schema": "asana_source_integrations_tests", "name": "story_data", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"id": {"type": "INT64", "index": 1, "name": "id", "comment": null}, "_fivetran_synced": {"type": "TIMESTAMP", "index": 2, "name": "_fivetran_synced", "comment": null}, "created_at": {"type": "DATETIME", "index": 3, "name": "created_at", "comment": null}, "created_by_id": {"type": "INT64", "index": 4, "name": "created_by_id", "comment": null}, "hearted": {"type": "INT64", "index": 5, "name": "hearted", "comment": null}, "num_hearts": {"type": "INT64", "index": 6, "name": "num_hearts", "comment": null}, "source": {"type": "STRING", "index": 7, "name": "source", "comment": null}, "target_id": {"type": "INT64", "index": 8, "name": "target_id", "comment": null}, "text": {"type": "STRING", "index": 9, "name": "text", "comment": null}, "type": {"type": "STRING", "index": 10, "name": "type", "comment": null}}, "stats": {"num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 285.0, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 3.0, "include": true, "description": "Approximate count of rows in this table"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.asana_source.asana.story"}, "source.asana_source.asana.task": {"metadata": {"type": "table", "schema": "asana_source_integrations_tests", "name": "task_data", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"id": {"type": "INT64", "index": 1, "name": "id", "comment": null}, "assignee_id": {"type": "INT64", "index": 2, "name": "assignee_id", "comment": null}, "completed": {"type": "BOOL", "index": 3, "name": "completed", "comment": null}, "completed_at": {"type": "TIMESTAMP", "index": 4, "name": "completed_at", "comment": null}, "completed_by_id": {"type": "INT64", "index": 5, "name": "completed_by_id", "comment": null}, "created_at": {"type": "TIMESTAMP", "index": 6, "name": "created_at", "comment": null}, "due_on": {"type": "TIMESTAMP", "index": 7, "name": "due_on", "comment": null}, "due_at": {"type": "TIMESTAMP", "index": 8, "name": "due_at", "comment": null}, "modified_at": {"type": "TIMESTAMP", "index": 9, "name": "modified_at", "comment": null}, "name": {"type": "STRING", "index": 10, "name": "name", "comment": null}, "parent_id": {"type": "INT64", "index": 11, "name": "parent_id", "comment": null}, "start_on": {"type": "TIMESTAMP", "index": 12, "name": "start_on", "comment": null}, "notes": {"type": "STRING", "index": 13, "name": "notes", "comment": null}, "workspace_id": {"type": "INT64", "index": 14, "name": "workspace_id", "comment": null}}, "stats": {"num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 80.0, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 1.0, "include": true, "description": "Approximate count of rows in this table"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.asana_source.asana.task"}, "source.asana_source.asana.section": {"metadata": {"type": "table", "schema": "asana_source_integrations_tests", "name": "section_data", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"id": {"type": "INT64", "index": 1, "name": "id", "comment": null}, "_fivetran_synced": {"type": "TIMESTAMP", "index": 2, "name": "_fivetran_synced", "comment": null}, "created_at": {"type": "DATETIME", "index": 3, "name": "created_at", "comment": null}, "name": {"type": "STRING", "index": 4, "name": "name", "comment": null}, "project_id": {"type": "INT64", "index": 5, "name": "project_id", "comment": null}}, "stats": {"num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 858.0, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 13.0, "include": true, "description": "Approximate count of rows in this table"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.asana_source.asana.section"}, "source.asana_source.asana.user": {"metadata": {"type": "table", "schema": "asana_source_integrations_tests", "name": "user_data", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"id": {"type": "INT64", "index": 1, "name": "id", "comment": null}, "_fivetran_deleted": {"type": "BOOL", "index": 2, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "TIMESTAMP", "index": 3, "name": "_fivetran_synced", "comment": null}, "email": {"type": "STRING", "index": 4, "name": "email", "comment": null}, "name": {"type": "STRING", "index": 5, "name": "name", "comment": null}}, "stats": {"num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 1700.0, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 20.0, "include": true, "description": "Approximate count of rows in this table"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.asana_source.asana.user"}, "source.asana_source.asana.project": {"metadata": {"type": "table", "schema": "asana_source_integrations_tests", "name": "project_data", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"id": {"type": "INT64", "index": 1, "name": "id", "comment": null}, "_fivetran_deleted": {"type": "BOOL", "index": 2, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "TIMESTAMP", "index": 3, "name": "_fivetran_synced", "comment": null}, "archived": {"type": "BOOL", "index": 4, "name": "archived", "comment": null}, "color": {"type": "STRING", "index": 5, "name": "color", "comment": null}, "created_at": {"type": "DATETIME", "index": 6, "name": "created_at", "comment": null}, "current_status": {"type": "STRING", "index": 7, "name": "current_status", "comment": null}, "due_date": {"type": "DATETIME", "index": 8, "name": "due_date", "comment": null}, "modified_at": {"type": "DATETIME", "index": 9, "name": "modified_at", "comment": null}, "name": {"type": "STRING", "index": 10, "name": "name", "comment": null}, "notes": {"type": "STRING", "index": 11, "name": "notes", "comment": null}, "owner_id": {"type": "INT64", "index": 12, "name": "owner_id", "comment": null}, "public": {"type": "INT64", "index": 13, "name": "public", "comment": null}, "team_id": {"type": "INT64", "index": 14, "name": "team_id", "comment": null}, "workspace_id": {"type": "INT64", "index": 15, "name": "workspace_id", "comment": null}}, "stats": {"num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 1710.0, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 16.0, "include": true, "description": "Approximate count of rows in this table"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.asana_source.asana.project"}, "source.asana_source.asana.tag": {"metadata": {"type": "table", "schema": "asana_source_integrations_tests", "name": "tag_data", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"id": {"type": "INT64", "index": 1, "name": "id", "comment": null}, "_fivetran_deleted": {"type": "BOOL", "index": 2, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "TIMESTAMP", "index": 3, "name": "_fivetran_synced", "comment": null}, "color": {"type": "INT64", "index": 4, "name": "color", "comment": null}, "created_at": {"type": "DATETIME", "index": 5, "name": "created_at", "comment": null}, "message": {"type": "INT64", "index": 6, "name": "message", "comment": null}, "name": {"type": "STRING", "index": 7, "name": "name", "comment": null}, "notes": {"type": "INT64", "index": 8, "name": "notes", "comment": null}, "workspace_id": {"type": "INT64", "index": 9, "name": "workspace_id", "comment": null}}, "stats": {"num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 1139.0, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 17.0, "include": true, "description": "Approximate count of rows in this table"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.asana_source.asana.tag"}, "source.asana_source.asana.task_tag": {"metadata": {"type": "table", "schema": "asana_source_integrations_tests", "name": "task_tag_data", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"tag_id": {"type": "INT64", "index": 1, "name": "tag_id", "comment": null}, "task_id": {"type": "INT64", "index": 2, "name": "task_id", "comment": null}, "_fivetran_synced": {"type": "TIMESTAMP", "index": 3, "name": "_fivetran_synced", "comment": null}}, "stats": {"num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 96.0, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 4.0, "include": true, "description": "Approximate count of rows in this table"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.asana_source.asana.task_tag"}, "source.asana_source.asana.project_task": {"metadata": {"type": "table", "schema": "asana_source_integrations_tests", "name": "project_task_data", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"project_id": {"type": "INT64", "index": 1, "name": "project_id", "comment": null}, "task_id": {"type": "INT64", "index": 2, "name": "task_id", "comment": null}, "_fivetran_synced": {"type": "TIMESTAMP", "index": 3, "name": "_fivetran_synced", "comment": null}}, "stats": {"num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 48.0, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 2.0, "include": true, "description": "Approximate count of rows in this table"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.asana_source.asana.project_task"}, "source.asana_source.asana.task_section": {"metadata": {"type": "table", "schema": "asana_source_integrations_tests", "name": "task_section_data", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"section_id": {"type": "INT64", "index": 1, "name": "section_id", "comment": null}, "task_id": {"type": "INT64", "index": 2, "name": "task_id", "comment": null}, "_fivetran_synced": {"type": "TIMESTAMP", "index": 3, "name": "_fivetran_synced", "comment": null}}, "stats": {"num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 48.0, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 2.0, "include": true, "description": "Approximate count of rows in this table"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.asana_source.asana.task_section"}, "source.asana_source.asana.team": {"metadata": {"type": "table", "schema": "asana_source_integrations_tests", "name": "team_data", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"id": {"type": "INT64", "index": 1, "name": "id", "comment": null}, "_fivetran_deleted": {"type": "BOOL", "index": 2, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "TIMESTAMP", "index": 3, "name": "_fivetran_synced", "comment": null}, "name": {"type": "STRING", "index": 4, "name": "name", "comment": null}, "organization_id": {"type": "INT64", "index": 5, "name": "organization_id", "comment": null}}, "stats": {"num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 1475.0, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 25.0, "include": true, "description": "Approximate count of rows in this table"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.asana_source.asana.team"}, "source.asana_source.asana.task_follower": {"metadata": {"type": "table", "schema": "asana_source_integrations_tests", "name": "task_follower_data", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"task_id": {"type": "INT64", "index": 1, "name": "task_id", "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_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 24.0, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 1.0, "include": true, "description": "Approximate count of rows in this table"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.asana_source.asana.task_follower"}}, "errors": null}
\ No newline at end of file
diff --git a/docs/index.html b/docs/index.html
index fa8b08b..56291a2 100644
--- a/docs/index.html
+++ b/docs/index.html
@@ -24,7 +24,7 @@
-