From 7050e356ad2fd9249cf030ee9d5e9d3139c94dda Mon Sep 17 00:00:00 2001 From: fivetran-catfritz <111930712+fivetran-catfritz@users.noreply.github.com> Date: Mon, 24 Jun 2024 17:29:15 -0500 Subject: [PATCH 01/16] feature/click-uri-deprecation --- macros/get_creative_history_columns.sql | 2 ++ models/stg_linkedin_ads__creative_history.sql | 8 ++++++-- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/macros/get_creative_history_columns.sql b/macros/get_creative_history_columns.sql index f7422f0..eb8588f 100644 --- a/macros/get_creative_history_columns.sql +++ b/macros/get_creative_history_columns.sql @@ -10,6 +10,8 @@ {"name": "last_modified_at", "datatype": dbt.type_timestamp()}, {"name": "intended_status", "datatype": dbt.type_string()}, {"name": "status", "datatype": dbt.type_string()}, + {"name": "text_ad_landing_page", "datatype": dbt.type_string()}, + {"name": "spotlight_landing_page", "datatype": dbt.type_string()} ] %} {{ return(columns) }} diff --git a/models/stg_linkedin_ads__creative_history.sql b/models/stg_linkedin_ads__creative_history.sql index 09089b8..267b049 100644 --- a/models/stg_linkedin_ads__creative_history.sql +++ b/models/stg_linkedin_ads__creative_history.sql @@ -29,10 +29,14 @@ with base as ( id as creative_id, campaign_id, coalesce(status, intended_status) as status, - click_uri, + coalesce(text_ad_landing_page, spotlight_landing_page, click_uri) as click_uri, cast(coalesce(last_modified_time, last_modified_at) as {{ dbt.type_timestamp() }}) as last_modified_at, cast(coalesce(created_time, created_at) as {{ dbt.type_timestamp() }}) as created_at, - row_number() over (partition by source_relation, id order by coalesce(last_modified_time, last_modified_at) desc) = 1 as is_latest_version + row_number() over (partition by source_relation, id order by coalesce(last_modified_time, last_modified_at) desc) = 1 as is_latest_version, + case when text_ad_landing_page then 'text_ad' + when spotlight_landing_page then 'spotlight' + else cast(null as {{ dbt.type_string() }}} + end as click_uri_type from macro From e05b6d0b6a20bb1be42814e478a0ffc4c7f4e3ff Mon Sep 17 00:00:00 2001 From: fivetran-catfritz <111930712+fivetran-catfritz@users.noreply.github.com> Date: Mon, 24 Jun 2024 17:30:27 -0500 Subject: [PATCH 02/16] feature/click-uri-deprecation --- models/stg_linkedin_ads__creative_history.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/models/stg_linkedin_ads__creative_history.sql b/models/stg_linkedin_ads__creative_history.sql index 267b049..7a28de8 100644 --- a/models/stg_linkedin_ads__creative_history.sql +++ b/models/stg_linkedin_ads__creative_history.sql @@ -35,7 +35,7 @@ with base as ( row_number() over (partition by source_relation, id order by coalesce(last_modified_time, last_modified_at) desc) = 1 as is_latest_version, case when text_ad_landing_page then 'text_ad' when spotlight_landing_page then 'spotlight' - else cast(null as {{ dbt.type_string() }}} + else cast(null as {{ dbt.type_string() }}) end as click_uri_type from macro From 6243eb601579d735a55de39f9b70e9d1463431fd Mon Sep 17 00:00:00 2001 From: fivetran-catfritz <111930712+fivetran-catfritz@users.noreply.github.com> Date: Mon, 24 Jun 2024 17:35:40 -0500 Subject: [PATCH 03/16] feature/click-uri-deprecation --- models/stg_linkedin_ads__creative_history.sql | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/models/stg_linkedin_ads__creative_history.sql b/models/stg_linkedin_ads__creative_history.sql index 7a28de8..a6b3603 100644 --- a/models/stg_linkedin_ads__creative_history.sql +++ b/models/stg_linkedin_ads__creative_history.sql @@ -33,8 +33,8 @@ with base as ( cast(coalesce(last_modified_time, last_modified_at) as {{ dbt.type_timestamp() }}) as last_modified_at, cast(coalesce(created_time, created_at) as {{ dbt.type_timestamp() }}) as created_at, row_number() over (partition by source_relation, id order by coalesce(last_modified_time, last_modified_at) desc) = 1 as is_latest_version, - case when text_ad_landing_page then 'text_ad' - when spotlight_landing_page then 'spotlight' + case when text_ad_landing_page is not null then 'text_ad' + when spotlight_landing_page is not null then 'spotlight' else cast(null as {{ dbt.type_string() }}) end as click_uri_type From d445e9ddd8f5c88adbac501c7f012e9ff5e2d2a7 Mon Sep 17 00:00:00 2001 From: Joe Markiewicz <74217849+fivetran-joemarkiewicz@users.noreply.github.com> Date: Fri, 13 Sep 2024 14:18:08 -0500 Subject: [PATCH 04/16] full code changes and docs regen --- CHANGELOG.md | 20 ++ README.md | 2 +- dbt_project.yml | 2 +- docs/catalog.json | 2 +- docs/index.html | 47 +--- docs/manifest.json | 2 +- docs/run_results.json | 2 +- integration_tests/dbt_project.yml | 2 +- .../seeds/linkedin_creative_history_data.csv | 202 +++++++++--------- macros/is_table_empty.sql | 20 ++ macros/result_if_table_exists.sql | 14 ++ models/src_linkedin.yml | 10 +- models/stg_linkedin.yml | 7 +- models/stg_linkedin_ads__account_history.sql | 6 +- ...g_linkedin_ads__campaign_group_history.sql | 6 +- models/stg_linkedin_ads__campaign_history.sql | 6 +- models/stg_linkedin_ads__creative_history.sql | 8 +- 17 files changed, 203 insertions(+), 155 deletions(-) create mode 100644 macros/is_table_empty.sql create mode 100644 macros/result_if_table_exists.sql diff --git a/CHANGELOG.md b/CHANGELOG.md index eaf039f..42d2b77 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,23 @@ +# dbt_linkedin_source v0.9.0 +[PR #69](https://github.com/fivetran/dbt_linkedin_source/pull/69) includes the following updates: + +## Breaking Changes +- The `click_uri_type` field has been added to the `stg_linkedin_ads__creative_history` model. This field allows users to differentiate which click_uri type (`text_ad` or `spotlight`) is being used to populate the results of the `click_uri` field. + +## Bug Fixes +- The `click_uri` field has been adjusted to populate the results following a coalesce on the `text_ad_landing_page`, `spotlight_landing_page`, or `click_uri` fields. + - This change is in response to a [LinkedIn Ads API](https://learn.microsoft.com/en-us/linkedin/marketing/community-management/contentapi-migration-guide?view=li-lms-2024-05#adcreativesv2-api-creatives-api) and [Fivetran LinkedIn Ads connector update](https://fivetran.com/docs/connectors/applications/linkedin-ads/changelog#january2024) which moved `click_uri` data to either the `text_ad_landing_page` or `spotlight_landing_page` fields depending on the creative type. +- Updated the `is_latest_version` window function in the following models to exclude the `source_relation` field from the partition statement when `linkedin_ads_union_schemas` or `linkedin_ads_union_databases` variables are empty. Also, modified it to skip the window function if the upstream table is empty, using the new `window_function_if_table_exists()` and `is_table_empty()` macros. This change addresses Redshift's issue with partitioning by constant expressions. + - `stg_linkedin_ads__account_history` + - `stg_linkedin_ads__campaign_group_history` + - `stg_linkedin_ads__campaign_history` + - `stg_linkedin_ads__creative_history` + +## Under the Hood +- Updates to the `linkedin_creative_history_data` seed file to include the following new fields to ensure accurate data validation tests: + - `text_ad_landing_page` + - `spotlight_landing_page` + # dbt_linkedin_source v0.8.2 [PR #66](https://github.com/fivetran/dbt_linkedin_source/pull/66) includes the following updates: ## Bug Fixes diff --git a/README.md b/README.md index 1f42faf..213542a 100644 --- a/README.md +++ b/README.md @@ -47,7 +47,7 @@ If you are **not** using the [Linkedin transformation package](https://github.c # packages.yml packages: - package: fivetran/linkedin_source - version: [">=0.8.0", "<0.9.0"] + version: [">=0.9.0", "<0.10.0"] ``` ## Step 3: Define database and schema variables diff --git a/dbt_project.yml b/dbt_project.yml index b5ddc2e..07744e1 100644 --- a/dbt_project.yml +++ b/dbt_project.yml @@ -1,5 +1,5 @@ name: 'linkedin_source' -version: '0.8.2' +version: '0.9.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 55e9316..a8727fd 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.6.8", "generated_at": "2024-01-19T16:58:28.359341Z", "invocation_id": "0d1ad22e-84d2-459f-92b8-ecf6762d0b15", "env": {}}, "nodes": {"seed.linkedin_source_integration_tests.linkedin_account_history_data": {"metadata": {"type": "table", "schema": "linkedin_source_integration_tests_23", "name": "linkedin_account_history_data", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"id": {"type": "INT64", "index": 1, "name": "id", "comment": null}, "last_modified_time": {"type": "TIMESTAMP", "index": 2, "name": "last_modified_time", "comment": null}, "created_time": {"type": "TIMESTAMP", "index": 3, "name": "created_time", "comment": null}, "name": {"type": "STRING", "index": 4, "name": "name", "comment": null}, "currency": {"type": "STRING", "index": 5, "name": "currency", "comment": null}, "version_tag": {"type": "INT64", "index": 6, "name": "version_tag", "comment": null}}, "stats": {"num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 882, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 14, "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.linkedin_source_integration_tests.linkedin_account_history_data"}, "seed.linkedin_source_integration_tests.linkedin_creative_history_data": {"metadata": {"type": "table", "schema": "linkedin_source_integration_tests_23", "name": "linkedin_creative_history_data", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"id": {"type": "INT64", "index": 1, "name": "id", "comment": null}, "campaign_id": {"type": "INT64", "index": 2, "name": "campaign_id", "comment": null}, "intended_status": {"type": "STRING", "index": 3, "name": "intended_status", "comment": null}, "click_uri": {"type": "STRING", "index": 4, "name": "click_uri", "comment": null}, "last_modified_at": {"type": "TIMESTAMP", "index": 5, "name": "last_modified_at", "comment": null}, "created_time": {"type": "TIMESTAMP", "index": 6, "name": "created_time", "comment": null}}, "stats": {"num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 2400, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 100, "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.linkedin_source_integration_tests.linkedin_creative_history_data"}, "seed.linkedin_source_integration_tests.linkedin_ad_analytics_by_campaign_data": {"metadata": {"type": "table", "schema": "linkedin_source_integration_tests_23", "name": "linkedin_ad_analytics_by_campaign_data", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"campaign_id": {"type": "INT64", "index": 1, "name": "campaign_id", "comment": null}, "day": {"type": "DATETIME", "index": 2, "name": "day", "comment": null}, "action_clicks": {"type": "INT64", "index": 3, "name": "action_clicks", "comment": null}, "ad_unit_clicks": {"type": "INT64", "index": 4, "name": "ad_unit_clicks", "comment": null}, "approximate_unique_impressions": {"type": "INT64", "index": 5, "name": "approximate_unique_impressions", "comment": null}, "card_clicks": {"type": "INT64", "index": 6, "name": "card_clicks", "comment": null}, "card_impressions": {"type": "INT64", "index": 7, "name": "card_impressions", "comment": null}, "clicks": {"type": "INT64", "index": 8, "name": "clicks", "comment": null}, "comment_likes": {"type": "INT64", "index": 9, "name": "comment_likes", "comment": null}, "comments": {"type": "INT64", "index": 10, "name": "comments", "comment": null}, "company_page_clicks": {"type": "INT64", "index": 11, "name": "company_page_clicks", "comment": null}, "conversion_value_in_local_currency": {"type": "INT64", "index": 12, "name": "conversion_value_in_local_currency", "comment": null}, "cost_in_local_currency": {"type": "FLOAT64", "index": 13, "name": "cost_in_local_currency", "comment": null}, "cost_in_usd": {"type": "FLOAT64", "index": 14, "name": "cost_in_usd", "comment": null}, "external_website_conversions": {"type": "INT64", "index": 15, "name": "external_website_conversions", "comment": null}, "external_website_post_click_conversions": {"type": "INT64", "index": 16, "name": "external_website_post_click_conversions", "comment": null}, "external_website_post_view_conversions": {"type": "INT64", "index": 17, "name": "external_website_post_view_conversions", "comment": null}, "follows": {"type": "INT64", "index": 18, "name": "follows", "comment": null}, "full_screen_plays": {"type": "INT64", "index": 19, "name": "full_screen_plays", "comment": null}, "impressions": {"type": "INT64", "index": 20, "name": "impressions", "comment": null}, "landing_page_clicks": {"type": "INT64", "index": 21, "name": "landing_page_clicks", "comment": null}, "lead_generation_mail_contact_info_shares": {"type": "INT64", "index": 22, "name": "lead_generation_mail_contact_info_shares", "comment": null}, "lead_generation_mail_interested_clicks": {"type": "INT64", "index": 23, "name": "lead_generation_mail_interested_clicks", "comment": null}, "likes": {"type": "INT64", "index": 24, "name": "likes", "comment": null}, "one_click_lead_form_opens": {"type": "INT64", "index": 25, "name": "one_click_lead_form_opens", "comment": null}, "one_click_leads": {"type": "INT64", "index": 26, "name": "one_click_leads", "comment": null}, "opens": {"type": "INT64", "index": 27, "name": "opens", "comment": null}, "other_engagements": {"type": "INT64", "index": 28, "name": "other_engagements", "comment": null}, "shares": {"type": "INT64", "index": 29, "name": "shares", "comment": null}, "text_url_clicks": {"type": "INT64", "index": 30, "name": "text_url_clicks", "comment": null}, "total_engagements": {"type": "INT64", "index": 31, "name": "total_engagements", "comment": null}, "video_completions": {"type": "INT64", "index": 32, "name": "video_completions", "comment": null}, "video_first_quartile_completions": {"type": "INT64", "index": 33, "name": "video_first_quartile_completions", "comment": null}, "video_midpoint_completions": {"type": "INT64", "index": 34, "name": "video_midpoint_completions", "comment": null}, "video_starts": {"type": "INT64", "index": 35, "name": "video_starts", "comment": null}, "video_third_quartile_completions": {"type": "INT64", "index": 36, "name": "video_third_quartile_completions", "comment": null}, "video_views": {"type": "INT64", "index": 37, "name": "video_views", "comment": null}, "viral_card_clicks": {"type": "INT64", "index": 38, "name": "viral_card_clicks", "comment": null}, "viral_card_impressions": {"type": "INT64", "index": 39, "name": "viral_card_impressions", "comment": null}, "viral_clicks": {"type": "INT64", "index": 40, "name": "viral_clicks", "comment": null}, "viral_comment_likes": {"type": "INT64", "index": 41, "name": "viral_comment_likes", "comment": null}, "viral_comments": {"type": "INT64", "index": 42, "name": "viral_comments", "comment": null}, "viral_company_page_clicks": {"type": "INT64", "index": 43, "name": "viral_company_page_clicks", "comment": null}, "viral_external_website_conversions": {"type": "INT64", "index": 44, "name": "viral_external_website_conversions", "comment": null}, "viral_external_website_post_click_conversions": {"type": "INT64", "index": 45, "name": "viral_external_website_post_click_conversions", "comment": null}, "viral_external_website_post_view_conversions": {"type": "INT64", "index": 46, "name": "viral_external_website_post_view_conversions", "comment": null}, "viral_follows": {"type": "INT64", "index": 47, "name": "viral_follows", "comment": null}, "viral_full_screen_plays": {"type": "INT64", "index": 48, "name": "viral_full_screen_plays", "comment": null}, "viral_impressions": {"type": "INT64", "index": 49, "name": "viral_impressions", "comment": null}, "viral_landing_page_clicks": {"type": "INT64", "index": 50, "name": "viral_landing_page_clicks", "comment": null}, "viral_likes": {"type": "INT64", "index": 51, "name": "viral_likes", "comment": null}, "viral_one_click_lead_form_opens": {"type": "INT64", "index": 52, "name": "viral_one_click_lead_form_opens", "comment": null}, "viral_one_click_leads": {"type": "INT64", "index": 53, "name": "viral_one_click_leads", "comment": null}, "viral_other_engagements": {"type": "INT64", "index": 54, "name": "viral_other_engagements", "comment": null}, "viral_shares": {"type": "INT64", "index": 55, "name": "viral_shares", "comment": null}, "viral_total_engagements": {"type": "INT64", "index": 56, "name": "viral_total_engagements", "comment": null}, "viral_video_completions": {"type": "INT64", "index": 57, "name": "viral_video_completions", "comment": null}, "viral_video_first_quartile_completions": {"type": "INT64", "index": 58, "name": "viral_video_first_quartile_completions", "comment": null}, "viral_video_midpoint_completions": {"type": "INT64", "index": 59, "name": "viral_video_midpoint_completions", "comment": null}, "viral_video_starts": {"type": "INT64", "index": 60, "name": "viral_video_starts", "comment": null}, "viral_video_third_quartile_completions": {"type": "INT64", "index": 61, "name": "viral_video_third_quartile_completions", "comment": null}, "viral_video_views": {"type": "INT64", "index": 62, "name": "viral_video_views", "comment": null}}, "stats": {"num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 6752, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 20, "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.linkedin_source_integration_tests.linkedin_ad_analytics_by_campaign_data"}, "seed.linkedin_source_integration_tests.linkedin_ad_analytics_by_creative_data": {"metadata": {"type": "table", "schema": "linkedin_source_integration_tests_23", "name": "linkedin_ad_analytics_by_creative_data", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"creative_id": {"type": "INT64", "index": 1, "name": "creative_id", "comment": null}, "day": {"type": "TIMESTAMP", "index": 2, "name": "day", "comment": null}, "clicks": {"type": "INT64", "index": 3, "name": "clicks", "comment": null}, "impressions": {"type": "INT64", "index": 4, "name": "impressions", "comment": null}, "cost_in_local_currency": {"type": "INT64", "index": 5, "name": "cost_in_local_currency", "comment": null}, "cost_in_usd": {"type": "INT64", "index": 6, "name": "cost_in_usd", "comment": null}}, "stats": {"num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 2968, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 100, "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.linkedin_source_integration_tests.linkedin_ad_analytics_by_creative_data"}, "seed.linkedin_source_integration_tests.linkedin_campaign_group_history_data": {"metadata": {"type": "table", "schema": "linkedin_source_integration_tests_23", "name": "linkedin_campaign_group_history_data", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"id": {"type": "INT64", "index": 1, "name": "id", "comment": null}, "last_modified_time": {"type": "TIMESTAMP", "index": 2, "name": "last_modified_time", "comment": null}, "account_id": {"type": "INT64", "index": 3, "name": "account_id", "comment": null}, "created_time": {"type": "TIMESTAMP", "index": 4, "name": "created_time", "comment": null}, "name": {"type": "STRING", "index": 5, "name": "name", "comment": null}}, "stats": {"num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 232, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 4, "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.linkedin_source_integration_tests.linkedin_campaign_group_history_data"}, "seed.linkedin_source_integration_tests.linkedin_campaign_history_data": {"metadata": {"type": "table", "schema": "linkedin_source_integration_tests_23", "name": "linkedin_campaign_history_data", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"id": {"type": "INT64", "index": 1, "name": "id", "comment": null}, "last_modified_time": {"type": "TIMESTAMP", "index": 2, "name": "last_modified_time", "comment": null}, "account_id": {"type": "INT64", "index": 3, "name": "account_id", "comment": null}, "campaign_group_id": {"type": "INT64", "index": 4, "name": "campaign_group_id", "comment": null}, "created_time": {"type": "TIMESTAMP", "index": 5, "name": "created_time", "comment": null}, "name": {"type": "STRING", "index": 6, "name": "name", "comment": null}, "version_tag": {"type": "INT64", "index": 7, "name": "version_tag", "comment": null}}, "stats": {"num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 7400, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 100, "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.linkedin_source_integration_tests.linkedin_campaign_history_data"}, "model.linkedin_source.stg_linkedin_ads__ad_analytics_by_creative": {"metadata": {"type": "table", "schema": "linkedin_source_integration_tests_23_linkedin_ads_source", "name": "stg_linkedin_ads__ad_analytics_by_creative", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"source_relation": {"type": "STRING", "index": 1, "name": "source_relation", "comment": null}, "date_day": {"type": "TIMESTAMP", "index": 2, "name": "date_day", "comment": null}, "creative_id": {"type": "INT64", "index": 3, "name": "creative_id", "comment": null}, "clicks": {"type": "INT64", "index": 4, "name": "clicks", "comment": null}, "impressions": {"type": "INT64", "index": 5, "name": "impressions", "comment": null}, "cost": {"type": "INT64", "index": 6, "name": "cost", "comment": null}}, "stats": {"num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 2936, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 100, "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.linkedin_source.stg_linkedin_ads__ad_analytics_by_creative"}, "model.linkedin_source.stg_linkedin_ads__account_history": {"metadata": {"type": "table", "schema": "linkedin_source_integration_tests_23_linkedin_ads_source", "name": "stg_linkedin_ads__account_history", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"source_relation": {"type": "STRING", "index": 1, "name": "source_relation", "comment": null}, "account_id": {"type": "INT64", "index": 2, "name": "account_id", "comment": null}, "account_name": {"type": "STRING", "index": 3, "name": "account_name", "comment": null}, "currency": {"type": "STRING", "index": 4, "name": "currency", "comment": null}, "version_tag": {"type": "NUMERIC", "index": 5, "name": "version_tag", "comment": null}, "status": {"type": "STRING", "index": 6, "name": "status", "comment": null}, "type": {"type": "STRING", "index": 7, "name": "type", "comment": null}, "last_modified_at": {"type": "TIMESTAMP", "index": 8, "name": "last_modified_at", "comment": null}, "created_at": {"type": "TIMESTAMP", "index": 9, "name": "created_at", "comment": null}, "is_latest_version": {"type": "BOOL", "index": 10, "name": "is_latest_version", "comment": null}}, "stats": {"num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 1036, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 14, "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.linkedin_source.stg_linkedin_ads__account_history"}, "model.linkedin_source.stg_linkedin_ads__creative_history": {"metadata": {"type": "table", "schema": "linkedin_source_integration_tests_23_linkedin_ads_source", "name": "stg_linkedin_ads__creative_history", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"source_relation": {"type": "STRING", "index": 1, "name": "source_relation", "comment": null}, "creative_id": {"type": "INT64", "index": 2, "name": "creative_id", "comment": null}, "campaign_id": {"type": "INT64", "index": 3, "name": "campaign_id", "comment": null}, "status": {"type": "STRING", "index": 4, "name": "status", "comment": null}, "click_uri": {"type": "STRING", "index": 5, "name": "click_uri", "comment": null}, "last_modified_at": {"type": "TIMESTAMP", "index": 6, "name": "last_modified_at", "comment": null}, "created_at": {"type": "TIMESTAMP", "index": 7, "name": "created_at", "comment": null}, "is_latest_version": {"type": "BOOL", "index": 8, "name": "is_latest_version", "comment": null}, "base_url": {"type": "STRING", "index": 9, "name": "base_url", "comment": null}, "url_host": {"type": "STRING", "index": 10, "name": "url_host", "comment": null}, "url_path": {"type": "STRING", "index": 11, "name": "url_path", "comment": null}, "utm_source": {"type": "STRING", "index": 12, "name": "utm_source", "comment": null}, "utm_medium": {"type": "STRING", "index": 13, "name": "utm_medium", "comment": null}, "utm_campaign": {"type": "STRING", "index": 14, "name": "utm_campaign", "comment": null}, "utm_content": {"type": "STRING", "index": 15, "name": "utm_content", "comment": null}, "utm_term": {"type": "STRING", "index": 16, "name": "utm_term", "comment": null}}, "stats": {"num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 2700, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 100, "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.linkedin_source.stg_linkedin_ads__creative_history"}, "model.linkedin_source.stg_linkedin_ads__campaign_history_tmp": {"metadata": {"type": "view", "schema": "linkedin_source_integration_tests_23_linkedin_ads_source", "name": "stg_linkedin_ads__campaign_history_tmp", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"id": {"type": "INT64", "index": 1, "name": "id", "comment": null}, "last_modified_time": {"type": "TIMESTAMP", "index": 2, "name": "last_modified_time", "comment": null}, "account_id": {"type": "INT64", "index": 3, "name": "account_id", "comment": null}, "campaign_group_id": {"type": "INT64", "index": 4, "name": "campaign_group_id", "comment": null}, "created_time": {"type": "TIMESTAMP", "index": 5, "name": "created_time", "comment": null}, "name": {"type": "STRING", "index": 6, "name": "name", "comment": null}, "version_tag": {"type": "INT64", "index": 7, "name": "version_tag", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.linkedin_source.stg_linkedin_ads__campaign_history_tmp"}, "model.linkedin_source.stg_linkedin_ads__ad_analytics_by_campaign_tmp": {"metadata": {"type": "view", "schema": "linkedin_source_integration_tests_23_linkedin_ads_source", "name": "stg_linkedin_ads__ad_analytics_by_campaign_tmp", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"campaign_id": {"type": "INT64", "index": 1, "name": "campaign_id", "comment": null}, "day": {"type": "DATETIME", "index": 2, "name": "day", "comment": null}, "action_clicks": {"type": "INT64", "index": 3, "name": "action_clicks", "comment": null}, "ad_unit_clicks": {"type": "INT64", "index": 4, "name": "ad_unit_clicks", "comment": null}, "approximate_unique_impressions": {"type": "INT64", "index": 5, "name": "approximate_unique_impressions", "comment": null}, "card_clicks": {"type": "INT64", "index": 6, "name": "card_clicks", "comment": null}, "card_impressions": {"type": "INT64", "index": 7, "name": "card_impressions", "comment": null}, "clicks": {"type": "INT64", "index": 8, "name": "clicks", "comment": null}, "comment_likes": {"type": "INT64", "index": 9, "name": "comment_likes", "comment": null}, "comments": {"type": "INT64", "index": 10, "name": "comments", "comment": null}, "company_page_clicks": {"type": "INT64", "index": 11, "name": "company_page_clicks", "comment": null}, "conversion_value_in_local_currency": {"type": "INT64", "index": 12, "name": "conversion_value_in_local_currency", "comment": null}, "cost_in_local_currency": {"type": "FLOAT64", "index": 13, "name": "cost_in_local_currency", "comment": null}, "cost_in_usd": {"type": "FLOAT64", "index": 14, "name": "cost_in_usd", "comment": null}, "external_website_conversions": {"type": "INT64", "index": 15, "name": "external_website_conversions", "comment": null}, "external_website_post_click_conversions": {"type": "INT64", "index": 16, "name": "external_website_post_click_conversions", "comment": null}, "external_website_post_view_conversions": {"type": "INT64", "index": 17, "name": "external_website_post_view_conversions", "comment": null}, "follows": {"type": "INT64", "index": 18, "name": "follows", "comment": null}, "full_screen_plays": {"type": "INT64", "index": 19, "name": "full_screen_plays", "comment": null}, "impressions": {"type": "INT64", "index": 20, "name": "impressions", "comment": null}, "landing_page_clicks": {"type": "INT64", "index": 21, "name": "landing_page_clicks", "comment": null}, "lead_generation_mail_contact_info_shares": {"type": "INT64", "index": 22, "name": "lead_generation_mail_contact_info_shares", "comment": null}, "lead_generation_mail_interested_clicks": {"type": "INT64", "index": 23, "name": "lead_generation_mail_interested_clicks", "comment": null}, "likes": {"type": "INT64", "index": 24, "name": "likes", "comment": null}, "one_click_lead_form_opens": {"type": "INT64", "index": 25, "name": "one_click_lead_form_opens", "comment": null}, "one_click_leads": {"type": "INT64", "index": 26, "name": "one_click_leads", "comment": null}, "opens": {"type": "INT64", "index": 27, "name": "opens", "comment": null}, "other_engagements": {"type": "INT64", "index": 28, "name": "other_engagements", "comment": null}, "shares": {"type": "INT64", "index": 29, "name": "shares", "comment": null}, "text_url_clicks": {"type": "INT64", "index": 30, "name": "text_url_clicks", "comment": null}, "total_engagements": {"type": "INT64", "index": 31, "name": "total_engagements", "comment": null}, "video_completions": {"type": "INT64", "index": 32, "name": "video_completions", "comment": null}, "video_first_quartile_completions": {"type": "INT64", "index": 33, "name": "video_first_quartile_completions", "comment": null}, "video_midpoint_completions": {"type": "INT64", "index": 34, "name": "video_midpoint_completions", "comment": null}, "video_starts": {"type": "INT64", "index": 35, "name": "video_starts", "comment": null}, "video_third_quartile_completions": {"type": "INT64", "index": 36, "name": "video_third_quartile_completions", "comment": null}, "video_views": {"type": "INT64", "index": 37, "name": "video_views", "comment": null}, "viral_card_clicks": {"type": "INT64", "index": 38, "name": "viral_card_clicks", "comment": null}, "viral_card_impressions": {"type": "INT64", "index": 39, "name": "viral_card_impressions", "comment": null}, "viral_clicks": {"type": "INT64", "index": 40, "name": "viral_clicks", "comment": null}, "viral_comment_likes": {"type": "INT64", "index": 41, "name": "viral_comment_likes", "comment": null}, "viral_comments": {"type": "INT64", "index": 42, "name": "viral_comments", "comment": null}, "viral_company_page_clicks": {"type": "INT64", "index": 43, "name": "viral_company_page_clicks", "comment": null}, "viral_external_website_conversions": {"type": "INT64", "index": 44, "name": "viral_external_website_conversions", "comment": null}, "viral_external_website_post_click_conversions": {"type": "INT64", "index": 45, "name": "viral_external_website_post_click_conversions", "comment": null}, "viral_external_website_post_view_conversions": {"type": "INT64", "index": 46, "name": "viral_external_website_post_view_conversions", "comment": null}, "viral_follows": {"type": "INT64", "index": 47, "name": "viral_follows", "comment": null}, "viral_full_screen_plays": {"type": "INT64", "index": 48, "name": "viral_full_screen_plays", "comment": null}, "viral_impressions": {"type": "INT64", "index": 49, "name": "viral_impressions", "comment": null}, "viral_landing_page_clicks": {"type": "INT64", "index": 50, "name": "viral_landing_page_clicks", "comment": null}, "viral_likes": {"type": "INT64", "index": 51, "name": "viral_likes", "comment": null}, "viral_one_click_lead_form_opens": {"type": "INT64", "index": 52, "name": "viral_one_click_lead_form_opens", "comment": null}, "viral_one_click_leads": {"type": "INT64", "index": 53, "name": "viral_one_click_leads", "comment": null}, "viral_other_engagements": {"type": "INT64", "index": 54, "name": "viral_other_engagements", "comment": null}, "viral_shares": {"type": "INT64", "index": 55, "name": "viral_shares", "comment": null}, "viral_total_engagements": {"type": "INT64", "index": 56, "name": "viral_total_engagements", "comment": null}, "viral_video_completions": {"type": "INT64", "index": 57, "name": "viral_video_completions", "comment": null}, "viral_video_first_quartile_completions": {"type": "INT64", "index": 58, "name": "viral_video_first_quartile_completions", "comment": null}, "viral_video_midpoint_completions": {"type": "INT64", "index": 59, "name": "viral_video_midpoint_completions", "comment": null}, "viral_video_starts": {"type": "INT64", "index": 60, "name": "viral_video_starts", "comment": null}, "viral_video_third_quartile_completions": {"type": "INT64", "index": 61, "name": "viral_video_third_quartile_completions", "comment": null}, "viral_video_views": {"type": "INT64", "index": 62, "name": "viral_video_views", "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.linkedin_source.stg_linkedin_ads__ad_analytics_by_campaign_tmp"}, "model.linkedin_source.stg_linkedin_ads__ad_analytics_by_creative_tmp": {"metadata": {"type": "view", "schema": "linkedin_source_integration_tests_23_linkedin_ads_source", "name": "stg_linkedin_ads__ad_analytics_by_creative_tmp", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"creative_id": {"type": "INT64", "index": 1, "name": "creative_id", "comment": null}, "day": {"type": "TIMESTAMP", "index": 2, "name": "day", "comment": null}, "clicks": {"type": "INT64", "index": 3, "name": "clicks", "comment": null}, "impressions": {"type": "INT64", "index": 4, "name": "impressions", "comment": null}, "cost_in_local_currency": {"type": "INT64", "index": 5, "name": "cost_in_local_currency", "comment": null}, "cost_in_usd": {"type": "INT64", "index": 6, "name": "cost_in_usd", "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.linkedin_source.stg_linkedin_ads__ad_analytics_by_creative_tmp"}, "model.linkedin_source.stg_linkedin_ads__campaign_group_history_tmp": {"metadata": {"type": "view", "schema": "linkedin_source_integration_tests_23_linkedin_ads_source", "name": "stg_linkedin_ads__campaign_group_history_tmp", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"id": {"type": "INT64", "index": 1, "name": "id", "comment": null}, "last_modified_time": {"type": "TIMESTAMP", "index": 2, "name": "last_modified_time", "comment": null}, "account_id": {"type": "INT64", "index": 3, "name": "account_id", "comment": null}, "created_time": {"type": "TIMESTAMP", "index": 4, "name": "created_time", "comment": null}, "name": {"type": "STRING", "index": 5, "name": "name", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.linkedin_source.stg_linkedin_ads__campaign_group_history_tmp"}, "model.linkedin_source.stg_linkedin_ads__campaign_group_history": {"metadata": {"type": "table", "schema": "linkedin_source_integration_tests_23_linkedin_ads_source", "name": "stg_linkedin_ads__campaign_group_history", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"source_relation": {"type": "STRING", "index": 1, "name": "source_relation", "comment": null}, "campaign_group_id": {"type": "INT64", "index": 2, "name": "campaign_group_id", "comment": null}, "campaign_group_name": {"type": "STRING", "index": 3, "name": "campaign_group_name", "comment": null}, "account_id": {"type": "INT64", "index": 4, "name": "account_id", "comment": null}, "status": {"type": "STRING", "index": 5, "name": "status", "comment": null}, "is_backfilled": {"type": "BOOL", "index": 6, "name": "is_backfilled", "comment": null}, "run_schedule_start_at": {"type": "TIMESTAMP", "index": 7, "name": "run_schedule_start_at", "comment": null}, "run_schedule_end_at": {"type": "TIMESTAMP", "index": 8, "name": "run_schedule_end_at", "comment": null}, "last_modified_at": {"type": "TIMESTAMP", "index": 9, "name": "last_modified_at", "comment": null}, "created_at": {"type": "TIMESTAMP", "index": 10, "name": "created_at", "comment": null}, "is_latest_version": {"type": "BOOL", "index": 11, "name": "is_latest_version", "comment": null}}, "stats": {"num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 244, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 4, "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.linkedin_source.stg_linkedin_ads__campaign_group_history"}, "model.linkedin_source.stg_linkedin_ads__ad_analytics_by_campaign": {"metadata": {"type": "table", "schema": "linkedin_source_integration_tests_23_linkedin_ads_source", "name": "stg_linkedin_ads__ad_analytics_by_campaign", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"source_relation": {"type": "STRING", "index": 1, "name": "source_relation", "comment": null}, "date_day": {"type": "TIMESTAMP", "index": 2, "name": "date_day", "comment": null}, "campaign_id": {"type": "INT64", "index": 3, "name": "campaign_id", "comment": null}, "clicks": {"type": "INT64", "index": 4, "name": "clicks", "comment": null}, "impressions": {"type": "INT64", "index": 5, "name": "impressions", "comment": null}, "cost": {"type": "FLOAT64", "index": 6, "name": "cost", "comment": null}}, "stats": {"num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 696, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 20, "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.linkedin_source.stg_linkedin_ads__ad_analytics_by_campaign"}, "model.linkedin_source.stg_linkedin_ads__campaign_history": {"metadata": {"type": "table", "schema": "linkedin_source_integration_tests_23_linkedin_ads_source", "name": "stg_linkedin_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": "INT64", "index": 2, "name": "campaign_id", "comment": null}, "campaign_name": {"type": "STRING", "index": 3, "name": "campaign_name", "comment": null}, "version_tag": {"type": "NUMERIC", "index": 4, "name": "version_tag", "comment": null}, "campaign_group_id": {"type": "INT64", "index": 5, "name": "campaign_group_id", "comment": null}, "account_id": {"type": "INT64", "index": 6, "name": "account_id", "comment": null}, "status": {"type": "STRING", "index": 7, "name": "status", "comment": null}, "type": {"type": "STRING", "index": 8, "name": "type", "comment": null}, "cost_type": {"type": "STRING", "index": 9, "name": "cost_type", "comment": null}, "creative_selection": {"type": "STRING", "index": 10, "name": "creative_selection", "comment": null}, "daily_budget_amount": {"type": "FLOAT64", "index": 11, "name": "daily_budget_amount", "comment": null}, "daily_budget_currency_code": {"type": "STRING", "index": 12, "name": "daily_budget_currency_code", "comment": null}, "unit_cost_amount": {"type": "FLOAT64", "index": 13, "name": "unit_cost_amount", "comment": null}, "unit_cost_currency_code": {"type": "STRING", "index": 14, "name": "unit_cost_currency_code", "comment": null}, "format": {"type": "STRING", "index": 15, "name": "format", "comment": null}, "locale_country": {"type": "STRING", "index": 16, "name": "locale_country", "comment": null}, "locale_language": {"type": "STRING", "index": 17, "name": "locale_language", "comment": null}, "objective_type": {"type": "STRING", "index": 18, "name": "objective_type", "comment": null}, "optimization_target_type": {"type": "STRING", "index": 19, "name": "optimization_target_type", "comment": null}, "is_audience_expansion_enabled": {"type": "BOOL", "index": 20, "name": "is_audience_expansion_enabled", "comment": null}, "is_offsite_delivery_enabled": {"type": "BOOL", "index": 21, "name": "is_offsite_delivery_enabled", "comment": null}, "run_schedule_start_at": {"type": "TIMESTAMP", "index": 22, "name": "run_schedule_start_at", "comment": null}, "run_schedule_end_at": {"type": "TIMESTAMP", "index": 23, "name": "run_schedule_end_at", "comment": null}, "last_modified_at": {"type": "TIMESTAMP", "index": 24, "name": "last_modified_at", "comment": null}, "created_at": {"type": "TIMESTAMP", "index": 25, "name": "created_at", "comment": null}, "is_latest_version": {"type": "BOOL", "index": 26, "name": "is_latest_version", "comment": null}}, "stats": {"num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 8500, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 100, "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.linkedin_source.stg_linkedin_ads__campaign_history"}, "model.linkedin_source.stg_linkedin_ads__creative_history_tmp": {"metadata": {"type": "view", "schema": "linkedin_source_integration_tests_23_linkedin_ads_source", "name": "stg_linkedin_ads__creative_history_tmp", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"id": {"type": "INT64", "index": 1, "name": "id", "comment": null}, "campaign_id": {"type": "INT64", "index": 2, "name": "campaign_id", "comment": null}, "intended_status": {"type": "STRING", "index": 3, "name": "intended_status", "comment": null}, "click_uri": {"type": "STRING", "index": 4, "name": "click_uri", "comment": null}, "last_modified_at": {"type": "TIMESTAMP", "index": 5, "name": "last_modified_at", "comment": null}, "created_time": {"type": "TIMESTAMP", "index": 6, "name": "created_time", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.linkedin_source.stg_linkedin_ads__creative_history_tmp"}, "model.linkedin_source.stg_linkedin_ads__account_history_tmp": {"metadata": {"type": "view", "schema": "linkedin_source_integration_tests_23_linkedin_ads_source", "name": "stg_linkedin_ads__account_history_tmp", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"id": {"type": "INT64", "index": 1, "name": "id", "comment": null}, "last_modified_time": {"type": "TIMESTAMP", "index": 2, "name": "last_modified_time", "comment": null}, "created_time": {"type": "TIMESTAMP", "index": 3, "name": "created_time", "comment": null}, "name": {"type": "STRING", "index": 4, "name": "name", "comment": null}, "currency": {"type": "STRING", "index": 5, "name": "currency", "comment": null}, "version_tag": {"type": "INT64", "index": 6, "name": "version_tag", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.linkedin_source.stg_linkedin_ads__account_history_tmp"}}, "sources": {"source.linkedin_source.linkedin_ads.account_history": {"metadata": {"type": "table", "schema": "linkedin_source_integration_tests_23", "name": "linkedin_account_history_data", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"id": {"type": "INT64", "index": 1, "name": "id", "comment": null}, "last_modified_time": {"type": "TIMESTAMP", "index": 2, "name": "last_modified_time", "comment": null}, "created_time": {"type": "TIMESTAMP", "index": 3, "name": "created_time", "comment": null}, "name": {"type": "STRING", "index": 4, "name": "name", "comment": null}, "currency": {"type": "STRING", "index": 5, "name": "currency", "comment": null}, "version_tag": {"type": "INT64", "index": 6, "name": "version_tag", "comment": null}}, "stats": {"num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 882, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 14, "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.linkedin_source.linkedin_ads.account_history"}, "source.linkedin_source.linkedin_ads.creative_history": {"metadata": {"type": "table", "schema": "linkedin_source_integration_tests_23", "name": "linkedin_creative_history_data", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"id": {"type": "INT64", "index": 1, "name": "id", "comment": null}, "campaign_id": {"type": "INT64", "index": 2, "name": "campaign_id", "comment": null}, "intended_status": {"type": "STRING", "index": 3, "name": "intended_status", "comment": null}, "click_uri": {"type": "STRING", "index": 4, "name": "click_uri", "comment": null}, "last_modified_at": {"type": "TIMESTAMP", "index": 5, "name": "last_modified_at", "comment": null}, "created_time": {"type": "TIMESTAMP", "index": 6, "name": "created_time", "comment": null}}, "stats": {"num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 2400, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 100, "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.linkedin_source.linkedin_ads.creative_history"}, "source.linkedin_source.linkedin_ads.ad_analytics_by_campaign": {"metadata": {"type": "table", "schema": "linkedin_source_integration_tests_23", "name": "linkedin_ad_analytics_by_campaign_data", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"campaign_id": {"type": "INT64", "index": 1, "name": "campaign_id", "comment": null}, "day": {"type": "DATETIME", "index": 2, "name": "day", "comment": null}, "action_clicks": {"type": "INT64", "index": 3, "name": "action_clicks", "comment": null}, "ad_unit_clicks": {"type": "INT64", "index": 4, "name": "ad_unit_clicks", "comment": null}, "approximate_unique_impressions": {"type": "INT64", "index": 5, "name": "approximate_unique_impressions", "comment": null}, "card_clicks": {"type": "INT64", "index": 6, "name": "card_clicks", "comment": null}, "card_impressions": {"type": "INT64", "index": 7, "name": "card_impressions", "comment": null}, "clicks": {"type": "INT64", "index": 8, "name": "clicks", "comment": null}, "comment_likes": {"type": "INT64", "index": 9, "name": "comment_likes", "comment": null}, "comments": {"type": "INT64", "index": 10, "name": "comments", "comment": null}, "company_page_clicks": {"type": "INT64", "index": 11, "name": "company_page_clicks", "comment": null}, "conversion_value_in_local_currency": {"type": "INT64", "index": 12, "name": "conversion_value_in_local_currency", "comment": null}, "cost_in_local_currency": {"type": "FLOAT64", "index": 13, "name": "cost_in_local_currency", "comment": null}, "cost_in_usd": {"type": "FLOAT64", "index": 14, "name": "cost_in_usd", "comment": null}, "external_website_conversions": {"type": "INT64", "index": 15, "name": "external_website_conversions", "comment": null}, "external_website_post_click_conversions": {"type": "INT64", "index": 16, "name": "external_website_post_click_conversions", "comment": null}, "external_website_post_view_conversions": {"type": "INT64", "index": 17, "name": "external_website_post_view_conversions", "comment": null}, "follows": {"type": "INT64", "index": 18, "name": "follows", "comment": null}, "full_screen_plays": {"type": "INT64", "index": 19, "name": "full_screen_plays", "comment": null}, "impressions": {"type": "INT64", "index": 20, "name": "impressions", "comment": null}, "landing_page_clicks": {"type": "INT64", "index": 21, "name": "landing_page_clicks", "comment": null}, "lead_generation_mail_contact_info_shares": {"type": "INT64", "index": 22, "name": "lead_generation_mail_contact_info_shares", "comment": null}, "lead_generation_mail_interested_clicks": {"type": "INT64", "index": 23, "name": "lead_generation_mail_interested_clicks", "comment": null}, "likes": {"type": "INT64", "index": 24, "name": "likes", "comment": null}, "one_click_lead_form_opens": {"type": "INT64", "index": 25, "name": "one_click_lead_form_opens", "comment": null}, "one_click_leads": {"type": "INT64", "index": 26, "name": "one_click_leads", "comment": null}, "opens": {"type": "INT64", "index": 27, "name": "opens", "comment": null}, "other_engagements": {"type": "INT64", "index": 28, "name": "other_engagements", "comment": null}, "shares": {"type": "INT64", "index": 29, "name": "shares", "comment": null}, "text_url_clicks": {"type": "INT64", "index": 30, "name": "text_url_clicks", "comment": null}, "total_engagements": {"type": "INT64", "index": 31, "name": "total_engagements", "comment": null}, "video_completions": {"type": "INT64", "index": 32, "name": "video_completions", "comment": null}, "video_first_quartile_completions": {"type": "INT64", "index": 33, "name": "video_first_quartile_completions", "comment": null}, "video_midpoint_completions": {"type": "INT64", "index": 34, "name": "video_midpoint_completions", "comment": null}, "video_starts": {"type": "INT64", "index": 35, "name": "video_starts", "comment": null}, "video_third_quartile_completions": {"type": "INT64", "index": 36, "name": "video_third_quartile_completions", "comment": null}, "video_views": {"type": "INT64", "index": 37, "name": "video_views", "comment": null}, "viral_card_clicks": {"type": "INT64", "index": 38, "name": "viral_card_clicks", "comment": null}, "viral_card_impressions": {"type": "INT64", "index": 39, "name": "viral_card_impressions", "comment": null}, "viral_clicks": {"type": "INT64", "index": 40, "name": "viral_clicks", "comment": null}, "viral_comment_likes": {"type": "INT64", "index": 41, "name": "viral_comment_likes", "comment": null}, "viral_comments": {"type": "INT64", "index": 42, "name": "viral_comments", "comment": null}, "viral_company_page_clicks": {"type": "INT64", "index": 43, "name": "viral_company_page_clicks", "comment": null}, "viral_external_website_conversions": {"type": "INT64", "index": 44, "name": "viral_external_website_conversions", "comment": null}, "viral_external_website_post_click_conversions": {"type": "INT64", "index": 45, "name": "viral_external_website_post_click_conversions", "comment": null}, "viral_external_website_post_view_conversions": {"type": "INT64", "index": 46, "name": "viral_external_website_post_view_conversions", "comment": null}, "viral_follows": {"type": "INT64", "index": 47, "name": "viral_follows", "comment": null}, "viral_full_screen_plays": {"type": "INT64", "index": 48, "name": "viral_full_screen_plays", "comment": null}, "viral_impressions": {"type": "INT64", "index": 49, "name": "viral_impressions", "comment": null}, "viral_landing_page_clicks": {"type": "INT64", "index": 50, "name": "viral_landing_page_clicks", "comment": null}, "viral_likes": {"type": "INT64", "index": 51, "name": "viral_likes", "comment": null}, "viral_one_click_lead_form_opens": {"type": "INT64", "index": 52, "name": "viral_one_click_lead_form_opens", "comment": null}, "viral_one_click_leads": {"type": "INT64", "index": 53, "name": "viral_one_click_leads", "comment": null}, "viral_other_engagements": {"type": "INT64", "index": 54, "name": "viral_other_engagements", "comment": null}, "viral_shares": {"type": "INT64", "index": 55, "name": "viral_shares", "comment": null}, "viral_total_engagements": {"type": "INT64", "index": 56, "name": "viral_total_engagements", "comment": null}, "viral_video_completions": {"type": "INT64", "index": 57, "name": "viral_video_completions", "comment": null}, "viral_video_first_quartile_completions": {"type": "INT64", "index": 58, "name": "viral_video_first_quartile_completions", "comment": null}, "viral_video_midpoint_completions": {"type": "INT64", "index": 59, "name": "viral_video_midpoint_completions", "comment": null}, "viral_video_starts": {"type": "INT64", "index": 60, "name": "viral_video_starts", "comment": null}, "viral_video_third_quartile_completions": {"type": "INT64", "index": 61, "name": "viral_video_third_quartile_completions", "comment": null}, "viral_video_views": {"type": "INT64", "index": 62, "name": "viral_video_views", "comment": null}}, "stats": {"num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 6752, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 20, "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.linkedin_source.linkedin_ads.ad_analytics_by_campaign"}, "source.linkedin_source.linkedin_ads.ad_analytics_by_creative": {"metadata": {"type": "table", "schema": "linkedin_source_integration_tests_23", "name": "linkedin_ad_analytics_by_creative_data", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"creative_id": {"type": "INT64", "index": 1, "name": "creative_id", "comment": null}, "day": {"type": "TIMESTAMP", "index": 2, "name": "day", "comment": null}, "clicks": {"type": "INT64", "index": 3, "name": "clicks", "comment": null}, "impressions": {"type": "INT64", "index": 4, "name": "impressions", "comment": null}, "cost_in_local_currency": {"type": "INT64", "index": 5, "name": "cost_in_local_currency", "comment": null}, "cost_in_usd": {"type": "INT64", "index": 6, "name": "cost_in_usd", "comment": null}}, "stats": {"num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 2968, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 100, "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.linkedin_source.linkedin_ads.ad_analytics_by_creative"}, "source.linkedin_source.linkedin_ads.campaign_group_history": {"metadata": {"type": "table", "schema": "linkedin_source_integration_tests_23", "name": "linkedin_campaign_group_history_data", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"id": {"type": "INT64", "index": 1, "name": "id", "comment": null}, "last_modified_time": {"type": "TIMESTAMP", "index": 2, "name": "last_modified_time", "comment": null}, "account_id": {"type": "INT64", "index": 3, "name": "account_id", "comment": null}, "created_time": {"type": "TIMESTAMP", "index": 4, "name": "created_time", "comment": null}, "name": {"type": "STRING", "index": 5, "name": "name", "comment": null}}, "stats": {"num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 232, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 4, "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.linkedin_source.linkedin_ads.campaign_group_history"}, "source.linkedin_source.linkedin_ads.campaign_history": {"metadata": {"type": "table", "schema": "linkedin_source_integration_tests_23", "name": "linkedin_campaign_history_data", "database": "dbt-package-testing", "comment": null, "owner": null}, "columns": {"id": {"type": "INT64", "index": 1, "name": "id", "comment": null}, "last_modified_time": {"type": "TIMESTAMP", "index": 2, "name": "last_modified_time", "comment": null}, "account_id": {"type": "INT64", "index": 3, "name": "account_id", "comment": null}, "campaign_group_id": {"type": "INT64", "index": 4, "name": "campaign_group_id", "comment": null}, "created_time": {"type": "TIMESTAMP", "index": 5, "name": "created_time", "comment": null}, "name": {"type": "STRING", "index": 6, "name": "name", "comment": null}, "version_tag": {"type": "INT64", "index": 7, "name": "version_tag", "comment": null}}, "stats": {"num_bytes": {"id": "num_bytes", "label": "Approximate Size", "value": 7400, "include": true, "description": "Approximate size of table as reported by BigQuery"}, "num_rows": {"id": "num_rows", "label": "# Rows", "value": 100, "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.linkedin_source.linkedin_ads.campaign_history"}}, "errors": null} \ No newline at end of file +{"metadata": {"dbt_schema_version": "https://schemas.getdbt.com/dbt/catalog/v1.json", "dbt_version": "1.8.6", "generated_at": "2024-09-13T19:17:36.643794Z", "invocation_id": "19d405a0-d869-44b9-b742-d7e97ca368e9", "env": {}}, "nodes": {"seed.linkedin_source_integration_tests.linkedin_account_history_data": {"metadata": {"type": "BASE TABLE", "schema": "linkedin_source_integration_tests_3", "name": "linkedin_account_history_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "integer", "index": 1, "name": "id", "comment": null}, "last_modified_time": {"type": "timestamp without time zone", "index": 2, "name": "last_modified_time", "comment": null}, "created_time": {"type": "timestamp without time zone", "index": 3, "name": "created_time", "comment": null}, "name": {"type": "text", "index": 4, "name": "name", "comment": null}, "currency": {"type": "text", "index": 5, "name": "currency", "comment": null}, "version_tag": {"type": "integer", "index": 6, "name": "version_tag", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.linkedin_source_integration_tests.linkedin_account_history_data"}, "seed.linkedin_source_integration_tests.linkedin_ad_analytics_by_campaign_data": {"metadata": {"type": "BASE TABLE", "schema": "linkedin_source_integration_tests_3", "name": "linkedin_ad_analytics_by_campaign_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"campaign_id": {"type": "integer", "index": 1, "name": "campaign_id", "comment": null}, "day": {"type": "timestamp without time zone", "index": 2, "name": "day", "comment": null}, "action_clicks": {"type": "integer", "index": 3, "name": "action_clicks", "comment": null}, "ad_unit_clicks": {"type": "integer", "index": 4, "name": "ad_unit_clicks", "comment": null}, "approximate_unique_impressions": {"type": "integer", "index": 5, "name": "approximate_unique_impressions", "comment": null}, "card_clicks": {"type": "integer", "index": 6, "name": "card_clicks", "comment": null}, "card_impressions": {"type": "integer", "index": 7, "name": "card_impressions", "comment": null}, "clicks": {"type": "integer", "index": 8, "name": "clicks", "comment": null}, "comment_likes": {"type": "integer", "index": 9, "name": "comment_likes", "comment": null}, "comments": {"type": "integer", "index": 10, "name": "comments", "comment": null}, "company_page_clicks": {"type": "integer", "index": 11, "name": "company_page_clicks", "comment": null}, "conversion_value_in_local_currency": {"type": "integer", "index": 12, "name": "conversion_value_in_local_currency", "comment": null}, "cost_in_local_currency": {"type": "double precision", "index": 13, "name": "cost_in_local_currency", "comment": null}, "cost_in_usd": {"type": "double precision", "index": 14, "name": "cost_in_usd", "comment": null}, "external_website_conversions": {"type": "integer", "index": 15, "name": "external_website_conversions", "comment": null}, "external_website_post_click_conversions": {"type": "integer", "index": 16, "name": "external_website_post_click_conversions", "comment": null}, "external_website_post_view_conversions": {"type": "integer", "index": 17, "name": "external_website_post_view_conversions", "comment": null}, "follows": {"type": "integer", "index": 18, "name": "follows", "comment": null}, "full_screen_plays": {"type": "integer", "index": 19, "name": "full_screen_plays", "comment": null}, "impressions": {"type": "integer", "index": 20, "name": "impressions", "comment": null}, "landing_page_clicks": {"type": "integer", "index": 21, "name": "landing_page_clicks", "comment": null}, "lead_generation_mail_contact_info_shares": {"type": "integer", "index": 22, "name": "lead_generation_mail_contact_info_shares", "comment": null}, "lead_generation_mail_interested_clicks": {"type": "integer", "index": 23, "name": "lead_generation_mail_interested_clicks", "comment": null}, "likes": {"type": "integer", "index": 24, "name": "likes", "comment": null}, "one_click_lead_form_opens": {"type": "integer", "index": 25, "name": "one_click_lead_form_opens", "comment": null}, "one_click_leads": {"type": "integer", "index": 26, "name": "one_click_leads", "comment": null}, "opens": {"type": "integer", "index": 27, "name": "opens", "comment": null}, "other_engagements": {"type": "integer", "index": 28, "name": "other_engagements", "comment": null}, "shares": {"type": "integer", "index": 29, "name": "shares", "comment": null}, "text_url_clicks": {"type": "integer", "index": 30, "name": "text_url_clicks", "comment": null}, "total_engagements": {"type": "integer", "index": 31, "name": "total_engagements", "comment": null}, "video_completions": {"type": "integer", "index": 32, "name": "video_completions", "comment": null}, "video_first_quartile_completions": {"type": "integer", "index": 33, "name": "video_first_quartile_completions", "comment": null}, "video_midpoint_completions": {"type": "integer", "index": 34, "name": "video_midpoint_completions", "comment": null}, "video_starts": {"type": "integer", "index": 35, "name": "video_starts", "comment": null}, "video_third_quartile_completions": {"type": "integer", "index": 36, "name": "video_third_quartile_completions", "comment": null}, "video_views": {"type": "integer", "index": 37, "name": "video_views", "comment": null}, "viral_card_clicks": {"type": "integer", "index": 38, "name": "viral_card_clicks", "comment": null}, "viral_card_impressions": {"type": "integer", "index": 39, "name": "viral_card_impressions", "comment": null}, "viral_clicks": {"type": "integer", "index": 40, "name": "viral_clicks", "comment": null}, "viral_comment_likes": {"type": "integer", "index": 41, "name": "viral_comment_likes", "comment": null}, "viral_comments": {"type": "integer", "index": 42, "name": "viral_comments", "comment": null}, "viral_company_page_clicks": {"type": "integer", "index": 43, "name": "viral_company_page_clicks", "comment": null}, "viral_external_website_conversions": {"type": "integer", "index": 44, "name": "viral_external_website_conversions", "comment": null}, "viral_external_website_post_click_conversions": {"type": "integer", "index": 45, "name": "viral_external_website_post_click_conversions", "comment": null}, "viral_external_website_post_view_conversions": {"type": "integer", "index": 46, "name": "viral_external_website_post_view_conversions", "comment": null}, "viral_follows": {"type": "integer", "index": 47, "name": "viral_follows", "comment": null}, "viral_full_screen_plays": {"type": "integer", "index": 48, "name": "viral_full_screen_plays", "comment": null}, "viral_impressions": {"type": "integer", "index": 49, "name": "viral_impressions", "comment": null}, "viral_landing_page_clicks": {"type": "integer", "index": 50, "name": "viral_landing_page_clicks", "comment": null}, "viral_likes": {"type": "integer", "index": 51, "name": "viral_likes", "comment": null}, "viral_one_click_lead_form_opens": {"type": "integer", "index": 52, "name": "viral_one_click_lead_form_opens", "comment": null}, "viral_one_click_leads": {"type": "integer", "index": 53, "name": "viral_one_click_leads", "comment": null}, "viral_other_engagements": {"type": "integer", "index": 54, "name": "viral_other_engagements", "comment": null}, "viral_shares": {"type": "integer", "index": 55, "name": "viral_shares", "comment": null}, "viral_total_engagements": {"type": "integer", "index": 56, "name": "viral_total_engagements", "comment": null}, "viral_video_completions": {"type": "integer", "index": 57, "name": "viral_video_completions", "comment": null}, "viral_video_first_quartile_completions": {"type": "integer", "index": 58, "name": "viral_video_first_quartile_completions", "comment": null}, "viral_video_midpoint_completions": {"type": "integer", "index": 59, "name": "viral_video_midpoint_completions", "comment": null}, "viral_video_starts": {"type": "integer", "index": 60, "name": "viral_video_starts", "comment": null}, "viral_video_third_quartile_completions": {"type": "integer", "index": 61, "name": "viral_video_third_quartile_completions", "comment": null}, "viral_video_views": {"type": "integer", "index": 62, "name": "viral_video_views", "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.linkedin_source_integration_tests.linkedin_ad_analytics_by_campaign_data"}, "seed.linkedin_source_integration_tests.linkedin_ad_analytics_by_creative_data": {"metadata": {"type": "BASE TABLE", "schema": "linkedin_source_integration_tests_3", "name": "linkedin_ad_analytics_by_creative_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"creative_id": {"type": "integer", "index": 1, "name": "creative_id", "comment": null}, "day": {"type": "timestamp without time zone", "index": 2, "name": "day", "comment": null}, "clicks": {"type": "integer", "index": 3, "name": "clicks", "comment": null}, "impressions": {"type": "integer", "index": 4, "name": "impressions", "comment": null}, "cost_in_local_currency": {"type": "integer", "index": 5, "name": "cost_in_local_currency", "comment": null}, "cost_in_usd": {"type": "integer", "index": 6, "name": "cost_in_usd", "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.linkedin_source_integration_tests.linkedin_ad_analytics_by_creative_data"}, "seed.linkedin_source_integration_tests.linkedin_campaign_group_history_data": {"metadata": {"type": "BASE TABLE", "schema": "linkedin_source_integration_tests_3", "name": "linkedin_campaign_group_history_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "integer", "index": 1, "name": "id", "comment": null}, "last_modified_time": {"type": "timestamp without time zone", "index": 2, "name": "last_modified_time", "comment": null}, "account_id": {"type": "integer", "index": 3, "name": "account_id", "comment": null}, "created_time": {"type": "timestamp without time zone", "index": 4, "name": "created_time", "comment": null}, "name": {"type": "text", "index": 5, "name": "name", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.linkedin_source_integration_tests.linkedin_campaign_group_history_data"}, "seed.linkedin_source_integration_tests.linkedin_campaign_history_data": {"metadata": {"type": "BASE TABLE", "schema": "linkedin_source_integration_tests_3", "name": "linkedin_campaign_history_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "integer", "index": 1, "name": "id", "comment": null}, "last_modified_time": {"type": "timestamp without time zone", "index": 2, "name": "last_modified_time", "comment": null}, "account_id": {"type": "integer", "index": 3, "name": "account_id", "comment": null}, "campaign_group_id": {"type": "integer", "index": 4, "name": "campaign_group_id", "comment": null}, "created_time": {"type": "timestamp without time zone", "index": 5, "name": "created_time", "comment": null}, "name": {"type": "text", "index": 6, "name": "name", "comment": null}, "version_tag": {"type": "integer", "index": 7, "name": "version_tag", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.linkedin_source_integration_tests.linkedin_campaign_history_data"}, "seed.linkedin_source_integration_tests.linkedin_creative_history_data": {"metadata": {"type": "BASE TABLE", "schema": "linkedin_source_integration_tests_3", "name": "linkedin_creative_history_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "integer", "index": 1, "name": "id", "comment": null}, "campaign_id": {"type": "integer", "index": 2, "name": "campaign_id", "comment": null}, "intended_status": {"type": "character varying", "index": 3, "name": "intended_status", "comment": null}, "click_uri": {"type": "character varying", "index": 4, "name": "click_uri", "comment": null}, "last_modified_at": {"type": "timestamp without time zone", "index": 5, "name": "last_modified_at", "comment": null}, "created_time": {"type": "timestamp without time zone", "index": 6, "name": "created_time", "comment": null}, "text_ad_landing_page": {"type": "text", "index": 7, "name": "text_ad_landing_page", "comment": null}, "spotlight_landing_page": {"type": "text", "index": 8, "name": "spotlight_landing_page", "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.linkedin_source_integration_tests.linkedin_creative_history_data"}, "model.linkedin_source.stg_linkedin_ads__account_history": {"metadata": {"type": "BASE TABLE", "schema": "linkedin_source_integration_tests_3_linkedin_ads_source", "name": "stg_linkedin_ads__account_history", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"source_relation": {"type": "text", "index": 1, "name": "source_relation", "comment": null}, "account_id": {"type": "integer", "index": 2, "name": "account_id", "comment": null}, "account_name": {"type": "text", "index": 3, "name": "account_name", "comment": null}, "currency": {"type": "text", "index": 4, "name": "currency", "comment": null}, "version_tag": {"type": "numeric", "index": 5, "name": "version_tag", "comment": null}, "status": {"type": "text", "index": 6, "name": "status", "comment": null}, "type": {"type": "text", "index": 7, "name": "type", "comment": null}, "last_modified_at": {"type": "timestamp without time zone", "index": 8, "name": "last_modified_at", "comment": null}, "created_at": {"type": "timestamp without time zone", "index": 9, "name": "created_at", "comment": null}, "is_latest_version": {"type": "boolean", "index": 10, "name": "is_latest_version", "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.linkedin_source.stg_linkedin_ads__account_history"}, "model.linkedin_source.stg_linkedin_ads__account_history_tmp": {"metadata": {"type": "VIEW", "schema": "linkedin_source_integration_tests_3_linkedin_ads_source", "name": "stg_linkedin_ads__account_history_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "integer", "index": 1, "name": "id", "comment": null}, "last_modified_time": {"type": "timestamp without time zone", "index": 2, "name": "last_modified_time", "comment": null}, "created_time": {"type": "timestamp without time zone", "index": 3, "name": "created_time", "comment": null}, "name": {"type": "text", "index": 4, "name": "name", "comment": null}, "currency": {"type": "text", "index": 5, "name": "currency", "comment": null}, "version_tag": {"type": "integer", "index": 6, "name": "version_tag", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.linkedin_source.stg_linkedin_ads__account_history_tmp"}, "model.linkedin_source.stg_linkedin_ads__ad_analytics_by_campaign": {"metadata": {"type": "BASE TABLE", "schema": "linkedin_source_integration_tests_3_linkedin_ads_source", "name": "stg_linkedin_ads__ad_analytics_by_campaign", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"source_relation": {"type": "text", "index": 1, "name": "source_relation", "comment": null}, "date_day": {"type": "timestamp without time zone", "index": 2, "name": "date_day", "comment": null}, "campaign_id": {"type": "integer", "index": 3, "name": "campaign_id", "comment": null}, "clicks": {"type": "integer", "index": 4, "name": "clicks", "comment": null}, "impressions": {"type": "integer", "index": 5, "name": "impressions", "comment": null}, "cost": {"type": "double precision", "index": 6, "name": "cost", "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.linkedin_source.stg_linkedin_ads__ad_analytics_by_campaign"}, "model.linkedin_source.stg_linkedin_ads__ad_analytics_by_campaign_tmp": {"metadata": {"type": "VIEW", "schema": "linkedin_source_integration_tests_3_linkedin_ads_source", "name": "stg_linkedin_ads__ad_analytics_by_campaign_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"campaign_id": {"type": "integer", "index": 1, "name": "campaign_id", "comment": null}, "day": {"type": "timestamp without time zone", "index": 2, "name": "day", "comment": null}, "action_clicks": {"type": "integer", "index": 3, "name": "action_clicks", "comment": null}, "ad_unit_clicks": {"type": "integer", "index": 4, "name": "ad_unit_clicks", "comment": null}, "approximate_unique_impressions": {"type": "integer", "index": 5, "name": "approximate_unique_impressions", "comment": null}, "card_clicks": {"type": "integer", "index": 6, "name": "card_clicks", "comment": null}, "card_impressions": {"type": "integer", "index": 7, "name": "card_impressions", "comment": null}, "clicks": {"type": "integer", "index": 8, "name": "clicks", "comment": null}, "comment_likes": {"type": "integer", "index": 9, "name": "comment_likes", "comment": null}, "comments": {"type": "integer", "index": 10, "name": "comments", "comment": null}, "company_page_clicks": {"type": "integer", "index": 11, "name": "company_page_clicks", "comment": null}, "conversion_value_in_local_currency": {"type": "integer", "index": 12, "name": "conversion_value_in_local_currency", "comment": null}, "cost_in_local_currency": {"type": "double precision", "index": 13, "name": "cost_in_local_currency", "comment": null}, "cost_in_usd": {"type": "double precision", "index": 14, "name": "cost_in_usd", "comment": null}, "external_website_conversions": {"type": "integer", "index": 15, "name": "external_website_conversions", "comment": null}, "external_website_post_click_conversions": {"type": "integer", "index": 16, "name": "external_website_post_click_conversions", "comment": null}, "external_website_post_view_conversions": {"type": "integer", "index": 17, "name": "external_website_post_view_conversions", "comment": null}, "follows": {"type": "integer", "index": 18, "name": "follows", "comment": null}, "full_screen_plays": {"type": "integer", "index": 19, "name": "full_screen_plays", "comment": null}, "impressions": {"type": "integer", "index": 20, "name": "impressions", "comment": null}, "landing_page_clicks": {"type": "integer", "index": 21, "name": "landing_page_clicks", "comment": null}, "lead_generation_mail_contact_info_shares": {"type": "integer", "index": 22, "name": "lead_generation_mail_contact_info_shares", "comment": null}, "lead_generation_mail_interested_clicks": {"type": "integer", "index": 23, "name": "lead_generation_mail_interested_clicks", "comment": null}, "likes": {"type": "integer", "index": 24, "name": "likes", "comment": null}, "one_click_lead_form_opens": {"type": "integer", "index": 25, "name": "one_click_lead_form_opens", "comment": null}, "one_click_leads": {"type": "integer", "index": 26, "name": "one_click_leads", "comment": null}, "opens": {"type": "integer", "index": 27, "name": "opens", "comment": null}, "other_engagements": {"type": "integer", "index": 28, "name": "other_engagements", "comment": null}, "shares": {"type": "integer", "index": 29, "name": "shares", "comment": null}, "text_url_clicks": {"type": "integer", "index": 30, "name": "text_url_clicks", "comment": null}, "total_engagements": {"type": "integer", "index": 31, "name": "total_engagements", "comment": null}, "video_completions": {"type": "integer", "index": 32, "name": "video_completions", "comment": null}, "video_first_quartile_completions": {"type": "integer", "index": 33, "name": "video_first_quartile_completions", "comment": null}, "video_midpoint_completions": {"type": "integer", "index": 34, "name": "video_midpoint_completions", "comment": null}, "video_starts": {"type": "integer", "index": 35, "name": "video_starts", "comment": null}, "video_third_quartile_completions": {"type": "integer", "index": 36, "name": "video_third_quartile_completions", "comment": null}, "video_views": {"type": "integer", "index": 37, "name": "video_views", "comment": null}, "viral_card_clicks": {"type": "integer", "index": 38, "name": "viral_card_clicks", "comment": null}, "viral_card_impressions": {"type": "integer", "index": 39, "name": "viral_card_impressions", "comment": null}, "viral_clicks": {"type": "integer", "index": 40, "name": "viral_clicks", "comment": null}, "viral_comment_likes": {"type": "integer", "index": 41, "name": "viral_comment_likes", "comment": null}, "viral_comments": {"type": "integer", "index": 42, "name": "viral_comments", "comment": null}, "viral_company_page_clicks": {"type": "integer", "index": 43, "name": "viral_company_page_clicks", "comment": null}, "viral_external_website_conversions": {"type": "integer", "index": 44, "name": "viral_external_website_conversions", "comment": null}, "viral_external_website_post_click_conversions": {"type": "integer", "index": 45, "name": "viral_external_website_post_click_conversions", "comment": null}, "viral_external_website_post_view_conversions": {"type": "integer", "index": 46, "name": "viral_external_website_post_view_conversions", "comment": null}, "viral_follows": {"type": "integer", "index": 47, "name": "viral_follows", "comment": null}, "viral_full_screen_plays": {"type": "integer", "index": 48, "name": "viral_full_screen_plays", "comment": null}, "viral_impressions": {"type": "integer", "index": 49, "name": "viral_impressions", "comment": null}, "viral_landing_page_clicks": {"type": "integer", "index": 50, "name": "viral_landing_page_clicks", "comment": null}, "viral_likes": {"type": "integer", "index": 51, "name": "viral_likes", "comment": null}, "viral_one_click_lead_form_opens": {"type": "integer", "index": 52, "name": "viral_one_click_lead_form_opens", "comment": null}, "viral_one_click_leads": {"type": "integer", "index": 53, "name": "viral_one_click_leads", "comment": null}, "viral_other_engagements": {"type": "integer", "index": 54, "name": "viral_other_engagements", "comment": null}, "viral_shares": {"type": "integer", "index": 55, "name": "viral_shares", "comment": null}, "viral_total_engagements": {"type": "integer", "index": 56, "name": "viral_total_engagements", "comment": null}, "viral_video_completions": {"type": "integer", "index": 57, "name": "viral_video_completions", "comment": null}, "viral_video_first_quartile_completions": {"type": "integer", "index": 58, "name": "viral_video_first_quartile_completions", "comment": null}, "viral_video_midpoint_completions": {"type": "integer", "index": 59, "name": "viral_video_midpoint_completions", "comment": null}, "viral_video_starts": {"type": "integer", "index": 60, "name": "viral_video_starts", "comment": null}, "viral_video_third_quartile_completions": {"type": "integer", "index": 61, "name": "viral_video_third_quartile_completions", "comment": null}, "viral_video_views": {"type": "integer", "index": 62, "name": "viral_video_views", "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.linkedin_source.stg_linkedin_ads__ad_analytics_by_campaign_tmp"}, "model.linkedin_source.stg_linkedin_ads__ad_analytics_by_creative": {"metadata": {"type": "BASE TABLE", "schema": "linkedin_source_integration_tests_3_linkedin_ads_source", "name": "stg_linkedin_ads__ad_analytics_by_creative", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"source_relation": {"type": "text", "index": 1, "name": "source_relation", "comment": null}, "date_day": {"type": "timestamp without time zone", "index": 2, "name": "date_day", "comment": null}, "creative_id": {"type": "integer", "index": 3, "name": "creative_id", "comment": null}, "clicks": {"type": "integer", "index": 4, "name": "clicks", "comment": null}, "impressions": {"type": "integer", "index": 5, "name": "impressions", "comment": null}, "cost": {"type": "integer", "index": 6, "name": "cost", "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.linkedin_source.stg_linkedin_ads__ad_analytics_by_creative"}, "model.linkedin_source.stg_linkedin_ads__ad_analytics_by_creative_tmp": {"metadata": {"type": "VIEW", "schema": "linkedin_source_integration_tests_3_linkedin_ads_source", "name": "stg_linkedin_ads__ad_analytics_by_creative_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"creative_id": {"type": "integer", "index": 1, "name": "creative_id", "comment": null}, "day": {"type": "timestamp without time zone", "index": 2, "name": "day", "comment": null}, "clicks": {"type": "integer", "index": 3, "name": "clicks", "comment": null}, "impressions": {"type": "integer", "index": 4, "name": "impressions", "comment": null}, "cost_in_local_currency": {"type": "integer", "index": 5, "name": "cost_in_local_currency", "comment": null}, "cost_in_usd": {"type": "integer", "index": 6, "name": "cost_in_usd", "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.linkedin_source.stg_linkedin_ads__ad_analytics_by_creative_tmp"}, "model.linkedin_source.stg_linkedin_ads__campaign_group_history": {"metadata": {"type": "BASE TABLE", "schema": "linkedin_source_integration_tests_3_linkedin_ads_source", "name": "stg_linkedin_ads__campaign_group_history", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"source_relation": {"type": "text", "index": 1, "name": "source_relation", "comment": null}, "campaign_group_id": {"type": "integer", "index": 2, "name": "campaign_group_id", "comment": null}, "campaign_group_name": {"type": "text", "index": 3, "name": "campaign_group_name", "comment": null}, "account_id": {"type": "integer", "index": 4, "name": "account_id", "comment": null}, "status": {"type": "text", "index": 5, "name": "status", "comment": null}, "is_backfilled": {"type": "boolean", "index": 6, "name": "is_backfilled", "comment": null}, "run_schedule_start_at": {"type": "timestamp without time zone", "index": 7, "name": "run_schedule_start_at", "comment": null}, "run_schedule_end_at": {"type": "timestamp without time zone", "index": 8, "name": "run_schedule_end_at", "comment": null}, "last_modified_at": {"type": "timestamp without time zone", "index": 9, "name": "last_modified_at", "comment": null}, "created_at": {"type": "timestamp without time zone", "index": 10, "name": "created_at", "comment": null}, "is_latest_version": {"type": "boolean", "index": 11, "name": "is_latest_version", "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.linkedin_source.stg_linkedin_ads__campaign_group_history"}, "model.linkedin_source.stg_linkedin_ads__campaign_group_history_tmp": {"metadata": {"type": "VIEW", "schema": "linkedin_source_integration_tests_3_linkedin_ads_source", "name": "stg_linkedin_ads__campaign_group_history_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "integer", "index": 1, "name": "id", "comment": null}, "last_modified_time": {"type": "timestamp without time zone", "index": 2, "name": "last_modified_time", "comment": null}, "account_id": {"type": "integer", "index": 3, "name": "account_id", "comment": null}, "created_time": {"type": "timestamp without time zone", "index": 4, "name": "created_time", "comment": null}, "name": {"type": "text", "index": 5, "name": "name", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.linkedin_source.stg_linkedin_ads__campaign_group_history_tmp"}, "model.linkedin_source.stg_linkedin_ads__campaign_history": {"metadata": {"type": "BASE TABLE", "schema": "linkedin_source_integration_tests_3_linkedin_ads_source", "name": "stg_linkedin_ads__campaign_history", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"source_relation": {"type": "text", "index": 1, "name": "source_relation", "comment": null}, "campaign_id": {"type": "integer", "index": 2, "name": "campaign_id", "comment": null}, "campaign_name": {"type": "text", "index": 3, "name": "campaign_name", "comment": null}, "version_tag": {"type": "numeric", "index": 4, "name": "version_tag", "comment": null}, "campaign_group_id": {"type": "integer", "index": 5, "name": "campaign_group_id", "comment": null}, "account_id": {"type": "integer", "index": 6, "name": "account_id", "comment": null}, "status": {"type": "text", "index": 7, "name": "status", "comment": null}, "type": {"type": "text", "index": 8, "name": "type", "comment": null}, "cost_type": {"type": "text", "index": 9, "name": "cost_type", "comment": null}, "creative_selection": {"type": "text", "index": 10, "name": "creative_selection", "comment": null}, "daily_budget_amount": {"type": "double precision", "index": 11, "name": "daily_budget_amount", "comment": null}, "daily_budget_currency_code": {"type": "text", "index": 12, "name": "daily_budget_currency_code", "comment": null}, "unit_cost_amount": {"type": "double precision", "index": 13, "name": "unit_cost_amount", "comment": null}, "unit_cost_currency_code": {"type": "text", "index": 14, "name": "unit_cost_currency_code", "comment": null}, "format": {"type": "text", "index": 15, "name": "format", "comment": null}, "locale_country": {"type": "text", "index": 16, "name": "locale_country", "comment": null}, "locale_language": {"type": "text", "index": 17, "name": "locale_language", "comment": null}, "objective_type": {"type": "text", "index": 18, "name": "objective_type", "comment": null}, "optimization_target_type": {"type": "text", "index": 19, "name": "optimization_target_type", "comment": null}, "is_audience_expansion_enabled": {"type": "boolean", "index": 20, "name": "is_audience_expansion_enabled", "comment": null}, "is_offsite_delivery_enabled": {"type": "boolean", "index": 21, "name": "is_offsite_delivery_enabled", "comment": null}, "run_schedule_start_at": {"type": "timestamp without time zone", "index": 22, "name": "run_schedule_start_at", "comment": null}, "run_schedule_end_at": {"type": "timestamp without time zone", "index": 23, "name": "run_schedule_end_at", "comment": null}, "last_modified_at": {"type": "timestamp without time zone", "index": 24, "name": "last_modified_at", "comment": null}, "created_at": {"type": "timestamp without time zone", "index": 25, "name": "created_at", "comment": null}, "is_latest_version": {"type": "boolean", "index": 26, "name": "is_latest_version", "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.linkedin_source.stg_linkedin_ads__campaign_history"}, "model.linkedin_source.stg_linkedin_ads__campaign_history_tmp": {"metadata": {"type": "VIEW", "schema": "linkedin_source_integration_tests_3_linkedin_ads_source", "name": "stg_linkedin_ads__campaign_history_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "integer", "index": 1, "name": "id", "comment": null}, "last_modified_time": {"type": "timestamp without time zone", "index": 2, "name": "last_modified_time", "comment": null}, "account_id": {"type": "integer", "index": 3, "name": "account_id", "comment": null}, "campaign_group_id": {"type": "integer", "index": 4, "name": "campaign_group_id", "comment": null}, "created_time": {"type": "timestamp without time zone", "index": 5, "name": "created_time", "comment": null}, "name": {"type": "text", "index": 6, "name": "name", "comment": null}, "version_tag": {"type": "integer", "index": 7, "name": "version_tag", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.linkedin_source.stg_linkedin_ads__campaign_history_tmp"}, "model.linkedin_source.stg_linkedin_ads__creative_history": {"metadata": {"type": "BASE TABLE", "schema": "linkedin_source_integration_tests_3_linkedin_ads_source", "name": "stg_linkedin_ads__creative_history", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"source_relation": {"type": "text", "index": 1, "name": "source_relation", "comment": null}, "creative_id": {"type": "integer", "index": 2, "name": "creative_id", "comment": null}, "campaign_id": {"type": "integer", "index": 3, "name": "campaign_id", "comment": null}, "status": {"type": "text", "index": 4, "name": "status", "comment": null}, "click_uri": {"type": "text", "index": 5, "name": "click_uri", "comment": null}, "last_modified_at": {"type": "timestamp without time zone", "index": 6, "name": "last_modified_at", "comment": null}, "created_at": {"type": "timestamp without time zone", "index": 7, "name": "created_at", "comment": null}, "click_uri_type": {"type": "text", "index": 8, "name": "click_uri_type", "comment": null}, "is_latest_version": {"type": "boolean", "index": 9, "name": "is_latest_version", "comment": null}, "base_url": {"type": "text", "index": 10, "name": "base_url", "comment": null}, "url_host": {"type": "text", "index": 11, "name": "url_host", "comment": null}, "url_path": {"type": "text", "index": 12, "name": "url_path", "comment": null}, "utm_source": {"type": "text", "index": 13, "name": "utm_source", "comment": null}, "utm_medium": {"type": "text", "index": 14, "name": "utm_medium", "comment": null}, "utm_campaign": {"type": "text", "index": 15, "name": "utm_campaign", "comment": null}, "utm_content": {"type": "text", "index": 16, "name": "utm_content", "comment": null}, "utm_term": {"type": "text", "index": 17, "name": "utm_term", "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.linkedin_source.stg_linkedin_ads__creative_history"}, "model.linkedin_source.stg_linkedin_ads__creative_history_tmp": {"metadata": {"type": "VIEW", "schema": "linkedin_source_integration_tests_3_linkedin_ads_source", "name": "stg_linkedin_ads__creative_history_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "integer", "index": 1, "name": "id", "comment": null}, "campaign_id": {"type": "integer", "index": 2, "name": "campaign_id", "comment": null}, "intended_status": {"type": "character varying", "index": 3, "name": "intended_status", "comment": null}, "click_uri": {"type": "character varying", "index": 4, "name": "click_uri", "comment": null}, "last_modified_at": {"type": "timestamp without time zone", "index": 5, "name": "last_modified_at", "comment": null}, "created_time": {"type": "timestamp without time zone", "index": 6, "name": "created_time", "comment": null}, "text_ad_landing_page": {"type": "text", "index": 7, "name": "text_ad_landing_page", "comment": null}, "spotlight_landing_page": {"type": "text", "index": 8, "name": "spotlight_landing_page", "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.linkedin_source.stg_linkedin_ads__creative_history_tmp"}}, "sources": {"source.linkedin_source.linkedin_ads.account_history": {"metadata": {"type": "BASE TABLE", "schema": "linkedin_source_integration_tests_3", "name": "linkedin_account_history_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "integer", "index": 1, "name": "id", "comment": null}, "last_modified_time": {"type": "timestamp without time zone", "index": 2, "name": "last_modified_time", "comment": null}, "created_time": {"type": "timestamp without time zone", "index": 3, "name": "created_time", "comment": null}, "name": {"type": "text", "index": 4, "name": "name", "comment": null}, "currency": {"type": "text", "index": 5, "name": "currency", "comment": null}, "version_tag": {"type": "integer", "index": 6, "name": "version_tag", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.linkedin_source.linkedin_ads.account_history"}, "source.linkedin_source.linkedin_ads.ad_analytics_by_campaign": {"metadata": {"type": "BASE TABLE", "schema": "linkedin_source_integration_tests_3", "name": "linkedin_ad_analytics_by_campaign_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"campaign_id": {"type": "integer", "index": 1, "name": "campaign_id", "comment": null}, "day": {"type": "timestamp without time zone", "index": 2, "name": "day", "comment": null}, "action_clicks": {"type": "integer", "index": 3, "name": "action_clicks", "comment": null}, "ad_unit_clicks": {"type": "integer", "index": 4, "name": "ad_unit_clicks", "comment": null}, "approximate_unique_impressions": {"type": "integer", "index": 5, "name": "approximate_unique_impressions", "comment": null}, "card_clicks": {"type": "integer", "index": 6, "name": "card_clicks", "comment": null}, "card_impressions": {"type": "integer", "index": 7, "name": "card_impressions", "comment": null}, "clicks": {"type": "integer", "index": 8, "name": "clicks", "comment": null}, "comment_likes": {"type": "integer", "index": 9, "name": "comment_likes", "comment": null}, "comments": {"type": "integer", "index": 10, "name": "comments", "comment": null}, "company_page_clicks": {"type": "integer", "index": 11, "name": "company_page_clicks", "comment": null}, "conversion_value_in_local_currency": {"type": "integer", "index": 12, "name": "conversion_value_in_local_currency", "comment": null}, "cost_in_local_currency": {"type": "double precision", "index": 13, "name": "cost_in_local_currency", "comment": null}, "cost_in_usd": {"type": "double precision", "index": 14, "name": "cost_in_usd", "comment": null}, "external_website_conversions": {"type": "integer", "index": 15, "name": "external_website_conversions", "comment": null}, "external_website_post_click_conversions": {"type": "integer", "index": 16, "name": "external_website_post_click_conversions", "comment": null}, "external_website_post_view_conversions": {"type": "integer", "index": 17, "name": "external_website_post_view_conversions", "comment": null}, "follows": {"type": "integer", "index": 18, "name": "follows", "comment": null}, "full_screen_plays": {"type": "integer", "index": 19, "name": "full_screen_plays", "comment": null}, "impressions": {"type": "integer", "index": 20, "name": "impressions", "comment": null}, "landing_page_clicks": {"type": "integer", "index": 21, "name": "landing_page_clicks", "comment": null}, "lead_generation_mail_contact_info_shares": {"type": "integer", "index": 22, "name": "lead_generation_mail_contact_info_shares", "comment": null}, "lead_generation_mail_interested_clicks": {"type": "integer", "index": 23, "name": "lead_generation_mail_interested_clicks", "comment": null}, "likes": {"type": "integer", "index": 24, "name": "likes", "comment": null}, "one_click_lead_form_opens": {"type": "integer", "index": 25, "name": "one_click_lead_form_opens", "comment": null}, "one_click_leads": {"type": "integer", "index": 26, "name": "one_click_leads", "comment": null}, "opens": {"type": "integer", "index": 27, "name": "opens", "comment": null}, "other_engagements": {"type": "integer", "index": 28, "name": "other_engagements", "comment": null}, "shares": {"type": "integer", "index": 29, "name": "shares", "comment": null}, "text_url_clicks": {"type": "integer", "index": 30, "name": "text_url_clicks", "comment": null}, "total_engagements": {"type": "integer", "index": 31, "name": "total_engagements", "comment": null}, "video_completions": {"type": "integer", "index": 32, "name": "video_completions", "comment": null}, "video_first_quartile_completions": {"type": "integer", "index": 33, "name": "video_first_quartile_completions", "comment": null}, "video_midpoint_completions": {"type": "integer", "index": 34, "name": "video_midpoint_completions", "comment": null}, "video_starts": {"type": "integer", "index": 35, "name": "video_starts", "comment": null}, "video_third_quartile_completions": {"type": "integer", "index": 36, "name": "video_third_quartile_completions", "comment": null}, "video_views": {"type": "integer", "index": 37, "name": "video_views", "comment": null}, "viral_card_clicks": {"type": "integer", "index": 38, "name": "viral_card_clicks", "comment": null}, "viral_card_impressions": {"type": "integer", "index": 39, "name": "viral_card_impressions", "comment": null}, "viral_clicks": {"type": "integer", "index": 40, "name": "viral_clicks", "comment": null}, "viral_comment_likes": {"type": "integer", "index": 41, "name": "viral_comment_likes", "comment": null}, "viral_comments": {"type": "integer", "index": 42, "name": "viral_comments", "comment": null}, "viral_company_page_clicks": {"type": "integer", "index": 43, "name": "viral_company_page_clicks", "comment": null}, "viral_external_website_conversions": {"type": "integer", "index": 44, "name": "viral_external_website_conversions", "comment": null}, "viral_external_website_post_click_conversions": {"type": "integer", "index": 45, "name": "viral_external_website_post_click_conversions", "comment": null}, "viral_external_website_post_view_conversions": {"type": "integer", "index": 46, "name": "viral_external_website_post_view_conversions", "comment": null}, "viral_follows": {"type": "integer", "index": 47, "name": "viral_follows", "comment": null}, "viral_full_screen_plays": {"type": "integer", "index": 48, "name": "viral_full_screen_plays", "comment": null}, "viral_impressions": {"type": "integer", "index": 49, "name": "viral_impressions", "comment": null}, "viral_landing_page_clicks": {"type": "integer", "index": 50, "name": "viral_landing_page_clicks", "comment": null}, "viral_likes": {"type": "integer", "index": 51, "name": "viral_likes", "comment": null}, "viral_one_click_lead_form_opens": {"type": "integer", "index": 52, "name": "viral_one_click_lead_form_opens", "comment": null}, "viral_one_click_leads": {"type": "integer", "index": 53, "name": "viral_one_click_leads", "comment": null}, "viral_other_engagements": {"type": "integer", "index": 54, "name": "viral_other_engagements", "comment": null}, "viral_shares": {"type": "integer", "index": 55, "name": "viral_shares", "comment": null}, "viral_total_engagements": {"type": "integer", "index": 56, "name": "viral_total_engagements", "comment": null}, "viral_video_completions": {"type": "integer", "index": 57, "name": "viral_video_completions", "comment": null}, "viral_video_first_quartile_completions": {"type": "integer", "index": 58, "name": "viral_video_first_quartile_completions", "comment": null}, "viral_video_midpoint_completions": {"type": "integer", "index": 59, "name": "viral_video_midpoint_completions", "comment": null}, "viral_video_starts": {"type": "integer", "index": 60, "name": "viral_video_starts", "comment": null}, "viral_video_third_quartile_completions": {"type": "integer", "index": 61, "name": "viral_video_third_quartile_completions", "comment": null}, "viral_video_views": {"type": "integer", "index": 62, "name": "viral_video_views", "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.linkedin_source.linkedin_ads.ad_analytics_by_campaign"}, "source.linkedin_source.linkedin_ads.ad_analytics_by_creative": {"metadata": {"type": "BASE TABLE", "schema": "linkedin_source_integration_tests_3", "name": "linkedin_ad_analytics_by_creative_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"creative_id": {"type": "integer", "index": 1, "name": "creative_id", "comment": null}, "day": {"type": "timestamp without time zone", "index": 2, "name": "day", "comment": null}, "clicks": {"type": "integer", "index": 3, "name": "clicks", "comment": null}, "impressions": {"type": "integer", "index": 4, "name": "impressions", "comment": null}, "cost_in_local_currency": {"type": "integer", "index": 5, "name": "cost_in_local_currency", "comment": null}, "cost_in_usd": {"type": "integer", "index": 6, "name": "cost_in_usd", "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.linkedin_source.linkedin_ads.ad_analytics_by_creative"}, "source.linkedin_source.linkedin_ads.campaign_group_history": {"metadata": {"type": "BASE TABLE", "schema": "linkedin_source_integration_tests_3", "name": "linkedin_campaign_group_history_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "integer", "index": 1, "name": "id", "comment": null}, "last_modified_time": {"type": "timestamp without time zone", "index": 2, "name": "last_modified_time", "comment": null}, "account_id": {"type": "integer", "index": 3, "name": "account_id", "comment": null}, "created_time": {"type": "timestamp without time zone", "index": 4, "name": "created_time", "comment": null}, "name": {"type": "text", "index": 5, "name": "name", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.linkedin_source.linkedin_ads.campaign_group_history"}, "source.linkedin_source.linkedin_ads.campaign_history": {"metadata": {"type": "BASE TABLE", "schema": "linkedin_source_integration_tests_3", "name": "linkedin_campaign_history_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "integer", "index": 1, "name": "id", "comment": null}, "last_modified_time": {"type": "timestamp without time zone", "index": 2, "name": "last_modified_time", "comment": null}, "account_id": {"type": "integer", "index": 3, "name": "account_id", "comment": null}, "campaign_group_id": {"type": "integer", "index": 4, "name": "campaign_group_id", "comment": null}, "created_time": {"type": "timestamp without time zone", "index": 5, "name": "created_time", "comment": null}, "name": {"type": "text", "index": 6, "name": "name", "comment": null}, "version_tag": {"type": "integer", "index": 7, "name": "version_tag", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.linkedin_source.linkedin_ads.campaign_history"}, "source.linkedin_source.linkedin_ads.creative_history": {"metadata": {"type": "BASE TABLE", "schema": "linkedin_source_integration_tests_3", "name": "linkedin_creative_history_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "integer", "index": 1, "name": "id", "comment": null}, "campaign_id": {"type": "integer", "index": 2, "name": "campaign_id", "comment": null}, "intended_status": {"type": "character varying", "index": 3, "name": "intended_status", "comment": null}, "click_uri": {"type": "character varying", "index": 4, "name": "click_uri", "comment": null}, "last_modified_at": {"type": "timestamp without time zone", "index": 5, "name": "last_modified_at", "comment": null}, "created_time": {"type": "timestamp without time zone", "index": 6, "name": "created_time", "comment": null}, "text_ad_landing_page": {"type": "text", "index": 7, "name": "text_ad_landing_page", "comment": null}, "spotlight_landing_page": {"type": "text", "index": 8, "name": "spotlight_landing_page", "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.linkedin_source.linkedin_ads.creative_history"}}, "errors": null} \ No newline at end of file diff --git a/docs/index.html b/docs/index.html index 2bcc794..c580ce9 100644 --- a/docs/index.html +++ b/docs/index.html @@ -1,30 +1,4 @@ - - -
- - - -Source | \nTable | \nDescription | \nLink | \nMore? | \n
---|---|---|---|---|
\n \n {{ source.source_name }}\n \n | \n \n {{ source.name }}\n | \n \n\n View docs\n | \n\n \n \n \n \n \n \n \n \n | \n|
\n \n \n \n \n Description\n \n | \n