diff --git a/.gitignore b/.gitignore
index 066b7fc..dd4b608 100644
--- a/.gitignore
+++ b/.gitignore
@@ -3,4 +3,6 @@ target/
dbt_modules/
logs/
.DS_Store
-dbt_packages/
\ No newline at end of file
+dbt_packages/
+integration_tests/package-lock.yml
+integration_tests/.DS_Store
\ No newline at end of file
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 3dab272..61dad10 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,20 @@
+# dbt_amazon_ads v0.4.0
+[PR #16](https://github.com/fivetran/dbt_amazon_ads/pull/16) includes the following updates:
+
+## Feature Update: Conversions Support
+- We have added conversion metrics to each of the end models by default.
+- The conversion metrics are the following:
+ - `purchases_30_d`: Number of attributed conversion events occurring within 30 days of an ad click.
+ - `sales_30_d`: Total value of sales occurring within 30 days of an ad click.
+- To bring in other conversion fields (`purchases_same_sku_30_d`, `sales_14_d`, etc.), please refer to our [passthrough column variables](https://github.com/fivetran/dbt_amazon_ads_source?tab=readme-ov-file#passing-through-additional-metrics).
+
+> The above new field additions are **breaking changes** for users who were not already bringing in conversion fields via passthrough columns.
+
+## Under the Hood
+- Created `amazon_ads_persist_pass_through_columns` macro to ensure that the new conversion fields are backwards compatible with users who have already included them via [passthrough columns](https://github.com/fivetran/dbt_amazon_ads?tab=readme-ov-file#passing-through-additional-metrics) . The package will dynamically avoid "duplicate column" errors.
+- Added integrity and consistency validation tests within `integration_tests` folder for the transformation models (to be used by maintainers only).
+- Added documentation explaining potential discrepancies across reporting grains. See the [DECISIONLOG.md](https://github.com/fivetran/dbt_amazon_ads/blob/main/DECISIONLOG.md).
+
# dbt_amazon_ads v0.3.0
[PR #11](https://github.com/fivetran/dbt_amazon_ads/pull/11) includes the following updates:
## Feature update 🎉
diff --git a/DECISIONLOG.md b/DECISIONLOG.md
index a7b99c8..a609637 100644
--- a/DECISIONLOG.md
+++ b/DECISIONLOG.md
@@ -8,3 +8,9 @@
- Portfolios:
- Grain is narrower than Accounts but broader than Campaigns
- This is a newer feature that is optional, so not all advertisers may not utilize portfolios. It is also possible that even if portfolios are being used, not all campaigns may be assigned to a portfolio. Arguably this report may not be entirely necessary, however since portfolios are a budgeting aid, we wanted to include a report with this grain.
+
+
+## Why don't metrics add up across different grains (Ex. ad level vs campaign level)?
+When aggregating metrics like clicks and spend across different grains, discrepancies can arise due to differences in how data is captured, grouped, or attributed at each grain. For example, certain actions or costs might be attributed differently at the ad, campaign, or ad group level, leading to inconsistencies when rolled up. Additionally, for example, at the keyword grain, where a keyword can belong to multiple ad groups, aggregations can lead to over counting. Conversely, some ads may only be represented at the ad group level, rather than individual ad levels, leading to under counting at the ad grain.
+
+This is a reason why we have broken out the ad reporting packages into separate hierarchical end models (Ad, Ad Group, Campaign, and more). Because if we only used ad-level reports, we could be missing data.
\ No newline at end of file
diff --git a/README.md b/README.md
index 21aea42..ba71dee 100644
--- a/README.md
+++ b/README.md
@@ -49,13 +49,13 @@ dispatch:
search_order: ['spark_utils', 'dbt_utils']
```
-### Step 2: Install the package
-Include the following amazon_ads package version in your `packages.yml` file:
+### Step 2: Install the package (skip if also using the `ad_reporting` combo package)
+Include the following amazon_ads package version in your `packages.yml` file _if_ you are not also using the upstream [Ad Reporting combination package](https://github.com/fivetran/dbt_ad_reporting):
> TIP: Check [dbt Hub](https://hub.getdbt.com/) for the latest installation instructions or [read dbt's Package Management documentation](https://docs.getdbt.com/docs/package-management) for more information on installing packages.
```yaml
packages:
- package: fivetran/amazon_ads
- version: [">=0.3.0", "<0.4.0"] # we recommend using ranges to capture non-breaking changes automatically
+ version: [">=0.4.0", "<0.5.0"] # we recommend using ranges to capture non-breaking changes automatically
```
Do NOT include the `amazon_ads_source` package in this file. The transformation package itself has a dependency on it and will install the source package as well.
@@ -79,6 +79,8 @@ vars:
```
### (Optional) Step 5: Additional configurations
+Expand/Collapse details
+
#### Union multiple connectors
If you have multiple amazon_ads connectors in Fivetran and would like to use this package on all of them simultaneously, we have provided functionality to do so. The package will union all of the data together and pass the unioned table into the transformations. You will be able to see which source it came from in the `source_relation` column of each model. To use this functionality, you will need to set either the `amazon_ads_union_schemas` OR `amazon_ads_union_databases` variables (cannot do both) in your root `dbt_project.yml` file:
@@ -92,9 +94,9 @@ vars:
To connect your multiple schema/database sources to the package models, follow the steps outlined in the [Union Data Defined Sources Configuration](https://github.com/fivetran/dbt_fivetran_utils/tree/releases/v0.4.latest#union_data-source) section of the Fivetran Utils documentation for the union_data macro. This will ensure a proper configuration and correct visualization of connections in the DAG.
#### Passing Through Additional Metrics
-By default, this package will select `clicks`, `impressions`, and `cost` from the source reporting tables to store into the staging models. If you would like to pass through additional metrics to the staging models, add the following configurations to your `dbt_project.yml` file. These variables allow the pass-through fields to be aliased (`alias`) if desired, but not required. Use the following format for declaring the respective pass-through variables:
+By default, this package will select `clicks`, `impressions`, `cost`, `purchases_30_d`, and `sales_30_d` from the source reporting tables to store into the staging and end models. If you would like to pass through additional metrics to the package models, add the following configurations to your `dbt_project.yml` file. These variables allow the pass-through fields to be aliased (`alias`) if desired, but not required. Use the following format for declaring the respective pass-through variables:
-> **Note** Ensure that you exercised due diligence when adding metrics to these models. The metrics added by default (clicks, impressions, and cost) have been vetted by the Fivetran team maintaining this package for accuracy. There are metrics included within the source reports, for example, metric averages, which may be inaccurately represented at the grain for reports created in this package. You want to ensure whichever metrics you pass through are indeed appropriate to aggregate at the respective reporting levels provided in this package.
+> **Note** Make sure to exercise due diligence when adding metrics to these models. The metrics added by default have been vetted by the Fivetran team maintaining this package for accuracy. There are metrics included within the source reports, for example, metric averages, which may be inaccurately represented at the grain for reports created in this package. You want to ensure whichever metrics you pass through are indeed appropriate to aggregate at the respective reporting levels provided in this package.
```yml
vars:
@@ -103,10 +105,11 @@ vars:
alias: "custom_field"
amazon_ads__ad_group_passthrough_metrics:
- name: "unique_string_field"
- alias: "field_id"
+ transform_sql: "coalesce(unique_string_field, 'NA')"
amazon_ads__advertised_product_passthrough_metrics:
- name: "new_custom_field"
alias: "custom_field"
+ transform_sql: "coalesce(custom_field, 'NA')" # reference alias in transform_sql if aliasing
- name: "a_second_field"
amazon_ads__targeting_keyword_passthrough_metrics:
- name: "this_field"
@@ -116,7 +119,7 @@ vars:
```
#### Changing the Build Schema
-By default, this package will build the Amazon_ads staging models within a schema titled ( + `amazon_ads_source`) in your destination. If this is not where you would like your Amazon Ads staging data to be written, add the following configuration to your root `dbt_project.yml` file:
+By default, this package will build the Amazon Ads staging models (11 views, 11 tables) within a schema titled ( + `amazon_ads_source`) and the Amazon Ads intermediate (1 view) and end models (7 tables) within a schema titled ( + `amazon_ads`) in your destination. If this is not where you would like your Amazon Ads staging and modeling data to be written, add the following configuration to your root `dbt_project.yml` file:
```yml
models:
@@ -127,7 +130,7 @@ models:
```
#### 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:
+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. This is not available when running the package on multiple unioned connectors.
> IMPORTANT: See this project's [`dbt_project.yml`](https://github.com/fivetran/dbt_amazon_ads_source/blob/main/dbt_project.yml) variable declarations to see the expected names.
@@ -135,6 +138,9 @@ If an individual source table has a different name than the package expects, add
vars:
amazon_ads__identifier: your_table_name
```
+
+
+
### (Optional) Step 6: Orchestrate your models with Fivetran Transformations for dbt Core™
Expand for more details
@@ -149,7 +155,7 @@ This dbt package is dependent on the following dbt packages. Be aware that these
```yml
packages:
- package: fivetran/amazon_ads_source
- version: [">=0.3.0", "<0.4.0"]
+ version: [">=0.4.0", "<0.5.0"]
- package: fivetran/fivetran_utils
version: [">=0.4.0", "<0.5.0"]
@@ -165,10 +171,15 @@ The Fivetran team maintaining this package _only_ maintains the latest version o
In creating this package, which is meant for a wide range of use cases, we had to take opinionated stances on certain decisions, such as logic choices or column selection. Therefore, we have documented significant choices in the [DECISIONLOG.md](https://github.com/fivetran/dbt_amazon_ads/blob/main/DECISIONLOG.md) and will continue to update this as the package evolves. We are always open to and encourage feedback on these choices and the package in general.
### Contributions
-A small team of analytics engineers at Fivetran develops these dbt packages. However, these packages are made better by community 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) on the best workflow for contributing to a package.
+#### Contributors
+We thank [everyone](https://github.com/fivetran/amazon_ads/graphs/contributors) who has taken the time to contribute. Each PR, bug report, and feature request has made this package better and is truly appreciated.
+
+A special thank you to [Seer Interactive](https://www.seerinteractive.com/?utm_campaign=Fivetran%20%7C%20Models&utm_source=Fivetran&utm_medium=Fivetran%20Documentation), who we closely collaborated with to introduce native conversion support to our Ad packages.
+
## Are there any resources available?
- If you have questions or want to reach out for help, refer to the [GitHub Issue](https://github.com/fivetran/dbt_amazon_ads/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).
diff --git a/dbt_project.yml b/dbt_project.yml
index 40728d2..bd1112e 100644
--- a/dbt_project.yml
+++ b/dbt_project.yml
@@ -1,5 +1,5 @@
name: 'amazon_ads'
-version: '0.3.0'
+version: '0.4.0'
config-version: 2
require-dbt-version: [">=1.3.0", "<2.0.0"]
models:
diff --git a/docs/catalog.json b/docs/catalog.json
index d999290..1212844 100644
--- a/docs/catalog.json
+++ b/docs/catalog.json
@@ -1 +1 @@
-{"metadata": {"dbt_schema_version": "https://schemas.getdbt.com/dbt/catalog/v1.json", "dbt_version": "1.5.2", "generated_at": "2023-07-20T13:04:11.980815Z", "invocation_id": "a661b695-4147-46c0-8096-d97e520fcd09", "env": {}}, "nodes": {"seed.amazon_ads_integration_tests.ad_group_history_data": {"metadata": {"type": "BASE TABLE", "schema": "amazon_ads_integration_tests_02", "name": "ad_group_history_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "integer", "index": 1, "name": "id", "comment": null}, "last_updated_date": {"type": "text", "index": 2, "name": "last_updated_date", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "campaign_id": {"type": "integer", "index": 4, "name": "campaign_id", "comment": null}, "creation_date": {"type": "text", "index": 5, "name": "creation_date", "comment": null}, "default_bid": {"type": "double precision", "index": 6, "name": "default_bid", "comment": null}, "name": {"type": "text", "index": 7, "name": "name", "comment": null}, "serving_status": {"type": "text", "index": 8, "name": "serving_status", "comment": null}, "state": {"type": "text", "index": 9, "name": "state", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.amazon_ads_integration_tests.ad_group_history_data"}, "seed.amazon_ads_integration_tests.ad_group_level_report_data": {"metadata": {"type": "BASE TABLE", "schema": "amazon_ads_integration_tests_02", "name": "ad_group_level_report_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"ad_group_id": {"type": "integer", "index": 1, "name": "ad_group_id", "comment": null}, "date": {"type": "date", "index": 2, "name": "date", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "campaign_bidding_strategy": {"type": "text", "index": 4, "name": "campaign_bidding_strategy", "comment": null}, "clicks": {"type": "integer", "index": 5, "name": "clicks", "comment": null}, "cost": {"type": "double precision", "index": 6, "name": "cost", "comment": null}, "impressions": {"type": "integer", "index": 7, "name": "impressions", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.amazon_ads_integration_tests.ad_group_level_report_data"}, "seed.amazon_ads_integration_tests.advertised_product_report_data": {"metadata": {"type": "BASE TABLE", "schema": "amazon_ads_integration_tests_02", "name": "advertised_product_report_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"ad_group_id": {"type": "integer", "index": 1, "name": "ad_group_id", "comment": null}, "ad_id": {"type": "integer", "index": 2, "name": "ad_id", "comment": null}, "campaign_id": {"type": "integer", "index": 3, "name": "campaign_id", "comment": null}, "date": {"type": "date", "index": 4, "name": "date", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 5, "name": "_fivetran_synced", "comment": null}, "campaign_budget_amount": {"type": "double precision", "index": 6, "name": "campaign_budget_amount", "comment": null}, "campaign_budget_currency_code": {"type": "text", "index": 7, "name": "campaign_budget_currency_code", "comment": null}, "campaign_budget_type": {"type": "text", "index": 8, "name": "campaign_budget_type", "comment": null}, "clicks": {"type": "integer", "index": 9, "name": "clicks", "comment": null}, "cost": {"type": "double precision", "index": 10, "name": "cost", "comment": null}, "impressions": {"type": "integer", "index": 11, "name": "impressions", "comment": null}, "advertised_asin": {"type": "integer", "index": 12, "name": "advertised_asin", "comment": null}, "advertised_sku": {"type": "integer", "index": 13, "name": "advertised_sku", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.amazon_ads_integration_tests.advertised_product_report_data"}, "seed.amazon_ads_integration_tests.campaign_history_data": {"metadata": {"type": "BASE TABLE", "schema": "amazon_ads_integration_tests_02", "name": "campaign_history_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "integer", "index": 1, "name": "id", "comment": null}, "last_updated_date": {"type": "text", "index": 2, "name": "last_updated_date", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "bidding_strategy": {"type": "text", "index": 4, "name": "bidding_strategy", "comment": null}, "creation_date": {"type": "text", "index": 5, "name": "creation_date", "comment": null}, "budget": {"type": "integer", "index": 6, "name": "budget", "comment": null}, "end_date": {"type": "integer", "index": 7, "name": "end_date", "comment": null}, "name": {"type": "text", "index": 8, "name": "name", "comment": null}, "portfolio_id": {"type": "integer", "index": 9, "name": "portfolio_id", "comment": null}, "profile_id": {"type": "integer", "index": 10, "name": "profile_id", "comment": null}, "serving_status": {"type": "text", "index": 11, "name": "serving_status", "comment": null}, "start_date": {"type": "date", "index": 12, "name": "start_date", "comment": null}, "state": {"type": "text", "index": 13, "name": "state", "comment": null}, "targeting_type": {"type": "text", "index": 14, "name": "targeting_type", "comment": null}, "budget_type": {"type": "text", "index": 15, "name": "budget_type", "comment": null}, "effective_budget": {"type": "integer", "index": 16, "name": "effective_budget", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.amazon_ads_integration_tests.campaign_history_data"}, "seed.amazon_ads_integration_tests.campaign_level_report_data": {"metadata": {"type": "BASE TABLE", "schema": "amazon_ads_integration_tests_02", "name": "campaign_level_report_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"campaign_id": {"type": "integer", "index": 1, "name": "campaign_id", "comment": null}, "date": {"type": "date", "index": 2, "name": "date", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "campaign_applicable_budget_rule_id": {"type": "integer", "index": 4, "name": "campaign_applicable_budget_rule_id", "comment": null}, "campaign_applicable_budget_rule_name": {"type": "integer", "index": 5, "name": "campaign_applicable_budget_rule_name", "comment": null}, "campaign_bidding_strategy": {"type": "text", "index": 6, "name": "campaign_bidding_strategy", "comment": null}, "campaign_budget_amount": {"type": "double precision", "index": 7, "name": "campaign_budget_amount", "comment": null}, "campaign_budget_currency_code": {"type": "text", "index": 8, "name": "campaign_budget_currency_code", "comment": null}, "campaign_budget_type": {"type": "text", "index": 9, "name": "campaign_budget_type", "comment": null}, "clicks": {"type": "integer", "index": 10, "name": "clicks", "comment": null}, "cost": {"type": "double precision", "index": 11, "name": "cost", "comment": null}, "impressions": {"type": "integer", "index": 12, "name": "impressions", "comment": null}, "campaign_rule_based_budget_amount": {"type": "integer", "index": 13, "name": "campaign_rule_based_budget_amount", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.amazon_ads_integration_tests.campaign_level_report_data"}, "seed.amazon_ads_integration_tests.keyword_history_data": {"metadata": {"type": "BASE TABLE", "schema": "amazon_ads_integration_tests_02", "name": "keyword_history_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "integer", "index": 1, "name": "id", "comment": null}, "last_updated_date": {"type": "text", "index": 2, "name": "last_updated_date", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "ad_group_id": {"type": "integer", "index": 4, "name": "ad_group_id", "comment": null}, "bid": {"type": "double precision", "index": 5, "name": "bid", "comment": null}, "campaign_id": {"type": "integer", "index": 6, "name": "campaign_id", "comment": null}, "creation_date": {"type": "text", "index": 7, "name": "creation_date", "comment": null}, "keyword_text": {"type": "text", "index": 8, "name": "keyword_text", "comment": null}, "match_type": {"type": "text", "index": 9, "name": "match_type", "comment": null}, "native_language_keyword": {"type": "integer", "index": 10, "name": "native_language_keyword", "comment": null}, "serving_status": {"type": "text", "index": 11, "name": "serving_status", "comment": null}, "state": {"type": "text", "index": 12, "name": "state", "comment": null}, "native_language_locale": {"type": "integer", "index": 13, "name": "native_language_locale", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.amazon_ads_integration_tests.keyword_history_data"}, "seed.amazon_ads_integration_tests.portfolio_history_data": {"metadata": {"type": "BASE TABLE", "schema": "amazon_ads_integration_tests_02", "name": "portfolio_history_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "integer", "index": 1, "name": "id", "comment": null}, "last_updated_date": {"type": "text", "index": 2, "name": "last_updated_date", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "budget_amount": {"type": "integer", "index": 4, "name": "budget_amount", "comment": null}, "budget_currency_code": {"type": "integer", "index": 5, "name": "budget_currency_code", "comment": null}, "budget_end_date": {"type": "integer", "index": 6, "name": "budget_end_date", "comment": null}, "budget_policy": {"type": "integer", "index": 7, "name": "budget_policy", "comment": null}, "budget_start_date": {"type": "integer", "index": 8, "name": "budget_start_date", "comment": null}, "creation_date": {"type": "text", "index": 9, "name": "creation_date", "comment": null}, "in_budget": {"type": "boolean", "index": 10, "name": "in_budget", "comment": null}, "name": {"type": "text", "index": 11, "name": "name", "comment": null}, "profile_id": {"type": "integer", "index": 12, "name": "profile_id", "comment": null}, "serving_status": {"type": "text", "index": 13, "name": "serving_status", "comment": null}, "state": {"type": "text", "index": 14, "name": "state", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.amazon_ads_integration_tests.portfolio_history_data"}, "seed.amazon_ads_integration_tests.product_ad_history_data": {"metadata": {"type": "BASE TABLE", "schema": "amazon_ads_integration_tests_02", "name": "product_ad_history_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "integer", "index": 1, "name": "id", "comment": null}, "last_updated_date": {"type": "text", "index": 2, "name": "last_updated_date", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "ad_group_id": {"type": "integer", "index": 4, "name": "ad_group_id", "comment": null}, "asin": {"type": "text", "index": 5, "name": "asin", "comment": null}, "campaign_id": {"type": "integer", "index": 6, "name": "campaign_id", "comment": null}, "creation_date": {"type": "text", "index": 7, "name": "creation_date", "comment": null}, "serving_status": {"type": "text", "index": 8, "name": "serving_status", "comment": null}, "sku": {"type": "integer", "index": 9, "name": "sku", "comment": null}, "state": {"type": "text", "index": 10, "name": "state", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.amazon_ads_integration_tests.product_ad_history_data"}, "seed.amazon_ads_integration_tests.profile_data": {"metadata": {"type": "BASE TABLE", "schema": "amazon_ads_integration_tests_02", "name": "profile_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "integer", "index": 1, "name": "id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 2, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "account_id": {"type": "text", "index": 4, "name": "account_id", "comment": null}, "account_marketplace_string_id": {"type": "text", "index": 5, "name": "account_marketplace_string_id", "comment": null}, "account_name": {"type": "text", "index": 6, "name": "account_name", "comment": null}, "account_sub_type": {"type": "integer", "index": 7, "name": "account_sub_type", "comment": null}, "account_type": {"type": "text", "index": 8, "name": "account_type", "comment": null}, "account_valid_payment_method": {"type": "boolean", "index": 9, "name": "account_valid_payment_method", "comment": null}, "country_code": {"type": "text", "index": 10, "name": "country_code", "comment": null}, "currency_code": {"type": "text", "index": 11, "name": "currency_code", "comment": null}, "daily_budget": {"type": "integer", "index": 12, "name": "daily_budget", "comment": null}, "timezone": {"type": "text", "index": 13, "name": "timezone", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.amazon_ads_integration_tests.profile_data"}, "seed.amazon_ads_integration_tests.search_term_ad_keyword_report_data": {"metadata": {"type": "BASE TABLE", "schema": "amazon_ads_integration_tests_02", "name": "search_term_ad_keyword_report_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"ad_group_id": {"type": "integer", "index": 1, "name": "ad_group_id", "comment": null}, "campaign_id": {"type": "integer", "index": 2, "name": "campaign_id", "comment": null}, "date": {"type": "date", "index": 3, "name": "date", "comment": null}, "keyword_id": {"type": "integer", "index": 4, "name": "keyword_id", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 5, "name": "_fivetran_synced", "comment": null}, "campaign_budget_amount": {"type": "double precision", "index": 6, "name": "campaign_budget_amount", "comment": null}, "campaign_budget_currency_code": {"type": "text", "index": 7, "name": "campaign_budget_currency_code", "comment": null}, "campaign_budget_type": {"type": "text", "index": 8, "name": "campaign_budget_type", "comment": null}, "clicks": {"type": "integer", "index": 9, "name": "clicks", "comment": null}, "cost": {"type": "double precision", "index": 10, "name": "cost", "comment": null}, "impressions": {"type": "integer", "index": 11, "name": "impressions", "comment": null}, "keyword_bid": {"type": "double precision", "index": 12, "name": "keyword_bid", "comment": null}, "search_term": {"type": "text", "index": 13, "name": "search_term", "comment": null}, "targeting": {"type": "text", "index": 14, "name": "targeting", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.amazon_ads_integration_tests.search_term_ad_keyword_report_data"}, "seed.amazon_ads_integration_tests.targeting_keyword_report_data": {"metadata": {"type": "BASE TABLE", "schema": "amazon_ads_integration_tests_02", "name": "targeting_keyword_report_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"ad_group_id": {"type": "integer", "index": 1, "name": "ad_group_id", "comment": null}, "campaign_id": {"type": "integer", "index": 2, "name": "campaign_id", "comment": null}, "date": {"type": "date", "index": 3, "name": "date", "comment": null}, "keyword_id": {"type": "integer", "index": 4, "name": "keyword_id", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 5, "name": "_fivetran_synced", "comment": null}, "ad_keyword_status": {"type": "text", "index": 6, "name": "ad_keyword_status", "comment": null}, "campaign_budget_amount": {"type": "double precision", "index": 7, "name": "campaign_budget_amount", "comment": null}, "campaign_budget_currency_code": {"type": "text", "index": 8, "name": "campaign_budget_currency_code", "comment": null}, "campaign_budget_type": {"type": "text", "index": 9, "name": "campaign_budget_type", "comment": null}, "clicks": {"type": "integer", "index": 10, "name": "clicks", "comment": null}, "cost": {"type": "double precision", "index": 11, "name": "cost", "comment": null}, "impressions": {"type": "integer", "index": 12, "name": "impressions", "comment": null}, "keyword_bid": {"type": "double precision", "index": 13, "name": "keyword_bid", "comment": null}, "keyword_type": {"type": "text", "index": 14, "name": "keyword_type", "comment": null}, "match_type": {"type": "text", "index": 15, "name": "match_type", "comment": null}, "targeting": {"type": "text", "index": 16, "name": "targeting", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.amazon_ads_integration_tests.targeting_keyword_report_data"}, "model.amazon_ads.amazon_ads__account_report": {"metadata": {"type": "BASE TABLE", "schema": "amazon_ads_integration_tests_02_amazon_ads", "name": "amazon_ads__account_report", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"date_day": {"type": "date", "index": 1, "name": "date_day", "comment": null}, "account_name": {"type": "text", "index": 2, "name": "account_name", "comment": null}, "account_id": {"type": "text", "index": 3, "name": "account_id", "comment": null}, "country_code": {"type": "text", "index": 4, "name": "country_code", "comment": null}, "profile_id": {"type": "text", "index": 5, "name": "profile_id", "comment": null}, "cost": {"type": "double precision", "index": 6, "name": "cost", "comment": null}, "clicks": {"type": "bigint", "index": 7, "name": "clicks", "comment": null}, "impressions": {"type": "bigint", "index": 8, "name": "impressions", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.amazon_ads.amazon_ads__account_report"}, "model.amazon_ads.amazon_ads__ad_group_report": {"metadata": {"type": "BASE TABLE", "schema": "amazon_ads_integration_tests_02_amazon_ads", "name": "amazon_ads__ad_group_report", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"date_day": {"type": "date", "index": 1, "name": "date_day", "comment": null}, "account_name": {"type": "text", "index": 2, "name": "account_name", "comment": null}, "account_id": {"type": "text", "index": 3, "name": "account_id", "comment": null}, "country_code": {"type": "text", "index": 4, "name": "country_code", "comment": null}, "profile_id": {"type": "text", "index": 5, "name": "profile_id", "comment": null}, "portfolio_name": {"type": "text", "index": 6, "name": "portfolio_name", "comment": null}, "portfolio_id": {"type": "text", "index": 7, "name": "portfolio_id", "comment": null}, "campaign_name": {"type": "text", "index": 8, "name": "campaign_name", "comment": null}, "campaign_id": {"type": "text", "index": 9, "name": "campaign_id", "comment": null}, "ad_group_name": {"type": "text", "index": 10, "name": "ad_group_name", "comment": null}, "ad_group_id": {"type": "text", "index": 11, "name": "ad_group_id", "comment": null}, "serving_status": {"type": "text", "index": 12, "name": "serving_status", "comment": null}, "state": {"type": "text", "index": 13, "name": "state", "comment": null}, "default_bid": {"type": "double precision", "index": 14, "name": "default_bid", "comment": null}, "campaign_bidding_strategy": {"type": "text", "index": 15, "name": "campaign_bidding_strategy", "comment": null}, "cost": {"type": "double precision", "index": 16, "name": "cost", "comment": null}, "clicks": {"type": "bigint", "index": 17, "name": "clicks", "comment": null}, "impressions": {"type": "bigint", "index": 18, "name": "impressions", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.amazon_ads.amazon_ads__ad_group_report"}, "model.amazon_ads.amazon_ads__ad_report": {"metadata": {"type": "BASE TABLE", "schema": "amazon_ads_integration_tests_02_amazon_ads", "name": "amazon_ads__ad_report", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"date_day": {"type": "date", "index": 1, "name": "date_day", "comment": null}, "account_name": {"type": "text", "index": 2, "name": "account_name", "comment": null}, "account_id": {"type": "text", "index": 3, "name": "account_id", "comment": null}, "country_code": {"type": "text", "index": 4, "name": "country_code", "comment": null}, "profile_id": {"type": "text", "index": 5, "name": "profile_id", "comment": null}, "portfolio_name": {"type": "text", "index": 6, "name": "portfolio_name", "comment": null}, "portfolio_id": {"type": "text", "index": 7, "name": "portfolio_id", "comment": null}, "campaign_name": {"type": "text", "index": 8, "name": "campaign_name", "comment": null}, "campaign_id": {"type": "text", "index": 9, "name": "campaign_id", "comment": null}, "ad_group_name": {"type": "text", "index": 10, "name": "ad_group_name", "comment": null}, "ad_group_id": {"type": "text", "index": 11, "name": "ad_group_id", "comment": null}, "ad_id": {"type": "text", "index": 12, "name": "ad_id", "comment": null}, "serving_status": {"type": "text", "index": 13, "name": "serving_status", "comment": null}, "state": {"type": "text", "index": 14, "name": "state", "comment": null}, "advertised_asin": {"type": "integer", "index": 15, "name": "advertised_asin", "comment": null}, "advertised_sku": {"type": "integer", "index": 16, "name": "advertised_sku", "comment": null}, "campaign_budget_amount": {"type": "double precision", "index": 17, "name": "campaign_budget_amount", "comment": null}, "campaign_budget_currency_code": {"type": "text", "index": 18, "name": "campaign_budget_currency_code", "comment": null}, "campaign_budget_type": {"type": "text", "index": 19, "name": "campaign_budget_type", "comment": null}, "cost": {"type": "double precision", "index": 20, "name": "cost", "comment": null}, "clicks": {"type": "bigint", "index": 21, "name": "clicks", "comment": null}, "impressions": {"type": "bigint", "index": 22, "name": "impressions", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.amazon_ads.amazon_ads__ad_report"}, "model.amazon_ads.amazon_ads__campaign_report": {"metadata": {"type": "BASE TABLE", "schema": "amazon_ads_integration_tests_02_amazon_ads", "name": "amazon_ads__campaign_report", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"date_day": {"type": "date", "index": 1, "name": "date_day", "comment": null}, "account_name": {"type": "text", "index": 2, "name": "account_name", "comment": null}, "account_id": {"type": "text", "index": 3, "name": "account_id", "comment": null}, "country_code": {"type": "text", "index": 4, "name": "country_code", "comment": null}, "profile_id": {"type": "text", "index": 5, "name": "profile_id", "comment": null}, "portfolio_name": {"type": "text", "index": 6, "name": "portfolio_name", "comment": null}, "portfolio_id": {"type": "text", "index": 7, "name": "portfolio_id", "comment": null}, "campaign_name": {"type": "text", "index": 8, "name": "campaign_name", "comment": null}, "campaign_id": {"type": "text", "index": 9, "name": "campaign_id", "comment": null}, "campaign_bidding_strategy": {"type": "text", "index": 10, "name": "campaign_bidding_strategy", "comment": null}, "campaign_budget_amount": {"type": "double precision", "index": 11, "name": "campaign_budget_amount", "comment": null}, "campaign_budget_currency_code": {"type": "text", "index": 12, "name": "campaign_budget_currency_code", "comment": null}, "campaign_budget_type": {"type": "text", "index": 13, "name": "campaign_budget_type", "comment": null}, "cost": {"type": "double precision", "index": 14, "name": "cost", "comment": null}, "clicks": {"type": "bigint", "index": 15, "name": "clicks", "comment": null}, "impressions": {"type": "bigint", "index": 16, "name": "impressions", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.amazon_ads.amazon_ads__campaign_report"}, "model.amazon_ads.amazon_ads__keyword_report": {"metadata": {"type": "BASE TABLE", "schema": "amazon_ads_integration_tests_02_amazon_ads", "name": "amazon_ads__keyword_report", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"date_day": {"type": "date", "index": 1, "name": "date_day", "comment": null}, "account_name": {"type": "text", "index": 2, "name": "account_name", "comment": null}, "account_id": {"type": "text", "index": 3, "name": "account_id", "comment": null}, "country_code": {"type": "text", "index": 4, "name": "country_code", "comment": null}, "profile_id": {"type": "text", "index": 5, "name": "profile_id", "comment": null}, "portfolio_name": {"type": "text", "index": 6, "name": "portfolio_name", "comment": null}, "portfolio_id": {"type": "text", "index": 7, "name": "portfolio_id", "comment": null}, "campaign_name": {"type": "text", "index": 8, "name": "campaign_name", "comment": null}, "campaign_id": {"type": "text", "index": 9, "name": "campaign_id", "comment": null}, "ad_group_name": {"type": "text", "index": 10, "name": "ad_group_name", "comment": null}, "ad_group_id": {"type": "text", "index": 11, "name": "ad_group_id", "comment": null}, "keyword_id": {"type": "text", "index": 12, "name": "keyword_id", "comment": null}, "keyword_text": {"type": "text", "index": 13, "name": "keyword_text", "comment": null}, "serving_status": {"type": "text", "index": 14, "name": "serving_status", "comment": null}, "state": {"type": "text", "index": 15, "name": "state", "comment": null}, "keyword_bid": {"type": "double precision", "index": 16, "name": "keyword_bid", "comment": null}, "keyword_type": {"type": "text", "index": 17, "name": "keyword_type", "comment": null}, "match_type": {"type": "text", "index": 18, "name": "match_type", "comment": null}, "cost": {"type": "double precision", "index": 19, "name": "cost", "comment": null}, "clicks": {"type": "bigint", "index": 20, "name": "clicks", "comment": null}, "impressions": {"type": "bigint", "index": 21, "name": "impressions", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.amazon_ads.amazon_ads__keyword_report"}, "model.amazon_ads.amazon_ads__portfolio_report": {"metadata": {"type": "BASE TABLE", "schema": "amazon_ads_integration_tests_02_amazon_ads", "name": "amazon_ads__portfolio_report", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"date_day": {"type": "date", "index": 1, "name": "date_day", "comment": null}, "account_name": {"type": "text", "index": 2, "name": "account_name", "comment": null}, "account_id": {"type": "text", "index": 3, "name": "account_id", "comment": null}, "country_code": {"type": "text", "index": 4, "name": "country_code", "comment": null}, "profile_id": {"type": "text", "index": 5, "name": "profile_id", "comment": null}, "portfolio_name": {"type": "text", "index": 6, "name": "portfolio_name", "comment": null}, "portfolio_id": {"type": "text", "index": 7, "name": "portfolio_id", "comment": null}, "budget_amount": {"type": "integer", "index": 8, "name": "budget_amount", "comment": null}, "budget_currency_code": {"type": "integer", "index": 9, "name": "budget_currency_code", "comment": null}, "budget_start_date": {"type": "integer", "index": 10, "name": "budget_start_date", "comment": null}, "budget_end_date": {"type": "integer", "index": 11, "name": "budget_end_date", "comment": null}, "budget_policy": {"type": "integer", "index": 12, "name": "budget_policy", "comment": null}, "in_budget": {"type": "boolean", "index": 13, "name": "in_budget", "comment": null}, "serving_status": {"type": "text", "index": 14, "name": "serving_status", "comment": null}, "state": {"type": "text", "index": 15, "name": "state", "comment": null}, "cost": {"type": "double precision", "index": 16, "name": "cost", "comment": null}, "clicks": {"type": "bigint", "index": 17, "name": "clicks", "comment": null}, "impressions": {"type": "bigint", "index": 18, "name": "impressions", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.amazon_ads.amazon_ads__portfolio_report"}, "model.amazon_ads.amazon_ads__search_report": {"metadata": {"type": "BASE TABLE", "schema": "amazon_ads_integration_tests_02_amazon_ads", "name": "amazon_ads__search_report", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"date_day": {"type": "date", "index": 1, "name": "date_day", "comment": null}, "account_name": {"type": "text", "index": 2, "name": "account_name", "comment": null}, "account_id": {"type": "text", "index": 3, "name": "account_id", "comment": null}, "country_code": {"type": "text", "index": 4, "name": "country_code", "comment": null}, "profile_id": {"type": "text", "index": 5, "name": "profile_id", "comment": null}, "portfolio_name": {"type": "text", "index": 6, "name": "portfolio_name", "comment": null}, "portfolio_id": {"type": "text", "index": 7, "name": "portfolio_id", "comment": null}, "campaign_name": {"type": "text", "index": 8, "name": "campaign_name", "comment": null}, "campaign_id": {"type": "text", "index": 9, "name": "campaign_id", "comment": null}, "ad_group_name": {"type": "text", "index": 10, "name": "ad_group_name", "comment": null}, "ad_group_id": {"type": "text", "index": 11, "name": "ad_group_id", "comment": null}, "keyword_id": {"type": "text", "index": 12, "name": "keyword_id", "comment": null}, "keyword_text": {"type": "text", "index": 13, "name": "keyword_text", "comment": null}, "match_type": {"type": "text", "index": 14, "name": "match_type", "comment": null}, "serving_status": {"type": "text", "index": 15, "name": "serving_status", "comment": null}, "state": {"type": "text", "index": 16, "name": "state", "comment": null}, "search_term": {"type": "text", "index": 17, "name": "search_term", "comment": null}, "targeting": {"type": "text", "index": 18, "name": "targeting", "comment": null}, "cost": {"type": "double precision", "index": 19, "name": "cost", "comment": null}, "clicks": {"type": "bigint", "index": 20, "name": "clicks", "comment": null}, "impressions": {"type": "bigint", "index": 21, "name": "impressions", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.amazon_ads.amazon_ads__search_report"}, "model.amazon_ads.int_amazon_ads__portfolio_history": {"metadata": {"type": "VIEW", "schema": "amazon_ads_integration_tests_02_amazon_ads", "name": "int_amazon_ads__portfolio_history", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"portfolio_id": {"type": "text", "index": 1, "name": "portfolio_id", "comment": null}, "budget_amount": {"type": "integer", "index": 2, "name": "budget_amount", "comment": null}, "budget_currency_code": {"type": "integer", "index": 3, "name": "budget_currency_code", "comment": null}, "budget_end_date": {"type": "integer", "index": 4, "name": "budget_end_date", "comment": null}, "budget_policy": {"type": "integer", "index": 5, "name": "budget_policy", "comment": null}, "budget_start_date": {"type": "integer", "index": 6, "name": "budget_start_date", "comment": null}, "creation_date": {"type": "text", "index": 7, "name": "creation_date", "comment": null}, "in_budget": {"type": "boolean", "index": 8, "name": "in_budget", "comment": null}, "last_updated_date": {"type": "text", "index": 9, "name": "last_updated_date", "comment": null}, "portfolio_name": {"type": "text", "index": 10, "name": "portfolio_name", "comment": null}, "profile_id": {"type": "text", "index": 11, "name": "profile_id", "comment": null}, "serving_status": {"type": "text", "index": 12, "name": "serving_status", "comment": null}, "state": {"type": "text", "index": 13, "name": "state", "comment": null}, "is_most_recent_record": {"type": "boolean", "index": 14, "name": "is_most_recent_record", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.amazon_ads.int_amazon_ads__portfolio_history"}, "model.amazon_ads_source.stg_amazon_ads__ad_group_history": {"metadata": {"type": "BASE TABLE", "schema": "amazon_ads_integration_tests_02_amazon_ads_source", "name": "stg_amazon_ads__ad_group_history", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"ad_group_id": {"type": "text", "index": 1, "name": "ad_group_id", "comment": null}, "campaign_id": {"type": "text", "index": 2, "name": "campaign_id", "comment": null}, "creation_date": {"type": "text", "index": 3, "name": "creation_date", "comment": null}, "default_bid": {"type": "double precision", "index": 4, "name": "default_bid", "comment": null}, "last_updated_date": {"type": "text", "index": 5, "name": "last_updated_date", "comment": null}, "ad_group_name": {"type": "text", "index": 6, "name": "ad_group_name", "comment": null}, "serving_status": {"type": "text", "index": 7, "name": "serving_status", "comment": null}, "state": {"type": "text", "index": 8, "name": "state", "comment": null}, "is_most_recent_record": {"type": "boolean", "index": 9, "name": "is_most_recent_record", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.amazon_ads_source.stg_amazon_ads__ad_group_history"}, "model.amazon_ads_source.stg_amazon_ads__ad_group_history_tmp": {"metadata": {"type": "VIEW", "schema": "amazon_ads_integration_tests_02_amazon_ads_source", "name": "stg_amazon_ads__ad_group_history_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "integer", "index": 1, "name": "id", "comment": null}, "last_updated_date": {"type": "text", "index": 2, "name": "last_updated_date", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "campaign_id": {"type": "integer", "index": 4, "name": "campaign_id", "comment": null}, "creation_date": {"type": "text", "index": 5, "name": "creation_date", "comment": null}, "default_bid": {"type": "double precision", "index": 6, "name": "default_bid", "comment": null}, "name": {"type": "text", "index": 7, "name": "name", "comment": null}, "serving_status": {"type": "text", "index": 8, "name": "serving_status", "comment": null}, "state": {"type": "text", "index": 9, "name": "state", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.amazon_ads_source.stg_amazon_ads__ad_group_history_tmp"}, "model.amazon_ads_source.stg_amazon_ads__ad_group_level_report": {"metadata": {"type": "BASE TABLE", "schema": "amazon_ads_integration_tests_02_amazon_ads_source", "name": "stg_amazon_ads__ad_group_level_report", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"ad_group_id": {"type": "text", "index": 1, "name": "ad_group_id", "comment": null}, "campaign_bidding_strategy": {"type": "text", "index": 2, "name": "campaign_bidding_strategy", "comment": null}, "clicks": {"type": "integer", "index": 3, "name": "clicks", "comment": null}, "cost": {"type": "double precision", "index": 4, "name": "cost", "comment": null}, "date_day": {"type": "date", "index": 5, "name": "date_day", "comment": null}, "impressions": {"type": "integer", "index": 6, "name": "impressions", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.amazon_ads_source.stg_amazon_ads__ad_group_level_report"}, "model.amazon_ads_source.stg_amazon_ads__ad_group_level_report_tmp": {"metadata": {"type": "VIEW", "schema": "amazon_ads_integration_tests_02_amazon_ads_source", "name": "stg_amazon_ads__ad_group_level_report_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"ad_group_id": {"type": "integer", "index": 1, "name": "ad_group_id", "comment": null}, "date": {"type": "date", "index": 2, "name": "date", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "campaign_bidding_strategy": {"type": "text", "index": 4, "name": "campaign_bidding_strategy", "comment": null}, "clicks": {"type": "integer", "index": 5, "name": "clicks", "comment": null}, "cost": {"type": "double precision", "index": 6, "name": "cost", "comment": null}, "impressions": {"type": "integer", "index": 7, "name": "impressions", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.amazon_ads_source.stg_amazon_ads__ad_group_level_report_tmp"}, "model.amazon_ads_source.stg_amazon_ads__advertised_product_report": {"metadata": {"type": "BASE TABLE", "schema": "amazon_ads_integration_tests_02_amazon_ads_source", "name": "stg_amazon_ads__advertised_product_report", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"ad_id": {"type": "text", "index": 1, "name": "ad_id", "comment": null}, "ad_group_id": {"type": "text", "index": 2, "name": "ad_group_id", "comment": null}, "advertised_asin": {"type": "integer", "index": 3, "name": "advertised_asin", "comment": null}, "advertised_sku": {"type": "integer", "index": 4, "name": "advertised_sku", "comment": null}, "campaign_budget_amount": {"type": "double precision", "index": 5, "name": "campaign_budget_amount", "comment": null}, "campaign_budget_currency_code": {"type": "text", "index": 6, "name": "campaign_budget_currency_code", "comment": null}, "campaign_budget_type": {"type": "text", "index": 7, "name": "campaign_budget_type", "comment": null}, "campaign_id": {"type": "text", "index": 8, "name": "campaign_id", "comment": null}, "clicks": {"type": "integer", "index": 9, "name": "clicks", "comment": null}, "cost": {"type": "double precision", "index": 10, "name": "cost", "comment": null}, "date_day": {"type": "date", "index": 11, "name": "date_day", "comment": null}, "impressions": {"type": "integer", "index": 12, "name": "impressions", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.amazon_ads_source.stg_amazon_ads__advertised_product_report"}, "model.amazon_ads_source.stg_amazon_ads__advertised_product_report_tmp": {"metadata": {"type": "VIEW", "schema": "amazon_ads_integration_tests_02_amazon_ads_source", "name": "stg_amazon_ads__advertised_product_report_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"ad_group_id": {"type": "integer", "index": 1, "name": "ad_group_id", "comment": null}, "ad_id": {"type": "integer", "index": 2, "name": "ad_id", "comment": null}, "campaign_id": {"type": "integer", "index": 3, "name": "campaign_id", "comment": null}, "date": {"type": "date", "index": 4, "name": "date", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 5, "name": "_fivetran_synced", "comment": null}, "campaign_budget_amount": {"type": "double precision", "index": 6, "name": "campaign_budget_amount", "comment": null}, "campaign_budget_currency_code": {"type": "text", "index": 7, "name": "campaign_budget_currency_code", "comment": null}, "campaign_budget_type": {"type": "text", "index": 8, "name": "campaign_budget_type", "comment": null}, "clicks": {"type": "integer", "index": 9, "name": "clicks", "comment": null}, "cost": {"type": "double precision", "index": 10, "name": "cost", "comment": null}, "impressions": {"type": "integer", "index": 11, "name": "impressions", "comment": null}, "advertised_asin": {"type": "integer", "index": 12, "name": "advertised_asin", "comment": null}, "advertised_sku": {"type": "integer", "index": 13, "name": "advertised_sku", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.amazon_ads_source.stg_amazon_ads__advertised_product_report_tmp"}, "model.amazon_ads_source.stg_amazon_ads__campaign_history": {"metadata": {"type": "BASE TABLE", "schema": "amazon_ads_integration_tests_02_amazon_ads_source", "name": "stg_amazon_ads__campaign_history", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"campaign_id": {"type": "text", "index": 1, "name": "campaign_id", "comment": null}, "last_updated_date": {"type": "text", "index": 2, "name": "last_updated_date", "comment": null}, "bidding_strategy": {"type": "text", "index": 3, "name": "bidding_strategy", "comment": null}, "creation_date": {"type": "text", "index": 4, "name": "creation_date", "comment": null}, "end_date": {"type": "integer", "index": 5, "name": "end_date", "comment": null}, "campaign_name": {"type": "text", "index": 6, "name": "campaign_name", "comment": null}, "portfolio_id": {"type": "text", "index": 7, "name": "portfolio_id", "comment": null}, "profile_id": {"type": "text", "index": 8, "name": "profile_id", "comment": null}, "serving_status": {"type": "text", "index": 9, "name": "serving_status", "comment": null}, "start_date": {"type": "date", "index": 10, "name": "start_date", "comment": null}, "state": {"type": "text", "index": 11, "name": "state", "comment": null}, "targeting_type": {"type": "text", "index": 12, "name": "targeting_type", "comment": null}, "budget": {"type": "integer", "index": 13, "name": "budget", "comment": null}, "budget_type": {"type": "text", "index": 14, "name": "budget_type", "comment": null}, "effective_budget": {"type": "integer", "index": 15, "name": "effective_budget", "comment": null}, "is_most_recent_record": {"type": "boolean", "index": 16, "name": "is_most_recent_record", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.amazon_ads_source.stg_amazon_ads__campaign_history"}, "model.amazon_ads_source.stg_amazon_ads__campaign_history_tmp": {"metadata": {"type": "VIEW", "schema": "amazon_ads_integration_tests_02_amazon_ads_source", "name": "stg_amazon_ads__campaign_history_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "integer", "index": 1, "name": "id", "comment": null}, "last_updated_date": {"type": "text", "index": 2, "name": "last_updated_date", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "bidding_strategy": {"type": "text", "index": 4, "name": "bidding_strategy", "comment": null}, "creation_date": {"type": "text", "index": 5, "name": "creation_date", "comment": null}, "budget": {"type": "integer", "index": 6, "name": "budget", "comment": null}, "end_date": {"type": "integer", "index": 7, "name": "end_date", "comment": null}, "name": {"type": "text", "index": 8, "name": "name", "comment": null}, "portfolio_id": {"type": "integer", "index": 9, "name": "portfolio_id", "comment": null}, "profile_id": {"type": "integer", "index": 10, "name": "profile_id", "comment": null}, "serving_status": {"type": "text", "index": 11, "name": "serving_status", "comment": null}, "start_date": {"type": "date", "index": 12, "name": "start_date", "comment": null}, "state": {"type": "text", "index": 13, "name": "state", "comment": null}, "targeting_type": {"type": "text", "index": 14, "name": "targeting_type", "comment": null}, "budget_type": {"type": "text", "index": 15, "name": "budget_type", "comment": null}, "effective_budget": {"type": "integer", "index": 16, "name": "effective_budget", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.amazon_ads_source.stg_amazon_ads__campaign_history_tmp"}, "model.amazon_ads_source.stg_amazon_ads__campaign_level_report": {"metadata": {"type": "BASE TABLE", "schema": "amazon_ads_integration_tests_02_amazon_ads_source", "name": "stg_amazon_ads__campaign_level_report", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"campaign_applicable_budget_rule_id": {"type": "integer", "index": 1, "name": "campaign_applicable_budget_rule_id", "comment": null}, "campaign_applicable_budget_rule_name": {"type": "integer", "index": 2, "name": "campaign_applicable_budget_rule_name", "comment": null}, "campaign_bidding_strategy": {"type": "text", "index": 3, "name": "campaign_bidding_strategy", "comment": null}, "campaign_budget_amount": {"type": "double precision", "index": 4, "name": "campaign_budget_amount", "comment": null}, "campaign_budget_currency_code": {"type": "text", "index": 5, "name": "campaign_budget_currency_code", "comment": null}, "campaign_budget_type": {"type": "text", "index": 6, "name": "campaign_budget_type", "comment": null}, "campaign_id": {"type": "text", "index": 7, "name": "campaign_id", "comment": null}, "campaign_rule_based_budget_amount": {"type": "integer", "index": 8, "name": "campaign_rule_based_budget_amount", "comment": null}, "clicks": {"type": "integer", "index": 9, "name": "clicks", "comment": null}, "cost": {"type": "double precision", "index": 10, "name": "cost", "comment": null}, "date_day": {"type": "date", "index": 11, "name": "date_day", "comment": null}, "impressions": {"type": "integer", "index": 12, "name": "impressions", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.amazon_ads_source.stg_amazon_ads__campaign_level_report"}, "model.amazon_ads_source.stg_amazon_ads__campaign_level_report_tmp": {"metadata": {"type": "VIEW", "schema": "amazon_ads_integration_tests_02_amazon_ads_source", "name": "stg_amazon_ads__campaign_level_report_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"campaign_id": {"type": "integer", "index": 1, "name": "campaign_id", "comment": null}, "date": {"type": "date", "index": 2, "name": "date", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "campaign_applicable_budget_rule_id": {"type": "integer", "index": 4, "name": "campaign_applicable_budget_rule_id", "comment": null}, "campaign_applicable_budget_rule_name": {"type": "integer", "index": 5, "name": "campaign_applicable_budget_rule_name", "comment": null}, "campaign_bidding_strategy": {"type": "text", "index": 6, "name": "campaign_bidding_strategy", "comment": null}, "campaign_budget_amount": {"type": "double precision", "index": 7, "name": "campaign_budget_amount", "comment": null}, "campaign_budget_currency_code": {"type": "text", "index": 8, "name": "campaign_budget_currency_code", "comment": null}, "campaign_budget_type": {"type": "text", "index": 9, "name": "campaign_budget_type", "comment": null}, "clicks": {"type": "integer", "index": 10, "name": "clicks", "comment": null}, "cost": {"type": "double precision", "index": 11, "name": "cost", "comment": null}, "impressions": {"type": "integer", "index": 12, "name": "impressions", "comment": null}, "campaign_rule_based_budget_amount": {"type": "integer", "index": 13, "name": "campaign_rule_based_budget_amount", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.amazon_ads_source.stg_amazon_ads__campaign_level_report_tmp"}, "model.amazon_ads_source.stg_amazon_ads__keyword_history": {"metadata": {"type": "BASE TABLE", "schema": "amazon_ads_integration_tests_02_amazon_ads_source", "name": "stg_amazon_ads__keyword_history", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"keyword_id": {"type": "text", "index": 1, "name": "keyword_id", "comment": null}, "ad_group_id": {"type": "text", "index": 2, "name": "ad_group_id", "comment": null}, "bid": {"type": "double precision", "index": 3, "name": "bid", "comment": null}, "campaign_id": {"type": "text", "index": 4, "name": "campaign_id", "comment": null}, "creation_date": {"type": "text", "index": 5, "name": "creation_date", "comment": null}, "keyword_text": {"type": "text", "index": 6, "name": "keyword_text", "comment": null}, "last_updated_date": {"type": "text", "index": 7, "name": "last_updated_date", "comment": null}, "match_type": {"type": "text", "index": 8, "name": "match_type", "comment": null}, "native_language_keyword": {"type": "integer", "index": 9, "name": "native_language_keyword", "comment": null}, "serving_status": {"type": "text", "index": 10, "name": "serving_status", "comment": null}, "state": {"type": "text", "index": 11, "name": "state", "comment": null}, "native_language_locale": {"type": "integer", "index": 12, "name": "native_language_locale", "comment": null}, "is_most_recent_record": {"type": "boolean", "index": 13, "name": "is_most_recent_record", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.amazon_ads_source.stg_amazon_ads__keyword_history"}, "model.amazon_ads_source.stg_amazon_ads__keyword_history_tmp": {"metadata": {"type": "VIEW", "schema": "amazon_ads_integration_tests_02_amazon_ads_source", "name": "stg_amazon_ads__keyword_history_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "integer", "index": 1, "name": "id", "comment": null}, "last_updated_date": {"type": "text", "index": 2, "name": "last_updated_date", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "ad_group_id": {"type": "integer", "index": 4, "name": "ad_group_id", "comment": null}, "bid": {"type": "double precision", "index": 5, "name": "bid", "comment": null}, "campaign_id": {"type": "integer", "index": 6, "name": "campaign_id", "comment": null}, "creation_date": {"type": "text", "index": 7, "name": "creation_date", "comment": null}, "keyword_text": {"type": "text", "index": 8, "name": "keyword_text", "comment": null}, "match_type": {"type": "text", "index": 9, "name": "match_type", "comment": null}, "native_language_keyword": {"type": "integer", "index": 10, "name": "native_language_keyword", "comment": null}, "serving_status": {"type": "text", "index": 11, "name": "serving_status", "comment": null}, "state": {"type": "text", "index": 12, "name": "state", "comment": null}, "native_language_locale": {"type": "integer", "index": 13, "name": "native_language_locale", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.amazon_ads_source.stg_amazon_ads__keyword_history_tmp"}, "model.amazon_ads_source.stg_amazon_ads__portfolio_history": {"metadata": {"type": "BASE TABLE", "schema": "amazon_ads_integration_tests_02_amazon_ads_source", "name": "stg_amazon_ads__portfolio_history", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"portfolio_id": {"type": "text", "index": 1, "name": "portfolio_id", "comment": null}, "budget_amount": {"type": "integer", "index": 2, "name": "budget_amount", "comment": null}, "budget_currency_code": {"type": "integer", "index": 3, "name": "budget_currency_code", "comment": null}, "budget_end_date": {"type": "integer", "index": 4, "name": "budget_end_date", "comment": null}, "budget_policy": {"type": "integer", "index": 5, "name": "budget_policy", "comment": null}, "budget_start_date": {"type": "integer", "index": 6, "name": "budget_start_date", "comment": null}, "creation_date": {"type": "text", "index": 7, "name": "creation_date", "comment": null}, "in_budget": {"type": "boolean", "index": 8, "name": "in_budget", "comment": null}, "last_updated_date": {"type": "text", "index": 9, "name": "last_updated_date", "comment": null}, "portfolio_name": {"type": "text", "index": 10, "name": "portfolio_name", "comment": null}, "profile_id": {"type": "text", "index": 11, "name": "profile_id", "comment": null}, "serving_status": {"type": "text", "index": 12, "name": "serving_status", "comment": null}, "state": {"type": "text", "index": 13, "name": "state", "comment": null}, "is_most_recent_record": {"type": "boolean", "index": 14, "name": "is_most_recent_record", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.amazon_ads_source.stg_amazon_ads__portfolio_history"}, "model.amazon_ads_source.stg_amazon_ads__portfolio_history_tmp": {"metadata": {"type": "VIEW", "schema": "amazon_ads_integration_tests_02_amazon_ads_source", "name": "stg_amazon_ads__portfolio_history_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "integer", "index": 1, "name": "id", "comment": null}, "last_updated_date": {"type": "text", "index": 2, "name": "last_updated_date", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "budget_amount": {"type": "integer", "index": 4, "name": "budget_amount", "comment": null}, "budget_currency_code": {"type": "integer", "index": 5, "name": "budget_currency_code", "comment": null}, "budget_end_date": {"type": "integer", "index": 6, "name": "budget_end_date", "comment": null}, "budget_policy": {"type": "integer", "index": 7, "name": "budget_policy", "comment": null}, "budget_start_date": {"type": "integer", "index": 8, "name": "budget_start_date", "comment": null}, "creation_date": {"type": "text", "index": 9, "name": "creation_date", "comment": null}, "in_budget": {"type": "boolean", "index": 10, "name": "in_budget", "comment": null}, "name": {"type": "text", "index": 11, "name": "name", "comment": null}, "profile_id": {"type": "integer", "index": 12, "name": "profile_id", "comment": null}, "serving_status": {"type": "text", "index": 13, "name": "serving_status", "comment": null}, "state": {"type": "text", "index": 14, "name": "state", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.amazon_ads_source.stg_amazon_ads__portfolio_history_tmp"}, "model.amazon_ads_source.stg_amazon_ads__product_ad_history": {"metadata": {"type": "BASE TABLE", "schema": "amazon_ads_integration_tests_02_amazon_ads_source", "name": "stg_amazon_ads__product_ad_history", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"ad_id": {"type": "text", "index": 1, "name": "ad_id", "comment": null}, "ad_group_id": {"type": "text", "index": 2, "name": "ad_group_id", "comment": null}, "asin": {"type": "text", "index": 3, "name": "asin", "comment": null}, "campaign_id": {"type": "text", "index": 4, "name": "campaign_id", "comment": null}, "creation_date": {"type": "text", "index": 5, "name": "creation_date", "comment": null}, "last_updated_date": {"type": "text", "index": 6, "name": "last_updated_date", "comment": null}, "serving_status": {"type": "text", "index": 7, "name": "serving_status", "comment": null}, "sku": {"type": "integer", "index": 8, "name": "sku", "comment": null}, "state": {"type": "text", "index": 9, "name": "state", "comment": null}, "is_most_recent_record": {"type": "boolean", "index": 10, "name": "is_most_recent_record", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.amazon_ads_source.stg_amazon_ads__product_ad_history"}, "model.amazon_ads_source.stg_amazon_ads__product_ad_history_tmp": {"metadata": {"type": "VIEW", "schema": "amazon_ads_integration_tests_02_amazon_ads_source", "name": "stg_amazon_ads__product_ad_history_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "integer", "index": 1, "name": "id", "comment": null}, "last_updated_date": {"type": "text", "index": 2, "name": "last_updated_date", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "ad_group_id": {"type": "integer", "index": 4, "name": "ad_group_id", "comment": null}, "asin": {"type": "text", "index": 5, "name": "asin", "comment": null}, "campaign_id": {"type": "integer", "index": 6, "name": "campaign_id", "comment": null}, "creation_date": {"type": "text", "index": 7, "name": "creation_date", "comment": null}, "serving_status": {"type": "text", "index": 8, "name": "serving_status", "comment": null}, "sku": {"type": "integer", "index": 9, "name": "sku", "comment": null}, "state": {"type": "text", "index": 10, "name": "state", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.amazon_ads_source.stg_amazon_ads__product_ad_history_tmp"}, "model.amazon_ads_source.stg_amazon_ads__profile": {"metadata": {"type": "BASE TABLE", "schema": "amazon_ads_integration_tests_02_amazon_ads_source", "name": "stg_amazon_ads__profile", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"profile_id": {"type": "text", "index": 1, "name": "profile_id", "comment": null}, "account_id": {"type": "text", "index": 2, "name": "account_id", "comment": null}, "account_marketplace_string_id": {"type": "text", "index": 3, "name": "account_marketplace_string_id", "comment": null}, "account_name": {"type": "text", "index": 4, "name": "account_name", "comment": null}, "account_sub_type": {"type": "integer", "index": 5, "name": "account_sub_type", "comment": null}, "account_type": {"type": "text", "index": 6, "name": "account_type", "comment": null}, "account_valid_payment_method": {"type": "boolean", "index": 7, "name": "account_valid_payment_method", "comment": null}, "country_code": {"type": "text", "index": 8, "name": "country_code", "comment": null}, "currency_code": {"type": "text", "index": 9, "name": "currency_code", "comment": null}, "daily_budget": {"type": "integer", "index": 10, "name": "daily_budget", "comment": null}, "timezone": {"type": "text", "index": 11, "name": "timezone", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 12, "name": "_fivetran_deleted", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.amazon_ads_source.stg_amazon_ads__profile"}, "model.amazon_ads_source.stg_amazon_ads__profile_tmp": {"metadata": {"type": "VIEW", "schema": "amazon_ads_integration_tests_02_amazon_ads_source", "name": "stg_amazon_ads__profile_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "integer", "index": 1, "name": "id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 2, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "account_id": {"type": "text", "index": 4, "name": "account_id", "comment": null}, "account_marketplace_string_id": {"type": "text", "index": 5, "name": "account_marketplace_string_id", "comment": null}, "account_name": {"type": "text", "index": 6, "name": "account_name", "comment": null}, "account_sub_type": {"type": "integer", "index": 7, "name": "account_sub_type", "comment": null}, "account_type": {"type": "text", "index": 8, "name": "account_type", "comment": null}, "account_valid_payment_method": {"type": "boolean", "index": 9, "name": "account_valid_payment_method", "comment": null}, "country_code": {"type": "text", "index": 10, "name": "country_code", "comment": null}, "currency_code": {"type": "text", "index": 11, "name": "currency_code", "comment": null}, "daily_budget": {"type": "integer", "index": 12, "name": "daily_budget", "comment": null}, "timezone": {"type": "text", "index": 13, "name": "timezone", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.amazon_ads_source.stg_amazon_ads__profile_tmp"}, "model.amazon_ads_source.stg_amazon_ads__search_term_ad_keyword_report": {"metadata": {"type": "BASE TABLE", "schema": "amazon_ads_integration_tests_02_amazon_ads_source", "name": "stg_amazon_ads__search_term_ad_keyword_report", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"ad_group_id": {"type": "text", "index": 1, "name": "ad_group_id", "comment": null}, "ad_keyword_status": {"type": "text", "index": 2, "name": "ad_keyword_status", "comment": null}, "campaign_budget_amount": {"type": "double precision", "index": 3, "name": "campaign_budget_amount", "comment": null}, "campaign_budget_currency_code": {"type": "text", "index": 4, "name": "campaign_budget_currency_code", "comment": null}, "campaign_budget_type": {"type": "text", "index": 5, "name": "campaign_budget_type", "comment": null}, "campaign_id": {"type": "text", "index": 6, "name": "campaign_id", "comment": null}, "clicks": {"type": "integer", "index": 7, "name": "clicks", "comment": null}, "cost": {"type": "double precision", "index": 8, "name": "cost", "comment": null}, "date_day": {"type": "date", "index": 9, "name": "date_day", "comment": null}, "impressions": {"type": "integer", "index": 10, "name": "impressions", "comment": null}, "keyword_bid": {"type": "double precision", "index": 11, "name": "keyword_bid", "comment": null}, "keyword_id": {"type": "text", "index": 12, "name": "keyword_id", "comment": null}, "search_term": {"type": "text", "index": 13, "name": "search_term", "comment": null}, "targeting": {"type": "text", "index": 14, "name": "targeting", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.amazon_ads_source.stg_amazon_ads__search_term_ad_keyword_report"}, "model.amazon_ads_source.stg_amazon_ads__search_term_ad_keyword_report_tmp": {"metadata": {"type": "VIEW", "schema": "amazon_ads_integration_tests_02_amazon_ads_source", "name": "stg_amazon_ads__search_term_ad_keyword_report_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"ad_group_id": {"type": "integer", "index": 1, "name": "ad_group_id", "comment": null}, "campaign_id": {"type": "integer", "index": 2, "name": "campaign_id", "comment": null}, "date": {"type": "date", "index": 3, "name": "date", "comment": null}, "keyword_id": {"type": "integer", "index": 4, "name": "keyword_id", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 5, "name": "_fivetran_synced", "comment": null}, "campaign_budget_amount": {"type": "double precision", "index": 6, "name": "campaign_budget_amount", "comment": null}, "campaign_budget_currency_code": {"type": "text", "index": 7, "name": "campaign_budget_currency_code", "comment": null}, "campaign_budget_type": {"type": "text", "index": 8, "name": "campaign_budget_type", "comment": null}, "clicks": {"type": "integer", "index": 9, "name": "clicks", "comment": null}, "cost": {"type": "double precision", "index": 10, "name": "cost", "comment": null}, "impressions": {"type": "integer", "index": 11, "name": "impressions", "comment": null}, "keyword_bid": {"type": "double precision", "index": 12, "name": "keyword_bid", "comment": null}, "search_term": {"type": "text", "index": 13, "name": "search_term", "comment": null}, "targeting": {"type": "text", "index": 14, "name": "targeting", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.amazon_ads_source.stg_amazon_ads__search_term_ad_keyword_report_tmp"}, "model.amazon_ads_source.stg_amazon_ads__targeting_keyword_report": {"metadata": {"type": "BASE TABLE", "schema": "amazon_ads_integration_tests_02_amazon_ads_source", "name": "stg_amazon_ads__targeting_keyword_report", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"ad_group_id": {"type": "text", "index": 1, "name": "ad_group_id", "comment": null}, "ad_keyword_status": {"type": "text", "index": 2, "name": "ad_keyword_status", "comment": null}, "campaign_budget_amount": {"type": "double precision", "index": 3, "name": "campaign_budget_amount", "comment": null}, "campaign_budget_currency_code": {"type": "text", "index": 4, "name": "campaign_budget_currency_code", "comment": null}, "campaign_budget_type": {"type": "text", "index": 5, "name": "campaign_budget_type", "comment": null}, "campaign_id": {"type": "text", "index": 6, "name": "campaign_id", "comment": null}, "clicks": {"type": "integer", "index": 7, "name": "clicks", "comment": null}, "cost": {"type": "double precision", "index": 8, "name": "cost", "comment": null}, "date_day": {"type": "date", "index": 9, "name": "date_day", "comment": null}, "impressions": {"type": "integer", "index": 10, "name": "impressions", "comment": null}, "keyword_bid": {"type": "double precision", "index": 11, "name": "keyword_bid", "comment": null}, "keyword_id": {"type": "text", "index": 12, "name": "keyword_id", "comment": null}, "keyword_type": {"type": "text", "index": 13, "name": "keyword_type", "comment": null}, "match_type": {"type": "text", "index": 14, "name": "match_type", "comment": null}, "targeting": {"type": "text", "index": 15, "name": "targeting", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.amazon_ads_source.stg_amazon_ads__targeting_keyword_report"}, "model.amazon_ads_source.stg_amazon_ads__targeting_keyword_report_tmp": {"metadata": {"type": "VIEW", "schema": "amazon_ads_integration_tests_02_amazon_ads_source", "name": "stg_amazon_ads__targeting_keyword_report_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"ad_group_id": {"type": "integer", "index": 1, "name": "ad_group_id", "comment": null}, "campaign_id": {"type": "integer", "index": 2, "name": "campaign_id", "comment": null}, "date": {"type": "date", "index": 3, "name": "date", "comment": null}, "keyword_id": {"type": "integer", "index": 4, "name": "keyword_id", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 5, "name": "_fivetran_synced", "comment": null}, "ad_keyword_status": {"type": "text", "index": 6, "name": "ad_keyword_status", "comment": null}, "campaign_budget_amount": {"type": "double precision", "index": 7, "name": "campaign_budget_amount", "comment": null}, "campaign_budget_currency_code": {"type": "text", "index": 8, "name": "campaign_budget_currency_code", "comment": null}, "campaign_budget_type": {"type": "text", "index": 9, "name": "campaign_budget_type", "comment": null}, "clicks": {"type": "integer", "index": 10, "name": "clicks", "comment": null}, "cost": {"type": "double precision", "index": 11, "name": "cost", "comment": null}, "impressions": {"type": "integer", "index": 12, "name": "impressions", "comment": null}, "keyword_bid": {"type": "double precision", "index": 13, "name": "keyword_bid", "comment": null}, "keyword_type": {"type": "text", "index": 14, "name": "keyword_type", "comment": null}, "match_type": {"type": "text", "index": 15, "name": "match_type", "comment": null}, "targeting": {"type": "text", "index": 16, "name": "targeting", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.amazon_ads_source.stg_amazon_ads__targeting_keyword_report_tmp"}}, "sources": {"source.amazon_ads_source.amazon_ads.ad_group_history": {"metadata": {"type": "BASE TABLE", "schema": "amazon_ads_integration_tests_02", "name": "ad_group_history_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "integer", "index": 1, "name": "id", "comment": null}, "last_updated_date": {"type": "text", "index": 2, "name": "last_updated_date", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "campaign_id": {"type": "integer", "index": 4, "name": "campaign_id", "comment": null}, "creation_date": {"type": "text", "index": 5, "name": "creation_date", "comment": null}, "default_bid": {"type": "double precision", "index": 6, "name": "default_bid", "comment": null}, "name": {"type": "text", "index": 7, "name": "name", "comment": null}, "serving_status": {"type": "text", "index": 8, "name": "serving_status", "comment": null}, "state": {"type": "text", "index": 9, "name": "state", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.amazon_ads_source.amazon_ads.ad_group_history"}, "source.amazon_ads_source.amazon_ads.ad_group_level_report": {"metadata": {"type": "BASE TABLE", "schema": "amazon_ads_integration_tests_02", "name": "ad_group_level_report_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"ad_group_id": {"type": "integer", "index": 1, "name": "ad_group_id", "comment": null}, "date": {"type": "date", "index": 2, "name": "date", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "campaign_bidding_strategy": {"type": "text", "index": 4, "name": "campaign_bidding_strategy", "comment": null}, "clicks": {"type": "integer", "index": 5, "name": "clicks", "comment": null}, "cost": {"type": "double precision", "index": 6, "name": "cost", "comment": null}, "impressions": {"type": "integer", "index": 7, "name": "impressions", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.amazon_ads_source.amazon_ads.ad_group_level_report"}, "source.amazon_ads_source.amazon_ads.advertised_product_report": {"metadata": {"type": "BASE TABLE", "schema": "amazon_ads_integration_tests_02", "name": "advertised_product_report_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"ad_group_id": {"type": "integer", "index": 1, "name": "ad_group_id", "comment": null}, "ad_id": {"type": "integer", "index": 2, "name": "ad_id", "comment": null}, "campaign_id": {"type": "integer", "index": 3, "name": "campaign_id", "comment": null}, "date": {"type": "date", "index": 4, "name": "date", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 5, "name": "_fivetran_synced", "comment": null}, "campaign_budget_amount": {"type": "double precision", "index": 6, "name": "campaign_budget_amount", "comment": null}, "campaign_budget_currency_code": {"type": "text", "index": 7, "name": "campaign_budget_currency_code", "comment": null}, "campaign_budget_type": {"type": "text", "index": 8, "name": "campaign_budget_type", "comment": null}, "clicks": {"type": "integer", "index": 9, "name": "clicks", "comment": null}, "cost": {"type": "double precision", "index": 10, "name": "cost", "comment": null}, "impressions": {"type": "integer", "index": 11, "name": "impressions", "comment": null}, "advertised_asin": {"type": "integer", "index": 12, "name": "advertised_asin", "comment": null}, "advertised_sku": {"type": "integer", "index": 13, "name": "advertised_sku", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.amazon_ads_source.amazon_ads.advertised_product_report"}, "source.amazon_ads_source.amazon_ads.campaign_history": {"metadata": {"type": "BASE TABLE", "schema": "amazon_ads_integration_tests_02", "name": "campaign_history_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "integer", "index": 1, "name": "id", "comment": null}, "last_updated_date": {"type": "text", "index": 2, "name": "last_updated_date", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "bidding_strategy": {"type": "text", "index": 4, "name": "bidding_strategy", "comment": null}, "creation_date": {"type": "text", "index": 5, "name": "creation_date", "comment": null}, "budget": {"type": "integer", "index": 6, "name": "budget", "comment": null}, "end_date": {"type": "integer", "index": 7, "name": "end_date", "comment": null}, "name": {"type": "text", "index": 8, "name": "name", "comment": null}, "portfolio_id": {"type": "integer", "index": 9, "name": "portfolio_id", "comment": null}, "profile_id": {"type": "integer", "index": 10, "name": "profile_id", "comment": null}, "serving_status": {"type": "text", "index": 11, "name": "serving_status", "comment": null}, "start_date": {"type": "date", "index": 12, "name": "start_date", "comment": null}, "state": {"type": "text", "index": 13, "name": "state", "comment": null}, "targeting_type": {"type": "text", "index": 14, "name": "targeting_type", "comment": null}, "budget_type": {"type": "text", "index": 15, "name": "budget_type", "comment": null}, "effective_budget": {"type": "integer", "index": 16, "name": "effective_budget", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.amazon_ads_source.amazon_ads.campaign_history"}, "source.amazon_ads_source.amazon_ads.campaign_level_report": {"metadata": {"type": "BASE TABLE", "schema": "amazon_ads_integration_tests_02", "name": "campaign_level_report_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"campaign_id": {"type": "integer", "index": 1, "name": "campaign_id", "comment": null}, "date": {"type": "date", "index": 2, "name": "date", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "campaign_applicable_budget_rule_id": {"type": "integer", "index": 4, "name": "campaign_applicable_budget_rule_id", "comment": null}, "campaign_applicable_budget_rule_name": {"type": "integer", "index": 5, "name": "campaign_applicable_budget_rule_name", "comment": null}, "campaign_bidding_strategy": {"type": "text", "index": 6, "name": "campaign_bidding_strategy", "comment": null}, "campaign_budget_amount": {"type": "double precision", "index": 7, "name": "campaign_budget_amount", "comment": null}, "campaign_budget_currency_code": {"type": "text", "index": 8, "name": "campaign_budget_currency_code", "comment": null}, "campaign_budget_type": {"type": "text", "index": 9, "name": "campaign_budget_type", "comment": null}, "clicks": {"type": "integer", "index": 10, "name": "clicks", "comment": null}, "cost": {"type": "double precision", "index": 11, "name": "cost", "comment": null}, "impressions": {"type": "integer", "index": 12, "name": "impressions", "comment": null}, "campaign_rule_based_budget_amount": {"type": "integer", "index": 13, "name": "campaign_rule_based_budget_amount", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.amazon_ads_source.amazon_ads.campaign_level_report"}, "source.amazon_ads_source.amazon_ads.keyword_history": {"metadata": {"type": "BASE TABLE", "schema": "amazon_ads_integration_tests_02", "name": "keyword_history_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "integer", "index": 1, "name": "id", "comment": null}, "last_updated_date": {"type": "text", "index": 2, "name": "last_updated_date", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "ad_group_id": {"type": "integer", "index": 4, "name": "ad_group_id", "comment": null}, "bid": {"type": "double precision", "index": 5, "name": "bid", "comment": null}, "campaign_id": {"type": "integer", "index": 6, "name": "campaign_id", "comment": null}, "creation_date": {"type": "text", "index": 7, "name": "creation_date", "comment": null}, "keyword_text": {"type": "text", "index": 8, "name": "keyword_text", "comment": null}, "match_type": {"type": "text", "index": 9, "name": "match_type", "comment": null}, "native_language_keyword": {"type": "integer", "index": 10, "name": "native_language_keyword", "comment": null}, "serving_status": {"type": "text", "index": 11, "name": "serving_status", "comment": null}, "state": {"type": "text", "index": 12, "name": "state", "comment": null}, "native_language_locale": {"type": "integer", "index": 13, "name": "native_language_locale", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.amazon_ads_source.amazon_ads.keyword_history"}, "source.amazon_ads_source.amazon_ads.portfolio_history": {"metadata": {"type": "BASE TABLE", "schema": "amazon_ads_integration_tests_02", "name": "portfolio_history_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "integer", "index": 1, "name": "id", "comment": null}, "last_updated_date": {"type": "text", "index": 2, "name": "last_updated_date", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "budget_amount": {"type": "integer", "index": 4, "name": "budget_amount", "comment": null}, "budget_currency_code": {"type": "integer", "index": 5, "name": "budget_currency_code", "comment": null}, "budget_end_date": {"type": "integer", "index": 6, "name": "budget_end_date", "comment": null}, "budget_policy": {"type": "integer", "index": 7, "name": "budget_policy", "comment": null}, "budget_start_date": {"type": "integer", "index": 8, "name": "budget_start_date", "comment": null}, "creation_date": {"type": "text", "index": 9, "name": "creation_date", "comment": null}, "in_budget": {"type": "boolean", "index": 10, "name": "in_budget", "comment": null}, "name": {"type": "text", "index": 11, "name": "name", "comment": null}, "profile_id": {"type": "integer", "index": 12, "name": "profile_id", "comment": null}, "serving_status": {"type": "text", "index": 13, "name": "serving_status", "comment": null}, "state": {"type": "text", "index": 14, "name": "state", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.amazon_ads_source.amazon_ads.portfolio_history"}, "source.amazon_ads_source.amazon_ads.product_ad_history": {"metadata": {"type": "BASE TABLE", "schema": "amazon_ads_integration_tests_02", "name": "product_ad_history_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "integer", "index": 1, "name": "id", "comment": null}, "last_updated_date": {"type": "text", "index": 2, "name": "last_updated_date", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "ad_group_id": {"type": "integer", "index": 4, "name": "ad_group_id", "comment": null}, "asin": {"type": "text", "index": 5, "name": "asin", "comment": null}, "campaign_id": {"type": "integer", "index": 6, "name": "campaign_id", "comment": null}, "creation_date": {"type": "text", "index": 7, "name": "creation_date", "comment": null}, "serving_status": {"type": "text", "index": 8, "name": "serving_status", "comment": null}, "sku": {"type": "integer", "index": 9, "name": "sku", "comment": null}, "state": {"type": "text", "index": 10, "name": "state", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.amazon_ads_source.amazon_ads.product_ad_history"}, "source.amazon_ads_source.amazon_ads.profile": {"metadata": {"type": "BASE TABLE", "schema": "amazon_ads_integration_tests_02", "name": "profile_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "integer", "index": 1, "name": "id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 2, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "account_id": {"type": "text", "index": 4, "name": "account_id", "comment": null}, "account_marketplace_string_id": {"type": "text", "index": 5, "name": "account_marketplace_string_id", "comment": null}, "account_name": {"type": "text", "index": 6, "name": "account_name", "comment": null}, "account_sub_type": {"type": "integer", "index": 7, "name": "account_sub_type", "comment": null}, "account_type": {"type": "text", "index": 8, "name": "account_type", "comment": null}, "account_valid_payment_method": {"type": "boolean", "index": 9, "name": "account_valid_payment_method", "comment": null}, "country_code": {"type": "text", "index": 10, "name": "country_code", "comment": null}, "currency_code": {"type": "text", "index": 11, "name": "currency_code", "comment": null}, "daily_budget": {"type": "integer", "index": 12, "name": "daily_budget", "comment": null}, "timezone": {"type": "text", "index": 13, "name": "timezone", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.amazon_ads_source.amazon_ads.profile"}, "source.amazon_ads_source.amazon_ads.search_term_ad_keyword_report": {"metadata": {"type": "BASE TABLE", "schema": "amazon_ads_integration_tests_02", "name": "search_term_ad_keyword_report_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"ad_group_id": {"type": "integer", "index": 1, "name": "ad_group_id", "comment": null}, "campaign_id": {"type": "integer", "index": 2, "name": "campaign_id", "comment": null}, "date": {"type": "date", "index": 3, "name": "date", "comment": null}, "keyword_id": {"type": "integer", "index": 4, "name": "keyword_id", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 5, "name": "_fivetran_synced", "comment": null}, "campaign_budget_amount": {"type": "double precision", "index": 6, "name": "campaign_budget_amount", "comment": null}, "campaign_budget_currency_code": {"type": "text", "index": 7, "name": "campaign_budget_currency_code", "comment": null}, "campaign_budget_type": {"type": "text", "index": 8, "name": "campaign_budget_type", "comment": null}, "clicks": {"type": "integer", "index": 9, "name": "clicks", "comment": null}, "cost": {"type": "double precision", "index": 10, "name": "cost", "comment": null}, "impressions": {"type": "integer", "index": 11, "name": "impressions", "comment": null}, "keyword_bid": {"type": "double precision", "index": 12, "name": "keyword_bid", "comment": null}, "search_term": {"type": "text", "index": 13, "name": "search_term", "comment": null}, "targeting": {"type": "text", "index": 14, "name": "targeting", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.amazon_ads_source.amazon_ads.search_term_ad_keyword_report"}, "source.amazon_ads_source.amazon_ads.targeting_keyword_report": {"metadata": {"type": "BASE TABLE", "schema": "amazon_ads_integration_tests_02", "name": "targeting_keyword_report_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"ad_group_id": {"type": "integer", "index": 1, "name": "ad_group_id", "comment": null}, "campaign_id": {"type": "integer", "index": 2, "name": "campaign_id", "comment": null}, "date": {"type": "date", "index": 3, "name": "date", "comment": null}, "keyword_id": {"type": "integer", "index": 4, "name": "keyword_id", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 5, "name": "_fivetran_synced", "comment": null}, "ad_keyword_status": {"type": "text", "index": 6, "name": "ad_keyword_status", "comment": null}, "campaign_budget_amount": {"type": "double precision", "index": 7, "name": "campaign_budget_amount", "comment": null}, "campaign_budget_currency_code": {"type": "text", "index": 8, "name": "campaign_budget_currency_code", "comment": null}, "campaign_budget_type": {"type": "text", "index": 9, "name": "campaign_budget_type", "comment": null}, "clicks": {"type": "integer", "index": 10, "name": "clicks", "comment": null}, "cost": {"type": "double precision", "index": 11, "name": "cost", "comment": null}, "impressions": {"type": "integer", "index": 12, "name": "impressions", "comment": null}, "keyword_bid": {"type": "double precision", "index": 13, "name": "keyword_bid", "comment": null}, "keyword_type": {"type": "text", "index": 14, "name": "keyword_type", "comment": null}, "match_type": {"type": "text", "index": 15, "name": "match_type", "comment": null}, "targeting": {"type": "text", "index": 16, "name": "targeting", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.amazon_ads_source.amazon_ads.targeting_keyword_report"}}, "errors": null}
\ No newline at end of file
+{"metadata": {"dbt_schema_version": "https://schemas.getdbt.com/dbt/catalog/v1.json", "dbt_version": "1.7.13", "generated_at": "2024-10-25T21:34:07.920143Z", "invocation_id": "2450bca4-1dd3-401a-af85-d853c7b64435", "env": {}}, "nodes": {"seed.amazon_ads_integration_tests.ad_group_history_data": {"metadata": {"type": "table", "schema": "amazon_ads_test", "name": "ad_group_history_data", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"id": {"type": "INT64", "index": 1, "name": "id", "comment": null}, "last_updated_date": {"type": "STRING", "index": 2, "name": "last_updated_date", "comment": null}, "_fivetran_synced": {"type": "TIMESTAMP", "index": 3, "name": "_fivetran_synced", "comment": null}, "campaign_id": {"type": "INT64", "index": 4, "name": "campaign_id", "comment": null}, "creation_date": {"type": "STRING", "index": 5, "name": "creation_date", "comment": null}, "default_bid": {"type": "FLOAT64", "index": 6, "name": "default_bid", "comment": null}, "name": {"type": "STRING", "index": 7, "name": "name", "comment": null}, "serving_status": {"type": "STRING", "index": 8, "name": "serving_status", "comment": null}, "state": {"type": "STRING", "index": 9, "name": "state", "comment": null}}, "stats": {"num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 248, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 2, "include": true, "description": "Approximate count of rows in this table"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.amazon_ads_integration_tests.ad_group_history_data"}, "seed.amazon_ads_integration_tests.ad_group_level_report_data": {"metadata": {"type": "table", "schema": "amazon_ads_test", "name": "ad_group_level_report_data", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"ad_group_id": {"type": "INT64", "index": 1, "name": "ad_group_id", "comment": null}, "date": {"type": "DATE", "index": 2, "name": "date", "comment": null}, "_fivetran_synced": {"type": "TIMESTAMP", "index": 3, "name": "_fivetran_synced", "comment": null}, "campaign_bidding_strategy": {"type": "STRING", "index": 4, "name": "campaign_bidding_strategy", "comment": null}, "clicks": {"type": "FLOAT64", "index": 5, "name": "clicks", "comment": null}, "cost": {"type": "FLOAT64", "index": 6, "name": "cost", "comment": null}, "impressions": {"type": "FLOAT64", "index": 7, "name": "impressions", "comment": null}}, "stats": {"num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 560, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 10, "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.amazon_ads_integration_tests.ad_group_level_report_data"}, "seed.amazon_ads_integration_tests.advertised_product_report_data": {"metadata": {"type": "table", "schema": "amazon_ads_test", "name": "advertised_product_report_data", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"ad_group_id": {"type": "INT64", "index": 1, "name": "ad_group_id", "comment": null}, "ad_id": {"type": "INT64", "index": 2, "name": "ad_id", "comment": null}, "campaign_id": {"type": "INT64", "index": 3, "name": "campaign_id", "comment": null}, "date": {"type": "DATE", "index": 4, "name": "date", "comment": null}, "_fivetran_synced": {"type": "TIMESTAMP", "index": 5, "name": "_fivetran_synced", "comment": null}, "campaign_budget_amount": {"type": "FLOAT64", "index": 6, "name": "campaign_budget_amount", "comment": null}, "campaign_budget_currency_code": {"type": "STRING", "index": 7, "name": "campaign_budget_currency_code", "comment": null}, "campaign_budget_type": {"type": "STRING", "index": 8, "name": "campaign_budget_type", "comment": null}, "clicks": {"type": "FLOAT64", "index": 9, "name": "clicks", "comment": null}, "cost": {"type": "FLOAT64", "index": 10, "name": "cost", "comment": null}, "impressions": {"type": "FLOAT64", "index": 11, "name": "impressions", "comment": null}, " advertised_asin": {"type": "INT64", "index": 12, "name": " advertised_asin", "comment": null}, " advertised_sku": {"type": "INT64", "index": 13, "name": " advertised_sku", "comment": null}}, "stats": {"num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 910, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 10, "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.amazon_ads_integration_tests.advertised_product_report_data"}, "seed.amazon_ads_integration_tests.campaign_history_data": {"metadata": {"type": "table", "schema": "amazon_ads_test", "name": "campaign_history_data", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"id": {"type": "INT64", "index": 1, "name": "id", "comment": null}, "last_updated_date": {"type": "STRING", "index": 2, "name": "last_updated_date", "comment": null}, "_fivetran_synced": {"type": "TIMESTAMP", "index": 3, "name": "_fivetran_synced", "comment": null}, "bidding_strategy": {"type": "STRING", "index": 4, "name": "bidding_strategy", "comment": null}, "creation_date": {"type": "STRING", "index": 5, "name": "creation_date", "comment": null}, "budget": {"type": "INT64", "index": 6, "name": "budget", "comment": null}, "end_date": {"type": "INT64", "index": 7, "name": "end_date", "comment": null}, "name": {"type": "STRING", "index": 8, "name": "name", "comment": null}, "portfolio_id": {"type": "INT64", "index": 9, "name": "portfolio_id", "comment": null}, "profile_id": {"type": "INT64", "index": 10, "name": "profile_id", "comment": null}, "serving_status": {"type": "STRING", "index": 11, "name": "serving_status", "comment": null}, "start_date": {"type": "DATE", "index": 12, "name": "start_date", "comment": null}, "state": {"type": "STRING", "index": 13, "name": "state", "comment": null}, "targeting_type": {"type": "STRING", "index": 14, "name": "targeting_type", "comment": null}, "budget_type": {"type": "STRING", "index": 15, "name": "budget_type", "comment": null}, "effective_budget": {"type": "INT64", "index": 16, "name": "effective_budget", "comment": null}}, "stats": {"num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 1061, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 6, "include": true, "description": "Approximate count of rows in this table"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.amazon_ads_integration_tests.campaign_history_data"}, "seed.amazon_ads_integration_tests.campaign_level_report_data": {"metadata": {"type": "table", "schema": "amazon_ads_test", "name": "campaign_level_report_data", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"campaign_id": {"type": "INT64", "index": 1, "name": "campaign_id", "comment": null}, "date": {"type": "DATE", "index": 2, "name": "date", "comment": null}, "_fivetran_synced": {"type": "TIMESTAMP", "index": 3, "name": "_fivetran_synced", "comment": null}, "campaign_applicable_budget_rule_id": {"type": "INT64", "index": 4, "name": "campaign_applicable_budget_rule_id", "comment": null}, "campaign_applicable_budget_rule_name": {"type": "INT64", "index": 5, "name": "campaign_applicable_budget_rule_name", "comment": null}, "campaign_bidding_strategy": {"type": "STRING", "index": 6, "name": "campaign_bidding_strategy", "comment": null}, "campaign_budget_amount": {"type": "FLOAT64", "index": 7, "name": "campaign_budget_amount", "comment": null}, "campaign_budget_currency_code": {"type": "STRING", "index": 8, "name": "campaign_budget_currency_code", "comment": null}, "campaign_budget_type": {"type": "STRING", "index": 9, "name": "campaign_budget_type", "comment": null}, "clicks": {"type": "FLOAT64", "index": 10, "name": "clicks", "comment": null}, "cost": {"type": "FLOAT64", "index": 11, "name": "cost", "comment": null}, "impressions": {"type": "FLOAT64", "index": 12, "name": "impressions", "comment": null}, "campaign_rule_based_budget_amount": {"type": "INT64", "index": 13, "name": "campaign_rule_based_budget_amount", "comment": null}, "sales_7_d": {"type": "INT64", "index": 14, "name": "sales_7_d", "comment": null}, "purchases_30_d": {"type": "INT64", "index": 15, "name": "purchases_30_d", "comment": null}, "sales_30_d": {"type": "INT64", "index": 16, "name": "sales_30_d", "comment": null}}, "stats": {"num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 981, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 10, "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.amazon_ads_integration_tests.campaign_level_report_data"}, "seed.amazon_ads_integration_tests.keyword_history_data": {"metadata": {"type": "table", "schema": "amazon_ads_test", "name": "keyword_history_data", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"id": {"type": "INT64", "index": 1, "name": "id", "comment": null}, "last_updated_date": {"type": "STRING", "index": 2, "name": "last_updated_date", "comment": null}, "_fivetran_synced": {"type": "TIMESTAMP", "index": 3, "name": "_fivetran_synced", "comment": null}, "ad_group_id": {"type": "INT64", "index": 4, "name": "ad_group_id", "comment": null}, "bid": {"type": "FLOAT64", "index": 5, "name": "bid", "comment": null}, "campaign_id": {"type": "INT64", "index": 6, "name": "campaign_id", "comment": null}, "creation_date": {"type": "STRING", "index": 7, "name": "creation_date", "comment": null}, "keyword_text": {"type": "STRING", "index": 8, "name": "keyword_text", "comment": null}, "match_type": {"type": "STRING", "index": 9, "name": "match_type", "comment": null}, "native_language_keyword": {"type": "INT64", "index": 10, "name": "native_language_keyword", "comment": null}, "serving_status": {"type": "STRING", "index": 11, "name": "serving_status", "comment": null}, "state": {"type": "STRING", "index": 12, "name": "state", "comment": null}, "native_language_locale": {"type": "INT64", "index": 13, "name": "native_language_locale", "comment": null}}, "stats": {"num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 1365, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 9, "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.amazon_ads_integration_tests.keyword_history_data"}, "seed.amazon_ads_integration_tests.portfolio_history_data": {"metadata": {"type": "table", "schema": "amazon_ads_test", "name": "portfolio_history_data", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"id": {"type": "INT64", "index": 1, "name": "id", "comment": null}, "last_updated_date": {"type": "STRING", "index": 2, "name": "last_updated_date", "comment": null}, "_fivetran_synced": {"type": "TIMESTAMP", "index": 3, "name": "_fivetran_synced", "comment": null}, "budget_amount": {"type": "INT64", "index": 4, "name": "budget_amount", "comment": null}, "budget_currency_code": {"type": "INT64", "index": 5, "name": "budget_currency_code", "comment": null}, "budget_end_date": {"type": "INT64", "index": 6, "name": "budget_end_date", "comment": null}, "budget_policy": {"type": "INT64", "index": 7, "name": "budget_policy", "comment": null}, "budget_start_date": {"type": "INT64", "index": 8, "name": "budget_start_date", "comment": null}, "creation_date": {"type": "STRING", "index": 9, "name": "creation_date", "comment": null}, "in_budget": {"type": "BOOL", "index": 10, "name": "in_budget", "comment": null}, "name": {"type": "STRING", "index": 11, "name": "name", "comment": null}, "profile_id": {"type": "INT64", "index": 12, "name": "profile_id", "comment": null}, "serving_status": {"type": "STRING", "index": 13, "name": "serving_status", "comment": null}, "state": {"type": "STRING", "index": 14, "name": "state", "comment": null}}, "stats": {"num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 124, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 1, "include": true, "description": "Approximate count of rows in this table"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.amazon_ads_integration_tests.portfolio_history_data"}, "seed.amazon_ads_integration_tests.product_ad_history_data": {"metadata": {"type": "table", "schema": "amazon_ads_test", "name": "product_ad_history_data", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"id": {"type": "INT64", "index": 1, "name": "id", "comment": null}, "last_updated_date": {"type": "STRING", "index": 2, "name": "last_updated_date", "comment": null}, "_fivetran_synced": {"type": "TIMESTAMP", "index": 3, "name": "_fivetran_synced", "comment": null}, "ad_group_id": {"type": "INT64", "index": 4, "name": "ad_group_id", "comment": null}, "asin": {"type": "STRING", "index": 5, "name": "asin", "comment": null}, "campaign_id": {"type": "INT64", "index": 6, "name": "campaign_id", "comment": null}, "creation_date": {"type": "STRING", "index": 7, "name": "creation_date", "comment": null}, "serving_status": {"type": "STRING", "index": 8, "name": "serving_status", "comment": null}, "sku": {"type": "INT64", "index": 9, "name": "sku", "comment": null}, "state": {"type": "STRING", "index": 10, "name": "state", "comment": null}}, "stats": {"num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 365, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 3, "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.amazon_ads_integration_tests.product_ad_history_data"}, "seed.amazon_ads_integration_tests.profile_data": {"metadata": {"type": "table", "schema": "amazon_ads_test", "name": "profile_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}, "account_id": {"type": "STRING", "index": 4, "name": "account_id", "comment": null}, "account_marketplace_string_id": {"type": "STRING", "index": 5, "name": "account_marketplace_string_id", "comment": null}, "account_name": {"type": "STRING", "index": 6, "name": "account_name", "comment": null}, "account_sub_type": {"type": "INT64", "index": 7, "name": "account_sub_type", "comment": null}, "account_type": {"type": "STRING", "index": 8, "name": "account_type", "comment": null}, "account_valid_payment_method": {"type": "BOOL", "index": 9, "name": "account_valid_payment_method", "comment": null}, "country_code": {"type": "STRING", "index": 10, "name": "country_code", "comment": null}, "currency_code": {"type": "STRING", "index": 11, "name": "currency_code", "comment": null}, "daily_budget": {"type": "INT64", "index": 12, "name": "daily_budget", "comment": null}, "timezone": {"type": "STRING", "index": 13, "name": "timezone", "comment": null}}, "stats": {"num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 96, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 1, "include": true, "description": "Approximate count of rows in this table"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.amazon_ads_integration_tests.profile_data"}, "seed.amazon_ads_integration_tests.search_term_ad_keyword_report_data": {"metadata": {"type": "table", "schema": "amazon_ads_test", "name": "search_term_ad_keyword_report_data", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"ad_group_id": {"type": "INT64", "index": 1, "name": "ad_group_id", "comment": null}, "campaign_id": {"type": "INT64", "index": 2, "name": "campaign_id", "comment": null}, "date": {"type": "DATE", "index": 3, "name": "date", "comment": null}, "keyword_id": {"type": "INT64", "index": 4, "name": "keyword_id", "comment": null}, "_fivetran_synced": {"type": "TIMESTAMP", "index": 5, "name": "_fivetran_synced", "comment": null}, "campaign_budget_amount": {"type": "FLOAT64", "index": 6, "name": "campaign_budget_amount", "comment": null}, "campaign_budget_currency_code": {"type": "STRING", "index": 7, "name": "campaign_budget_currency_code", "comment": null}, "campaign_budget_type": {"type": "STRING", "index": 8, "name": "campaign_budget_type", "comment": null}, "clicks": {"type": "FLOAT64", "index": 9, "name": "clicks", "comment": null}, "cost": {"type": "FLOAT64", "index": 10, "name": "cost", "comment": null}, "impressions": {"type": "FLOAT64", "index": 11, "name": "impressions", "comment": null}, "keyword_bid": {"type": "FLOAT64", "index": 12, "name": "keyword_bid", "comment": null}, "search_term": {"type": "STRING", "index": 13, "name": "search_term", "comment": null}, "targeting": {"type": "STRING", "index": 14, "name": "targeting", "comment": null}}, "stats": {"num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 1270, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 10, "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.amazon_ads_integration_tests.search_term_ad_keyword_report_data"}, "seed.amazon_ads_integration_tests.targeting_keyword_report_data": {"metadata": {"type": "table", "schema": "amazon_ads_test", "name": "targeting_keyword_report_data", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"ad_group_id": {"type": "INT64", "index": 1, "name": "ad_group_id", "comment": null}, "campaign_id": {"type": "INT64", "index": 2, "name": "campaign_id", "comment": null}, "date": {"type": "DATE", "index": 3, "name": "date", "comment": null}, "keyword_id": {"type": "INT64", "index": 4, "name": "keyword_id", "comment": null}, "_fivetran_synced": {"type": "TIMESTAMP", "index": 5, "name": "_fivetran_synced", "comment": null}, "ad_keyword_status": {"type": "STRING", "index": 6, "name": "ad_keyword_status", "comment": null}, "campaign_budget_amount": {"type": "FLOAT64", "index": 7, "name": "campaign_budget_amount", "comment": null}, "campaign_budget_currency_code": {"type": "STRING", "index": 8, "name": "campaign_budget_currency_code", "comment": null}, "campaign_budget_type": {"type": "STRING", "index": 9, "name": "campaign_budget_type", "comment": null}, "clicks": {"type": "FLOAT64", "index": 10, "name": "clicks", "comment": null}, "cost": {"type": "FLOAT64", "index": 11, "name": "cost", "comment": null}, "impressions": {"type": "FLOAT64", "index": 12, "name": "impressions", "comment": null}, "keyword_bid": {"type": "FLOAT64", "index": 13, "name": "keyword_bid", "comment": null}, "keyword_type": {"type": "STRING", "index": 14, "name": "keyword_type", "comment": null}, "match_type": {"type": "STRING", "index": 15, "name": "match_type", "comment": null}, "targeting": {"type": "STRING", "index": 16, "name": "targeting", "comment": null}}, "stats": {"num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 1360, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 10, "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.amazon_ads_integration_tests.targeting_keyword_report_data"}, "model.amazon_ads.amazon_ads__account_report": {"metadata": {"type": "table", "schema": "amazon_ads_test_amazon_ads_dev", "name": "amazon_ads__account_report", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"source_relation": {"type": "STRING", "index": 1, "name": "source_relation", "comment": null}, "date_day": {"type": "DATE", "index": 2, "name": "date_day", "comment": null}, "account_name": {"type": "STRING", "index": 3, "name": "account_name", "comment": null}, "account_id": {"type": "STRING", "index": 4, "name": "account_id", "comment": null}, "country_code": {"type": "STRING", "index": 5, "name": "country_code", "comment": null}, "profile_id": {"type": "STRING", "index": 6, "name": "profile_id", "comment": null}, "cost": {"type": "FLOAT64", "index": 7, "name": "cost", "comment": null}, "clicks": {"type": "FLOAT64", "index": 8, "name": "clicks", "comment": null}, "impressions": {"type": "FLOAT64", "index": 9, "name": "impressions", "comment": null}, "purchases_30_d": {"type": "INT64", "index": 10, "name": "purchases_30_d", "comment": null}, "sales_30_d": {"type": "INT64", "index": 11, "name": "sales_30_d", "comment": null}}, "stats": {"num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 668, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 10, "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.amazon_ads.amazon_ads__account_report"}, "model.amazon_ads.amazon_ads__ad_group_report": {"metadata": {"type": "table", "schema": "amazon_ads_test_amazon_ads_dev", "name": "amazon_ads__ad_group_report", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"source_relation": {"type": "STRING", "index": 1, "name": "source_relation", "comment": null}, "date_day": {"type": "DATE", "index": 2, "name": "date_day", "comment": null}, "account_name": {"type": "STRING", "index": 3, "name": "account_name", "comment": null}, "account_id": {"type": "STRING", "index": 4, "name": "account_id", "comment": null}, "country_code": {"type": "STRING", "index": 5, "name": "country_code", "comment": null}, "profile_id": {"type": "STRING", "index": 6, "name": "profile_id", "comment": null}, "portfolio_name": {"type": "STRING", "index": 7, "name": "portfolio_name", "comment": null}, "portfolio_id": {"type": "STRING", "index": 8, "name": "portfolio_id", "comment": null}, "campaign_name": {"type": "STRING", "index": 9, "name": "campaign_name", "comment": null}, "campaign_id": {"type": "STRING", "index": 10, "name": "campaign_id", "comment": null}, "ad_group_name": {"type": "STRING", "index": 11, "name": "ad_group_name", "comment": null}, "ad_group_id": {"type": "STRING", "index": 12, "name": "ad_group_id", "comment": null}, "serving_status": {"type": "STRING", "index": 13, "name": "serving_status", "comment": null}, "state": {"type": "STRING", "index": 14, "name": "state", "comment": null}, "default_bid": {"type": "FLOAT64", "index": 15, "name": "default_bid", "comment": null}, "campaign_bidding_strategy": {"type": "STRING", "index": 16, "name": "campaign_bidding_strategy", "comment": null}, "cost": {"type": "FLOAT64", "index": 17, "name": "cost", "comment": null}, "clicks": {"type": "FLOAT64", "index": 18, "name": "clicks", "comment": null}, "impressions": {"type": "FLOAT64", "index": 19, "name": "impressions", "comment": null}, "purchases_30_d": {"type": "INT64", "index": 20, "name": "purchases_30_d", "comment": null}, "sales_30_d": {"type": "FLOAT64", "index": 21, "name": "sales_30_d", "comment": null}}, "stats": {"num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 940, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 10, "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.amazon_ads.amazon_ads__ad_group_report"}, "model.amazon_ads.amazon_ads__ad_report": {"metadata": {"type": "table", "schema": "amazon_ads_test_amazon_ads_dev", "name": "amazon_ads__ad_report", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"source_relation": {"type": "STRING", "index": 1, "name": "source_relation", "comment": null}, "date_day": {"type": "DATE", "index": 2, "name": "date_day", "comment": null}, "account_name": {"type": "STRING", "index": 3, "name": "account_name", "comment": null}, "account_id": {"type": "STRING", "index": 4, "name": "account_id", "comment": null}, "country_code": {"type": "STRING", "index": 5, "name": "country_code", "comment": null}, "profile_id": {"type": "STRING", "index": 6, "name": "profile_id", "comment": null}, "portfolio_name": {"type": "STRING", "index": 7, "name": "portfolio_name", "comment": null}, "portfolio_id": {"type": "STRING", "index": 8, "name": "portfolio_id", "comment": null}, "campaign_name": {"type": "STRING", "index": 9, "name": "campaign_name", "comment": null}, "campaign_id": {"type": "STRING", "index": 10, "name": "campaign_id", "comment": null}, "ad_group_name": {"type": "STRING", "index": 11, "name": "ad_group_name", "comment": null}, "ad_group_id": {"type": "STRING", "index": 12, "name": "ad_group_id", "comment": null}, "ad_id": {"type": "STRING", "index": 13, "name": "ad_id", "comment": null}, "serving_status": {"type": "STRING", "index": 14, "name": "serving_status", "comment": null}, "state": {"type": "STRING", "index": 15, "name": "state", "comment": null}, "advertised_asin": {"type": "STRING", "index": 16, "name": "advertised_asin", "comment": null}, "advertised_sku": {"type": "STRING", "index": 17, "name": "advertised_sku", "comment": null}, "campaign_budget_amount": {"type": "FLOAT64", "index": 18, "name": "campaign_budget_amount", "comment": null}, "campaign_budget_currency_code": {"type": "STRING", "index": 19, "name": "campaign_budget_currency_code", "comment": null}, "campaign_budget_type": {"type": "STRING", "index": 20, "name": "campaign_budget_type", "comment": null}, "cost": {"type": "FLOAT64", "index": 21, "name": "cost", "comment": null}, "clicks": {"type": "FLOAT64", "index": 22, "name": "clicks", "comment": null}, "impressions": {"type": "FLOAT64", "index": 23, "name": "impressions", "comment": null}, "purchases_30_d": {"type": "INT64", "index": 24, "name": "purchases_30_d", "comment": null}, "sales_30_d": {"type": "FLOAT64", "index": 25, "name": "sales_30_d", "comment": null}}, "stats": {"num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 1560, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 10, "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.amazon_ads.amazon_ads__ad_report"}, "model.amazon_ads.amazon_ads__campaign_report": {"metadata": {"type": "table", "schema": "amazon_ads_test_amazon_ads_dev", "name": "amazon_ads__campaign_report", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"source_relation": {"type": "STRING", "index": 1, "name": "source_relation", "comment": null}, "date_day": {"type": "DATE", "index": 2, "name": "date_day", "comment": null}, "account_name": {"type": "STRING", "index": 3, "name": "account_name", "comment": null}, "account_id": {"type": "STRING", "index": 4, "name": "account_id", "comment": null}, "country_code": {"type": "STRING", "index": 5, "name": "country_code", "comment": null}, "profile_id": {"type": "STRING", "index": 6, "name": "profile_id", "comment": null}, "portfolio_name": {"type": "STRING", "index": 7, "name": "portfolio_name", "comment": null}, "portfolio_id": {"type": "STRING", "index": 8, "name": "portfolio_id", "comment": null}, "campaign_name": {"type": "STRING", "index": 9, "name": "campaign_name", "comment": null}, "campaign_id": {"type": "STRING", "index": 10, "name": "campaign_id", "comment": null}, "campaign_bidding_strategy": {"type": "STRING", "index": 11, "name": "campaign_bidding_strategy", "comment": null}, "campaign_budget_amount": {"type": "FLOAT64", "index": 12, "name": "campaign_budget_amount", "comment": null}, "campaign_budget_currency_code": {"type": "STRING", "index": 13, "name": "campaign_budget_currency_code", "comment": null}, "campaign_budget_type": {"type": "STRING", "index": 14, "name": "campaign_budget_type", "comment": null}, "cost": {"type": "FLOAT64", "index": 15, "name": "cost", "comment": null}, "clicks": {"type": "FLOAT64", "index": 16, "name": "clicks", "comment": null}, "impressions": {"type": "FLOAT64", "index": 17, "name": "impressions", "comment": null}, "purchases_30_d": {"type": "INT64", "index": 18, "name": "purchases_30_d", "comment": null}, "sales_30_d": {"type": "INT64", "index": 19, "name": "sales_30_d", "comment": null}}, "stats": {"num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 1451, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 10, "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.amazon_ads.amazon_ads__campaign_report"}, "model.amazon_ads.amazon_ads__keyword_report": {"metadata": {"type": "table", "schema": "amazon_ads_test_amazon_ads_dev", "name": "amazon_ads__keyword_report", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"source_relation": {"type": "STRING", "index": 1, "name": "source_relation", "comment": null}, "date_day": {"type": "DATE", "index": 2, "name": "date_day", "comment": null}, "account_name": {"type": "STRING", "index": 3, "name": "account_name", "comment": null}, "account_id": {"type": "STRING", "index": 4, "name": "account_id", "comment": null}, "country_code": {"type": "STRING", "index": 5, "name": "country_code", "comment": null}, "profile_id": {"type": "STRING", "index": 6, "name": "profile_id", "comment": null}, "portfolio_name": {"type": "STRING", "index": 7, "name": "portfolio_name", "comment": null}, "portfolio_id": {"type": "STRING", "index": 8, "name": "portfolio_id", "comment": null}, "campaign_name": {"type": "STRING", "index": 9, "name": "campaign_name", "comment": null}, "campaign_id": {"type": "STRING", "index": 10, "name": "campaign_id", "comment": null}, "ad_group_name": {"type": "STRING", "index": 11, "name": "ad_group_name", "comment": null}, "ad_group_id": {"type": "STRING", "index": 12, "name": "ad_group_id", "comment": null}, "keyword_id": {"type": "STRING", "index": 13, "name": "keyword_id", "comment": null}, "keyword_text": {"type": "STRING", "index": 14, "name": "keyword_text", "comment": null}, "serving_status": {"type": "STRING", "index": 15, "name": "serving_status", "comment": null}, "state": {"type": "STRING", "index": 16, "name": "state", "comment": null}, "keyword_bid": {"type": "FLOAT64", "index": 17, "name": "keyword_bid", "comment": null}, "keyword_type": {"type": "STRING", "index": 18, "name": "keyword_type", "comment": null}, "match_type": {"type": "STRING", "index": 19, "name": "match_type", "comment": null}, "cost": {"type": "FLOAT64", "index": 20, "name": "cost", "comment": null}, "clicks": {"type": "FLOAT64", "index": 21, "name": "clicks", "comment": null}, "impressions": {"type": "FLOAT64", "index": 22, "name": "impressions", "comment": null}, "purchases_30_d": {"type": "INT64", "index": 23, "name": "purchases_30_d", "comment": null}, "sales_30_d": {"type": "FLOAT64", "index": 24, "name": "sales_30_d", "comment": null}}, "stats": {"num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 1820, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 10, "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.amazon_ads.amazon_ads__keyword_report"}, "model.amazon_ads.amazon_ads__portfolio_report": {"metadata": {"type": "table", "schema": "amazon_ads_test_amazon_ads_dev", "name": "amazon_ads__portfolio_report", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"source_relation": {"type": "STRING", "index": 1, "name": "source_relation", "comment": null}, "date_day": {"type": "DATE", "index": 2, "name": "date_day", "comment": null}, "account_name": {"type": "STRING", "index": 3, "name": "account_name", "comment": null}, "account_id": {"type": "STRING", "index": 4, "name": "account_id", "comment": null}, "country_code": {"type": "STRING", "index": 5, "name": "country_code", "comment": null}, "profile_id": {"type": "STRING", "index": 6, "name": "profile_id", "comment": null}, "portfolio_name": {"type": "STRING", "index": 7, "name": "portfolio_name", "comment": null}, "portfolio_id": {"type": "STRING", "index": 8, "name": "portfolio_id", "comment": null}, "budget_amount": {"type": "INT64", "index": 9, "name": "budget_amount", "comment": null}, "budget_currency_code": {"type": "INT64", "index": 10, "name": "budget_currency_code", "comment": null}, "budget_start_date": {"type": "INT64", "index": 11, "name": "budget_start_date", "comment": null}, "budget_end_date": {"type": "INT64", "index": 12, "name": "budget_end_date", "comment": null}, "budget_policy": {"type": "INT64", "index": 13, "name": "budget_policy", "comment": null}, "in_budget": {"type": "BOOL", "index": 14, "name": "in_budget", "comment": null}, "serving_status": {"type": "STRING", "index": 15, "name": "serving_status", "comment": null}, "state": {"type": "STRING", "index": 16, "name": "state", "comment": null}, "cost": {"type": "FLOAT64", "index": 17, "name": "cost", "comment": null}, "clicks": {"type": "FLOAT64", "index": 18, "name": "clicks", "comment": null}, "impressions": {"type": "FLOAT64", "index": 19, "name": "impressions", "comment": null}, "purchases_30_d": {"type": "INT64", "index": 20, "name": "purchases_30_d", "comment": null}, "sales_30_d": {"type": "INT64", "index": 21, "name": "sales_30_d", "comment": null}}, "stats": {"num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 1168, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 10, "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.amazon_ads.amazon_ads__portfolio_report"}, "model.amazon_ads.amazon_ads__search_report": {"metadata": {"type": "table", "schema": "amazon_ads_test_amazon_ads_dev", "name": "amazon_ads__search_report", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"source_relation": {"type": "STRING", "index": 1, "name": "source_relation", "comment": null}, "date_day": {"type": "DATE", "index": 2, "name": "date_day", "comment": null}, "account_name": {"type": "STRING", "index": 3, "name": "account_name", "comment": null}, "account_id": {"type": "STRING", "index": 4, "name": "account_id", "comment": null}, "country_code": {"type": "STRING", "index": 5, "name": "country_code", "comment": null}, "profile_id": {"type": "STRING", "index": 6, "name": "profile_id", "comment": null}, "portfolio_name": {"type": "STRING", "index": 7, "name": "portfolio_name", "comment": null}, "portfolio_id": {"type": "STRING", "index": 8, "name": "portfolio_id", "comment": null}, "campaign_name": {"type": "STRING", "index": 9, "name": "campaign_name", "comment": null}, "campaign_id": {"type": "STRING", "index": 10, "name": "campaign_id", "comment": null}, "ad_group_name": {"type": "STRING", "index": 11, "name": "ad_group_name", "comment": null}, "ad_group_id": {"type": "STRING", "index": 12, "name": "ad_group_id", "comment": null}, "keyword_id": {"type": "STRING", "index": 13, "name": "keyword_id", "comment": null}, "keyword_text": {"type": "STRING", "index": 14, "name": "keyword_text", "comment": null}, "match_type": {"type": "STRING", "index": 15, "name": "match_type", "comment": null}, "serving_status": {"type": "STRING", "index": 16, "name": "serving_status", "comment": null}, "state": {"type": "STRING", "index": 17, "name": "state", "comment": null}, "search_term": {"type": "STRING", "index": 18, "name": "search_term", "comment": null}, "targeting": {"type": "STRING", "index": 19, "name": "targeting", "comment": null}, "cost": {"type": "FLOAT64", "index": 20, "name": "cost", "comment": null}, "clicks": {"type": "FLOAT64", "index": 21, "name": "clicks", "comment": null}, "impressions": {"type": "FLOAT64", "index": 22, "name": "impressions", "comment": null}, "purchases_30_d": {"type": "INT64", "index": 23, "name": "purchases_30_d", "comment": null}, "sales_30_d": {"type": "FLOAT64", "index": 24, "name": "sales_30_d", "comment": null}}, "stats": {"num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 1923, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 10, "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.amazon_ads.amazon_ads__search_report"}, "model.amazon_ads.int_amazon_ads__portfolio_history": {"metadata": {"type": "view", "schema": "amazon_ads_test_amazon_ads_dev", "name": "int_amazon_ads__portfolio_history", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"source_relation": {"type": "STRING", "index": 1, "name": "source_relation", "comment": null}, "portfolio_id": {"type": "STRING", "index": 2, "name": "portfolio_id", "comment": null}, "budget_amount": {"type": "INT64", "index": 3, "name": "budget_amount", "comment": null}, "budget_currency_code": {"type": "INT64", "index": 4, "name": "budget_currency_code", "comment": null}, "budget_end_date": {"type": "INT64", "index": 5, "name": "budget_end_date", "comment": null}, "budget_policy": {"type": "INT64", "index": 6, "name": "budget_policy", "comment": null}, "budget_start_date": {"type": "INT64", "index": 7, "name": "budget_start_date", "comment": null}, "creation_date": {"type": "STRING", "index": 8, "name": "creation_date", "comment": null}, "in_budget": {"type": "BOOL", "index": 9, "name": "in_budget", "comment": null}, "last_updated_date": {"type": "STRING", "index": 10, "name": "last_updated_date", "comment": null}, "portfolio_name": {"type": "STRING", "index": 11, "name": "portfolio_name", "comment": null}, "profile_id": {"type": "STRING", "index": 12, "name": "profile_id", "comment": null}, "serving_status": {"type": "STRING", "index": 13, "name": "serving_status", "comment": null}, "state": {"type": "STRING", "index": 14, "name": "state", "comment": null}, "is_most_recent_record": {"type": "BOOL", "index": 15, "name": "is_most_recent_record", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.amazon_ads.int_amazon_ads__portfolio_history"}, "model.amazon_ads_source.stg_amazon_ads__ad_group_history": {"metadata": {"type": "table", "schema": "amazon_ads_test_amazon_ads_dev", "name": "stg_amazon_ads__ad_group_history", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"source_relation": {"type": "STRING", "index": 1, "name": "source_relation", "comment": null}, "ad_group_id": {"type": "STRING", "index": 2, "name": "ad_group_id", "comment": null}, "campaign_id": {"type": "STRING", "index": 3, "name": "campaign_id", "comment": null}, "creation_date": {"type": "STRING", "index": 4, "name": "creation_date", "comment": null}, "default_bid": {"type": "FLOAT64", "index": 5, "name": "default_bid", "comment": null}, "last_updated_date": {"type": "STRING", "index": 6, "name": "last_updated_date", "comment": null}, "ad_group_name": {"type": "STRING", "index": 7, "name": "ad_group_name", "comment": null}, "serving_status": {"type": "STRING", "index": 8, "name": "serving_status", "comment": null}, "state": {"type": "STRING", "index": 9, "name": "state", "comment": null}, "is_most_recent_record": {"type": "BOOL", "index": 10, "name": "is_most_recent_record", "comment": null}}, "stats": {"num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 228, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 2, "include": true, "description": "Approximate count of rows in this table"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.amazon_ads_source.stg_amazon_ads__ad_group_history"}, "model.amazon_ads_source.stg_amazon_ads__ad_group_history_tmp": {"metadata": {"type": "view", "schema": "amazon_ads_test_amazon_ads_dev", "name": "stg_amazon_ads__ad_group_history_tmp", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"id": {"type": "INT64", "index": 1, "name": "id", "comment": null}, "last_updated_date": {"type": "STRING", "index": 2, "name": "last_updated_date", "comment": null}, "_fivetran_synced": {"type": "TIMESTAMP", "index": 3, "name": "_fivetran_synced", "comment": null}, "campaign_id": {"type": "INT64", "index": 4, "name": "campaign_id", "comment": null}, "creation_date": {"type": "STRING", "index": 5, "name": "creation_date", "comment": null}, "default_bid": {"type": "FLOAT64", "index": 6, "name": "default_bid", "comment": null}, "name": {"type": "STRING", "index": 7, "name": "name", "comment": null}, "serving_status": {"type": "STRING", "index": 8, "name": "serving_status", "comment": null}, "state": {"type": "STRING", "index": 9, "name": "state", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.amazon_ads_source.stg_amazon_ads__ad_group_history_tmp"}, "model.amazon_ads_source.stg_amazon_ads__ad_group_level_report": {"metadata": {"type": "table", "schema": "amazon_ads_test_amazon_ads_dev", "name": "stg_amazon_ads__ad_group_level_report", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"source_relation": {"type": "STRING", "index": 1, "name": "source_relation", "comment": null}, "ad_group_id": {"type": "STRING", "index": 2, "name": "ad_group_id", "comment": null}, "campaign_bidding_strategy": {"type": "STRING", "index": 3, "name": "campaign_bidding_strategy", "comment": null}, "clicks": {"type": "FLOAT64", "index": 4, "name": "clicks", "comment": null}, "cost": {"type": "FLOAT64", "index": 5, "name": "cost", "comment": null}, "date_day": {"type": "DATE", "index": 6, "name": "date_day", "comment": null}, "impressions": {"type": "FLOAT64", "index": 7, "name": "impressions", "comment": null}, "purchases_30_d": {"type": "INT64", "index": 8, "name": "purchases_30_d", "comment": null}, "sales_30_d": {"type": "FLOAT64", "index": 9, "name": "sales_30_d", "comment": null}}, "stats": {"num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 470, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 10, "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.amazon_ads_source.stg_amazon_ads__ad_group_level_report"}, "model.amazon_ads_source.stg_amazon_ads__ad_group_level_report_tmp": {"metadata": {"type": "view", "schema": "amazon_ads_test_amazon_ads_dev", "name": "stg_amazon_ads__ad_group_level_report_tmp", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"ad_group_id": {"type": "INT64", "index": 1, "name": "ad_group_id", "comment": null}, "date": {"type": "DATE", "index": 2, "name": "date", "comment": null}, "_fivetran_synced": {"type": "TIMESTAMP", "index": 3, "name": "_fivetran_synced", "comment": null}, "campaign_bidding_strategy": {"type": "STRING", "index": 4, "name": "campaign_bidding_strategy", "comment": null}, "clicks": {"type": "FLOAT64", "index": 5, "name": "clicks", "comment": null}, "cost": {"type": "FLOAT64", "index": 6, "name": "cost", "comment": null}, "impressions": {"type": "FLOAT64", "index": 7, "name": "impressions", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.amazon_ads_source.stg_amazon_ads__ad_group_level_report_tmp"}, "model.amazon_ads_source.stg_amazon_ads__advertised_product_report": {"metadata": {"type": "table", "schema": "amazon_ads_test_amazon_ads_dev", "name": "stg_amazon_ads__advertised_product_report", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"source_relation": {"type": "STRING", "index": 1, "name": "source_relation", "comment": null}, "ad_id": {"type": "STRING", "index": 2, "name": "ad_id", "comment": null}, "ad_group_id": {"type": "STRING", "index": 3, "name": "ad_group_id", "comment": null}, "advertised_asin": {"type": "STRING", "index": 4, "name": "advertised_asin", "comment": null}, "advertised_sku": {"type": "STRING", "index": 5, "name": "advertised_sku", "comment": null}, "campaign_budget_amount": {"type": "FLOAT64", "index": 6, "name": "campaign_budget_amount", "comment": null}, "campaign_budget_currency_code": {"type": "STRING", "index": 7, "name": "campaign_budget_currency_code", "comment": null}, "campaign_budget_type": {"type": "STRING", "index": 8, "name": "campaign_budget_type", "comment": null}, "campaign_id": {"type": "STRING", "index": 9, "name": "campaign_id", "comment": null}, "clicks": {"type": "FLOAT64", "index": 10, "name": "clicks", "comment": null}, "cost": {"type": "FLOAT64", "index": 11, "name": "cost", "comment": null}, "date_day": {"type": "DATE", "index": 12, "name": "date_day", "comment": null}, "impressions": {"type": "FLOAT64", "index": 13, "name": "impressions", "comment": null}, "purchases_30_d": {"type": "INT64", "index": 14, "name": "purchases_30_d", "comment": null}, "sales_30_d": {"type": "FLOAT64", "index": 15, "name": "sales_30_d", "comment": null}}, "stats": {"num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 764, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 10, "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.amazon_ads_source.stg_amazon_ads__advertised_product_report"}, "model.amazon_ads_source.stg_amazon_ads__advertised_product_report_tmp": {"metadata": {"type": "view", "schema": "amazon_ads_test_amazon_ads_dev", "name": "stg_amazon_ads__advertised_product_report_tmp", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"ad_group_id": {"type": "INT64", "index": 1, "name": "ad_group_id", "comment": null}, "ad_id": {"type": "INT64", "index": 2, "name": "ad_id", "comment": null}, "campaign_id": {"type": "INT64", "index": 3, "name": "campaign_id", "comment": null}, "date": {"type": "DATE", "index": 4, "name": "date", "comment": null}, "_fivetran_synced": {"type": "TIMESTAMP", "index": 5, "name": "_fivetran_synced", "comment": null}, "campaign_budget_amount": {"type": "FLOAT64", "index": 6, "name": "campaign_budget_amount", "comment": null}, "campaign_budget_currency_code": {"type": "STRING", "index": 7, "name": "campaign_budget_currency_code", "comment": null}, "campaign_budget_type": {"type": "STRING", "index": 8, "name": "campaign_budget_type", "comment": null}, "clicks": {"type": "FLOAT64", "index": 9, "name": "clicks", "comment": null}, "cost": {"type": "FLOAT64", "index": 10, "name": "cost", "comment": null}, "impressions": {"type": "FLOAT64", "index": 11, "name": "impressions", "comment": null}, " advertised_asin": {"type": "INT64", "index": 12, "name": " advertised_asin", "comment": null}, " advertised_sku": {"type": "INT64", "index": 13, "name": " advertised_sku", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.amazon_ads_source.stg_amazon_ads__advertised_product_report_tmp"}, "model.amazon_ads_source.stg_amazon_ads__campaign_history": {"metadata": {"type": "table", "schema": "amazon_ads_test_amazon_ads_dev", "name": "stg_amazon_ads__campaign_history", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"source_relation": {"type": "STRING", "index": 1, "name": "source_relation", "comment": null}, "campaign_id": {"type": "STRING", "index": 2, "name": "campaign_id", "comment": null}, "last_updated_date": {"type": "STRING", "index": 3, "name": "last_updated_date", "comment": null}, "bidding_strategy": {"type": "STRING", "index": 4, "name": "bidding_strategy", "comment": null}, "creation_date": {"type": "STRING", "index": 5, "name": "creation_date", "comment": null}, "end_date": {"type": "INT64", "index": 6, "name": "end_date", "comment": null}, "campaign_name": {"type": "STRING", "index": 7, "name": "campaign_name", "comment": null}, "portfolio_id": {"type": "STRING", "index": 8, "name": "portfolio_id", "comment": null}, "profile_id": {"type": "STRING", "index": 9, "name": "profile_id", "comment": null}, "serving_status": {"type": "STRING", "index": 10, "name": "serving_status", "comment": null}, "start_date": {"type": "DATE", "index": 11, "name": "start_date", "comment": null}, "state": {"type": "STRING", "index": 12, "name": "state", "comment": null}, "targeting_type": {"type": "STRING", "index": 13, "name": "targeting_type", "comment": null}, "budget": {"type": "INT64", "index": 14, "name": "budget", "comment": null}, "budget_type": {"type": "STRING", "index": 15, "name": "budget_type", "comment": null}, "effective_budget": {"type": "INT64", "index": 16, "name": "effective_budget", "comment": null}, "is_most_recent_record": {"type": "BOOL", "index": 17, "name": "is_most_recent_record", "comment": null}}, "stats": {"num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 983, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 6, "include": true, "description": "Approximate count of rows in this table"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.amazon_ads_source.stg_amazon_ads__campaign_history"}, "model.amazon_ads_source.stg_amazon_ads__campaign_history_tmp": {"metadata": {"type": "view", "schema": "amazon_ads_test_amazon_ads_dev", "name": "stg_amazon_ads__campaign_history_tmp", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"id": {"type": "INT64", "index": 1, "name": "id", "comment": null}, "last_updated_date": {"type": "STRING", "index": 2, "name": "last_updated_date", "comment": null}, "_fivetran_synced": {"type": "TIMESTAMP", "index": 3, "name": "_fivetran_synced", "comment": null}, "bidding_strategy": {"type": "STRING", "index": 4, "name": "bidding_strategy", "comment": null}, "creation_date": {"type": "STRING", "index": 5, "name": "creation_date", "comment": null}, "budget": {"type": "INT64", "index": 6, "name": "budget", "comment": null}, "end_date": {"type": "INT64", "index": 7, "name": "end_date", "comment": null}, "name": {"type": "STRING", "index": 8, "name": "name", "comment": null}, "portfolio_id": {"type": "INT64", "index": 9, "name": "portfolio_id", "comment": null}, "profile_id": {"type": "INT64", "index": 10, "name": "profile_id", "comment": null}, "serving_status": {"type": "STRING", "index": 11, "name": "serving_status", "comment": null}, "start_date": {"type": "DATE", "index": 12, "name": "start_date", "comment": null}, "state": {"type": "STRING", "index": 13, "name": "state", "comment": null}, "targeting_type": {"type": "STRING", "index": 14, "name": "targeting_type", "comment": null}, "budget_type": {"type": "STRING", "index": 15, "name": "budget_type", "comment": null}, "effective_budget": {"type": "INT64", "index": 16, "name": "effective_budget", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.amazon_ads_source.stg_amazon_ads__campaign_history_tmp"}, "model.amazon_ads_source.stg_amazon_ads__campaign_level_report": {"metadata": {"type": "table", "schema": "amazon_ads_test_amazon_ads_dev", "name": "stg_amazon_ads__campaign_level_report", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"source_relation": {"type": "STRING", "index": 1, "name": "source_relation", "comment": null}, "campaign_applicable_budget_rule_id": {"type": "INT64", "index": 2, "name": "campaign_applicable_budget_rule_id", "comment": null}, "campaign_applicable_budget_rule_name": {"type": "INT64", "index": 3, "name": "campaign_applicable_budget_rule_name", "comment": null}, "campaign_bidding_strategy": {"type": "STRING", "index": 4, "name": "campaign_bidding_strategy", "comment": null}, "campaign_budget_amount": {"type": "FLOAT64", "index": 5, "name": "campaign_budget_amount", "comment": null}, "campaign_budget_currency_code": {"type": "STRING", "index": 6, "name": "campaign_budget_currency_code", "comment": null}, "campaign_budget_type": {"type": "STRING", "index": 7, "name": "campaign_budget_type", "comment": null}, "campaign_id": {"type": "STRING", "index": 8, "name": "campaign_id", "comment": null}, "campaign_rule_based_budget_amount": {"type": "INT64", "index": 9, "name": "campaign_rule_based_budget_amount", "comment": null}, "clicks": {"type": "FLOAT64", "index": 10, "name": "clicks", "comment": null}, "cost": {"type": "FLOAT64", "index": 11, "name": "cost", "comment": null}, "date_day": {"type": "DATE", "index": 12, "name": "date_day", "comment": null}, "impressions": {"type": "FLOAT64", "index": 13, "name": "impressions", "comment": null}, "purchases_30_d": {"type": "INT64", "index": 14, "name": "purchases_30_d", "comment": null}, "sales_30_d": {"type": "INT64", "index": 15, "name": "sales_30_d", "comment": null}}, "stats": {"num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 861, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 10, "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.amazon_ads_source.stg_amazon_ads__campaign_level_report"}, "model.amazon_ads_source.stg_amazon_ads__campaign_level_report_tmp": {"metadata": {"type": "view", "schema": "amazon_ads_test_amazon_ads_dev", "name": "stg_amazon_ads__campaign_level_report_tmp", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"campaign_id": {"type": "INT64", "index": 1, "name": "campaign_id", "comment": null}, "date": {"type": "DATE", "index": 2, "name": "date", "comment": null}, "_fivetran_synced": {"type": "TIMESTAMP", "index": 3, "name": "_fivetran_synced", "comment": null}, "campaign_applicable_budget_rule_id": {"type": "INT64", "index": 4, "name": "campaign_applicable_budget_rule_id", "comment": null}, "campaign_applicable_budget_rule_name": {"type": "INT64", "index": 5, "name": "campaign_applicable_budget_rule_name", "comment": null}, "campaign_bidding_strategy": {"type": "STRING", "index": 6, "name": "campaign_bidding_strategy", "comment": null}, "campaign_budget_amount": {"type": "FLOAT64", "index": 7, "name": "campaign_budget_amount", "comment": null}, "campaign_budget_currency_code": {"type": "STRING", "index": 8, "name": "campaign_budget_currency_code", "comment": null}, "campaign_budget_type": {"type": "STRING", "index": 9, "name": "campaign_budget_type", "comment": null}, "clicks": {"type": "FLOAT64", "index": 10, "name": "clicks", "comment": null}, "cost": {"type": "FLOAT64", "index": 11, "name": "cost", "comment": null}, "impressions": {"type": "FLOAT64", "index": 12, "name": "impressions", "comment": null}, "campaign_rule_based_budget_amount": {"type": "INT64", "index": 13, "name": "campaign_rule_based_budget_amount", "comment": null}, "sales_7_d": {"type": "INT64", "index": 14, "name": "sales_7_d", "comment": null}, "purchases_30_d": {"type": "INT64", "index": 15, "name": "purchases_30_d", "comment": null}, "sales_30_d": {"type": "INT64", "index": 16, "name": "sales_30_d", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.amazon_ads_source.stg_amazon_ads__campaign_level_report_tmp"}, "model.amazon_ads_source.stg_amazon_ads__keyword_history": {"metadata": {"type": "table", "schema": "amazon_ads_test_amazon_ads_dev", "name": "stg_amazon_ads__keyword_history", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"source_relation": {"type": "STRING", "index": 1, "name": "source_relation", "comment": null}, "keyword_id": {"type": "STRING", "index": 2, "name": "keyword_id", "comment": null}, "ad_group_id": {"type": "STRING", "index": 3, "name": "ad_group_id", "comment": null}, "bid": {"type": "FLOAT64", "index": 4, "name": "bid", "comment": null}, "campaign_id": {"type": "STRING", "index": 5, "name": "campaign_id", "comment": null}, "creation_date": {"type": "STRING", "index": 6, "name": "creation_date", "comment": null}, "keyword_text": {"type": "STRING", "index": 7, "name": "keyword_text", "comment": null}, "last_updated_date": {"type": "STRING", "index": 8, "name": "last_updated_date", "comment": null}, "match_type": {"type": "STRING", "index": 9, "name": "match_type", "comment": null}, "native_language_keyword": {"type": "INT64", "index": 10, "name": "native_language_keyword", "comment": null}, "serving_status": {"type": "STRING", "index": 11, "name": "serving_status", "comment": null}, "state": {"type": "STRING", "index": 12, "name": "state", "comment": null}, "native_language_locale": {"type": "INT64", "index": 13, "name": "native_language_locale", "comment": null}, "is_most_recent_record": {"type": "BOOL", "index": 14, "name": "is_most_recent_record", "comment": null}}, "stats": {"num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 1275, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 9, "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.amazon_ads_source.stg_amazon_ads__keyword_history"}, "model.amazon_ads_source.stg_amazon_ads__keyword_history_tmp": {"metadata": {"type": "view", "schema": "amazon_ads_test_amazon_ads_dev", "name": "stg_amazon_ads__keyword_history_tmp", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"id": {"type": "INT64", "index": 1, "name": "id", "comment": null}, "last_updated_date": {"type": "STRING", "index": 2, "name": "last_updated_date", "comment": null}, "_fivetran_synced": {"type": "TIMESTAMP", "index": 3, "name": "_fivetran_synced", "comment": null}, "ad_group_id": {"type": "INT64", "index": 4, "name": "ad_group_id", "comment": null}, "bid": {"type": "FLOAT64", "index": 5, "name": "bid", "comment": null}, "campaign_id": {"type": "INT64", "index": 6, "name": "campaign_id", "comment": null}, "creation_date": {"type": "STRING", "index": 7, "name": "creation_date", "comment": null}, "keyword_text": {"type": "STRING", "index": 8, "name": "keyword_text", "comment": null}, "match_type": {"type": "STRING", "index": 9, "name": "match_type", "comment": null}, "native_language_keyword": {"type": "INT64", "index": 10, "name": "native_language_keyword", "comment": null}, "serving_status": {"type": "STRING", "index": 11, "name": "serving_status", "comment": null}, "state": {"type": "STRING", "index": 12, "name": "state", "comment": null}, "native_language_locale": {"type": "INT64", "index": 13, "name": "native_language_locale", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.amazon_ads_source.stg_amazon_ads__keyword_history_tmp"}, "model.amazon_ads_source.stg_amazon_ads__portfolio_history": {"metadata": {"type": "table", "schema": "amazon_ads_test_amazon_ads_dev", "name": "stg_amazon_ads__portfolio_history", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"source_relation": {"type": "STRING", "index": 1, "name": "source_relation", "comment": null}, "portfolio_id": {"type": "STRING", "index": 2, "name": "portfolio_id", "comment": null}, "budget_amount": {"type": "INT64", "index": 3, "name": "budget_amount", "comment": null}, "budget_currency_code": {"type": "INT64", "index": 4, "name": "budget_currency_code", "comment": null}, "budget_end_date": {"type": "INT64", "index": 5, "name": "budget_end_date", "comment": null}, "budget_policy": {"type": "INT64", "index": 6, "name": "budget_policy", "comment": null}, "budget_start_date": {"type": "INT64", "index": 7, "name": "budget_start_date", "comment": null}, "creation_date": {"type": "STRING", "index": 8, "name": "creation_date", "comment": null}, "in_budget": {"type": "BOOL", "index": 9, "name": "in_budget", "comment": null}, "last_updated_date": {"type": "STRING", "index": 10, "name": "last_updated_date", "comment": null}, "portfolio_name": {"type": "STRING", "index": 11, "name": "portfolio_name", "comment": null}, "profile_id": {"type": "STRING", "index": 12, "name": "profile_id", "comment": null}, "serving_status": {"type": "STRING", "index": 13, "name": "serving_status", "comment": null}, "state": {"type": "STRING", "index": 14, "name": "state", "comment": null}, "is_most_recent_record": {"type": "BOOL", "index": 15, "name": "is_most_recent_record", "comment": null}}, "stats": {"num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 113, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 1, "include": true, "description": "Approximate count of rows in this table"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.amazon_ads_source.stg_amazon_ads__portfolio_history"}, "model.amazon_ads_source.stg_amazon_ads__portfolio_history_tmp": {"metadata": {"type": "view", "schema": "amazon_ads_test_amazon_ads_dev", "name": "stg_amazon_ads__portfolio_history_tmp", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"id": {"type": "INT64", "index": 1, "name": "id", "comment": null}, "last_updated_date": {"type": "STRING", "index": 2, "name": "last_updated_date", "comment": null}, "_fivetran_synced": {"type": "TIMESTAMP", "index": 3, "name": "_fivetran_synced", "comment": null}, "budget_amount": {"type": "INT64", "index": 4, "name": "budget_amount", "comment": null}, "budget_currency_code": {"type": "INT64", "index": 5, "name": "budget_currency_code", "comment": null}, "budget_end_date": {"type": "INT64", "index": 6, "name": "budget_end_date", "comment": null}, "budget_policy": {"type": "INT64", "index": 7, "name": "budget_policy", "comment": null}, "budget_start_date": {"type": "INT64", "index": 8, "name": "budget_start_date", "comment": null}, "creation_date": {"type": "STRING", "index": 9, "name": "creation_date", "comment": null}, "in_budget": {"type": "BOOL", "index": 10, "name": "in_budget", "comment": null}, "name": {"type": "STRING", "index": 11, "name": "name", "comment": null}, "profile_id": {"type": "INT64", "index": 12, "name": "profile_id", "comment": null}, "serving_status": {"type": "STRING", "index": 13, "name": "serving_status", "comment": null}, "state": {"type": "STRING", "index": 14, "name": "state", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.amazon_ads_source.stg_amazon_ads__portfolio_history_tmp"}, "model.amazon_ads_source.stg_amazon_ads__product_ad_history": {"metadata": {"type": "table", "schema": "amazon_ads_test_amazon_ads_dev", "name": "stg_amazon_ads__product_ad_history", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"source_relation": {"type": "STRING", "index": 1, "name": "source_relation", "comment": null}, "ad_id": {"type": "STRING", "index": 2, "name": "ad_id", "comment": null}, "ad_group_id": {"type": "STRING", "index": 3, "name": "ad_group_id", "comment": null}, "asin": {"type": "STRING", "index": 4, "name": "asin", "comment": null}, "campaign_id": {"type": "STRING", "index": 5, "name": "campaign_id", "comment": null}, "creation_date": {"type": "STRING", "index": 6, "name": "creation_date", "comment": null}, "last_updated_date": {"type": "STRING", "index": 7, "name": "last_updated_date", "comment": null}, "serving_status": {"type": "STRING", "index": 8, "name": "serving_status", "comment": null}, "sku": {"type": "INT64", "index": 9, "name": "sku", "comment": null}, "state": {"type": "STRING", "index": 10, "name": "state", "comment": null}, "is_most_recent_record": {"type": "BOOL", "index": 11, "name": "is_most_recent_record", "comment": null}}, "stats": {"num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 325, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 3, "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.amazon_ads_source.stg_amazon_ads__product_ad_history"}, "model.amazon_ads_source.stg_amazon_ads__product_ad_history_tmp": {"metadata": {"type": "view", "schema": "amazon_ads_test_amazon_ads_dev", "name": "stg_amazon_ads__product_ad_history_tmp", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"id": {"type": "INT64", "index": 1, "name": "id", "comment": null}, "last_updated_date": {"type": "STRING", "index": 2, "name": "last_updated_date", "comment": null}, "_fivetran_synced": {"type": "TIMESTAMP", "index": 3, "name": "_fivetran_synced", "comment": null}, "ad_group_id": {"type": "INT64", "index": 4, "name": "ad_group_id", "comment": null}, "asin": {"type": "STRING", "index": 5, "name": "asin", "comment": null}, "campaign_id": {"type": "INT64", "index": 6, "name": "campaign_id", "comment": null}, "creation_date": {"type": "STRING", "index": 7, "name": "creation_date", "comment": null}, "serving_status": {"type": "STRING", "index": 8, "name": "serving_status", "comment": null}, "sku": {"type": "INT64", "index": 9, "name": "sku", "comment": null}, "state": {"type": "STRING", "index": 10, "name": "state", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.amazon_ads_source.stg_amazon_ads__product_ad_history_tmp"}, "model.amazon_ads_source.stg_amazon_ads__profile": {"metadata": {"type": "table", "schema": "amazon_ads_test_amazon_ads_dev", "name": "stg_amazon_ads__profile", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"source_relation": {"type": "STRING", "index": 1, "name": "source_relation", "comment": null}, "profile_id": {"type": "STRING", "index": 2, "name": "profile_id", "comment": null}, "account_id": {"type": "STRING", "index": 3, "name": "account_id", "comment": null}, "account_marketplace_string_id": {"type": "STRING", "index": 4, "name": "account_marketplace_string_id", "comment": null}, "account_name": {"type": "STRING", "index": 5, "name": "account_name", "comment": null}, "account_sub_type": {"type": "INT64", "index": 6, "name": "account_sub_type", "comment": null}, "account_type": {"type": "STRING", "index": 7, "name": "account_type", "comment": null}, "account_valid_payment_method": {"type": "BOOL", "index": 8, "name": "account_valid_payment_method", "comment": null}, "country_code": {"type": "STRING", "index": 9, "name": "country_code", "comment": null}, "currency_code": {"type": "STRING", "index": 10, "name": "currency_code", "comment": null}, "daily_budget": {"type": "INT64", "index": 11, "name": "daily_budget", "comment": null}, "timezone": {"type": "STRING", "index": 12, "name": "timezone", "comment": null}, "_fivetran_deleted": {"type": "BOOL", "index": 13, "name": "_fivetran_deleted", "comment": null}}, "stats": {"num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 86, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 1, "include": true, "description": "Approximate count of rows in this table"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.amazon_ads_source.stg_amazon_ads__profile"}, "model.amazon_ads_source.stg_amazon_ads__profile_tmp": {"metadata": {"type": "view", "schema": "amazon_ads_test_amazon_ads_dev", "name": "stg_amazon_ads__profile_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}, "account_id": {"type": "STRING", "index": 4, "name": "account_id", "comment": null}, "account_marketplace_string_id": {"type": "STRING", "index": 5, "name": "account_marketplace_string_id", "comment": null}, "account_name": {"type": "STRING", "index": 6, "name": "account_name", "comment": null}, "account_sub_type": {"type": "INT64", "index": 7, "name": "account_sub_type", "comment": null}, "account_type": {"type": "STRING", "index": 8, "name": "account_type", "comment": null}, "account_valid_payment_method": {"type": "BOOL", "index": 9, "name": "account_valid_payment_method", "comment": null}, "country_code": {"type": "STRING", "index": 10, "name": "country_code", "comment": null}, "currency_code": {"type": "STRING", "index": 11, "name": "currency_code", "comment": null}, "daily_budget": {"type": "INT64", "index": 12, "name": "daily_budget", "comment": null}, "timezone": {"type": "STRING", "index": 13, "name": "timezone", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.amazon_ads_source.stg_amazon_ads__profile_tmp"}, "model.amazon_ads_source.stg_amazon_ads__search_term_ad_keyword_report": {"metadata": {"type": "table", "schema": "amazon_ads_test_amazon_ads_dev", "name": "stg_amazon_ads__search_term_ad_keyword_report", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"source_relation": {"type": "STRING", "index": 1, "name": "source_relation", "comment": null}, "ad_group_id": {"type": "STRING", "index": 2, "name": "ad_group_id", "comment": null}, "ad_keyword_status": {"type": "STRING", "index": 3, "name": "ad_keyword_status", "comment": null}, "campaign_budget_amount": {"type": "FLOAT64", "index": 4, "name": "campaign_budget_amount", "comment": null}, "campaign_budget_currency_code": {"type": "STRING", "index": 5, "name": "campaign_budget_currency_code", "comment": null}, "campaign_budget_type": {"type": "STRING", "index": 6, "name": "campaign_budget_type", "comment": null}, "campaign_id": {"type": "STRING", "index": 7, "name": "campaign_id", "comment": null}, "clicks": {"type": "FLOAT64", "index": 8, "name": "clicks", "comment": null}, "cost": {"type": "FLOAT64", "index": 9, "name": "cost", "comment": null}, "date_day": {"type": "DATE", "index": 10, "name": "date_day", "comment": null}, "impressions": {"type": "FLOAT64", "index": 11, "name": "impressions", "comment": null}, "keyword_bid": {"type": "FLOAT64", "index": 12, "name": "keyword_bid", "comment": null}, "keyword_id": {"type": "STRING", "index": 13, "name": "keyword_id", "comment": null}, "search_term": {"type": "STRING", "index": 14, "name": "search_term", "comment": null}, "targeting": {"type": "STRING", "index": 15, "name": "targeting", "comment": null}, "purchases_30_d": {"type": "INT64", "index": 16, "name": "purchases_30_d", "comment": null}, "sales_30_d": {"type": "FLOAT64", "index": 17, "name": "sales_30_d", "comment": null}}, "stats": {"num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 1143, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 10, "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.amazon_ads_source.stg_amazon_ads__search_term_ad_keyword_report"}, "model.amazon_ads_source.stg_amazon_ads__search_term_ad_keyword_report_tmp": {"metadata": {"type": "view", "schema": "amazon_ads_test_amazon_ads_dev", "name": "stg_amazon_ads__search_term_ad_keyword_report_tmp", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"ad_group_id": {"type": "INT64", "index": 1, "name": "ad_group_id", "comment": null}, "campaign_id": {"type": "INT64", "index": 2, "name": "campaign_id", "comment": null}, "date": {"type": "DATE", "index": 3, "name": "date", "comment": null}, "keyword_id": {"type": "INT64", "index": 4, "name": "keyword_id", "comment": null}, "_fivetran_synced": {"type": "TIMESTAMP", "index": 5, "name": "_fivetran_synced", "comment": null}, "campaign_budget_amount": {"type": "FLOAT64", "index": 6, "name": "campaign_budget_amount", "comment": null}, "campaign_budget_currency_code": {"type": "STRING", "index": 7, "name": "campaign_budget_currency_code", "comment": null}, "campaign_budget_type": {"type": "STRING", "index": 8, "name": "campaign_budget_type", "comment": null}, "clicks": {"type": "FLOAT64", "index": 9, "name": "clicks", "comment": null}, "cost": {"type": "FLOAT64", "index": 10, "name": "cost", "comment": null}, "impressions": {"type": "FLOAT64", "index": 11, "name": "impressions", "comment": null}, "keyword_bid": {"type": "FLOAT64", "index": 12, "name": "keyword_bid", "comment": null}, "search_term": {"type": "STRING", "index": 13, "name": "search_term", "comment": null}, "targeting": {"type": "STRING", "index": 14, "name": "targeting", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.amazon_ads_source.stg_amazon_ads__search_term_ad_keyword_report_tmp"}, "model.amazon_ads_source.stg_amazon_ads__targeting_keyword_report": {"metadata": {"type": "table", "schema": "amazon_ads_test_amazon_ads_dev", "name": "stg_amazon_ads__targeting_keyword_report", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"source_relation": {"type": "STRING", "index": 1, "name": "source_relation", "comment": null}, "ad_group_id": {"type": "STRING", "index": 2, "name": "ad_group_id", "comment": null}, "ad_keyword_status": {"type": "STRING", "index": 3, "name": "ad_keyword_status", "comment": null}, "campaign_budget_amount": {"type": "FLOAT64", "index": 4, "name": "campaign_budget_amount", "comment": null}, "campaign_budget_currency_code": {"type": "STRING", "index": 5, "name": "campaign_budget_currency_code", "comment": null}, "campaign_budget_type": {"type": "STRING", "index": 6, "name": "campaign_budget_type", "comment": null}, "campaign_id": {"type": "STRING", "index": 7, "name": "campaign_id", "comment": null}, "clicks": {"type": "FLOAT64", "index": 8, "name": "clicks", "comment": null}, "cost": {"type": "FLOAT64", "index": 9, "name": "cost", "comment": null}, "date_day": {"type": "DATE", "index": 10, "name": "date_day", "comment": null}, "impressions": {"type": "FLOAT64", "index": 11, "name": "impressions", "comment": null}, "keyword_bid": {"type": "FLOAT64", "index": 12, "name": "keyword_bid", "comment": null}, "keyword_id": {"type": "STRING", "index": 13, "name": "keyword_id", "comment": null}, "keyword_type": {"type": "STRING", "index": 14, "name": "keyword_type", "comment": null}, "match_type": {"type": "STRING", "index": 15, "name": "match_type", "comment": null}, "targeting": {"type": "STRING", "index": 16, "name": "targeting", "comment": null}, "purchases_30_d": {"type": "INT64", "index": 17, "name": "purchases_30_d", "comment": null}, "sales_30_d": {"type": "FLOAT64", "index": 18, "name": "sales_30_d", "comment": null}}, "stats": {"num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 1260, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 10, "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.amazon_ads_source.stg_amazon_ads__targeting_keyword_report"}, "model.amazon_ads_source.stg_amazon_ads__targeting_keyword_report_tmp": {"metadata": {"type": "view", "schema": "amazon_ads_test_amazon_ads_dev", "name": "stg_amazon_ads__targeting_keyword_report_tmp", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"ad_group_id": {"type": "INT64", "index": 1, "name": "ad_group_id", "comment": null}, "campaign_id": {"type": "INT64", "index": 2, "name": "campaign_id", "comment": null}, "date": {"type": "DATE", "index": 3, "name": "date", "comment": null}, "keyword_id": {"type": "INT64", "index": 4, "name": "keyword_id", "comment": null}, "_fivetran_synced": {"type": "TIMESTAMP", "index": 5, "name": "_fivetran_synced", "comment": null}, "ad_keyword_status": {"type": "STRING", "index": 6, "name": "ad_keyword_status", "comment": null}, "campaign_budget_amount": {"type": "FLOAT64", "index": 7, "name": "campaign_budget_amount", "comment": null}, "campaign_budget_currency_code": {"type": "STRING", "index": 8, "name": "campaign_budget_currency_code", "comment": null}, "campaign_budget_type": {"type": "STRING", "index": 9, "name": "campaign_budget_type", "comment": null}, "clicks": {"type": "FLOAT64", "index": 10, "name": "clicks", "comment": null}, "cost": {"type": "FLOAT64", "index": 11, "name": "cost", "comment": null}, "impressions": {"type": "FLOAT64", "index": 12, "name": "impressions", "comment": null}, "keyword_bid": {"type": "FLOAT64", "index": 13, "name": "keyword_bid", "comment": null}, "keyword_type": {"type": "STRING", "index": 14, "name": "keyword_type", "comment": null}, "match_type": {"type": "STRING", "index": 15, "name": "match_type", "comment": null}, "targeting": {"type": "STRING", "index": 16, "name": "targeting", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.amazon_ads_source.stg_amazon_ads__targeting_keyword_report_tmp"}}, "sources": {"source.amazon_ads_source.amazon_ads.ad_group_history": {"metadata": {"type": "table", "schema": "amazon_ads_test", "name": "ad_group_history_data", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"id": {"type": "INT64", "index": 1, "name": "id", "comment": null}, "last_updated_date": {"type": "STRING", "index": 2, "name": "last_updated_date", "comment": null}, "_fivetran_synced": {"type": "TIMESTAMP", "index": 3, "name": "_fivetran_synced", "comment": null}, "campaign_id": {"type": "INT64", "index": 4, "name": "campaign_id", "comment": null}, "creation_date": {"type": "STRING", "index": 5, "name": "creation_date", "comment": null}, "default_bid": {"type": "FLOAT64", "index": 6, "name": "default_bid", "comment": null}, "name": {"type": "STRING", "index": 7, "name": "name", "comment": null}, "serving_status": {"type": "STRING", "index": 8, "name": "serving_status", "comment": null}, "state": {"type": "STRING", "index": 9, "name": "state", "comment": null}}, "stats": {"num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 248, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 2, "include": true, "description": "Approximate count of rows in this table"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.amazon_ads_source.amazon_ads.ad_group_history"}, "source.amazon_ads_source.amazon_ads.ad_group_level_report": {"metadata": {"type": "table", "schema": "amazon_ads_test", "name": "ad_group_level_report_data", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"ad_group_id": {"type": "INT64", "index": 1, "name": "ad_group_id", "comment": null}, "date": {"type": "DATE", "index": 2, "name": "date", "comment": null}, "_fivetran_synced": {"type": "TIMESTAMP", "index": 3, "name": "_fivetran_synced", "comment": null}, "campaign_bidding_strategy": {"type": "STRING", "index": 4, "name": "campaign_bidding_strategy", "comment": null}, "clicks": {"type": "FLOAT64", "index": 5, "name": "clicks", "comment": null}, "cost": {"type": "FLOAT64", "index": 6, "name": "cost", "comment": null}, "impressions": {"type": "FLOAT64", "index": 7, "name": "impressions", "comment": null}}, "stats": {"num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 560, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 10, "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.amazon_ads_source.amazon_ads.ad_group_level_report"}, "source.amazon_ads_source.amazon_ads.advertised_product_report": {"metadata": {"type": "table", "schema": "amazon_ads_test", "name": "advertised_product_report_data", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"ad_group_id": {"type": "INT64", "index": 1, "name": "ad_group_id", "comment": null}, "ad_id": {"type": "INT64", "index": 2, "name": "ad_id", "comment": null}, "campaign_id": {"type": "INT64", "index": 3, "name": "campaign_id", "comment": null}, "date": {"type": "DATE", "index": 4, "name": "date", "comment": null}, "_fivetran_synced": {"type": "TIMESTAMP", "index": 5, "name": "_fivetran_synced", "comment": null}, "campaign_budget_amount": {"type": "FLOAT64", "index": 6, "name": "campaign_budget_amount", "comment": null}, "campaign_budget_currency_code": {"type": "STRING", "index": 7, "name": "campaign_budget_currency_code", "comment": null}, "campaign_budget_type": {"type": "STRING", "index": 8, "name": "campaign_budget_type", "comment": null}, "clicks": {"type": "FLOAT64", "index": 9, "name": "clicks", "comment": null}, "cost": {"type": "FLOAT64", "index": 10, "name": "cost", "comment": null}, "impressions": {"type": "FLOAT64", "index": 11, "name": "impressions", "comment": null}, " advertised_asin": {"type": "INT64", "index": 12, "name": " advertised_asin", "comment": null}, " advertised_sku": {"type": "INT64", "index": 13, "name": " advertised_sku", "comment": null}}, "stats": {"num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 910, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 10, "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.amazon_ads_source.amazon_ads.advertised_product_report"}, "source.amazon_ads_source.amazon_ads.campaign_history": {"metadata": {"type": "table", "schema": "amazon_ads_test", "name": "campaign_history_data", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"id": {"type": "INT64", "index": 1, "name": "id", "comment": null}, "last_updated_date": {"type": "STRING", "index": 2, "name": "last_updated_date", "comment": null}, "_fivetran_synced": {"type": "TIMESTAMP", "index": 3, "name": "_fivetran_synced", "comment": null}, "bidding_strategy": {"type": "STRING", "index": 4, "name": "bidding_strategy", "comment": null}, "creation_date": {"type": "STRING", "index": 5, "name": "creation_date", "comment": null}, "budget": {"type": "INT64", "index": 6, "name": "budget", "comment": null}, "end_date": {"type": "INT64", "index": 7, "name": "end_date", "comment": null}, "name": {"type": "STRING", "index": 8, "name": "name", "comment": null}, "portfolio_id": {"type": "INT64", "index": 9, "name": "portfolio_id", "comment": null}, "profile_id": {"type": "INT64", "index": 10, "name": "profile_id", "comment": null}, "serving_status": {"type": "STRING", "index": 11, "name": "serving_status", "comment": null}, "start_date": {"type": "DATE", "index": 12, "name": "start_date", "comment": null}, "state": {"type": "STRING", "index": 13, "name": "state", "comment": null}, "targeting_type": {"type": "STRING", "index": 14, "name": "targeting_type", "comment": null}, "budget_type": {"type": "STRING", "index": 15, "name": "budget_type", "comment": null}, "effective_budget": {"type": "INT64", "index": 16, "name": "effective_budget", "comment": null}}, "stats": {"num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 1061, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 6, "include": true, "description": "Approximate count of rows in this table"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.amazon_ads_source.amazon_ads.campaign_history"}, "source.amazon_ads_source.amazon_ads.campaign_level_report": {"metadata": {"type": "table", "schema": "amazon_ads_test", "name": "campaign_level_report_data", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"campaign_id": {"type": "INT64", "index": 1, "name": "campaign_id", "comment": null}, "date": {"type": "DATE", "index": 2, "name": "date", "comment": null}, "_fivetran_synced": {"type": "TIMESTAMP", "index": 3, "name": "_fivetran_synced", "comment": null}, "campaign_applicable_budget_rule_id": {"type": "INT64", "index": 4, "name": "campaign_applicable_budget_rule_id", "comment": null}, "campaign_applicable_budget_rule_name": {"type": "INT64", "index": 5, "name": "campaign_applicable_budget_rule_name", "comment": null}, "campaign_bidding_strategy": {"type": "STRING", "index": 6, "name": "campaign_bidding_strategy", "comment": null}, "campaign_budget_amount": {"type": "FLOAT64", "index": 7, "name": "campaign_budget_amount", "comment": null}, "campaign_budget_currency_code": {"type": "STRING", "index": 8, "name": "campaign_budget_currency_code", "comment": null}, "campaign_budget_type": {"type": "STRING", "index": 9, "name": "campaign_budget_type", "comment": null}, "clicks": {"type": "FLOAT64", "index": 10, "name": "clicks", "comment": null}, "cost": {"type": "FLOAT64", "index": 11, "name": "cost", "comment": null}, "impressions": {"type": "FLOAT64", "index": 12, "name": "impressions", "comment": null}, "campaign_rule_based_budget_amount": {"type": "INT64", "index": 13, "name": "campaign_rule_based_budget_amount", "comment": null}, "sales_7_d": {"type": "INT64", "index": 14, "name": "sales_7_d", "comment": null}, "purchases_30_d": {"type": "INT64", "index": 15, "name": "purchases_30_d", "comment": null}, "sales_30_d": {"type": "INT64", "index": 16, "name": "sales_30_d", "comment": null}}, "stats": {"num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 981, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 10, "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.amazon_ads_source.amazon_ads.campaign_level_report"}, "source.amazon_ads_source.amazon_ads.keyword_history": {"metadata": {"type": "table", "schema": "amazon_ads_test", "name": "keyword_history_data", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"id": {"type": "INT64", "index": 1, "name": "id", "comment": null}, "last_updated_date": {"type": "STRING", "index": 2, "name": "last_updated_date", "comment": null}, "_fivetran_synced": {"type": "TIMESTAMP", "index": 3, "name": "_fivetran_synced", "comment": null}, "ad_group_id": {"type": "INT64", "index": 4, "name": "ad_group_id", "comment": null}, "bid": {"type": "FLOAT64", "index": 5, "name": "bid", "comment": null}, "campaign_id": {"type": "INT64", "index": 6, "name": "campaign_id", "comment": null}, "creation_date": {"type": "STRING", "index": 7, "name": "creation_date", "comment": null}, "keyword_text": {"type": "STRING", "index": 8, "name": "keyword_text", "comment": null}, "match_type": {"type": "STRING", "index": 9, "name": "match_type", "comment": null}, "native_language_keyword": {"type": "INT64", "index": 10, "name": "native_language_keyword", "comment": null}, "serving_status": {"type": "STRING", "index": 11, "name": "serving_status", "comment": null}, "state": {"type": "STRING", "index": 12, "name": "state", "comment": null}, "native_language_locale": {"type": "INT64", "index": 13, "name": "native_language_locale", "comment": null}}, "stats": {"num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 1365, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 9, "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.amazon_ads_source.amazon_ads.keyword_history"}, "source.amazon_ads_source.amazon_ads.portfolio_history": {"metadata": {"type": "table", "schema": "amazon_ads_test", "name": "portfolio_history_data", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"id": {"type": "INT64", "index": 1, "name": "id", "comment": null}, "last_updated_date": {"type": "STRING", "index": 2, "name": "last_updated_date", "comment": null}, "_fivetran_synced": {"type": "TIMESTAMP", "index": 3, "name": "_fivetran_synced", "comment": null}, "budget_amount": {"type": "INT64", "index": 4, "name": "budget_amount", "comment": null}, "budget_currency_code": {"type": "INT64", "index": 5, "name": "budget_currency_code", "comment": null}, "budget_end_date": {"type": "INT64", "index": 6, "name": "budget_end_date", "comment": null}, "budget_policy": {"type": "INT64", "index": 7, "name": "budget_policy", "comment": null}, "budget_start_date": {"type": "INT64", "index": 8, "name": "budget_start_date", "comment": null}, "creation_date": {"type": "STRING", "index": 9, "name": "creation_date", "comment": null}, "in_budget": {"type": "BOOL", "index": 10, "name": "in_budget", "comment": null}, "name": {"type": "STRING", "index": 11, "name": "name", "comment": null}, "profile_id": {"type": "INT64", "index": 12, "name": "profile_id", "comment": null}, "serving_status": {"type": "STRING", "index": 13, "name": "serving_status", "comment": null}, "state": {"type": "STRING", "index": 14, "name": "state", "comment": null}}, "stats": {"num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 124, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 1, "include": true, "description": "Approximate count of rows in this table"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.amazon_ads_source.amazon_ads.portfolio_history"}, "source.amazon_ads_source.amazon_ads.product_ad_history": {"metadata": {"type": "table", "schema": "amazon_ads_test", "name": "product_ad_history_data", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"id": {"type": "INT64", "index": 1, "name": "id", "comment": null}, "last_updated_date": {"type": "STRING", "index": 2, "name": "last_updated_date", "comment": null}, "_fivetran_synced": {"type": "TIMESTAMP", "index": 3, "name": "_fivetran_synced", "comment": null}, "ad_group_id": {"type": "INT64", "index": 4, "name": "ad_group_id", "comment": null}, "asin": {"type": "STRING", "index": 5, "name": "asin", "comment": null}, "campaign_id": {"type": "INT64", "index": 6, "name": "campaign_id", "comment": null}, "creation_date": {"type": "STRING", "index": 7, "name": "creation_date", "comment": null}, "serving_status": {"type": "STRING", "index": 8, "name": "serving_status", "comment": null}, "sku": {"type": "INT64", "index": 9, "name": "sku", "comment": null}, "state": {"type": "STRING", "index": 10, "name": "state", "comment": null}}, "stats": {"num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 365, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 3, "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.amazon_ads_source.amazon_ads.product_ad_history"}, "source.amazon_ads_source.amazon_ads.profile": {"metadata": {"type": "table", "schema": "amazon_ads_test", "name": "profile_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}, "account_id": {"type": "STRING", "index": 4, "name": "account_id", "comment": null}, "account_marketplace_string_id": {"type": "STRING", "index": 5, "name": "account_marketplace_string_id", "comment": null}, "account_name": {"type": "STRING", "index": 6, "name": "account_name", "comment": null}, "account_sub_type": {"type": "INT64", "index": 7, "name": "account_sub_type", "comment": null}, "account_type": {"type": "STRING", "index": 8, "name": "account_type", "comment": null}, "account_valid_payment_method": {"type": "BOOL", "index": 9, "name": "account_valid_payment_method", "comment": null}, "country_code": {"type": "STRING", "index": 10, "name": "country_code", "comment": null}, "currency_code": {"type": "STRING", "index": 11, "name": "currency_code", "comment": null}, "daily_budget": {"type": "INT64", "index": 12, "name": "daily_budget", "comment": null}, "timezone": {"type": "STRING", "index": 13, "name": "timezone", "comment": null}}, "stats": {"num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 96, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 1, "include": true, "description": "Approximate count of rows in this table"}, "has_stats": {"id": "has_stats", "label": "Has Stats?", "value": true, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.amazon_ads_source.amazon_ads.profile"}, "source.amazon_ads_source.amazon_ads.search_term_ad_keyword_report": {"metadata": {"type": "table", "schema": "amazon_ads_test", "name": "search_term_ad_keyword_report_data", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"ad_group_id": {"type": "INT64", "index": 1, "name": "ad_group_id", "comment": null}, "campaign_id": {"type": "INT64", "index": 2, "name": "campaign_id", "comment": null}, "date": {"type": "DATE", "index": 3, "name": "date", "comment": null}, "keyword_id": {"type": "INT64", "index": 4, "name": "keyword_id", "comment": null}, "_fivetran_synced": {"type": "TIMESTAMP", "index": 5, "name": "_fivetran_synced", "comment": null}, "campaign_budget_amount": {"type": "FLOAT64", "index": 6, "name": "campaign_budget_amount", "comment": null}, "campaign_budget_currency_code": {"type": "STRING", "index": 7, "name": "campaign_budget_currency_code", "comment": null}, "campaign_budget_type": {"type": "STRING", "index": 8, "name": "campaign_budget_type", "comment": null}, "clicks": {"type": "FLOAT64", "index": 9, "name": "clicks", "comment": null}, "cost": {"type": "FLOAT64", "index": 10, "name": "cost", "comment": null}, "impressions": {"type": "FLOAT64", "index": 11, "name": "impressions", "comment": null}, "keyword_bid": {"type": "FLOAT64", "index": 12, "name": "keyword_bid", "comment": null}, "search_term": {"type": "STRING", "index": 13, "name": "search_term", "comment": null}, "targeting": {"type": "STRING", "index": 14, "name": "targeting", "comment": null}}, "stats": {"num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 1270, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 10, "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.amazon_ads_source.amazon_ads.search_term_ad_keyword_report"}, "source.amazon_ads_source.amazon_ads.targeting_keyword_report": {"metadata": {"type": "table", "schema": "amazon_ads_test", "name": "targeting_keyword_report_data", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"ad_group_id": {"type": "INT64", "index": 1, "name": "ad_group_id", "comment": null}, "campaign_id": {"type": "INT64", "index": 2, "name": "campaign_id", "comment": null}, "date": {"type": "DATE", "index": 3, "name": "date", "comment": null}, "keyword_id": {"type": "INT64", "index": 4, "name": "keyword_id", "comment": null}, "_fivetran_synced": {"type": "TIMESTAMP", "index": 5, "name": "_fivetran_synced", "comment": null}, "ad_keyword_status": {"type": "STRING", "index": 6, "name": "ad_keyword_status", "comment": null}, "campaign_budget_amount": {"type": "FLOAT64", "index": 7, "name": "campaign_budget_amount", "comment": null}, "campaign_budget_currency_code": {"type": "STRING", "index": 8, "name": "campaign_budget_currency_code", "comment": null}, "campaign_budget_type": {"type": "STRING", "index": 9, "name": "campaign_budget_type", "comment": null}, "clicks": {"type": "FLOAT64", "index": 10, "name": "clicks", "comment": null}, "cost": {"type": "FLOAT64", "index": 11, "name": "cost", "comment": null}, "impressions": {"type": "FLOAT64", "index": 12, "name": "impressions", "comment": null}, "keyword_bid": {"type": "FLOAT64", "index": 13, "name": "keyword_bid", "comment": null}, "keyword_type": {"type": "STRING", "index": 14, "name": "keyword_type", "comment": null}, "match_type": {"type": "STRING", "index": 15, "name": "match_type", "comment": null}, "targeting": {"type": "STRING", "index": 16, "name": "targeting", "comment": null}}, "stats": {"num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 1360, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 10, "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.amazon_ads_source.amazon_ads.targeting_keyword_report"}}, "errors": null}
\ No newline at end of file
diff --git a/docs/index.html b/docs/index.html
index 5631ac6..ca1e6f8 100644
--- a/docs/index.html
+++ b/docs/index.html
@@ -24,7 +24,7 @@
-