diff --git a/.github/ISSUE_TEMPLATE/bug-report.yml b/.github/ISSUE_TEMPLATE/bug-report.yml index 17c2c54..a4d6a72 100644 --- a/.github/ISSUE_TEMPLATE/bug-report.yml +++ b/.github/ISSUE_TEMPLATE/bug-report.yml @@ -83,6 +83,6 @@ body: description: Our team will assess this issue and let you know if we will add it to a future sprint. However, if you would like to expedite the solution, we encourage you to contribute to the package via a PR. Our team will then work with you to approve and merge your contributions as soon as possible. options: - label: Yes. - - label: Yes, but I will need assistance and will schedule time during our [office hours](https://calendly.com/fivetran-solutions-team/fivetran-solutions-team-office-hours) for guidance + - label: Yes, but I will need assistance. - label: No. required: false \ No newline at end of file diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml index 65a074b..034a8be 100644 --- a/.github/ISSUE_TEMPLATE/config.yml +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -1,7 +1,4 @@ contact_links: - - name: Ask a question during our office hours - url: https://calendly.com/fivetran-solutions-team/fivetran-solutions-team-office-hours - about: Schedule time during the external office hours block with the Fivetran Analytics Engineering team for support - name: Fivetran connector question url: https://support.fivetran.com/hc about: Have a question about your connector? Check out the Fivetran support portal for more details. diff --git a/.github/ISSUE_TEMPLATE/feature-request.yml b/.github/ISSUE_TEMPLATE/feature-request.yml index a1d28bb..fb4304f 100644 --- a/.github/ISSUE_TEMPLATE/feature-request.yml +++ b/.github/ISSUE_TEMPLATE/feature-request.yml @@ -34,7 +34,7 @@ body: description: Our team will assess this feature and let you know if we will add it to a future sprint. However, if you would like to expedite the feature, we encourage you to contribute to the package via a PR. Our team will then work with you to approve and merge your contributions as soon as possible. options: - label: Yes. - - label: Yes, but I will need assistance and will schedule time during your [office hours](https://calendly.com/fivetran-solutions-team/fivetran-solutions-team-office-hours) for guidance. + - label: Yes, but I will need assistance. - label: No. required: false - type: textarea diff --git a/.github/PULL_REQUEST_TEMPLATE/maintainer_pull_request_template.md b/.github/PULL_REQUEST_TEMPLATE/maintainer_pull_request_template.md index 3220674..1e22b09 100644 --- a/.github/PULL_REQUEST_TEMPLATE/maintainer_pull_request_template.md +++ b/.github/PULL_REQUEST_TEMPLATE/maintainer_pull_request_template.md @@ -16,6 +16,7 @@ Please acknowledge that you have successfully performed the following commands l Before marking this PR as "ready for review" the following have been applied: - [ ] The appropriate issue has been linked, tagged, and properly assigned - [ ] All necessary documentation and version upgrades have been applied + - [ ] docs were regenerated (unless this PR does not include any code or yml updates) - [ ] BuildKite integration tests are passing - [ ] Detailed validation steps have been provided below diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md index b4e7e8e..59f617d 100644 --- a/.github/pull_request_template.md +++ b/.github/pull_request_template.md @@ -30,4 +30,4 @@ We are so excited you decided to contribute to the Fivetran community dbt packag **PR Template** - [Community Pull Request Template](?expand=1&template=pull_request_template.md) (default) -- [Maintainer Pull Request Template](?expand=1&template=maintainer_pull_request_template.md) (to be used by maintainers) +- [Maintainer Pull Request Template](?expand=1&template=maintainer_pull_request_template.md) (to be used by maintainers) \ No newline at end of file diff --git a/.gitignore b/.gitignore index f348890..a452605 100644 --- a/.gitignore +++ b/.gitignore @@ -5,4 +5,6 @@ dbt_packages/ logs/ venv/ .DS_Store -dbt_packages/ \ No newline at end of file +dbt_packages/ +env/ +pacakge-lock.yml \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 9f94e34..ece40a1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,35 @@ -# dbt_social_media_reporting vNEXTRELEASE +# dbt_social_media_reporting v0.5.0 + +## Upstream Breaking Changes (Twitter Organic) +[PR #12](https://github.com/fivetran/dbt_twitter_organic_source/pull/12) from the upstream `dbt_twitter_organic_source` package includes the following breaking change updates: + +- The source defined in the `src_twitter_organic.yml` file has been renamed from `twitter_organic` to `twitter` to align with the default schema name used by the upstream Fivetran connector. + - If you're referencing sources from the upstream Twitter Organic packages, please update your source references as needed. See below for the full scope of source changes. + +| **New Source Reference** | **Old Source Reference** | +|----------------------------------|----------------------------------| +| `"{{ source('twitter','account_history') }}"` | `"{{ source('twitter_organic','account_history') }}"` | +| `"{{ source('twitter','organic_tweet_report') }}"` | `"{{ source('twitter_organic','organic_tweet_report') }}"` | +| `"{{ source('twitter','tweet') }}"` | `"{{ source('twitter_organic','tweet') }}"` | +| `"{{ source('twitter','twitter_user_history') }}"` | `"{{ source('twitter_organic','twitter_user_history') }}"` | + +- The default schema name has been modified from `twitter_organic` to now be `twitter` to more closely align with the default schema name generated by the Fivetran connector. Please be aware if you were leveraging the previous default schema then you will need to update the `twitter_organic_schema` variable accordingly. +- All identifier variables in the `src_twitter_organic.yml` file have been renamed. If you’re using any of these in your project, please update them accordingly. The changes include: + - Prepending `twitter_organic_*` has been updated to `twitter_*` to align with the schema change. + - The spelling of `*_identifer` has been corrected to `*_identifier`. + +| **New Identifier Variable Name** | **Old Identifier Variable Name** | +|----------------------------------|----------------------------------| +| `twitter_account_history_identifier` | `twitter_organic_account_history_identifer` | +| `twitter_organic_tweet_report_identifier` | `twitter_organic_organic_tweet_report_identifer` | +| `twitter_tweet_identifier` | `twitter_organic_tweet_identifer` | +| `twitter_twitter_user_history_identifier` | `twitter_organic_twitter_user_history_identifer` | ## Under the Hood -- Addition of a section tag within the README so the model descriptions may be accessible within the Fivetran UI for Quickstart. +- Consistency validation for integration tests has been added for the `social_media_reporting__rollup_report` model. ([PR #11](https://github.com/fivetran/dbt_social_media_reporting/pull/11)) +- Updated the maintainer PR, Issue, Feature Request, and Config templates to resemble the most up to date format. ([PR #11](https://github.com/fivetran/dbt_social_media_reporting/pull/11)) +- Renamed the Twitter Organic seed files to allow for more testing functionality. ([PR #11](https://github.com/fivetran/dbt_social_media_reporting/pull/11)) +- Addition of a section tag within the README so the model descriptions may be accessible within the Fivetran UI for Quickstart. ([PR #10](https://github.com/fivetran/dbt_social_media_reporting/pull/10)) # dbt_social_media_reporting v0.4.0 [PR #8](https://github.com/fivetran/dbt_social_media_reporting/pull/8) includes the following breaking changes: diff --git a/README.md b/README.md index db6ab46..a30c290 100644 --- a/README.md +++ b/README.md @@ -59,7 +59,7 @@ Include the following github package version in your `packages.yml` ```yaml packages: - package: fivetran/social_media_reporting - version: [">=0.3.0", "<0.4.0"] # we recommend using ranges to capture non-breaking changes automatically + version: [">=0.5.0", "<0.6.0"] # we recommend using ranges to capture non-breaking changes automatically ``` Do NOT include the upstream social media packages in this file. The transformation package itself has a dependency on it and will install the upstream packages as well. @@ -178,10 +178,10 @@ packages: version: [">=0.2.0", "<0.3.0"] - package: fivetran/twitter_organic - version: [">=0.2.0", "<0.3.0"] + version: [">=0.3.0", "<0.4.0"] - package: fivetran/twitter_organic_source - version: [">=0.2.0", "<0.3.0"] + version: [">=0.3.0", "<0.4.0"] - package: fivetran/linkedin_pages version: [">=0.3.0", "<0.4.0"] @@ -211,4 +211,3 @@ We highly encourage and welcome contributions to this package. Check out [this p # 🏪 Are there any resources available? - If you encounter any questions or want to reach out for help, please refer to the [GitHub Issue](https://github.com/fivetran/dbt_social_media_reporting/issues/new/choose) section to find the right avenue of support for you. - If you would like to provide feedback to the dbt package team at Fivetran, or would like to request a future dbt package to be developed, then feel free to fill out our [Feedback Form](https://www.surveymonkey.com/r/DQ7K7WW). -- Have questions or want to just say hi? Book a time during our office hours [here](https://calendly.com/fivetran-solutions-team/fivetran-solutions-team-office-hours) or send us an email at solutions@fivetran.com. diff --git a/dbt_project.yml b/dbt_project.yml index 2880f01..67557be 100644 --- a/dbt_project.yml +++ b/dbt_project.yml @@ -1,5 +1,5 @@ name: 'social_media_reporting' -version: '0.3.0' +version: '0.5.0' config-version: 2 require-dbt-version: [">=1.3.0", "<2.0.0"] vars: diff --git a/docs/catalog.json b/docs/catalog.json index 7057c55..499ec7c 100644 --- a/docs/catalog.json +++ b/docs/catalog.json @@ -1 +1 @@ -{"metadata": {"dbt_schema_version": "https://schemas.getdbt.com/dbt/catalog/v1.json", "dbt_version": "1.8.0", "generated_at": "2024-06-04T21:47:15.095297Z", "invocation_id": "32316296-401e-4217-869b-34c4141a8a53", "env": {}}, "nodes": {"seed.social_media_rollup_integration_tests.facebook_pages_daily_page_metrics_total_data": {"metadata": {"type": "BASE TABLE", "schema": "zz_dbt_catherine_fb_pages", "name": "facebook_pages_daily_page_metrics_total_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"date": {"type": "text", "index": 1, "name": "date", "comment": null}, "page_id": {"type": "bigint", "index": 2, "name": "page_id", "comment": null}, "_fivetran_synced": {"type": "text", "index": 3, "name": "_fivetran_synced", "comment": null}, "page_actions_post_reactions_anger_total": {"type": "integer", "index": 4, "name": "page_actions_post_reactions_anger_total", "comment": null}, "page_actions_post_reactions_haha_total": {"type": "integer", "index": 5, "name": "page_actions_post_reactions_haha_total", "comment": null}, "page_actions_post_reactions_like_total": {"type": "integer", "index": 6, "name": "page_actions_post_reactions_like_total", "comment": null}, "page_actions_post_reactions_love_total": {"type": "integer", "index": 7, "name": "page_actions_post_reactions_love_total", "comment": null}, "page_actions_post_reactions_sorry_total": {"type": "integer", "index": 8, "name": "page_actions_post_reactions_sorry_total", "comment": null}, "page_actions_post_reactions_total": {"type": "integer", "index": 9, "name": "page_actions_post_reactions_total", "comment": null}, "page_actions_post_reactions_wow_total": {"type": "integer", "index": 10, "name": "page_actions_post_reactions_wow_total", "comment": null}, "page_fan_adds": {"type": "integer", "index": 11, "name": "page_fan_adds", "comment": null}, "page_fan_removes": {"type": "integer", "index": 12, "name": "page_fan_removes", "comment": null}, "page_fans": {"type": "integer", "index": 13, "name": "page_fans", "comment": null}, "page_impressions": {"type": "integer", "index": 14, "name": "page_impressions", "comment": null}, "page_impressions_nonviral": {"type": "integer", "index": 15, "name": "page_impressions_nonviral", "comment": null}, "page_impressions_organic": {"type": "integer", "index": 16, "name": "page_impressions_organic", "comment": null}, "page_impressions_paid": {"type": "integer", "index": 17, "name": "page_impressions_paid", "comment": null}, "page_impressions_viral": {"type": "integer", "index": 18, "name": "page_impressions_viral", "comment": null}, "page_negative_feedback": {"type": "integer", "index": 19, "name": "page_negative_feedback", "comment": null}, "page_places_checkin_total": {"type": "integer", "index": 20, "name": "page_places_checkin_total", "comment": null}, "page_post_engagements": {"type": "integer", "index": 21, "name": "page_post_engagements", "comment": null}, "page_posts_impressions": {"type": "integer", "index": 22, "name": "page_posts_impressions", "comment": null}, "page_posts_impressions_nonviral": {"type": "integer", "index": 23, "name": "page_posts_impressions_nonviral", "comment": null}, "page_posts_impressions_organic": {"type": "integer", "index": 24, "name": "page_posts_impressions_organic", "comment": null}, "page_posts_impressions_paid": {"type": "integer", "index": 25, "name": "page_posts_impressions_paid", "comment": null}, "page_posts_impressions_viral": {"type": "integer", "index": 26, "name": "page_posts_impressions_viral", "comment": null}, "page_total_actions": {"type": "integer", "index": 27, "name": "page_total_actions", "comment": null}, "page_video_complete_views_30_s": {"type": "integer", "index": 28, "name": "page_video_complete_views_30_s", "comment": null}, "page_video_complete_views_30_s_autoplayed": {"type": "integer", "index": 29, "name": "page_video_complete_views_30_s_autoplayed", "comment": null}, "page_video_complete_views_30_s_click_to_play": {"type": "integer", "index": 30, "name": "page_video_complete_views_30_s_click_to_play", "comment": null}, "page_video_complete_views_30_s_organic": {"type": "integer", "index": 31, "name": "page_video_complete_views_30_s_organic", "comment": null}, "page_video_complete_views_30_s_paid": {"type": "integer", "index": 32, "name": "page_video_complete_views_30_s_paid", "comment": null}, "page_video_complete_views_30_s_repeat_views": {"type": "integer", "index": 33, "name": "page_video_complete_views_30_s_repeat_views", "comment": null}, "page_video_repeat_views": {"type": "integer", "index": 34, "name": "page_video_repeat_views", "comment": null}, "page_video_view_time": {"type": "integer", "index": 35, "name": "page_video_view_time", "comment": null}, "page_video_views": {"type": "integer", "index": 36, "name": "page_video_views", "comment": null}, "page_video_views_10_s": {"type": "integer", "index": 37, "name": "page_video_views_10_s", "comment": null}, "page_video_views_10_s_autoplayed": {"type": "integer", "index": 38, "name": "page_video_views_10_s_autoplayed", "comment": null}, "page_video_views_10_s_click_to_play": {"type": "integer", "index": 39, "name": "page_video_views_10_s_click_to_play", "comment": null}, "page_video_views_10_s_organic": {"type": "integer", "index": 40, "name": "page_video_views_10_s_organic", "comment": null}, "page_video_views_10_s_paid": {"type": "integer", "index": 41, "name": "page_video_views_10_s_paid", "comment": null}, "page_video_views_10_s_repeat": {"type": "integer", "index": 42, "name": "page_video_views_10_s_repeat", "comment": null}, "page_video_views_autoplayed": {"type": "integer", "index": 43, "name": "page_video_views_autoplayed", "comment": null}, "page_video_views_click_to_play": {"type": "integer", "index": 44, "name": "page_video_views_click_to_play", "comment": null}, "page_video_views_organic": {"type": "integer", "index": 45, "name": "page_video_views_organic", "comment": null}, "page_video_views_paid": {"type": "integer", "index": 46, "name": "page_video_views_paid", "comment": null}, "page_views_total": {"type": "integer", "index": 47, "name": "page_views_total", "comment": null}, "page_fans_online_per_day": {"type": "integer", "index": 48, "name": "page_fans_online_per_day", "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.social_media_rollup_integration_tests.facebook_pages_daily_page_metrics_total_data"}, "seed.social_media_rollup_integration_tests.facebook_pages_lifetime_post_metrics_total_data": {"metadata": {"type": "BASE TABLE", "schema": "zz_dbt_catherine_fb_pages", "name": "facebook_pages_lifetime_post_metrics_total_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"date": {"type": "text", "index": 1, "name": "date", "comment": null}, "post_id": {"type": "character varying", "index": 2, "name": "post_id", "comment": null}, "_fivetran_synced": {"type": "text", "index": 3, "name": "_fivetran_synced", "comment": null}, "post_clicks": {"type": "integer", "index": 4, "name": "post_clicks", "comment": null}, "post_engaged_fan": {"type": "integer", "index": 5, "name": "post_engaged_fan", "comment": null}, "post_engaged_users": {"type": "integer", "index": 6, "name": "post_engaged_users", "comment": null}, "post_impressions": {"type": "integer", "index": 7, "name": "post_impressions", "comment": null}, "post_impressions_fan": {"type": "integer", "index": 8, "name": "post_impressions_fan", "comment": null}, "post_impressions_nonviral": {"type": "integer", "index": 9, "name": "post_impressions_nonviral", "comment": null}, "post_impressions_organic": {"type": "integer", "index": 10, "name": "post_impressions_organic", "comment": null}, "post_impressions_paid": {"type": "integer", "index": 11, "name": "post_impressions_paid", "comment": null}, "post_impressions_viral": {"type": "integer", "index": 12, "name": "post_impressions_viral", "comment": null}, "post_negative_feedback": {"type": "integer", "index": 13, "name": "post_negative_feedback", "comment": null}, "post_reactions_anger_total": {"type": "integer", "index": 14, "name": "post_reactions_anger_total", "comment": null}, "post_reactions_haha_total": {"type": "integer", "index": 15, "name": "post_reactions_haha_total", "comment": null}, "post_reactions_like_total": {"type": "integer", "index": 16, "name": "post_reactions_like_total", "comment": null}, "post_reactions_love_total": {"type": "integer", "index": 17, "name": "post_reactions_love_total", "comment": null}, "post_reactions_sorry_total": {"type": "integer", "index": 18, "name": "post_reactions_sorry_total", "comment": null}, "post_reactions_wow_total": {"type": "integer", "index": 19, "name": "post_reactions_wow_total", "comment": null}, "post_video_avg_time_watched": {"type": "integer", "index": 20, "name": "post_video_avg_time_watched", "comment": null}, "post_video_complete_views_30_s_autoplayed": {"type": "integer", "index": 21, "name": "post_video_complete_views_30_s_autoplayed", "comment": null}, "post_video_complete_views_30_s_clicked_to_play": {"type": "integer", "index": 22, "name": "post_video_complete_views_30_s_clicked_to_play", "comment": null}, "post_video_complete_views_30_s_organic": {"type": "integer", "index": 23, "name": "post_video_complete_views_30_s_organic", "comment": null}, "post_video_complete_views_30_s_paid": {"type": "integer", "index": 24, "name": "post_video_complete_views_30_s_paid", "comment": null}, "post_video_complete_views_organic": {"type": "integer", "index": 25, "name": "post_video_complete_views_organic", "comment": null}, "post_video_complete_views_paid": {"type": "integer", "index": 26, "name": "post_video_complete_views_paid", "comment": null}, "post_video_view_time": {"type": "integer", "index": 27, "name": "post_video_view_time", "comment": null}, "post_video_view_time_organic": {"type": "integer", "index": 28, "name": "post_video_view_time_organic", "comment": null}, "post_video_views": {"type": "integer", "index": 29, "name": "post_video_views", "comment": null}, "post_video_views_10_s": {"type": "integer", "index": 30, "name": "post_video_views_10_s", "comment": null}, "post_video_views_10_s_autoplayed": {"type": "integer", "index": 31, "name": "post_video_views_10_s_autoplayed", "comment": null}, "post_video_views_10_s_clicked_to_play": {"type": "integer", "index": 32, "name": "post_video_views_10_s_clicked_to_play", "comment": null}, "post_video_views_10_s_organic": {"type": "integer", "index": 33, "name": "post_video_views_10_s_organic", "comment": null}, "post_video_views_10_s_paid": {"type": "integer", "index": 34, "name": "post_video_views_10_s_paid", "comment": null}, "post_video_views_10_s_sound_on": {"type": "integer", "index": 35, "name": "post_video_views_10_s_sound_on", "comment": null}, "post_video_views_autoplayed": {"type": "integer", "index": 36, "name": "post_video_views_autoplayed", "comment": null}, "post_video_views_clicked_to_play": {"type": "integer", "index": 37, "name": "post_video_views_clicked_to_play", "comment": null}, "post_video_views_organic": {"type": "integer", "index": 38, "name": "post_video_views_organic", "comment": null}, "post_video_views_paid": {"type": "integer", "index": 39, "name": "post_video_views_paid", "comment": null}, "post_video_views_sound_on": {"type": "integer", "index": 40, "name": "post_video_views_sound_on", "comment": null}, "post_video_length": {"type": "integer", "index": 41, "name": "post_video_length", "comment": null}, "post_video_views_15_s": {"type": "integer", "index": 42, "name": "post_video_views_15_s", "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.social_media_rollup_integration_tests.facebook_pages_lifetime_post_metrics_total_data"}, "seed.social_media_rollup_integration_tests.facebook_pages_page_data": {"metadata": {"type": "BASE TABLE", "schema": "zz_dbt_catherine_fb_pages", "name": "facebook_pages_page_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "bigint", "index": 1, "name": "id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 2, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "text", "index": 3, "name": "_fivetran_synced", "comment": null}, "affiliation": {"type": "integer", "index": 4, "name": "affiliation", "comment": null}, "app_id": {"type": "integer", "index": 5, "name": "app_id", "comment": null}, "artists_we_like": {"type": "integer", "index": 6, "name": "artists_we_like", "comment": null}, "attire": {"type": "integer", "index": 7, "name": "attire", "comment": null}, "awards": {"type": "integer", "index": 8, "name": "awards", "comment": null}, "band_interests": {"type": "integer", "index": 9, "name": "band_interests", "comment": null}, "band_members": {"type": "integer", "index": 10, "name": "band_members", "comment": null}, "bio": {"type": "integer", "index": 11, "name": "bio", "comment": null}, "birthday": {"type": "integer", "index": 12, "name": "birthday", "comment": null}, "booking_agent": {"type": "integer", "index": 13, "name": "booking_agent", "comment": null}, "built": {"type": "integer", "index": 14, "name": "built", "comment": null}, "can_checkin": {"type": "boolean", "index": 15, "name": "can_checkin", "comment": null}, "can_post": {"type": "boolean", "index": 16, "name": "can_post", "comment": null}, "category": {"type": "text", "index": 17, "name": "category", "comment": null}, "category_list": {"type": "text", "index": 18, "name": "category_list", "comment": null}, "checkins": {"type": "integer", "index": 19, "name": "checkins", "comment": null}, "company_overview": {"type": "integer", "index": 20, "name": "company_overview", "comment": null}, "culinary_team": {"type": "integer", "index": 21, "name": "culinary_team", "comment": null}, "current_location": {"type": "integer", "index": 22, "name": "current_location", "comment": null}, "description": {"type": "text", "index": 23, "name": "description", "comment": null}, "directed_by": {"type": "integer", "index": 24, "name": "directed_by", "comment": null}, "display_subtext": {"type": "text", "index": 25, "name": "display_subtext", "comment": null}, "emails": {"type": "text", "index": 26, "name": "emails", "comment": null}, "fan_count": {"type": "integer", "index": 27, "name": "fan_count", "comment": null}, "features": {"type": "integer", "index": 28, "name": "features", "comment": null}, "food_styles": {"type": "integer", "index": 29, "name": "food_styles", "comment": null}, "founded": {"type": "integer", "index": 30, "name": "founded", "comment": null}, "general_info": {"type": "integer", "index": 31, "name": "general_info", "comment": null}, "general_manager": {"type": "integer", "index": 32, "name": "general_manager", "comment": null}, "genre": {"type": "integer", "index": 33, "name": "genre", "comment": null}, "global_brand_page_name": {"type": "text", "index": 34, "name": "global_brand_page_name", "comment": null}, "has_added_app": {"type": "integer", "index": 35, "name": "has_added_app", "comment": null}, "has_whatsapp_number": {"type": "integer", "index": 36, "name": "has_whatsapp_number", "comment": null}, "hometown": {"type": "integer", "index": 37, "name": "hometown", "comment": null}, "impressum": {"type": "integer", "index": 38, "name": "impressum", "comment": null}, "influences": {"type": "integer", "index": 39, "name": "influences", "comment": null}, "is_always_open": {"type": "boolean", "index": 40, "name": "is_always_open", "comment": null}, "is_chain": {"type": "integer", "index": 41, "name": "is_chain", "comment": null}, "is_community_page": {"type": "boolean", "index": 42, "name": "is_community_page", "comment": null}, "is_eligible_for_branded_content": {"type": "boolean", "index": 43, "name": "is_eligible_for_branded_content", "comment": null}, "is_messenger_bot_get_started_enabled": {"type": "boolean", "index": 44, "name": "is_messenger_bot_get_started_enabled", "comment": null}, "is_messenger_platform_bot": {"type": "boolean", "index": 45, "name": "is_messenger_platform_bot", "comment": null}, "is_owned": {"type": "boolean", "index": 46, "name": "is_owned", "comment": null}, "is_permanently_closed": {"type": "boolean", "index": 47, "name": "is_permanently_closed", "comment": null}, "is_published": {"type": "boolean", "index": 48, "name": "is_published", "comment": null}, "is_unclaimed": {"type": "boolean", "index": 49, "name": "is_unclaimed", "comment": null}, "members": {"type": "integer", "index": 50, "name": "members", "comment": null}, "mission": {"type": "integer", "index": 51, "name": "mission", "comment": null}, "mpg": {"type": "integer", "index": 52, "name": "mpg", "comment": null}, "name": {"type": "text", "index": 53, "name": "name", "comment": null}, "network": {"type": "integer", "index": 54, "name": "network", "comment": null}, "new_like_count": {"type": "integer", "index": 55, "name": "new_like_count", "comment": null}, "overall_star_rating": {"type": "integer", "index": 56, "name": "overall_star_rating", "comment": null}, "personal_info": {"type": "integer", "index": 57, "name": "personal_info", "comment": null}, "personal_interests": {"type": "integer", "index": 58, "name": "personal_interests", "comment": null}, "pharma_safety_info": {"type": "integer", "index": 59, "name": "pharma_safety_info", "comment": null}, "phone": {"type": "integer", "index": 60, "name": "phone", "comment": null}, "place_type": {"type": "text", "index": 61, "name": "place_type", "comment": null}, "plot_outline": {"type": "integer", "index": 62, "name": "plot_outline", "comment": null}, "press_contact": {"type": "integer", "index": 63, "name": "press_contact", "comment": null}, "price_range": {"type": "text", "index": 64, "name": "price_range", "comment": null}, "produced_by": {"type": "integer", "index": 65, "name": "produced_by", "comment": null}, "products": {"type": "integer", "index": 66, "name": "products", "comment": null}, "promotion_eligible": {"type": "boolean", "index": 67, "name": "promotion_eligible", "comment": null}, "promotion_ineligible_reason": {"type": "text", "index": 68, "name": "promotion_ineligible_reason", "comment": null}, "public_transit": {"type": "integer", "index": 69, "name": "public_transit", "comment": null}, "rating_count": {"type": "integer", "index": 70, "name": "rating_count", "comment": null}, "record_label": {"type": "integer", "index": 71, "name": "record_label", "comment": null}, "release_date": {"type": "integer", "index": 72, "name": "release_date", "comment": null}, "schedule": {"type": "integer", "index": 73, "name": "schedule", "comment": null}, "screenplay_by": {"type": "integer", "index": 74, "name": "screenplay_by", "comment": null}, "season": {"type": "integer", "index": 75, "name": "season", "comment": null}, "single_line_address": {"type": "text", "index": 76, "name": "single_line_address", "comment": null}, "starring": {"type": "integer", "index": 77, "name": "starring", "comment": null}, "store_number": {"type": "integer", "index": 78, "name": "store_number", "comment": null}, "studio": {"type": "integer", "index": 79, "name": "studio", "comment": null}, "talking_about_count": {"type": "integer", "index": 80, "name": "talking_about_count", "comment": null}, "username": {"type": "text", "index": 81, "name": "username", "comment": null}, "website": {"type": "text", "index": 82, "name": "website", "comment": null}, "were_here_count": {"type": "integer", "index": 83, "name": "were_here_count", "comment": null}, "whatsapp_number": {"type": "integer", "index": 84, "name": "whatsapp_number", "comment": null}, "written_by": {"type": "integer", "index": 85, "name": "written_by", "comment": null}, "has_transitioned_to_new_page_experience": {"type": "boolean", "index": 86, "name": "has_transitioned_to_new_page_experience", "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.social_media_rollup_integration_tests.facebook_pages_page_data"}, "seed.social_media_rollup_integration_tests.facebook_pages_post_history_data": {"metadata": {"type": "BASE TABLE", "schema": "zz_dbt_catherine_fb_pages", "name": "facebook_pages_post_history_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "character varying", "index": 1, "name": "id", "comment": null}, "updated_time": {"type": "text", "index": 2, "name": "updated_time", "comment": null}, "_fivetran_synced": {"type": "text", "index": 3, "name": "_fivetran_synced", "comment": null}, "allowed_advertising_objects": {"type": "integer", "index": 4, "name": "allowed_advertising_objects", "comment": null}, "created_time": {"type": "text", "index": 5, "name": "created_time", "comment": null}, "is_eligible_for_promotion": {"type": "boolean", "index": 6, "name": "is_eligible_for_promotion", "comment": null}, "is_hidden": {"type": "boolean", "index": 7, "name": "is_hidden", "comment": null}, "is_instagram_eligible": {"type": "boolean", "index": 8, "name": "is_instagram_eligible", "comment": null}, "is_published": {"type": "boolean", "index": 9, "name": "is_published", "comment": null}, "page_id": {"type": "bigint", "index": 10, "name": "page_id", "comment": null}, "parent_id": {"type": "integer", "index": 11, "name": "parent_id", "comment": null}, "privacy_allow": {"type": "integer", "index": 12, "name": "privacy_allow", "comment": null}, "privacy_deny": {"type": "integer", "index": 13, "name": "privacy_deny", "comment": null}, "privacy_description": {"type": "text", "index": 14, "name": "privacy_description", "comment": null}, "privacy_friends": {"type": "integer", "index": 15, "name": "privacy_friends", "comment": null}, "privacy_value": {"type": "text", "index": 16, "name": "privacy_value", "comment": null}, "promotable_id": {"type": "character varying", "index": 17, "name": "promotable_id", "comment": null}, "share_count": {"type": "integer", "index": 18, "name": "share_count", "comment": null}, "status_type": {"type": "text", "index": 19, "name": "status_type", "comment": null}, "message": {"type": "text", "index": 20, "name": "message", "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.social_media_rollup_integration_tests.facebook_pages_post_history_data"}, "seed.social_media_rollup_integration_tests.instagram_business_media_history_data": {"metadata": {"type": "BASE TABLE", "schema": "zz_dbt_catherine_fb_pages", "name": "instagram_business_media_history_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"_fivetran_id": {"type": "text", "index": 1, "name": "_fivetran_id", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 2, "name": "_fivetran_synced", "comment": null}, "caption": {"type": "integer", "index": 3, "name": "caption", "comment": null}, "carousel_album_id": {"type": "bigint", "index": 4, "name": "carousel_album_id", "comment": null}, "created_time": {"type": "timestamp without time zone", "index": 5, "name": "created_time", "comment": null}, "id": {"type": "bigint", "index": 6, "name": "id", "comment": null}, "ig_id": {"type": "bigint", "index": 7, "name": "ig_id", "comment": null}, "is_comment_enabled": {"type": "boolean", "index": 8, "name": "is_comment_enabled", "comment": null}, "is_story": {"type": "boolean", "index": 9, "name": "is_story", "comment": null}, "media_type": {"type": "text", "index": 10, "name": "media_type", "comment": null}, "media_url": {"type": "text", "index": 11, "name": "media_url", "comment": null}, "permalink": {"type": "text", "index": 12, "name": "permalink", "comment": null}, "shortcode": {"type": "text", "index": 13, "name": "shortcode", "comment": null}, "thumbnail_url": {"type": "integer", "index": 14, "name": "thumbnail_url", "comment": null}, "user_id": {"type": "bigint", "index": 15, "name": "user_id", "comment": null}, "username": {"type": "text", "index": 16, "name": "username", "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.social_media_rollup_integration_tests.instagram_business_media_history_data"}, "seed.social_media_rollup_integration_tests.instagram_business_media_insights_data": {"metadata": {"type": "BASE TABLE", "schema": "zz_dbt_catherine_fb_pages", "name": "instagram_business_media_insights_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"_fivetran_id": {"type": "text", "index": 1, "name": "_fivetran_id", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 2, "name": "_fivetran_synced", "comment": null}, "carousel_album_engagement": {"type": "integer", "index": 3, "name": "carousel_album_engagement", "comment": null}, "carousel_album_impressions": {"type": "integer", "index": 4, "name": "carousel_album_impressions", "comment": null}, "carousel_album_reach": {"type": "integer", "index": 5, "name": "carousel_album_reach", "comment": null}, "carousel_album_saved": {"type": "integer", "index": 6, "name": "carousel_album_saved", "comment": null}, "carousel_album_video_views": {"type": "integer", "index": 7, "name": "carousel_album_video_views", "comment": null}, "comment_count": {"type": "integer", "index": 8, "name": "comment_count", "comment": null}, "id": {"type": "bigint", "index": 9, "name": "id", "comment": null}, "like_count": {"type": "integer", "index": 10, "name": "like_count", "comment": null}, "story_exits": {"type": "integer", "index": 11, "name": "story_exits", "comment": null}, "story_impressions": {"type": "integer", "index": 12, "name": "story_impressions", "comment": null}, "story_reach": {"type": "integer", "index": 13, "name": "story_reach", "comment": null}, "story_replies": {"type": "integer", "index": 14, "name": "story_replies", "comment": null}, "story_taps_back": {"type": "integer", "index": 15, "name": "story_taps_back", "comment": null}, "story_taps_forward": {"type": "integer", "index": 16, "name": "story_taps_forward", "comment": null}, "video_photo_engagement": {"type": "integer", "index": 17, "name": "video_photo_engagement", "comment": null}, "video_photo_impressions": {"type": "integer", "index": 18, "name": "video_photo_impressions", "comment": null}, "video_photo_reach": {"type": "integer", "index": 19, "name": "video_photo_reach", "comment": null}, "video_photo_saved": {"type": "integer", "index": 20, "name": "video_photo_saved", "comment": null}, "video_views": {"type": "integer", "index": 21, "name": "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.social_media_rollup_integration_tests.instagram_business_media_insights_data"}, "seed.social_media_rollup_integration_tests.instagram_business_user_history_data": {"metadata": {"type": "BASE TABLE", "schema": "zz_dbt_catherine_fb_pages", "name": "instagram_business_user_history_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"_fivetran_id": {"type": "text", "index": 1, "name": "_fivetran_id", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 2, "name": "_fivetran_synced", "comment": null}, "followers_count": {"type": "integer", "index": 3, "name": "followers_count", "comment": null}, "follows_count": {"type": "integer", "index": 4, "name": "follows_count", "comment": null}, "id": {"type": "bigint", "index": 5, "name": "id", "comment": null}, "ig_id": {"type": "bigint", "index": 6, "name": "ig_id", "comment": null}, "media_count": {"type": "integer", "index": 7, "name": "media_count", "comment": null}, "name": {"type": "text", "index": 8, "name": "name", "comment": null}, "username": {"type": "text", "index": 9, "name": "username", "comment": null}, "website": {"type": "integer", "index": 10, "name": "website", "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.social_media_rollup_integration_tests.instagram_business_user_history_data"}, "seed.social_media_rollup_integration_tests.linkedin_pages_organization_data": {"metadata": {"type": "BASE TABLE", "schema": "zz_dbt_catherine_fb_pages", "name": "linkedin_pages_organization_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "integer", "index": 1, "name": "id", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 2, "name": "_fivetran_synced", "comment": null}, "cover_photo_v_2_crop_info_height": {"type": "integer", "index": 3, "name": "cover_photo_v_2_crop_info_height", "comment": null}, "cover_photo_v_2_crop_info_width": {"type": "integer", "index": 4, "name": "cover_photo_v_2_crop_info_width", "comment": null}, "cover_photo_v_2_crop_info_x": {"type": "integer", "index": 5, "name": "cover_photo_v_2_crop_info_x", "comment": null}, "cover_photo_v_2_crop_info_y": {"type": "integer", "index": 6, "name": "cover_photo_v_2_crop_info_y", "comment": null}, "cover_photo_v_2_cropped": {"type": "text", "index": 7, "name": "cover_photo_v_2_cropped", "comment": null}, "cover_photo_v_2_original": {"type": "text", "index": 8, "name": "cover_photo_v_2_original", "comment": null}, "default_locale_country": {"type": "text", "index": 9, "name": "default_locale_country", "comment": null}, "default_locale_language": {"type": "text", "index": 10, "name": "default_locale_language", "comment": null}, "description_preferred_locale_country": {"type": "text", "index": 11, "name": "description_preferred_locale_country", "comment": null}, "description_preferred_locale_language": {"type": "text", "index": 12, "name": "description_preferred_locale_language", "comment": null}, "founded_on_day": {"type": "integer", "index": 13, "name": "founded_on_day", "comment": null}, "founded_on_month": {"type": "integer", "index": 14, "name": "founded_on_month", "comment": null}, "founded_on_year": {"type": "integer", "index": 15, "name": "founded_on_year", "comment": null}, "logo_v_2_crop_info_height": {"type": "integer", "index": 16, "name": "logo_v_2_crop_info_height", "comment": null}, "logo_v_2_crop_info_width": {"type": "integer", "index": 17, "name": "logo_v_2_crop_info_width", "comment": null}, "logo_v_2_crop_info_x": {"type": "integer", "index": 18, "name": "logo_v_2_crop_info_x", "comment": null}, "logo_v_2_crop_info_y": {"type": "integer", "index": 19, "name": "logo_v_2_crop_info_y", "comment": null}, "logo_v_2_cropped": {"type": "text", "index": 20, "name": "logo_v_2_cropped", "comment": null}, "logo_v_2_original": {"type": "text", "index": 21, "name": "logo_v_2_original", "comment": null}, "name_preferred_locale_country": {"type": "text", "index": 22, "name": "name_preferred_locale_country", "comment": null}, "name_preferred_locale_language": {"type": "text", "index": 23, "name": "name_preferred_locale_language", "comment": null}, "organization_status": {"type": "text", "index": 24, "name": "organization_status", "comment": null}, "organization_type": {"type": "text", "index": 25, "name": "organization_type", "comment": null}, "overview_photo_v_2_crop_info_height": {"type": "integer", "index": 26, "name": "overview_photo_v_2_crop_info_height", "comment": null}, "overview_photo_v_2_crop_info_width": {"type": "integer", "index": 27, "name": "overview_photo_v_2_crop_info_width", "comment": null}, "overview_photo_v_2_crop_info_x": {"type": "integer", "index": 28, "name": "overview_photo_v_2_crop_info_x", "comment": null}, "overview_photo_v_2_crop_info_y": {"type": "integer", "index": 29, "name": "overview_photo_v_2_crop_info_y", "comment": null}, "overview_photo_v_2_cropped": {"type": "integer", "index": 30, "name": "overview_photo_v_2_cropped", "comment": null}, "overview_photo_v_2_original": {"type": "integer", "index": 31, "name": "overview_photo_v_2_original", "comment": null}, "parent_relationship_parent_id": {"type": "integer", "index": 32, "name": "parent_relationship_parent_id", "comment": null}, "parent_relationship_status": {"type": "integer", "index": 33, "name": "parent_relationship_status", "comment": null}, "parent_relationship_type": {"type": "integer", "index": 34, "name": "parent_relationship_type", "comment": null}, "primary_organization_type": {"type": "text", "index": 35, "name": "primary_organization_type", "comment": null}, "school_attributes_hierarchy_classification": {"type": "integer", "index": 36, "name": "school_attributes_hierarchy_classification", "comment": null}, "school_attributes_legacy_school": {"type": "integer", "index": 37, "name": "school_attributes_legacy_school", "comment": null}, "school_attributes_type": {"type": "integer", "index": 38, "name": "school_attributes_type", "comment": null}, "school_attributes_year_level": {"type": "integer", "index": 39, "name": "school_attributes_year_level", "comment": null}, "staff_count_range": {"type": "integer", "index": 40, "name": "staff_count_range", "comment": null}, "version_tag": {"type": "integer", "index": 41, "name": "version_tag", "comment": null}, "website_preferred_locale_country": {"type": "text", "index": 42, "name": "website_preferred_locale_country", "comment": null}, "website_preferred_locale_language": {"type": "text", "index": 43, "name": "website_preferred_locale_language", "comment": null}, "description_localized": {"type": "text", "index": 44, "name": "description_localized", "comment": null}, "localized_description": {"type": "text", "index": 45, "name": "localized_description", "comment": null}, "localized_name": {"type": "text", "index": 46, "name": "localized_name", "comment": null}, "localized_website": {"type": "text", "index": 47, "name": "localized_website", "comment": null}, "name_localized": {"type": "text", "index": 48, "name": "name_localized", "comment": null}, "vanity_name": {"type": "text", "index": 49, "name": "vanity_name", "comment": null}, "website_localized": {"type": "text", "index": 50, "name": "website_localized", "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.social_media_rollup_integration_tests.linkedin_pages_organization_data"}, "seed.social_media_rollup_integration_tests.linkedin_pages_organization_ugc_post_data": {"metadata": {"type": "BASE TABLE", "schema": "zz_dbt_catherine_fb_pages", "name": "linkedin_pages_organization_ugc_post_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"organiation_id": {"type": "integer", "index": 1, "name": "organiation_id", "comment": null}, "ugc_post_id": {"type": "text", "index": 2, "name": "ugc_post_id", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.social_media_rollup_integration_tests.linkedin_pages_organization_ugc_post_data"}, "seed.social_media_rollup_integration_tests.linkedin_pages_post_content_data": {"metadata": {"type": "BASE TABLE", "schema": "zz_dbt_catherine_fb_pages", "name": "linkedin_pages_post_content_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"_fivetran_synced": {"type": "text", "index": 1, "name": "_fivetran_synced", "comment": null}, "_fivetran_id": {"type": "text", "index": 2, "name": "_fivetran_id", "comment": null}, "post_id": {"type": "text", "index": 3, "name": "post_id", "comment": null}, "article_description": {"type": "integer", "index": 4, "name": "article_description", "comment": null}, "article_source": {"type": "integer", "index": 5, "name": "article_source", "comment": null}, "article_thumbnail": {"type": "integer", "index": 6, "name": "article_thumbnail", "comment": null}, "article_thumbnail_alt_text": {"type": "integer", "index": 7, "name": "article_thumbnail_alt_text", "comment": null}, "article_title": {"type": "integer", "index": 8, "name": "article_title", "comment": null}, "carousel_id": {"type": "integer", "index": 9, "name": "carousel_id", "comment": null}, "media_alt_text": {"type": "integer", "index": 10, "name": "media_alt_text", "comment": null}, "media_id": {"type": "text", "index": 11, "name": "media_id", "comment": null}, "media_title": {"type": "text", "index": 12, "name": "media_title", "comment": null}, "multi_image_alt_text": {"type": "integer", "index": 13, "name": "multi_image_alt_text", "comment": null}, "poll_question": {"type": "text", "index": 14, "name": "poll_question", "comment": null}, "poll_settings_duration": {"type": "text", "index": 15, "name": "poll_settings_duration", "comment": null}, "poll_settings_is_voter_visible_to_author": {"type": "boolean", "index": 16, "name": "poll_settings_is_voter_visible_to_author", "comment": null}, "poll_settings_vote_selection_type": {"type": "text", "index": 17, "name": "poll_settings_vote_selection_type", "comment": null}, "poll_unique_voters_count": {"type": "integer", "index": 18, "name": "poll_unique_voters_count", "comment": null}, "type": {"type": "text", "index": 19, "name": "type", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.social_media_rollup_integration_tests.linkedin_pages_post_content_data"}, "seed.social_media_rollup_integration_tests.linkedin_pages_share_statistic_data": {"metadata": {"type": "BASE TABLE", "schema": "zz_dbt_catherine_fb_pages", "name": "linkedin_pages_share_statistic_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"_fivetran_id": {"type": "text", "index": 1, "name": "_fivetran_id", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 2, "name": "_fivetran_synced", "comment": null}, "_organization_entity_urn": {"type": "text", "index": 3, "name": "_organization_entity_urn", "comment": null}, "_share_entity_urn": {"type": "text", "index": 4, "name": "_share_entity_urn", "comment": null}, "click_count": {"type": "integer", "index": 5, "name": "click_count", "comment": null}, "comment_count": {"type": "integer", "index": 6, "name": "comment_count", "comment": null}, "engagement": {"type": "double precision", "index": 7, "name": "engagement", "comment": null}, "impression_count": {"type": "integer", "index": 8, "name": "impression_count", "comment": null}, "like_count": {"type": "integer", "index": 9, "name": "like_count", "comment": null}, "share_count": {"type": "integer", "index": 10, "name": "share_count", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.social_media_rollup_integration_tests.linkedin_pages_share_statistic_data"}, "seed.social_media_rollup_integration_tests.linkedin_pages_ugc_post_history_data": {"metadata": {"type": "BASE TABLE", "schema": "zz_dbt_catherine_fb_pages", "name": "linkedin_pages_ugc_post_history_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"_fivetran_synced": {"type": "text", "index": 1, "name": "_fivetran_synced", "comment": null}, "author": {"type": "text", "index": 2, "name": "author", "comment": null}, "commentary": {"type": "text", "index": 3, "name": "commentary", "comment": null}, "container_entity": {"type": "integer", "index": 4, "name": "container_entity", "comment": null}, "created_actor": {"type": "integer", "index": 5, "name": "created_actor", "comment": null}, "created_time": {"type": "text", "index": 6, "name": "created_time", "comment": null}, "distribution_external_distribution_channels": {"type": "text", "index": 7, "name": "distribution_external_distribution_channels", "comment": null}, "distribution_feed_distribution": {"type": "text", "index": 8, "name": "distribution_feed_distribution", "comment": null}, "first_published_at": {"type": "text", "index": 9, "name": "first_published_at", "comment": null}, "id": {"type": "text", "index": 10, "name": "id", "comment": null}, "last_modified_actor": {"type": "integer", "index": 11, "name": "last_modified_actor", "comment": null}, "last_modified_time": {"type": "text", "index": 12, "name": "last_modified_time", "comment": null}, "lifecycle_state": {"type": "text", "index": 13, "name": "lifecycle_state", "comment": null}, "response_context_parent": {"type": "text", "index": 14, "name": "response_context_parent", "comment": null}, "response_context_root": {"type": "text", "index": 15, "name": "response_context_root", "comment": null}, "visibility": {"type": "text", "index": 16, "name": "visibility", "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.social_media_rollup_integration_tests.linkedin_pages_ugc_post_history_data"}, "seed.social_media_rollup_integration_tests.linkedin_pages_ugc_post_share_statistic_data": {"metadata": {"type": "BASE TABLE", "schema": "zz_dbt_catherine_fb_pages", "name": "linkedin_pages_ugc_post_share_statistic_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"share_statistic_id": {"type": "text", "index": 1, "name": "share_statistic_id", "comment": null}, "ugc_post_id": {"type": "bigint", "index": 2, "name": "ugc_post_id", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.social_media_rollup_integration_tests.linkedin_pages_ugc_post_share_statistic_data"}, "seed.social_media_rollup_integration_tests.twitter_organic_account_history_data": {"metadata": {"type": "BASE TABLE", "schema": "zz_dbt_catherine_fb_pages", "name": "twitter_organic_account_history_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "text", "index": 1, "name": "id", "comment": null}, "updated_at": {"type": "timestamp without time zone", "index": 2, "name": "updated_at", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "approval_status": {"type": "text", "index": 4, "name": "approval_status", "comment": null}, "business_id": {"type": "integer", "index": 5, "name": "business_id", "comment": null}, "business_name": {"type": "integer", "index": 6, "name": "business_name", "comment": null}, "created_at": {"type": "timestamp without time zone", "index": 7, "name": "created_at", "comment": null}, "deleted": {"type": "boolean", "index": 8, "name": "deleted", "comment": null}, "industry_type": {"type": "integer", "index": 9, "name": "industry_type", "comment": null}, "name": {"type": "text", "index": 10, "name": "name", "comment": null}, "salt": {"type": "integer", "index": 11, "name": "salt", "comment": null}, "timezone": {"type": "text", "index": 12, "name": "timezone", "comment": null}, "timezone_switch_at": {"type": "timestamp without time zone", "index": 13, "name": "timezone_switch_at", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.social_media_rollup_integration_tests.twitter_organic_account_history_data"}, "seed.social_media_rollup_integration_tests.twitter_organic_organic_tweet_report_data": {"metadata": {"type": "BASE TABLE", "schema": "zz_dbt_catherine_fb_pages", "name": "twitter_organic_organic_tweet_report_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"account_id": {"type": "text", "index": 1, "name": "account_id", "comment": null}, "date": {"type": "timestamp without time zone", "index": 2, "name": "date", "comment": null}, "organic_tweet_id": {"type": "bigint", "index": 3, "name": "organic_tweet_id", "comment": null}, "placement": {"type": "text", "index": 4, "name": "placement", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 5, "name": "_fivetran_synced", "comment": null}, "app_clicks": {"type": "integer", "index": 6, "name": "app_clicks", "comment": null}, "card_engagements": {"type": "integer", "index": 7, "name": "card_engagements", "comment": null}, "carousel_swipes": {"type": "integer", "index": 8, "name": "carousel_swipes", "comment": null}, "clicks": {"type": "integer", "index": 9, "name": "clicks", "comment": null}, "engagements": {"type": "integer", "index": 10, "name": "engagements", "comment": null}, "follows": {"type": "integer", "index": 11, "name": "follows", "comment": null}, "impressions": {"type": "integer", "index": 12, "name": "impressions", "comment": null}, "likes": {"type": "integer", "index": 13, "name": "likes", "comment": null}, "poll_card_vote": {"type": "integer", "index": 14, "name": "poll_card_vote", "comment": null}, "qualified_impressions": {"type": "integer", "index": 15, "name": "qualified_impressions", "comment": null}, "replies": {"type": "integer", "index": 16, "name": "replies", "comment": null}, "retweets": {"type": "integer", "index": 17, "name": "retweets", "comment": null}, "tweets_send": {"type": "integer", "index": 18, "name": "tweets_send", "comment": null}, "unfollows": {"type": "integer", "index": 19, "name": "unfollows", "comment": null}, "url_clicks": {"type": "integer", "index": 20, "name": "url_clicks", "comment": null}, "video_15_s_views": {"type": "integer", "index": 21, "name": "video_15_s_views", "comment": null}, "video_3_s_100_pct_views": {"type": "integer", "index": 22, "name": "video_3_s_100_pct_views", "comment": null}, "video_6_s_views": {"type": "integer", "index": 23, "name": "video_6_s_views", "comment": null}, "video_content_starts": {"type": "integer", "index": 24, "name": "video_content_starts", "comment": null}, "video_cta_clicks": {"type": "integer", "index": 25, "name": "video_cta_clicks", "comment": null}, "video_total_views": {"type": "integer", "index": 26, "name": "video_total_views", "comment": null}, "video_views_100": {"type": "integer", "index": 27, "name": "video_views_100", "comment": null}, "video_views_25": {"type": "integer", "index": 28, "name": "video_views_25", "comment": null}, "video_views_50": {"type": "integer", "index": 29, "name": "video_views_50", "comment": null}, "video_views_75": {"type": "integer", "index": 30, "name": "video_views_75", "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.social_media_rollup_integration_tests.twitter_organic_organic_tweet_report_data"}, "seed.social_media_rollup_integration_tests.twitter_organic_tweet_data": {"metadata": {"type": "BASE TABLE", "schema": "zz_dbt_catherine_fb_pages", "name": "twitter_organic_tweet_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "bigint", "index": 1, "name": "id", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 2, "name": "_fivetran_synced", "comment": null}, "account_id": {"type": "text", "index": 3, "name": "account_id", "comment": null}, "card_uri": {"type": "text", "index": 4, "name": "card_uri", "comment": null}, "coordinates_coordinates": {"type": "integer", "index": 5, "name": "coordinates_coordinates", "comment": null}, "coordinates_type": {"type": "integer", "index": 6, "name": "coordinates_type", "comment": null}, "created_at": {"type": "timestamp without time zone", "index": 7, "name": "created_at", "comment": null}, "favorite_count": {"type": "integer", "index": 8, "name": "favorite_count", "comment": null}, "favorited": {"type": "boolean", "index": 9, "name": "favorited", "comment": null}, "followers": {"type": "integer", "index": 10, "name": "followers", "comment": null}, "geo_coordinates": {"type": "integer", "index": 11, "name": "geo_coordinates", "comment": null}, "geo_type": {"type": "integer", "index": 12, "name": "geo_type", "comment": null}, "in_reply_to_screen_name": {"type": "text", "index": 13, "name": "in_reply_to_screen_name", "comment": null}, "in_reply_to_status_id": {"type": "integer", "index": 14, "name": "in_reply_to_status_id", "comment": null}, "in_reply_to_user_id": {"type": "integer", "index": 15, "name": "in_reply_to_user_id", "comment": null}, "lang": {"type": "text", "index": 16, "name": "lang", "comment": null}, "media_key": {"type": "integer", "index": 17, "name": "media_key", "comment": null}, "retweet_count": {"type": "integer", "index": 18, "name": "retweet_count", "comment": null}, "retweeted": {"type": "boolean", "index": 19, "name": "retweeted", "comment": null}, "truncated": {"type": "boolean", "index": 20, "name": "truncated", "comment": null}, "tweet_type": {"type": "text", "index": 21, "name": "tweet_type", "comment": null}, "user_id": {"type": "integer", "index": 22, "name": "user_id", "comment": null}, "source": {"type": "text", "index": 23, "name": "source", "comment": null}, "full_test": {"type": "text", "index": 24, "name": "full_test", "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.social_media_rollup_integration_tests.twitter_organic_tweet_data"}, "seed.social_media_rollup_integration_tests.twitter_organic_twitter_user_history_data": {"metadata": {"type": "BASE TABLE", "schema": "zz_dbt_catherine_fb_pages", "name": "twitter_organic_twitter_user_history_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "integer", "index": 1, "name": "id", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 2, "name": "_fivetran_synced", "comment": null}, "contributors_enabled": {"type": "boolean", "index": 3, "name": "contributors_enabled", "comment": null}, "created_at": {"type": "timestamp without time zone", "index": 4, "name": "created_at", "comment": null}, "default_profile": {"type": "boolean", "index": 5, "name": "default_profile", "comment": null}, "default_profile_image": {"type": "boolean", "index": 6, "name": "default_profile_image", "comment": null}, "description": {"type": "text", "index": 7, "name": "description", "comment": null}, "favourites_count": {"type": "integer", "index": 8, "name": "favourites_count", "comment": null}, "followers_count": {"type": "integer", "index": 9, "name": "followers_count", "comment": null}, "friends_count": {"type": "integer", "index": 10, "name": "friends_count", "comment": null}, "geo_enabled": {"type": "boolean", "index": 11, "name": "geo_enabled", "comment": null}, "is_translation_enabled": {"type": "boolean", "index": 12, "name": "is_translation_enabled", "comment": null}, "is_translator": {"type": "boolean", "index": 13, "name": "is_translator", "comment": null}, "lang": {"type": "integer", "index": 14, "name": "lang", "comment": null}, "listed_count": {"type": "integer", "index": 15, "name": "listed_count", "comment": null}, "location": {"type": "text", "index": 16, "name": "location", "comment": null}, "name": {"type": "text", "index": 17, "name": "name", "comment": null}, "profile_background_image_url": {"type": "text", "index": 18, "name": "profile_background_image_url", "comment": null}, "profile_background_image_url_https": {"type": "text", "index": 19, "name": "profile_background_image_url_https", "comment": null}, "profile_background_tile": {"type": "boolean", "index": 20, "name": "profile_background_tile", "comment": null}, "profile_banner_url": {"type": "text", "index": 21, "name": "profile_banner_url", "comment": null}, "profile_image_url": {"type": "text", "index": 22, "name": "profile_image_url", "comment": null}, "profile_image_url_https": {"type": "text", "index": 23, "name": "profile_image_url_https", "comment": null}, "profile_use_background_image": {"type": "boolean", "index": 24, "name": "profile_use_background_image", "comment": null}, "protected_user": {"type": "boolean", "index": 25, "name": "protected_user", "comment": null}, "screen_name": {"type": "text", "index": 26, "name": "screen_name", "comment": null}, "statuses_count": {"type": "integer", "index": 27, "name": "statuses_count", "comment": null}, "time_zone": {"type": "integer", "index": 28, "name": "time_zone", "comment": null}, "url": {"type": "text", "index": 29, "name": "url", "comment": null}, "utc_offset": {"type": "integer", "index": 30, "name": "utc_offset", "comment": null}, "verified": {"type": "boolean", "index": 31, "name": "verified", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.social_media_rollup_integration_tests.twitter_organic_twitter_user_history_data"}, "model.facebook_pages.facebook_pages__pages_report": {"metadata": {"type": "BASE TABLE", "schema": "zz_dbt_catherine_fb_pages_facebook_pages", "name": "facebook_pages__pages_report", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"date_day": {"type": "timestamp without time zone", "index": 1, "name": "date_day", "comment": null}, "page_id": {"type": "text", "index": 2, "name": "page_id", "comment": null}, "page_name": {"type": "text", "index": 3, "name": "page_name", "comment": null}, "actions_post_reactions_total": {"type": "integer", "index": 4, "name": "actions_post_reactions_total", "comment": null}, "fan_adds": {"type": "integer", "index": 5, "name": "fan_adds", "comment": null}, "fan_removes": {"type": "integer", "index": 6, "name": "fan_removes", "comment": null}, "impressions": {"type": "integer", "index": 7, "name": "impressions", "comment": null}, "post_engagements": {"type": "integer", "index": 8, "name": "post_engagements", "comment": null}, "posts_impressions": {"type": "integer", "index": 9, "name": "posts_impressions", "comment": null}, "video_complete_views_30s": {"type": "integer", "index": 10, "name": "video_complete_views_30s", "comment": null}, "video_views": {"type": "integer", "index": 11, "name": "video_views", "comment": null}, "video_views_10s": {"type": "integer", "index": 12, "name": "video_views_10s", "comment": null}, "views_total": {"type": "integer", "index": 13, "name": "views_total", "comment": null}, "source_relation": {"type": "text", "index": 14, "name": "source_relation", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.facebook_pages.facebook_pages__pages_report"}, "model.facebook_pages.facebook_pages__posts_report": {"metadata": {"type": "BASE TABLE", "schema": "zz_dbt_catherine_fb_pages_facebook_pages", "name": "facebook_pages__posts_report", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"created_timestamp": {"type": "timestamp without time zone", "index": 1, "name": "created_timestamp", "comment": null}, "post_id": {"type": "text", "index": 2, "name": "post_id", "comment": null}, "post_message": {"type": "text", "index": 3, "name": "post_message", "comment": null}, "post_url": {"type": "text", "index": 4, "name": "post_url", "comment": null}, "page_id": {"type": "text", "index": 5, "name": "page_id", "comment": null}, "page_name": {"type": "text", "index": 6, "name": "page_name", "comment": null}, "date_day": {"type": "timestamp without time zone", "index": 7, "name": "date_day", "comment": null}, "clicks": {"type": "integer", "index": 8, "name": "clicks", "comment": null}, "impressions": {"type": "integer", "index": 9, "name": "impressions", "comment": null}, "video_avg_time_watched": {"type": "numeric", "index": 10, "name": "video_avg_time_watched", "comment": null}, "video_view_time": {"type": "numeric", "index": 11, "name": "video_view_time", "comment": null}, "video_views": {"type": "integer", "index": 12, "name": "video_views", "comment": null}, "video_views_10s": {"type": "integer", "index": 13, "name": "video_views_10s", "comment": null}, "video_views_15s": {"type": "integer", "index": 14, "name": "video_views_15s", "comment": null}, "likes": {"type": "integer", "index": 15, "name": "likes", "comment": null}, "source_relation": {"type": "text", "index": 16, "name": "source_relation", "comment": null}, "is_most_recent_record": {"type": "boolean", "index": 17, "name": "is_most_recent_record", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.facebook_pages.facebook_pages__posts_report"}, "model.facebook_pages.int_facebook_pages__lastest_post": {"metadata": {"type": "BASE TABLE", "schema": "zz_dbt_catherine_fb_pages_facebook_pages", "name": "int_facebook_pages__lastest_post", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"_fivetran_synced": {"type": "timestamp without time zone", "index": 1, "name": "_fivetran_synced", "comment": null}, "allowed_advertising_objects": {"type": "text", "index": 2, "name": "allowed_advertising_objects", "comment": null}, "created_timestamp": {"type": "timestamp without time zone", "index": 3, "name": "created_timestamp", "comment": null}, "post_id": {"type": "text", "index": 4, "name": "post_id", "comment": null}, "is_eligible_for_promotion": {"type": "boolean", "index": 5, "name": "is_eligible_for_promotion", "comment": null}, "is_hidden": {"type": "boolean", "index": 6, "name": "is_hidden", "comment": null}, "is_instagram_eligible": {"type": "boolean", "index": 7, "name": "is_instagram_eligible", "comment": null}, "is_published": {"type": "boolean", "index": 8, "name": "is_published", "comment": null}, "post_message": {"type": "text", "index": 9, "name": "post_message", "comment": null}, "page_id": {"type": "text", "index": 10, "name": "page_id", "comment": null}, "parent_id": {"type": "text", "index": 11, "name": "parent_id", "comment": null}, "privacy_allow": {"type": "text", "index": 12, "name": "privacy_allow", "comment": null}, "privacy_deny": {"type": "text", "index": 13, "name": "privacy_deny", "comment": null}, "privacy_description": {"type": "text", "index": 14, "name": "privacy_description", "comment": null}, "privacy_friends": {"type": "text", "index": 15, "name": "privacy_friends", "comment": null}, "privacy_value": {"type": "text", "index": 16, "name": "privacy_value", "comment": null}, "promotable_id": {"type": "text", "index": 17, "name": "promotable_id", "comment": null}, "share_count": {"type": "integer", "index": 18, "name": "share_count", "comment": null}, "status_type": {"type": "text", "index": 19, "name": "status_type", "comment": null}, "updated_timestamp": {"type": "timestamp without time zone", "index": 20, "name": "updated_timestamp", "comment": null}, "post_url": {"type": "text", "index": 21, "name": "post_url", "comment": null}, "source_relation": {"type": "text", "index": 22, "name": "source_relation", "comment": null}, "is_most_recent_record": {"type": "boolean", "index": 23, "name": "is_most_recent_record", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.facebook_pages.int_facebook_pages__lastest_post"}, "model.instagram_business.instagram_business__posts": {"metadata": {"type": "BASE TABLE", "schema": "zz_dbt_catherine_fb_pages_instagram_business", "name": "instagram_business__posts", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"account_name": {"type": "text", "index": 1, "name": "account_name", "comment": null}, "user_id": {"type": "integer", "index": 2, "name": "user_id", "comment": null}, "post_caption": {"type": "text", "index": 3, "name": "post_caption", "comment": null}, "created_timestamp": {"type": "timestamp without time zone", "index": 4, "name": "created_timestamp", "comment": null}, "post_id": {"type": "integer", "index": 5, "name": "post_id", "comment": null}, "is_comment_enabled": {"type": "boolean", "index": 6, "name": "is_comment_enabled", "comment": null}, "is_story": {"type": "boolean", "index": 7, "name": "is_story", "comment": null}, "media_type": {"type": "text", "index": 8, "name": "media_type", "comment": null}, "media_url": {"type": "text", "index": 9, "name": "media_url", "comment": null}, "post_url": {"type": "text", "index": 10, "name": "post_url", "comment": null}, "shortcode": {"type": "text", "index": 11, "name": "shortcode", "comment": null}, "thumbnail_url": {"type": "text", "index": 12, "name": "thumbnail_url", "comment": null}, "username": {"type": "text", "index": 13, "name": "username", "comment": null}, "carousel_album_engagement": {"type": "integer", "index": 14, "name": "carousel_album_engagement", "comment": null}, "carousel_album_impressions": {"type": "integer", "index": 15, "name": "carousel_album_impressions", "comment": null}, "carousel_album_reach": {"type": "integer", "index": 16, "name": "carousel_album_reach", "comment": null}, "carousel_album_saved": {"type": "integer", "index": 17, "name": "carousel_album_saved", "comment": null}, "carousel_album_video_views": {"type": "integer", "index": 18, "name": "carousel_album_video_views", "comment": null}, "comment_count": {"type": "integer", "index": 19, "name": "comment_count", "comment": null}, "like_count": {"type": "integer", "index": 20, "name": "like_count", "comment": null}, "story_exits": {"type": "integer", "index": 21, "name": "story_exits", "comment": null}, "story_impressions": {"type": "integer", "index": 22, "name": "story_impressions", "comment": null}, "story_reach": {"type": "integer", "index": 23, "name": "story_reach", "comment": null}, "story_replies": {"type": "integer", "index": 24, "name": "story_replies", "comment": null}, "story_taps_back": {"type": "integer", "index": 25, "name": "story_taps_back", "comment": null}, "story_taps_forward": {"type": "integer", "index": 26, "name": "story_taps_forward", "comment": null}, "video_photo_engagement": {"type": "integer", "index": 27, "name": "video_photo_engagement", "comment": null}, "video_photo_impressions": {"type": "integer", "index": 28, "name": "video_photo_impressions", "comment": null}, "video_photo_reach": {"type": "integer", "index": 29, "name": "video_photo_reach", "comment": null}, "video_photo_saved": {"type": "integer", "index": 30, "name": "video_photo_saved", "comment": null}, "video_views": {"type": "integer", "index": 31, "name": "video_views", "comment": null}, "reel_comments": {"type": "integer", "index": 32, "name": "reel_comments", "comment": null}, "reel_likes": {"type": "integer", "index": 33, "name": "reel_likes", "comment": null}, "reel_plays": {"type": "integer", "index": 34, "name": "reel_plays", "comment": null}, "reel_reach": {"type": "integer", "index": 35, "name": "reel_reach", "comment": null}, "reel_shares": {"type": "integer", "index": 36, "name": "reel_shares", "comment": null}, "reel_total_interactions": {"type": "integer", "index": 37, "name": "reel_total_interactions", "comment": null}, "source_relation": {"type": "text", "index": 38, "name": "source_relation", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.instagram_business.instagram_business__posts"}, "model.linkedin_pages.int_linkedin_pages__latest_post": {"metadata": {"type": "BASE TABLE", "schema": "zz_dbt_catherine_fb_pages_linkedin_pages", "name": "int_linkedin_pages__latest_post", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"_fivetran_synced": {"type": "timestamp without time zone", "index": 1, "name": "_fivetran_synced", "comment": null}, "share_statistic_id": {"type": "text", "index": 2, "name": "share_statistic_id", "comment": null}, "ugc_post_id": {"type": "text", "index": 3, "name": "ugc_post_id", "comment": null}, "source_relation": {"type": "text", "index": 4, "name": "source_relation", "comment": null}, "is_most_recent_record": {"type": "boolean", "index": 5, "name": "is_most_recent_record", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.linkedin_pages.int_linkedin_pages__latest_post"}, "model.linkedin_pages.int_linkedin_pages__latest_post_history": {"metadata": {"type": "BASE TABLE", "schema": "zz_dbt_catherine_fb_pages_linkedin_pages", "name": "int_linkedin_pages__latest_post_history", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"_fivetran_synced": {"type": "timestamp without time zone", "index": 1, "name": "_fivetran_synced", "comment": null}, "post_author": {"type": "text", "index": 2, "name": "post_author", "comment": null}, "commentary": {"type": "text", "index": 3, "name": "commentary", "comment": null}, "created_actor": {"type": "text", "index": 4, "name": "created_actor", "comment": null}, "created_timestamp": {"type": "timestamp without time zone", "index": 5, "name": "created_timestamp", "comment": null}, "first_published_timestamp": {"type": "timestamp without time zone", "index": 6, "name": "first_published_timestamp", "comment": null}, "ugc_post_id": {"type": "text", "index": 7, "name": "ugc_post_id", "comment": null}, "ugc_post_urn": {"type": "text", "index": 8, "name": "ugc_post_urn", "comment": null}, "post_url": {"type": "text", "index": 9, "name": "post_url", "comment": null}, "last_modified_actor": {"type": "text", "index": 10, "name": "last_modified_actor", "comment": null}, "last_modified_timestamp": {"type": "timestamp without time zone", "index": 11, "name": "last_modified_timestamp", "comment": null}, "lifecycle_state": {"type": "text", "index": 12, "name": "lifecycle_state", "comment": null}, "visibility": {"type": "text", "index": 13, "name": "visibility", "comment": null}, "source_relation": {"type": "text", "index": 14, "name": "source_relation", "comment": null}, "is_most_recent_record": {"type": "boolean", "index": 15, "name": "is_most_recent_record", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.linkedin_pages.int_linkedin_pages__latest_post_history"}, "model.linkedin_pages.linkedin_pages__posts": {"metadata": {"type": "BASE TABLE", "schema": "zz_dbt_catherine_fb_pages_linkedin_pages", "name": "linkedin_pages__posts", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"ugc_post_id": {"type": "text", "index": 1, "name": "ugc_post_id", "comment": null}, "post_author": {"type": "text", "index": 2, "name": "post_author", "comment": null}, "post_url": {"type": "text", "index": 3, "name": "post_url", "comment": null}, "created_timestamp": {"type": "timestamp without time zone", "index": 4, "name": "created_timestamp", "comment": null}, "first_published_timestamp": {"type": "timestamp without time zone", "index": 5, "name": "first_published_timestamp", "comment": null}, "lifecycle_state": {"type": "text", "index": 6, "name": "lifecycle_state", "comment": null}, "commentary": {"type": "text", "index": 7, "name": "commentary", "comment": null}, "organization_id": {"type": "integer", "index": 8, "name": "organization_id", "comment": null}, "post_title": {"type": "text", "index": 9, "name": "post_title", "comment": null}, "post_type": {"type": "text", "index": 10, "name": "post_type", "comment": null}, "organization_name": {"type": "text", "index": 11, "name": "organization_name", "comment": null}, "click_count": {"type": "integer", "index": 12, "name": "click_count", "comment": null}, "comment_count": {"type": "integer", "index": 13, "name": "comment_count", "comment": null}, "impression_count": {"type": "integer", "index": 14, "name": "impression_count", "comment": null}, "like_count": {"type": "integer", "index": 15, "name": "like_count", "comment": null}, "share_count": {"type": "integer", "index": 16, "name": "share_count", "comment": null}, "source_relation": {"type": "text", "index": 17, "name": "source_relation", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.linkedin_pages.linkedin_pages__posts"}, "model.social_media_reporting.social_media_reporting__facebook_posts_reporting": {"metadata": {"type": "BASE TABLE", "schema": "zz_dbt_catherine_fb_pages_social_media_reporting", "name": "social_media_reporting__facebook_posts_reporting", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"created_timestamp": {"type": "timestamp without time zone", "index": 1, "name": "created_timestamp", "comment": null}, "post_id": {"type": "text", "index": 2, "name": "post_id", "comment": null}, "post_message": {"type": "text", "index": 3, "name": "post_message", "comment": null}, "post_url": {"type": "text", "index": 4, "name": "post_url", "comment": null}, "page_id": {"type": "text", "index": 5, "name": "page_id", "comment": null}, "page_name": {"type": "text", "index": 6, "name": "page_name", "comment": null}, "source_relation": {"type": "text", "index": 7, "name": "source_relation", "comment": null}, "platform": {"type": "text", "index": 8, "name": "platform", "comment": null}, "clicks": {"type": "bigint", "index": 9, "name": "clicks", "comment": null}, "impressions": {"type": "bigint", "index": 10, "name": "impressions", "comment": null}, "likes": {"type": "bigint", "index": 11, "name": "likes", "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.social_media_reporting.social_media_reporting__facebook_posts_reporting"}, "model.social_media_reporting.social_media_reporting__instagram_posts_reporting": {"metadata": {"type": "BASE TABLE", "schema": "zz_dbt_catherine_fb_pages_social_media_reporting", "name": "social_media_reporting__instagram_posts_reporting", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"page_name": {"type": "text", "index": 1, "name": "page_name", "comment": null}, "page_id": {"type": "integer", "index": 2, "name": "page_id", "comment": null}, "post_message": {"type": "text", "index": 3, "name": "post_message", "comment": null}, "created_timestamp": {"type": "timestamp without time zone", "index": 4, "name": "created_timestamp", "comment": null}, "post_id": {"type": "text", "index": 5, "name": "post_id", "comment": null}, "post_url": {"type": "text", "index": 6, "name": "post_url", "comment": null}, "source_relation": {"type": "text", "index": 7, "name": "source_relation", "comment": null}, "platform": {"type": "text", "index": 8, "name": "platform", "comment": null}, "comments": {"type": "bigint", "index": 9, "name": "comments", "comment": null}, "likes": {"type": "bigint", "index": 10, "name": "likes", "comment": null}, "impressions": {"type": "bigint", "index": 11, "name": "impressions", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.social_media_reporting.social_media_reporting__instagram_posts_reporting"}, "model.social_media_reporting.social_media_reporting__linkedin_posts_reporting": {"metadata": {"type": "BASE TABLE", "schema": "zz_dbt_catherine_fb_pages_social_media_reporting", "name": "social_media_reporting__linkedin_posts_reporting", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"page_id": {"type": "integer", "index": 1, "name": "page_id", "comment": null}, "page_name": {"type": "text", "index": 2, "name": "page_name", "comment": null}, "post_id": {"type": "text", "index": 3, "name": "post_id", "comment": null}, "created_timestamp": {"type": "timestamp without time zone", "index": 4, "name": "created_timestamp", "comment": null}, "post_url": {"type": "text", "index": 5, "name": "post_url", "comment": null}, "source_relation": {"type": "text", "index": 6, "name": "source_relation", "comment": null}, "platform": {"type": "text", "index": 7, "name": "platform", "comment": null}, "post_message": {"type": "text", "index": 8, "name": "post_message", "comment": null}, "clicks": {"type": "bigint", "index": 9, "name": "clicks", "comment": null}, "comments": {"type": "bigint", "index": 10, "name": "comments", "comment": null}, "impressions": {"type": "bigint", "index": 11, "name": "impressions", "comment": null}, "likes": {"type": "bigint", "index": 12, "name": "likes", "comment": null}, "shares": {"type": "bigint", "index": 13, "name": "shares", "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.social_media_reporting.social_media_reporting__linkedin_posts_reporting"}, "model.social_media_reporting.social_media_reporting__rollup_report": {"metadata": {"type": "BASE TABLE", "schema": "zz_dbt_catherine_fb_pages_social_media_reporting", "name": "social_media_reporting__rollup_report", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"_dbt_source_relation": {"type": "text", "index": 1, "name": "_dbt_source_relation", "comment": null}, "created_timestamp": {"type": "timestamp without time zone", "index": 2, "name": "created_timestamp", "comment": null}, "post_id": {"type": "text", "index": 3, "name": "post_id", "comment": null}, "post_message": {"type": "text", "index": 4, "name": "post_message", "comment": null}, "page_id": {"type": "text", "index": 5, "name": "page_id", "comment": null}, "page_name": {"type": "text", "index": 6, "name": "page_name", "comment": null}, "post_url": {"type": "text", "index": 7, "name": "post_url", "comment": null}, "source_relation": {"type": "text", "index": 8, "name": "source_relation", "comment": null}, "platform": {"type": "text", "index": 9, "name": "platform", "comment": null}, "clicks": {"type": "numeric", "index": 10, "name": "clicks", "comment": null}, "impressions": {"type": "numeric", "index": 11, "name": "impressions", "comment": null}, "likes": {"type": "numeric", "index": 12, "name": "likes", "comment": null}, "shares": {"type": "numeric", "index": 13, "name": "shares", "comment": null}, "comments": {"type": "numeric", "index": 14, "name": "comments", "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.social_media_reporting.social_media_reporting__rollup_report"}, "model.social_media_reporting.social_media_reporting__twitter_posts_reporting": {"metadata": {"type": "BASE TABLE", "schema": "zz_dbt_catherine_fb_pages_social_media_reporting", "name": "social_media_reporting__twitter_posts_reporting", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"created_timestamp": {"type": "timestamp without time zone", "index": 1, "name": "created_timestamp", "comment": null}, "post_id": {"type": "text", "index": 2, "name": "post_id", "comment": null}, "post_message": {"type": "text", "index": 3, "name": "post_message", "comment": null}, "page_id": {"type": "text", "index": 4, "name": "page_id", "comment": null}, "page_name": {"type": "text", "index": 5, "name": "page_name", "comment": null}, "post_url": {"type": "text", "index": 6, "name": "post_url", "comment": null}, "source_relation": {"type": "text", "index": 7, "name": "source_relation", "comment": null}, "platform": {"type": "text", "index": 8, "name": "platform", "comment": null}, "clicks": {"type": "numeric", "index": 9, "name": "clicks", "comment": null}, "impressions": {"type": "numeric", "index": 10, "name": "impressions", "comment": null}, "likes": {"type": "numeric", "index": 11, "name": "likes", "comment": null}, "shares": {"type": "numeric", "index": 12, "name": "shares", "comment": null}, "comments": {"type": "numeric", "index": 13, "name": "comments", "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.social_media_reporting.social_media_reporting__twitter_posts_reporting"}, "model.facebook_pages_source.stg_facebook_pages__daily_page_metrics_total": {"metadata": {"type": "BASE TABLE", "schema": "zz_dbt_catherine_fb_pages_stg_facebook_pages", "name": "stg_facebook_pages__daily_page_metrics_total", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"_fivetran_synced": {"type": "timestamp without time zone", "index": 1, "name": "_fivetran_synced", "comment": null}, "date_day": {"type": "timestamp without time zone", "index": 2, "name": "date_day", "comment": null}, "page_id": {"type": "text", "index": 3, "name": "page_id", "comment": null}, "actions_post_reactions_anger_total": {"type": "integer", "index": 4, "name": "actions_post_reactions_anger_total", "comment": null}, "actions_post_reactions_haha_total": {"type": "integer", "index": 5, "name": "actions_post_reactions_haha_total", "comment": null}, "actions_post_reactions_like_total": {"type": "integer", "index": 6, "name": "actions_post_reactions_like_total", "comment": null}, "actions_post_reactions_love_total": {"type": "integer", "index": 7, "name": "actions_post_reactions_love_total", "comment": null}, "actions_post_reactions_sorry_total": {"type": "integer", "index": 8, "name": "actions_post_reactions_sorry_total", "comment": null}, "actions_post_reactions_wow_total": {"type": "integer", "index": 9, "name": "actions_post_reactions_wow_total", "comment": null}, "actions_post_reactions_total": {"type": "integer", "index": 10, "name": "actions_post_reactions_total", "comment": null}, "fan_adds": {"type": "integer", "index": 11, "name": "fan_adds", "comment": null}, "fan_removes": {"type": "integer", "index": 12, "name": "fan_removes", "comment": null}, "fans": {"type": "integer", "index": 13, "name": "fans", "comment": null}, "fans_online_per_day": {"type": "integer", "index": 14, "name": "fans_online_per_day", "comment": null}, "impressions": {"type": "integer", "index": 15, "name": "impressions", "comment": null}, "impressions_nonviral": {"type": "integer", "index": 16, "name": "impressions_nonviral", "comment": null}, "impressions_organic": {"type": "integer", "index": 17, "name": "impressions_organic", "comment": null}, "impressions_paid": {"type": "integer", "index": 18, "name": "impressions_paid", "comment": null}, "impressions_viral": {"type": "integer", "index": 19, "name": "impressions_viral", "comment": null}, "negative_feedback": {"type": "integer", "index": 20, "name": "negative_feedback", "comment": null}, "places_checkin_total": {"type": "integer", "index": 21, "name": "places_checkin_total", "comment": null}, "post_engagements": {"type": "integer", "index": 22, "name": "post_engagements", "comment": null}, "posts_impressions": {"type": "integer", "index": 23, "name": "posts_impressions", "comment": null}, "posts_impressions_nonviral": {"type": "integer", "index": 24, "name": "posts_impressions_nonviral", "comment": null}, "posts_impressions_organic": {"type": "integer", "index": 25, "name": "posts_impressions_organic", "comment": null}, "posts_impressions_paid": {"type": "integer", "index": 26, "name": "posts_impressions_paid", "comment": null}, "posts_impressions_viral": {"type": "integer", "index": 27, "name": "posts_impressions_viral", "comment": null}, "total_actions": {"type": "integer", "index": 28, "name": "total_actions", "comment": null}, "video_complete_views_30s": {"type": "integer", "index": 29, "name": "video_complete_views_30s", "comment": null}, "video_complete_views_30s_autoplayed": {"type": "integer", "index": 30, "name": "video_complete_views_30s_autoplayed", "comment": null}, "video_complete_views_30s_click_to_play": {"type": "integer", "index": 31, "name": "video_complete_views_30s_click_to_play", "comment": null}, "video_complete_views_30s_organic": {"type": "integer", "index": 32, "name": "video_complete_views_30s_organic", "comment": null}, "video_complete_views_30s_paid": {"type": "integer", "index": 33, "name": "video_complete_views_30s_paid", "comment": null}, "video_complete_views_30s_repeat_views": {"type": "integer", "index": 34, "name": "video_complete_views_30s_repeat_views", "comment": null}, "video_repeat_views": {"type": "integer", "index": 35, "name": "video_repeat_views", "comment": null}, "video_view_time": {"type": "numeric", "index": 36, "name": "video_view_time", "comment": null}, "video_views": {"type": "integer", "index": 37, "name": "video_views", "comment": null}, "video_views_10s": {"type": "integer", "index": 38, "name": "video_views_10s", "comment": null}, "video_views_10s_autoplayed": {"type": "integer", "index": 39, "name": "video_views_10s_autoplayed", "comment": null}, "video_views_10s_click_to_play": {"type": "integer", "index": 40, "name": "video_views_10s_click_to_play", "comment": null}, "video_views_10s_organic": {"type": "integer", "index": 41, "name": "video_views_10s_organic", "comment": null}, "video_views_10s_paid": {"type": "integer", "index": 42, "name": "video_views_10s_paid", "comment": null}, "video_views_10s_repeat": {"type": "integer", "index": 43, "name": "video_views_10s_repeat", "comment": null}, "video_views_autoplayed": {"type": "integer", "index": 44, "name": "video_views_autoplayed", "comment": null}, "video_views_click_to_play": {"type": "integer", "index": 45, "name": "video_views_click_to_play", "comment": null}, "video_views_organic": {"type": "integer", "index": 46, "name": "video_views_organic", "comment": null}, "video_views_paid": {"type": "integer", "index": 47, "name": "video_views_paid", "comment": null}, "views_total": {"type": "integer", "index": 48, "name": "views_total", "comment": null}, "source_relation": {"type": "text", "index": 49, "name": "source_relation", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.facebook_pages_source.stg_facebook_pages__daily_page_metrics_total"}, "model.facebook_pages_source.stg_facebook_pages__daily_page_metrics_total_tmp": {"metadata": {"type": "BASE TABLE", "schema": "zz_dbt_catherine_fb_pages_stg_facebook_pages", "name": "stg_facebook_pages__daily_page_metrics_total_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"_dbt_source_relation": {"type": "text", "index": 1, "name": "_dbt_source_relation", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.facebook_pages_source.stg_facebook_pages__daily_page_metrics_total_tmp"}, "model.facebook_pages_source.stg_facebook_pages__lifetime_post_metrics_total": {"metadata": {"type": "BASE TABLE", "schema": "zz_dbt_catherine_fb_pages_stg_facebook_pages", "name": "stg_facebook_pages__lifetime_post_metrics_total", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"_fivetran_synced": {"type": "timestamp without time zone", "index": 1, "name": "_fivetran_synced", "comment": null}, "date_day": {"type": "timestamp without time zone", "index": 2, "name": "date_day", "comment": null}, "post_id": {"type": "text", "index": 3, "name": "post_id", "comment": null}, "clicks": {"type": "integer", "index": 4, "name": "clicks", "comment": null}, "impressions": {"type": "integer", "index": 5, "name": "impressions", "comment": null}, "impressions_fan": {"type": "integer", "index": 6, "name": "impressions_fan", "comment": null}, "impressions_nonviral": {"type": "integer", "index": 7, "name": "impressions_nonviral", "comment": null}, "impressions_organic": {"type": "integer", "index": 8, "name": "impressions_organic", "comment": null}, "impressions_paid": {"type": "integer", "index": 9, "name": "impressions_paid", "comment": null}, "impressions_viral": {"type": "integer", "index": 10, "name": "impressions_viral", "comment": null}, "negative_feedback": {"type": "integer", "index": 11, "name": "negative_feedback", "comment": null}, "reactions_anger_total": {"type": "integer", "index": 12, "name": "reactions_anger_total", "comment": null}, "reactions_haha_total": {"type": "integer", "index": 13, "name": "reactions_haha_total", "comment": null}, "reactions_like_total": {"type": "integer", "index": 14, "name": "reactions_like_total", "comment": null}, "reactions_love_total": {"type": "integer", "index": 15, "name": "reactions_love_total", "comment": null}, "reactions_sorry_total": {"type": "integer", "index": 16, "name": "reactions_sorry_total", "comment": null}, "reactions_wow_total": {"type": "integer", "index": 17, "name": "reactions_wow_total", "comment": null}, "video_avg_time_watched": {"type": "numeric", "index": 18, "name": "video_avg_time_watched", "comment": null}, "video_complete_views_30s_autoplayed": {"type": "integer", "index": 19, "name": "video_complete_views_30s_autoplayed", "comment": null}, "video_complete_views_30s_clicked_to_play": {"type": "integer", "index": 20, "name": "video_complete_views_30s_clicked_to_play", "comment": null}, "video_complete_views_30s_organic": {"type": "integer", "index": 21, "name": "video_complete_views_30s_organic", "comment": null}, "video_complete_views_30s_paid": {"type": "integer", "index": 22, "name": "video_complete_views_30s_paid", "comment": null}, "video_complete_views_organic": {"type": "integer", "index": 23, "name": "video_complete_views_organic", "comment": null}, "video_complete_views_paid": {"type": "integer", "index": 24, "name": "video_complete_views_paid", "comment": null}, "video_length": {"type": "numeric", "index": 25, "name": "video_length", "comment": null}, "video_view_time": {"type": "numeric", "index": 26, "name": "video_view_time", "comment": null}, "video_view_time_organic": {"type": "numeric", "index": 27, "name": "video_view_time_organic", "comment": null}, "video_views": {"type": "integer", "index": 28, "name": "video_views", "comment": null}, "video_views_10s": {"type": "integer", "index": 29, "name": "video_views_10s", "comment": null}, "video_views_10s_autoplayed": {"type": "integer", "index": 30, "name": "video_views_10s_autoplayed", "comment": null}, "video_views_10s_clicked_to_play": {"type": "integer", "index": 31, "name": "video_views_10s_clicked_to_play", "comment": null}, "video_views_10s_organic": {"type": "integer", "index": 32, "name": "video_views_10s_organic", "comment": null}, "video_views_10_s_paid": {"type": "integer", "index": 33, "name": "video_views_10_s_paid", "comment": null}, "video_views_10s_sound_on": {"type": "integer", "index": 34, "name": "video_views_10s_sound_on", "comment": null}, "video_views_15s": {"type": "integer", "index": 35, "name": "video_views_15s", "comment": null}, "video_views_autoplayed": {"type": "integer", "index": 36, "name": "video_views_autoplayed", "comment": null}, "video_views_clicked_to_play": {"type": "integer", "index": 37, "name": "video_views_clicked_to_play", "comment": null}, "video_views_organic": {"type": "integer", "index": 38, "name": "video_views_organic", "comment": null}, "video_views_paid": {"type": "integer", "index": 39, "name": "video_views_paid", "comment": null}, "video_views_sound_on": {"type": "integer", "index": 40, "name": "video_views_sound_on", "comment": null}, "source_relation": {"type": "text", "index": 41, "name": "source_relation", "comment": null}, "is_most_recent_record": {"type": "boolean", "index": 42, "name": "is_most_recent_record", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.facebook_pages_source.stg_facebook_pages__lifetime_post_metrics_total"}, "model.facebook_pages_source.stg_facebook_pages__lifetime_post_metrics_total_tmp": {"metadata": {"type": "BASE TABLE", "schema": "zz_dbt_catherine_fb_pages_stg_facebook_pages", "name": "stg_facebook_pages__lifetime_post_metrics_total_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"_dbt_source_relation": {"type": "text", "index": 1, "name": "_dbt_source_relation", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.facebook_pages_source.stg_facebook_pages__lifetime_post_metrics_total_tmp"}, "model.facebook_pages_source.stg_facebook_pages__page": {"metadata": {"type": "BASE TABLE", "schema": "zz_dbt_catherine_fb_pages_stg_facebook_pages", "name": "stg_facebook_pages__page", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"_fivetran_deleted": {"type": "boolean", "index": 1, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 2, "name": "_fivetran_synced", "comment": null}, "affiliation": {"type": "text", "index": 3, "name": "affiliation", "comment": null}, "app_id": {"type": "text", "index": 4, "name": "app_id", "comment": null}, "artists_we_like": {"type": "text", "index": 5, "name": "artists_we_like", "comment": null}, "attire": {"type": "text", "index": 6, "name": "attire", "comment": null}, "awards": {"type": "text", "index": 7, "name": "awards", "comment": null}, "band_interests": {"type": "text", "index": 8, "name": "band_interests", "comment": null}, "band_members": {"type": "text", "index": 9, "name": "band_members", "comment": null}, "bio": {"type": "text", "index": 10, "name": "bio", "comment": null}, "birthday": {"type": "text", "index": 11, "name": "birthday", "comment": null}, "booking_agent": {"type": "text", "index": 12, "name": "booking_agent", "comment": null}, "built": {"type": "text", "index": 13, "name": "built", "comment": null}, "can_checkin": {"type": "boolean", "index": 14, "name": "can_checkin", "comment": null}, "can_post": {"type": "boolean", "index": 15, "name": "can_post", "comment": null}, "category": {"type": "text", "index": 16, "name": "category", "comment": null}, "category_list": {"type": "text", "index": 17, "name": "category_list", "comment": null}, "checkins": {"type": "integer", "index": 18, "name": "checkins", "comment": null}, "company_overview": {"type": "text", "index": 19, "name": "company_overview", "comment": null}, "culinary_team": {"type": "text", "index": 20, "name": "culinary_team", "comment": null}, "current_location": {"type": "text", "index": 21, "name": "current_location", "comment": null}, "page_description": {"type": "text", "index": 22, "name": "page_description", "comment": null}, "directed_by": {"type": "text", "index": 23, "name": "directed_by", "comment": null}, "display_subtext": {"type": "text", "index": 24, "name": "display_subtext", "comment": null}, "emails": {"type": "text", "index": 25, "name": "emails", "comment": null}, "fan_count": {"type": "integer", "index": 26, "name": "fan_count", "comment": null}, "features": {"type": "text", "index": 27, "name": "features", "comment": null}, "food_styles": {"type": "text", "index": 28, "name": "food_styles", "comment": null}, "founded": {"type": "text", "index": 29, "name": "founded", "comment": null}, "general_info": {"type": "text", "index": 30, "name": "general_info", "comment": null}, "general_manager": {"type": "text", "index": 31, "name": "general_manager", "comment": null}, "genre": {"type": "text", "index": 32, "name": "genre", "comment": null}, "global_brand_page_name": {"type": "text", "index": 33, "name": "global_brand_page_name", "comment": null}, "has_added_app": {"type": "boolean", "index": 34, "name": "has_added_app", "comment": null}, "has_transitioned_to_new_page_experience": {"type": "boolean", "index": 35, "name": "has_transitioned_to_new_page_experience", "comment": null}, "has_whatsapp_number": {"type": "boolean", "index": 36, "name": "has_whatsapp_number", "comment": null}, "hometown": {"type": "text", "index": 37, "name": "hometown", "comment": null}, "page_id": {"type": "text", "index": 38, "name": "page_id", "comment": null}, "impressum": {"type": "text", "index": 39, "name": "impressum", "comment": null}, "influences": {"type": "text", "index": 40, "name": "influences", "comment": null}, "is_always_open": {"type": "boolean", "index": 41, "name": "is_always_open", "comment": null}, "is_chain": {"type": "boolean", "index": 42, "name": "is_chain", "comment": null}, "is_community_page": {"type": "boolean", "index": 43, "name": "is_community_page", "comment": null}, "is_eligible_for_branded_content": {"type": "boolean", "index": 44, "name": "is_eligible_for_branded_content", "comment": null}, "is_messenger_bot_get_started_enabled": {"type": "boolean", "index": 45, "name": "is_messenger_bot_get_started_enabled", "comment": null}, "is_messenger_platform_bot": {"type": "boolean", "index": 46, "name": "is_messenger_platform_bot", "comment": null}, "is_owned": {"type": "boolean", "index": 47, "name": "is_owned", "comment": null}, "is_permanently_closed": {"type": "boolean", "index": 48, "name": "is_permanently_closed", "comment": null}, "is_published": {"type": "boolean", "index": 49, "name": "is_published", "comment": null}, "is_unclaimed": {"type": "boolean", "index": 50, "name": "is_unclaimed", "comment": null}, "members": {"type": "text", "index": 51, "name": "members", "comment": null}, "mission": {"type": "text", "index": 52, "name": "mission", "comment": null}, "mpg": {"type": "text", "index": 53, "name": "mpg", "comment": null}, "page_name": {"type": "text", "index": 54, "name": "page_name", "comment": null}, "network": {"type": "text", "index": 55, "name": "network", "comment": null}, "new_like_count": {"type": "integer", "index": 56, "name": "new_like_count", "comment": null}, "overall_star_rating": {"type": "double precision", "index": 57, "name": "overall_star_rating", "comment": null}, "personal_info": {"type": "text", "index": 58, "name": "personal_info", "comment": null}, "personal_interests": {"type": "text", "index": 59, "name": "personal_interests", "comment": null}, "pharma_safety_info": {"type": "text", "index": 60, "name": "pharma_safety_info", "comment": null}, "phone": {"type": "text", "index": 61, "name": "phone", "comment": null}, "place_type": {"type": "text", "index": 62, "name": "place_type", "comment": null}, "plot_outline": {"type": "text", "index": 63, "name": "plot_outline", "comment": null}, "press_contact": {"type": "text", "index": 64, "name": "press_contact", "comment": null}, "price_range": {"type": "text", "index": 65, "name": "price_range", "comment": null}, "produced_by": {"type": "text", "index": 66, "name": "produced_by", "comment": null}, "products": {"type": "text", "index": 67, "name": "products", "comment": null}, "promotion_eligible": {"type": "boolean", "index": 68, "name": "promotion_eligible", "comment": null}, "promotion_ineligible_reason": {"type": "text", "index": 69, "name": "promotion_ineligible_reason", "comment": null}, "public_transit": {"type": "text", "index": 70, "name": "public_transit", "comment": null}, "rating_count": {"type": "integer", "index": 71, "name": "rating_count", "comment": null}, "record_label": {"type": "text", "index": 72, "name": "record_label", "comment": null}, "release_date": {"type": "text", "index": 73, "name": "release_date", "comment": null}, "schedule": {"type": "text", "index": 74, "name": "schedule", "comment": null}, "screenplay_by": {"type": "text", "index": 75, "name": "screenplay_by", "comment": null}, "season": {"type": "text", "index": 76, "name": "season", "comment": null}, "single_line_address": {"type": "text", "index": 77, "name": "single_line_address", "comment": null}, "starring": {"type": "text", "index": 78, "name": "starring", "comment": null}, "store_number": {"type": "integer", "index": 79, "name": "store_number", "comment": null}, "studio": {"type": "text", "index": 80, "name": "studio", "comment": null}, "talking_about_count": {"type": "integer", "index": 81, "name": "talking_about_count", "comment": null}, "username": {"type": "text", "index": 82, "name": "username", "comment": null}, "website": {"type": "text", "index": 83, "name": "website", "comment": null}, "were_here_count": {"type": "integer", "index": 84, "name": "were_here_count", "comment": null}, "whatsapp_number": {"type": "text", "index": 85, "name": "whatsapp_number", "comment": null}, "written_by": {"type": "text", "index": 86, "name": "written_by", "comment": null}, "source_relation": {"type": "text", "index": 87, "name": "source_relation", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.facebook_pages_source.stg_facebook_pages__page"}, "model.facebook_pages_source.stg_facebook_pages__page_tmp": {"metadata": {"type": "BASE TABLE", "schema": "zz_dbt_catherine_fb_pages_stg_facebook_pages", "name": "stg_facebook_pages__page_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"_dbt_source_relation": {"type": "text", "index": 1, "name": "_dbt_source_relation", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.facebook_pages_source.stg_facebook_pages__page_tmp"}, "model.facebook_pages_source.stg_facebook_pages__post_history": {"metadata": {"type": "BASE TABLE", "schema": "zz_dbt_catherine_fb_pages_stg_facebook_pages", "name": "stg_facebook_pages__post_history", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"_fivetran_synced": {"type": "timestamp without time zone", "index": 1, "name": "_fivetran_synced", "comment": null}, "allowed_advertising_objects": {"type": "text", "index": 2, "name": "allowed_advertising_objects", "comment": null}, "created_timestamp": {"type": "timestamp without time zone", "index": 3, "name": "created_timestamp", "comment": null}, "post_id": {"type": "text", "index": 4, "name": "post_id", "comment": null}, "is_eligible_for_promotion": {"type": "boolean", "index": 5, "name": "is_eligible_for_promotion", "comment": null}, "is_hidden": {"type": "boolean", "index": 6, "name": "is_hidden", "comment": null}, "is_instagram_eligible": {"type": "boolean", "index": 7, "name": "is_instagram_eligible", "comment": null}, "is_published": {"type": "boolean", "index": 8, "name": "is_published", "comment": null}, "post_message": {"type": "text", "index": 9, "name": "post_message", "comment": null}, "page_id": {"type": "text", "index": 10, "name": "page_id", "comment": null}, "parent_id": {"type": "text", "index": 11, "name": "parent_id", "comment": null}, "privacy_allow": {"type": "text", "index": 12, "name": "privacy_allow", "comment": null}, "privacy_deny": {"type": "text", "index": 13, "name": "privacy_deny", "comment": null}, "privacy_description": {"type": "text", "index": 14, "name": "privacy_description", "comment": null}, "privacy_friends": {"type": "text", "index": 15, "name": "privacy_friends", "comment": null}, "privacy_value": {"type": "text", "index": 16, "name": "privacy_value", "comment": null}, "promotable_id": {"type": "text", "index": 17, "name": "promotable_id", "comment": null}, "share_count": {"type": "integer", "index": 18, "name": "share_count", "comment": null}, "status_type": {"type": "text", "index": 19, "name": "status_type", "comment": null}, "updated_timestamp": {"type": "timestamp without time zone", "index": 20, "name": "updated_timestamp", "comment": null}, "post_url": {"type": "text", "index": 21, "name": "post_url", "comment": null}, "source_relation": {"type": "text", "index": 22, "name": "source_relation", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.facebook_pages_source.stg_facebook_pages__post_history"}, "model.facebook_pages_source.stg_facebook_pages__post_history_tmp": {"metadata": {"type": "BASE TABLE", "schema": "zz_dbt_catherine_fb_pages_stg_facebook_pages", "name": "stg_facebook_pages__post_history_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"_dbt_source_relation": {"type": "text", "index": 1, "name": "_dbt_source_relation", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.facebook_pages_source.stg_facebook_pages__post_history_tmp"}, "model.instagram_business_source.stg_instagram_business__media_history": {"metadata": {"type": "BASE TABLE", "schema": "zz_dbt_catherine_fb_pages_stg_instagram_business", "name": "stg_instagram_business__media_history", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"_fivetran_id": {"type": "text", "index": 1, "name": "_fivetran_id", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 2, "name": "_fivetran_synced", "comment": null}, "post_caption": {"type": "text", "index": 3, "name": "post_caption", "comment": null}, "carousel_album_id": {"type": "integer", "index": 4, "name": "carousel_album_id", "comment": null}, "created_timestamp": {"type": "timestamp without time zone", "index": 5, "name": "created_timestamp", "comment": null}, "post_id": {"type": "integer", "index": 6, "name": "post_id", "comment": null}, "ig_id": {"type": "integer", "index": 7, "name": "ig_id", "comment": null}, "is_comment_enabled": {"type": "boolean", "index": 8, "name": "is_comment_enabled", "comment": null}, "is_story": {"type": "boolean", "index": 9, "name": "is_story", "comment": null}, "media_type": {"type": "text", "index": 10, "name": "media_type", "comment": null}, "media_url": {"type": "text", "index": 11, "name": "media_url", "comment": null}, "post_url": {"type": "text", "index": 12, "name": "post_url", "comment": null}, "shortcode": {"type": "text", "index": 13, "name": "shortcode", "comment": null}, "thumbnail_url": {"type": "text", "index": 14, "name": "thumbnail_url", "comment": null}, "user_id": {"type": "integer", "index": 15, "name": "user_id", "comment": null}, "username": {"type": "text", "index": 16, "name": "username", "comment": null}, "source_relation": {"type": "text", "index": 17, "name": "source_relation", "comment": null}, "is_most_recent_record": {"type": "boolean", "index": 18, "name": "is_most_recent_record", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.instagram_business_source.stg_instagram_business__media_history"}, "model.instagram_business_source.stg_instagram_business__media_history_tmp": {"metadata": {"type": "BASE TABLE", "schema": "zz_dbt_catherine_fb_pages_stg_instagram_business", "name": "stg_instagram_business__media_history_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"_dbt_source_relation": {"type": "text", "index": 1, "name": "_dbt_source_relation", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.instagram_business_source.stg_instagram_business__media_history_tmp"}, "model.instagram_business_source.stg_instagram_business__media_insights": {"metadata": {"type": "BASE TABLE", "schema": "zz_dbt_catherine_fb_pages_stg_instagram_business", "name": "stg_instagram_business__media_insights", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"_fivetran_id": {"type": "text", "index": 1, "name": "_fivetran_id", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 2, "name": "_fivetran_synced", "comment": null}, "carousel_album_engagement": {"type": "integer", "index": 3, "name": "carousel_album_engagement", "comment": null}, "carousel_album_impressions": {"type": "integer", "index": 4, "name": "carousel_album_impressions", "comment": null}, "carousel_album_reach": {"type": "integer", "index": 5, "name": "carousel_album_reach", "comment": null}, "carousel_album_saved": {"type": "integer", "index": 6, "name": "carousel_album_saved", "comment": null}, "carousel_album_video_views": {"type": "integer", "index": 7, "name": "carousel_album_video_views", "comment": null}, "comment_count": {"type": "integer", "index": 8, "name": "comment_count", "comment": null}, "post_id": {"type": "integer", "index": 9, "name": "post_id", "comment": null}, "like_count": {"type": "integer", "index": 10, "name": "like_count", "comment": null}, "story_exits": {"type": "integer", "index": 11, "name": "story_exits", "comment": null}, "story_impressions": {"type": "integer", "index": 12, "name": "story_impressions", "comment": null}, "story_reach": {"type": "integer", "index": 13, "name": "story_reach", "comment": null}, "story_replies": {"type": "integer", "index": 14, "name": "story_replies", "comment": null}, "story_taps_back": {"type": "integer", "index": 15, "name": "story_taps_back", "comment": null}, "story_taps_forward": {"type": "integer", "index": 16, "name": "story_taps_forward", "comment": null}, "video_photo_engagement": {"type": "integer", "index": 17, "name": "video_photo_engagement", "comment": null}, "video_photo_impressions": {"type": "integer", "index": 18, "name": "video_photo_impressions", "comment": null}, "video_photo_reach": {"type": "integer", "index": 19, "name": "video_photo_reach", "comment": null}, "video_photo_saved": {"type": "integer", "index": 20, "name": "video_photo_saved", "comment": null}, "video_views": {"type": "integer", "index": 21, "name": "video_views", "comment": null}, "reel_comments": {"type": "integer", "index": 22, "name": "reel_comments", "comment": null}, "reel_likes": {"type": "integer", "index": 23, "name": "reel_likes", "comment": null}, "reel_plays": {"type": "integer", "index": 24, "name": "reel_plays", "comment": null}, "reel_reach": {"type": "integer", "index": 25, "name": "reel_reach", "comment": null}, "reel_shares": {"type": "integer", "index": 26, "name": "reel_shares", "comment": null}, "reel_total_interactions": {"type": "integer", "index": 27, "name": "reel_total_interactions", "comment": null}, "source_relation": {"type": "text", "index": 28, "name": "source_relation", "comment": null}, "is_most_recent_record": {"type": "boolean", "index": 29, "name": "is_most_recent_record", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.instagram_business_source.stg_instagram_business__media_insights"}, "model.instagram_business_source.stg_instagram_business__media_insights_tmp": {"metadata": {"type": "BASE TABLE", "schema": "zz_dbt_catherine_fb_pages_stg_instagram_business", "name": "stg_instagram_business__media_insights_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"_dbt_source_relation": {"type": "text", "index": 1, "name": "_dbt_source_relation", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.instagram_business_source.stg_instagram_business__media_insights_tmp"}, "model.instagram_business_source.stg_instagram_business__user_history": {"metadata": {"type": "BASE TABLE", "schema": "zz_dbt_catherine_fb_pages_stg_instagram_business", "name": "stg_instagram_business__user_history", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"_fivetran_id": {"type": "text", "index": 1, "name": "_fivetran_id", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 2, "name": "_fivetran_synced", "comment": null}, "followers_count": {"type": "integer", "index": 3, "name": "followers_count", "comment": null}, "follows_count": {"type": "integer", "index": 4, "name": "follows_count", "comment": null}, "user_id": {"type": "integer", "index": 5, "name": "user_id", "comment": null}, "ig_id": {"type": "integer", "index": 6, "name": "ig_id", "comment": null}, "media_count": {"type": "integer", "index": 7, "name": "media_count", "comment": null}, "account_name": {"type": "text", "index": 8, "name": "account_name", "comment": null}, "username": {"type": "text", "index": 9, "name": "username", "comment": null}, "website": {"type": "text", "index": 10, "name": "website", "comment": null}, "source_relation": {"type": "text", "index": 11, "name": "source_relation", "comment": null}, "is_most_recent_record": {"type": "boolean", "index": 12, "name": "is_most_recent_record", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.instagram_business_source.stg_instagram_business__user_history"}, "model.instagram_business_source.stg_instagram_business__user_history_tmp": {"metadata": {"type": "BASE TABLE", "schema": "zz_dbt_catherine_fb_pages_stg_instagram_business", "name": "stg_instagram_business__user_history_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"_dbt_source_relation": {"type": "text", "index": 1, "name": "_dbt_source_relation", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.instagram_business_source.stg_instagram_business__user_history_tmp"}, "model.linkedin_pages_source.stg_linkedin_pages__organization": {"metadata": {"type": "BASE TABLE", "schema": "zz_dbt_catherine_fb_pages_stg_linkedin_pages", "name": "stg_linkedin_pages__organization", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"organization_id": {"type": "integer", "index": 1, "name": "organization_id", "comment": null}, "organization_name": {"type": "text", "index": 2, "name": "organization_name", "comment": null}, "source_relation": {"type": "text", "index": 3, "name": "source_relation", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.linkedin_pages_source.stg_linkedin_pages__organization"}, "model.linkedin_pages_source.stg_linkedin_pages__organization_tmp": {"metadata": {"type": "BASE TABLE", "schema": "zz_dbt_catherine_fb_pages_stg_linkedin_pages", "name": "stg_linkedin_pages__organization_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"_dbt_source_relation": {"type": "text", "index": 1, "name": "_dbt_source_relation", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.linkedin_pages_source.stg_linkedin_pages__organization_tmp"}, "model.linkedin_pages_source.stg_linkedin_pages__organization_ugc_post": {"metadata": {"type": "BASE TABLE", "schema": "zz_dbt_catherine_fb_pages_stg_linkedin_pages", "name": "stg_linkedin_pages__organization_ugc_post", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"_fivetran_synced": {"type": "timestamp without time zone", "index": 1, "name": "_fivetran_synced", "comment": null}, "organization_id": {"type": "integer", "index": 2, "name": "organization_id", "comment": null}, "ugc_post_id": {"type": "text", "index": 3, "name": "ugc_post_id", "comment": null}, "source_relation": {"type": "text", "index": 4, "name": "source_relation", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.linkedin_pages_source.stg_linkedin_pages__organization_ugc_post"}, "model.linkedin_pages_source.stg_linkedin_pages__organization_ugc_post_tmp": {"metadata": {"type": "BASE TABLE", "schema": "zz_dbt_catherine_fb_pages_stg_linkedin_pages", "name": "stg_linkedin_pages__organization_ugc_post_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"_dbt_source_relation": {"type": "text", "index": 1, "name": "_dbt_source_relation", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.linkedin_pages_source.stg_linkedin_pages__organization_ugc_post_tmp"}, "model.linkedin_pages_source.stg_linkedin_pages__post_content": {"metadata": {"type": "BASE TABLE", "schema": "zz_dbt_catherine_fb_pages_stg_linkedin_pages", "name": "stg_linkedin_pages__post_content", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"_fivetran_id": {"type": "text", "index": 1, "name": "_fivetran_id", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 2, "name": "_fivetran_synced", "comment": null}, "ugc_post_urn": {"type": "text", "index": 3, "name": "ugc_post_urn", "comment": null}, "article_description": {"type": "text", "index": 4, "name": "article_description", "comment": null}, "article_source": {"type": "text", "index": 5, "name": "article_source", "comment": null}, "article_thumbnail": {"type": "text", "index": 6, "name": "article_thumbnail", "comment": null}, "article_thumbnail_alt_text": {"type": "text", "index": 7, "name": "article_thumbnail_alt_text", "comment": null}, "article_title": {"type": "text", "index": 8, "name": "article_title", "comment": null}, "carousel_id": {"type": "text", "index": 9, "name": "carousel_id", "comment": null}, "media_alt_text": {"type": "text", "index": 10, "name": "media_alt_text", "comment": null}, "media_id": {"type": "text", "index": 11, "name": "media_id", "comment": null}, "media_title": {"type": "text", "index": 12, "name": "media_title", "comment": null}, "multi_image_alt_text": {"type": "text", "index": 13, "name": "multi_image_alt_text", "comment": null}, "poll_question": {"type": "text", "index": 14, "name": "poll_question", "comment": null}, "poll_settings_duration": {"type": "text", "index": 15, "name": "poll_settings_duration", "comment": null}, "poll_settings_is_voter_visible_to_author": {"type": "boolean", "index": 16, "name": "poll_settings_is_voter_visible_to_author", "comment": null}, "poll_settings_vote_selection_type": {"type": "text", "index": 17, "name": "poll_settings_vote_selection_type", "comment": null}, "poll_unique_voters_count": {"type": "integer", "index": 18, "name": "poll_unique_voters_count", "comment": null}, "post_type": {"type": "text", "index": 19, "name": "post_type", "comment": null}, "source_relation": {"type": "text", "index": 20, "name": "source_relation", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.linkedin_pages_source.stg_linkedin_pages__post_content"}, "model.linkedin_pages_source.stg_linkedin_pages__post_content_tmp": {"metadata": {"type": "BASE TABLE", "schema": "zz_dbt_catherine_fb_pages_stg_linkedin_pages", "name": "stg_linkedin_pages__post_content_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"_dbt_source_relation": {"type": "text", "index": 1, "name": "_dbt_source_relation", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.linkedin_pages_source.stg_linkedin_pages__post_content_tmp"}, "model.linkedin_pages_source.stg_linkedin_pages__share_statistic": {"metadata": {"type": "BASE TABLE", "schema": "zz_dbt_catherine_fb_pages_stg_linkedin_pages", "name": "stg_linkedin_pages__share_statistic", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"share_statistic_id": {"type": "text", "index": 1, "name": "share_statistic_id", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 2, "name": "_fivetran_synced", "comment": null}, "organization_entity_urn": {"type": "text", "index": 3, "name": "organization_entity_urn", "comment": null}, "share_entity_urn": {"type": "text", "index": 4, "name": "share_entity_urn", "comment": null}, "click_count": {"type": "integer", "index": 5, "name": "click_count", "comment": null}, "comment_count": {"type": "integer", "index": 6, "name": "comment_count", "comment": null}, "engagement": {"type": "double precision", "index": 7, "name": "engagement", "comment": null}, "impression_count": {"type": "integer", "index": 8, "name": "impression_count", "comment": null}, "like_count": {"type": "integer", "index": 9, "name": "like_count", "comment": null}, "share_count": {"type": "integer", "index": 10, "name": "share_count", "comment": null}, "source_relation": {"type": "text", "index": 11, "name": "source_relation", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.linkedin_pages_source.stg_linkedin_pages__share_statistic"}, "model.linkedin_pages_source.stg_linkedin_pages__share_statistic_tmp": {"metadata": {"type": "BASE TABLE", "schema": "zz_dbt_catherine_fb_pages_stg_linkedin_pages", "name": "stg_linkedin_pages__share_statistic_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"_dbt_source_relation": {"type": "text", "index": 1, "name": "_dbt_source_relation", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.linkedin_pages_source.stg_linkedin_pages__share_statistic_tmp"}, "model.linkedin_pages_source.stg_linkedin_pages__ugc_post_history": {"metadata": {"type": "BASE TABLE", "schema": "zz_dbt_catherine_fb_pages_stg_linkedin_pages", "name": "stg_linkedin_pages__ugc_post_history", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"_fivetran_synced": {"type": "timestamp without time zone", "index": 1, "name": "_fivetran_synced", "comment": null}, "post_author": {"type": "text", "index": 2, "name": "post_author", "comment": null}, "commentary": {"type": "text", "index": 3, "name": "commentary", "comment": null}, "created_actor": {"type": "text", "index": 4, "name": "created_actor", "comment": null}, "created_timestamp": {"type": "timestamp without time zone", "index": 5, "name": "created_timestamp", "comment": null}, "first_published_timestamp": {"type": "timestamp without time zone", "index": 6, "name": "first_published_timestamp", "comment": null}, "ugc_post_id": {"type": "text", "index": 7, "name": "ugc_post_id", "comment": null}, "ugc_post_urn": {"type": "text", "index": 8, "name": "ugc_post_urn", "comment": null}, "post_url": {"type": "text", "index": 9, "name": "post_url", "comment": null}, "last_modified_actor": {"type": "text", "index": 10, "name": "last_modified_actor", "comment": null}, "last_modified_timestamp": {"type": "timestamp without time zone", "index": 11, "name": "last_modified_timestamp", "comment": null}, "lifecycle_state": {"type": "text", "index": 12, "name": "lifecycle_state", "comment": null}, "visibility": {"type": "text", "index": 13, "name": "visibility", "comment": null}, "source_relation": {"type": "text", "index": 14, "name": "source_relation", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.linkedin_pages_source.stg_linkedin_pages__ugc_post_history"}, "model.linkedin_pages_source.stg_linkedin_pages__ugc_post_history_tmp": {"metadata": {"type": "BASE TABLE", "schema": "zz_dbt_catherine_fb_pages_stg_linkedin_pages", "name": "stg_linkedin_pages__ugc_post_history_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"_dbt_source_relation": {"type": "text", "index": 1, "name": "_dbt_source_relation", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.linkedin_pages_source.stg_linkedin_pages__ugc_post_history_tmp"}, "model.linkedin_pages_source.stg_linkedin_pages__ugc_post_share_statistic": {"metadata": {"type": "BASE TABLE", "schema": "zz_dbt_catherine_fb_pages_stg_linkedin_pages", "name": "stg_linkedin_pages__ugc_post_share_statistic", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"_fivetran_synced": {"type": "timestamp without time zone", "index": 1, "name": "_fivetran_synced", "comment": null}, "share_statistic_id": {"type": "text", "index": 2, "name": "share_statistic_id", "comment": null}, "ugc_post_id": {"type": "text", "index": 3, "name": "ugc_post_id", "comment": null}, "source_relation": {"type": "text", "index": 4, "name": "source_relation", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.linkedin_pages_source.stg_linkedin_pages__ugc_post_share_statistic"}, "model.linkedin_pages_source.stg_linkedin_pages__ugc_post_share_statistic_tmp": {"metadata": {"type": "BASE TABLE", "schema": "zz_dbt_catherine_fb_pages_stg_linkedin_pages", "name": "stg_linkedin_pages__ugc_post_share_statistic_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"_dbt_source_relation": {"type": "text", "index": 1, "name": "_dbt_source_relation", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.linkedin_pages_source.stg_linkedin_pages__ugc_post_share_statistic_tmp"}, "model.twitter_organic_source.stg_twitter_organic__account_history": {"metadata": {"type": "BASE TABLE", "schema": "zz_dbt_catherine_fb_pages_stg_twitter_organic", "name": "stg_twitter_organic__account_history", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"_fivetran_synced": {"type": "timestamp without time zone", "index": 1, "name": "_fivetran_synced", "comment": null}, "business_id": {"type": "integer", "index": 2, "name": "business_id", "comment": null}, "business_name": {"type": "integer", "index": 3, "name": "business_name", "comment": null}, "created_timestamp": {"type": "timestamp without time zone", "index": 4, "name": "created_timestamp", "comment": null}, "is_deleted": {"type": "boolean", "index": 5, "name": "is_deleted", "comment": null}, "account_id": {"type": "text", "index": 6, "name": "account_id", "comment": null}, "industry_type": {"type": "integer", "index": 7, "name": "industry_type", "comment": null}, "account_name": {"type": "text", "index": 8, "name": "account_name", "comment": null}, "timezone": {"type": "text", "index": 9, "name": "timezone", "comment": null}, "updated_timestamp": {"type": "timestamp without time zone", "index": 10, "name": "updated_timestamp", "comment": null}, "source_relation": {"type": "text", "index": 11, "name": "source_relation", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.twitter_organic_source.stg_twitter_organic__account_history"}, "model.twitter_organic_source.stg_twitter_organic__account_history_tmp": {"metadata": {"type": "BASE TABLE", "schema": "zz_dbt_catherine_fb_pages_stg_twitter_organic", "name": "stg_twitter_organic__account_history_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "text", "index": 1, "name": "id", "comment": null}, "updated_at": {"type": "timestamp without time zone", "index": 2, "name": "updated_at", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "approval_status": {"type": "text", "index": 4, "name": "approval_status", "comment": null}, "business_id": {"type": "integer", "index": 5, "name": "business_id", "comment": null}, "business_name": {"type": "integer", "index": 6, "name": "business_name", "comment": null}, "created_at": {"type": "timestamp without time zone", "index": 7, "name": "created_at", "comment": null}, "deleted": {"type": "boolean", "index": 8, "name": "deleted", "comment": null}, "industry_type": {"type": "integer", "index": 9, "name": "industry_type", "comment": null}, "name": {"type": "text", "index": 10, "name": "name", "comment": null}, "salt": {"type": "integer", "index": 11, "name": "salt", "comment": null}, "timezone": {"type": "text", "index": 12, "name": "timezone", "comment": null}, "timezone_switch_at": {"type": "timestamp without time zone", "index": 13, "name": "timezone_switch_at", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.twitter_organic_source.stg_twitter_organic__account_history_tmp"}, "model.twitter_organic_source.stg_twitter_organic__organic_tweet_report": {"metadata": {"type": "BASE TABLE", "schema": "zz_dbt_catherine_fb_pages_stg_twitter_organic", "name": "stg_twitter_organic__organic_tweet_report", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"_fivetran_synced": {"type": "timestamp without time zone", "index": 1, "name": "_fivetran_synced", "comment": null}, "account_id": {"type": "text", "index": 2, "name": "account_id", "comment": null}, "app_clicks": {"type": "integer", "index": 3, "name": "app_clicks", "comment": null}, "card_engagements": {"type": "integer", "index": 4, "name": "card_engagements", "comment": null}, "carousel_swipes": {"type": "integer", "index": 5, "name": "carousel_swipes", "comment": null}, "clicks": {"type": "integer", "index": 6, "name": "clicks", "comment": null}, "date_day": {"type": "timestamp without time zone", "index": 7, "name": "date_day", "comment": null}, "engagements": {"type": "integer", "index": 8, "name": "engagements", "comment": null}, "follows": {"type": "integer", "index": 9, "name": "follows", "comment": null}, "impressions": {"type": "integer", "index": 10, "name": "impressions", "comment": null}, "likes": {"type": "integer", "index": 11, "name": "likes", "comment": null}, "organic_tweet_id": {"type": "bigint", "index": 12, "name": "organic_tweet_id", "comment": null}, "placement": {"type": "text", "index": 13, "name": "placement", "comment": null}, "poll_card_vote": {"type": "integer", "index": 14, "name": "poll_card_vote", "comment": null}, "qualified_impressions": {"type": "integer", "index": 15, "name": "qualified_impressions", "comment": null}, "replies": {"type": "integer", "index": 16, "name": "replies", "comment": null}, "retweets": {"type": "integer", "index": 17, "name": "retweets", "comment": null}, "tweets_send": {"type": "integer", "index": 18, "name": "tweets_send", "comment": null}, "unfollows": {"type": "integer", "index": 19, "name": "unfollows", "comment": null}, "url_clicks": {"type": "integer", "index": 20, "name": "url_clicks", "comment": null}, "video_15_s_views": {"type": "integer", "index": 21, "name": "video_15_s_views", "comment": null}, "video_3_s_100_pct_views": {"type": "integer", "index": 22, "name": "video_3_s_100_pct_views", "comment": null}, "video_6_s_views": {"type": "integer", "index": 23, "name": "video_6_s_views", "comment": null}, "video_content_starts": {"type": "integer", "index": 24, "name": "video_content_starts", "comment": null}, "video_cta_clicks": {"type": "integer", "index": 25, "name": "video_cta_clicks", "comment": null}, "video_total_views": {"type": "integer", "index": 26, "name": "video_total_views", "comment": null}, "video_views_100": {"type": "integer", "index": 27, "name": "video_views_100", "comment": null}, "video_views_25": {"type": "integer", "index": 28, "name": "video_views_25", "comment": null}, "video_views_50": {"type": "integer", "index": 29, "name": "video_views_50", "comment": null}, "video_views_75": {"type": "integer", "index": 30, "name": "video_views_75", "comment": null}, "source_relation": {"type": "text", "index": 31, "name": "source_relation", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.twitter_organic_source.stg_twitter_organic__organic_tweet_report"}, "model.twitter_organic_source.stg_twitter_organic__organic_tweet_report_tmp": {"metadata": {"type": "BASE TABLE", "schema": "zz_dbt_catherine_fb_pages_stg_twitter_organic", "name": "stg_twitter_organic__organic_tweet_report_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"account_id": {"type": "text", "index": 1, "name": "account_id", "comment": null}, "date": {"type": "timestamp without time zone", "index": 2, "name": "date", "comment": null}, "organic_tweet_id": {"type": "bigint", "index": 3, "name": "organic_tweet_id", "comment": null}, "placement": {"type": "text", "index": 4, "name": "placement", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 5, "name": "_fivetran_synced", "comment": null}, "app_clicks": {"type": "integer", "index": 6, "name": "app_clicks", "comment": null}, "card_engagements": {"type": "integer", "index": 7, "name": "card_engagements", "comment": null}, "carousel_swipes": {"type": "integer", "index": 8, "name": "carousel_swipes", "comment": null}, "clicks": {"type": "integer", "index": 9, "name": "clicks", "comment": null}, "engagements": {"type": "integer", "index": 10, "name": "engagements", "comment": null}, "follows": {"type": "integer", "index": 11, "name": "follows", "comment": null}, "impressions": {"type": "integer", "index": 12, "name": "impressions", "comment": null}, "likes": {"type": "integer", "index": 13, "name": "likes", "comment": null}, "poll_card_vote": {"type": "integer", "index": 14, "name": "poll_card_vote", "comment": null}, "qualified_impressions": {"type": "integer", "index": 15, "name": "qualified_impressions", "comment": null}, "replies": {"type": "integer", "index": 16, "name": "replies", "comment": null}, "retweets": {"type": "integer", "index": 17, "name": "retweets", "comment": null}, "tweets_send": {"type": "integer", "index": 18, "name": "tweets_send", "comment": null}, "unfollows": {"type": "integer", "index": 19, "name": "unfollows", "comment": null}, "url_clicks": {"type": "integer", "index": 20, "name": "url_clicks", "comment": null}, "video_15_s_views": {"type": "integer", "index": 21, "name": "video_15_s_views", "comment": null}, "video_3_s_100_pct_views": {"type": "integer", "index": 22, "name": "video_3_s_100_pct_views", "comment": null}, "video_6_s_views": {"type": "integer", "index": 23, "name": "video_6_s_views", "comment": null}, "video_content_starts": {"type": "integer", "index": 24, "name": "video_content_starts", "comment": null}, "video_cta_clicks": {"type": "integer", "index": 25, "name": "video_cta_clicks", "comment": null}, "video_total_views": {"type": "integer", "index": 26, "name": "video_total_views", "comment": null}, "video_views_100": {"type": "integer", "index": 27, "name": "video_views_100", "comment": null}, "video_views_25": {"type": "integer", "index": 28, "name": "video_views_25", "comment": null}, "video_views_50": {"type": "integer", "index": 29, "name": "video_views_50", "comment": null}, "video_views_75": {"type": "integer", "index": 30, "name": "video_views_75", "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.twitter_organic_source.stg_twitter_organic__organic_tweet_report_tmp"}, "model.twitter_organic_source.stg_twitter_organic__tweet": {"metadata": {"type": "BASE TABLE", "schema": "zz_dbt_catherine_fb_pages_stg_twitter_organic", "name": "stg_twitter_organic__tweet", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"_fivetran_synced": {"type": "timestamp without time zone", "index": 1, "name": "_fivetran_synced", "comment": null}, "account_id": {"type": "text", "index": 2, "name": "account_id", "comment": null}, "card_uri": {"type": "text", "index": 3, "name": "card_uri", "comment": null}, "coordinates_coordinates": {"type": "integer", "index": 4, "name": "coordinates_coordinates", "comment": null}, "coordinates_type": {"type": "integer", "index": 5, "name": "coordinates_type", "comment": null}, "created_timestamp": {"type": "timestamp without time zone", "index": 6, "name": "created_timestamp", "comment": null}, "favorite_count": {"type": "integer", "index": 7, "name": "favorite_count", "comment": null}, "favorited": {"type": "boolean", "index": 8, "name": "favorited", "comment": null}, "followers": {"type": "integer", "index": 9, "name": "followers", "comment": null}, "tweet_text": {"type": "text", "index": 10, "name": "tweet_text", "comment": null}, "geo_coordinates": {"type": "integer", "index": 11, "name": "geo_coordinates", "comment": null}, "geo_type": {"type": "integer", "index": 12, "name": "geo_type", "comment": null}, "organic_tweet_id": {"type": "bigint", "index": 13, "name": "organic_tweet_id", "comment": null}, "post_url": {"type": "text", "index": 14, "name": "post_url", "comment": null}, "in_reply_to_screen_name": {"type": "text", "index": 15, "name": "in_reply_to_screen_name", "comment": null}, "in_reply_to_status_id": {"type": "integer", "index": 16, "name": "in_reply_to_status_id", "comment": null}, "in_reply_to_user_id": {"type": "integer", "index": 17, "name": "in_reply_to_user_id", "comment": null}, "language": {"type": "text", "index": 18, "name": "language", "comment": null}, "media_key": {"type": "integer", "index": 19, "name": "media_key", "comment": null}, "retweet_count": {"type": "integer", "index": 20, "name": "retweet_count", "comment": null}, "retweeted": {"type": "boolean", "index": 21, "name": "retweeted", "comment": null}, "source": {"type": "text", "index": 22, "name": "source", "comment": null}, "truncated": {"type": "boolean", "index": 23, "name": "truncated", "comment": null}, "tweet_type": {"type": "text", "index": 24, "name": "tweet_type", "comment": null}, "user_id": {"type": "bigint", "index": 25, "name": "user_id", "comment": null}, "source_relation": {"type": "text", "index": 26, "name": "source_relation", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.twitter_organic_source.stg_twitter_organic__tweet"}, "model.twitter_organic_source.stg_twitter_organic__tweet_tmp": {"metadata": {"type": "BASE TABLE", "schema": "zz_dbt_catherine_fb_pages_stg_twitter_organic", "name": "stg_twitter_organic__tweet_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "bigint", "index": 1, "name": "id", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 2, "name": "_fivetran_synced", "comment": null}, "account_id": {"type": "text", "index": 3, "name": "account_id", "comment": null}, "card_uri": {"type": "text", "index": 4, "name": "card_uri", "comment": null}, "coordinates_coordinates": {"type": "integer", "index": 5, "name": "coordinates_coordinates", "comment": null}, "coordinates_type": {"type": "integer", "index": 6, "name": "coordinates_type", "comment": null}, "created_at": {"type": "timestamp without time zone", "index": 7, "name": "created_at", "comment": null}, "favorite_count": {"type": "integer", "index": 8, "name": "favorite_count", "comment": null}, "favorited": {"type": "boolean", "index": 9, "name": "favorited", "comment": null}, "followers": {"type": "integer", "index": 10, "name": "followers", "comment": null}, "geo_coordinates": {"type": "integer", "index": 11, "name": "geo_coordinates", "comment": null}, "geo_type": {"type": "integer", "index": 12, "name": "geo_type", "comment": null}, "in_reply_to_screen_name": {"type": "text", "index": 13, "name": "in_reply_to_screen_name", "comment": null}, "in_reply_to_status_id": {"type": "integer", "index": 14, "name": "in_reply_to_status_id", "comment": null}, "in_reply_to_user_id": {"type": "integer", "index": 15, "name": "in_reply_to_user_id", "comment": null}, "lang": {"type": "text", "index": 16, "name": "lang", "comment": null}, "media_key": {"type": "integer", "index": 17, "name": "media_key", "comment": null}, "retweet_count": {"type": "integer", "index": 18, "name": "retweet_count", "comment": null}, "retweeted": {"type": "boolean", "index": 19, "name": "retweeted", "comment": null}, "truncated": {"type": "boolean", "index": 20, "name": "truncated", "comment": null}, "tweet_type": {"type": "text", "index": 21, "name": "tweet_type", "comment": null}, "user_id": {"type": "integer", "index": 22, "name": "user_id", "comment": null}, "source": {"type": "text", "index": 23, "name": "source", "comment": null}, "full_test": {"type": "text", "index": 24, "name": "full_test", "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.twitter_organic_source.stg_twitter_organic__tweet_tmp"}, "model.twitter_organic_source.stg_twitter_organic__twitter_user_history": {"metadata": {"type": "BASE TABLE", "schema": "zz_dbt_catherine_fb_pages_stg_twitter_organic", "name": "stg_twitter_organic__twitter_user_history", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"_fivetran_synced": {"type": "timestamp without time zone", "index": 1, "name": "_fivetran_synced", "comment": null}, "created_timestamp": {"type": "timestamp without time zone", "index": 2, "name": "created_timestamp", "comment": null}, "user_description": {"type": "text", "index": 3, "name": "user_description", "comment": null}, "followers_count": {"type": "integer", "index": 4, "name": "followers_count", "comment": null}, "user_id": {"type": "bigint", "index": 5, "name": "user_id", "comment": null}, "user_location": {"type": "text", "index": 6, "name": "user_location", "comment": null}, "user_name": {"type": "text", "index": 7, "name": "user_name", "comment": null}, "user_screen_name": {"type": "text", "index": 8, "name": "user_screen_name", "comment": null}, "source_relation": {"type": "text", "index": 9, "name": "source_relation", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.twitter_organic_source.stg_twitter_organic__twitter_user_history"}, "model.twitter_organic_source.stg_twitter_organic__twitter_user_history_tmp": {"metadata": {"type": "BASE TABLE", "schema": "zz_dbt_catherine_fb_pages_stg_twitter_organic", "name": "stg_twitter_organic__twitter_user_history_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "integer", "index": 1, "name": "id", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 2, "name": "_fivetran_synced", "comment": null}, "contributors_enabled": {"type": "boolean", "index": 3, "name": "contributors_enabled", "comment": null}, "created_at": {"type": "timestamp without time zone", "index": 4, "name": "created_at", "comment": null}, "default_profile": {"type": "boolean", "index": 5, "name": "default_profile", "comment": null}, "default_profile_image": {"type": "boolean", "index": 6, "name": "default_profile_image", "comment": null}, "description": {"type": "text", "index": 7, "name": "description", "comment": null}, "favourites_count": {"type": "integer", "index": 8, "name": "favourites_count", "comment": null}, "followers_count": {"type": "integer", "index": 9, "name": "followers_count", "comment": null}, "friends_count": {"type": "integer", "index": 10, "name": "friends_count", "comment": null}, "geo_enabled": {"type": "boolean", "index": 11, "name": "geo_enabled", "comment": null}, "is_translation_enabled": {"type": "boolean", "index": 12, "name": "is_translation_enabled", "comment": null}, "is_translator": {"type": "boolean", "index": 13, "name": "is_translator", "comment": null}, "lang": {"type": "integer", "index": 14, "name": "lang", "comment": null}, "listed_count": {"type": "integer", "index": 15, "name": "listed_count", "comment": null}, "location": {"type": "text", "index": 16, "name": "location", "comment": null}, "name": {"type": "text", "index": 17, "name": "name", "comment": null}, "profile_background_image_url": {"type": "text", "index": 18, "name": "profile_background_image_url", "comment": null}, "profile_background_image_url_https": {"type": "text", "index": 19, "name": "profile_background_image_url_https", "comment": null}, "profile_background_tile": {"type": "boolean", "index": 20, "name": "profile_background_tile", "comment": null}, "profile_banner_url": {"type": "text", "index": 21, "name": "profile_banner_url", "comment": null}, "profile_image_url": {"type": "text", "index": 22, "name": "profile_image_url", "comment": null}, "profile_image_url_https": {"type": "text", "index": 23, "name": "profile_image_url_https", "comment": null}, "profile_use_background_image": {"type": "boolean", "index": 24, "name": "profile_use_background_image", "comment": null}, "protected_user": {"type": "boolean", "index": 25, "name": "protected_user", "comment": null}, "screen_name": {"type": "text", "index": 26, "name": "screen_name", "comment": null}, "statuses_count": {"type": "integer", "index": 27, "name": "statuses_count", "comment": null}, "time_zone": {"type": "integer", "index": 28, "name": "time_zone", "comment": null}, "url": {"type": "text", "index": 29, "name": "url", "comment": null}, "utc_offset": {"type": "integer", "index": 30, "name": "utc_offset", "comment": null}, "verified": {"type": "boolean", "index": 31, "name": "verified", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.twitter_organic_source.stg_twitter_organic__twitter_user_history_tmp"}, "model.twitter_organic.int_twitter_organic__latest_account": {"metadata": {"type": "BASE TABLE", "schema": "zz_dbt_catherine_fb_pages_twitter_organic", "name": "int_twitter_organic__latest_account", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"_fivetran_synced": {"type": "timestamp without time zone", "index": 1, "name": "_fivetran_synced", "comment": null}, "business_id": {"type": "integer", "index": 2, "name": "business_id", "comment": null}, "business_name": {"type": "integer", "index": 3, "name": "business_name", "comment": null}, "created_timestamp": {"type": "timestamp without time zone", "index": 4, "name": "created_timestamp", "comment": null}, "is_deleted": {"type": "boolean", "index": 5, "name": "is_deleted", "comment": null}, "account_id": {"type": "text", "index": 6, "name": "account_id", "comment": null}, "industry_type": {"type": "integer", "index": 7, "name": "industry_type", "comment": null}, "account_name": {"type": "text", "index": 8, "name": "account_name", "comment": null}, "timezone": {"type": "text", "index": 9, "name": "timezone", "comment": null}, "updated_timestamp": {"type": "timestamp without time zone", "index": 10, "name": "updated_timestamp", "comment": null}, "source_relation": {"type": "text", "index": 11, "name": "source_relation", "comment": null}, "is_most_recent_record": {"type": "boolean", "index": 12, "name": "is_most_recent_record", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.twitter_organic.int_twitter_organic__latest_account"}, "model.twitter_organic.int_twitter_organic__latest_user": {"metadata": {"type": "BASE TABLE", "schema": "zz_dbt_catherine_fb_pages_twitter_organic", "name": "int_twitter_organic__latest_user", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"_fivetran_synced": {"type": "timestamp without time zone", "index": 1, "name": "_fivetran_synced", "comment": null}, "created_timestamp": {"type": "timestamp without time zone", "index": 2, "name": "created_timestamp", "comment": null}, "user_description": {"type": "text", "index": 3, "name": "user_description", "comment": null}, "followers_count": {"type": "integer", "index": 4, "name": "followers_count", "comment": null}, "user_id": {"type": "bigint", "index": 5, "name": "user_id", "comment": null}, "user_location": {"type": "text", "index": 6, "name": "user_location", "comment": null}, "user_name": {"type": "text", "index": 7, "name": "user_name", "comment": null}, "user_screen_name": {"type": "text", "index": 8, "name": "user_screen_name", "comment": null}, "source_relation": {"type": "text", "index": 9, "name": "source_relation", "comment": null}, "is_most_recent_record": {"type": "boolean", "index": 10, "name": "is_most_recent_record", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.twitter_organic.int_twitter_organic__latest_user"}, "model.twitter_organic.twitter_organic__tweets": {"metadata": {"type": "BASE TABLE", "schema": "zz_dbt_catherine_fb_pages_twitter_organic", "name": "twitter_organic__tweets", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"date_day": {"type": "timestamp without time zone", "index": 1, "name": "date_day", "comment": null}, "organic_tweet_id": {"type": "bigint", "index": 2, "name": "organic_tweet_id", "comment": null}, "created_timestamp": {"type": "timestamp without time zone", "index": 3, "name": "created_timestamp", "comment": null}, "tweet_text": {"type": "text", "index": 4, "name": "tweet_text", "comment": null}, "account_id": {"type": "text", "index": 5, "name": "account_id", "comment": null}, "post_url": {"type": "text", "index": 6, "name": "post_url", "comment": null}, "account_name": {"type": "text", "index": 7, "name": "account_name", "comment": null}, "user_id": {"type": "bigint", "index": 8, "name": "user_id", "comment": null}, "user_name": {"type": "text", "index": 9, "name": "user_name", "comment": null}, "source_relation": {"type": "text", "index": 10, "name": "source_relation", "comment": null}, "app_clicks": {"type": "bigint", "index": 11, "name": "app_clicks", "comment": null}, "card_engagements": {"type": "bigint", "index": 12, "name": "card_engagements", "comment": null}, "carousel_swipes": {"type": "bigint", "index": 13, "name": "carousel_swipes", "comment": null}, "clicks": {"type": "bigint", "index": 14, "name": "clicks", "comment": null}, "engagements": {"type": "bigint", "index": 15, "name": "engagements", "comment": null}, "follows": {"type": "bigint", "index": 16, "name": "follows", "comment": null}, "impressions": {"type": "bigint", "index": 17, "name": "impressions", "comment": null}, "likes": {"type": "bigint", "index": 18, "name": "likes", "comment": null}, "poll_card_vote": {"type": "bigint", "index": 19, "name": "poll_card_vote", "comment": null}, "qualified_impressions": {"type": "bigint", "index": 20, "name": "qualified_impressions", "comment": null}, "replies": {"type": "bigint", "index": 21, "name": "replies", "comment": null}, "retweets": {"type": "bigint", "index": 22, "name": "retweets", "comment": null}, "unfollows": {"type": "bigint", "index": 23, "name": "unfollows", "comment": null}, "url_clicks": {"type": "bigint", "index": 24, "name": "url_clicks", "comment": null}, "video_15_s_views": {"type": "bigint", "index": 25, "name": "video_15_s_views", "comment": null}, "video_3_s_100_pct_views": {"type": "bigint", "index": 26, "name": "video_3_s_100_pct_views", "comment": null}, "video_6_s_views": {"type": "bigint", "index": 27, "name": "video_6_s_views", "comment": null}, "video_content_starts": {"type": "bigint", "index": 28, "name": "video_content_starts", "comment": null}, "video_cta_clicks": {"type": "bigint", "index": 29, "name": "video_cta_clicks", "comment": null}, "video_total_views": {"type": "bigint", "index": 30, "name": "video_total_views", "comment": null}, "video_views_100": {"type": "bigint", "index": 31, "name": "video_views_100", "comment": null}, "video_views_25": {"type": "bigint", "index": 32, "name": "video_views_25", "comment": null}, "video_views_50": {"type": "bigint", "index": 33, "name": "video_views_50", "comment": null}, "video_views_75": {"type": "bigint", "index": 34, "name": "video_views_75", "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.twitter_organic.twitter_organic__tweets"}}, "sources": {"source.twitter_organic_source.twitter_organic.account_history": {"metadata": {"type": "BASE TABLE", "schema": "zz_dbt_catherine_fb_pages", "name": "twitter_organic_account_history_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "text", "index": 1, "name": "id", "comment": null}, "updated_at": {"type": "timestamp without time zone", "index": 2, "name": "updated_at", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "approval_status": {"type": "text", "index": 4, "name": "approval_status", "comment": null}, "business_id": {"type": "integer", "index": 5, "name": "business_id", "comment": null}, "business_name": {"type": "integer", "index": 6, "name": "business_name", "comment": null}, "created_at": {"type": "timestamp without time zone", "index": 7, "name": "created_at", "comment": null}, "deleted": {"type": "boolean", "index": 8, "name": "deleted", "comment": null}, "industry_type": {"type": "integer", "index": 9, "name": "industry_type", "comment": null}, "name": {"type": "text", "index": 10, "name": "name", "comment": null}, "salt": {"type": "integer", "index": 11, "name": "salt", "comment": null}, "timezone": {"type": "text", "index": 12, "name": "timezone", "comment": null}, "timezone_switch_at": {"type": "timestamp without time zone", "index": 13, "name": "timezone_switch_at", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.twitter_organic_source.twitter_organic.account_history"}, "source.twitter_organic_source.twitter_organic.organic_tweet_report": {"metadata": {"type": "BASE TABLE", "schema": "zz_dbt_catherine_fb_pages", "name": "twitter_organic_organic_tweet_report_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"account_id": {"type": "text", "index": 1, "name": "account_id", "comment": null}, "date": {"type": "timestamp without time zone", "index": 2, "name": "date", "comment": null}, "organic_tweet_id": {"type": "bigint", "index": 3, "name": "organic_tweet_id", "comment": null}, "placement": {"type": "text", "index": 4, "name": "placement", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 5, "name": "_fivetran_synced", "comment": null}, "app_clicks": {"type": "integer", "index": 6, "name": "app_clicks", "comment": null}, "card_engagements": {"type": "integer", "index": 7, "name": "card_engagements", "comment": null}, "carousel_swipes": {"type": "integer", "index": 8, "name": "carousel_swipes", "comment": null}, "clicks": {"type": "integer", "index": 9, "name": "clicks", "comment": null}, "engagements": {"type": "integer", "index": 10, "name": "engagements", "comment": null}, "follows": {"type": "integer", "index": 11, "name": "follows", "comment": null}, "impressions": {"type": "integer", "index": 12, "name": "impressions", "comment": null}, "likes": {"type": "integer", "index": 13, "name": "likes", "comment": null}, "poll_card_vote": {"type": "integer", "index": 14, "name": "poll_card_vote", "comment": null}, "qualified_impressions": {"type": "integer", "index": 15, "name": "qualified_impressions", "comment": null}, "replies": {"type": "integer", "index": 16, "name": "replies", "comment": null}, "retweets": {"type": "integer", "index": 17, "name": "retweets", "comment": null}, "tweets_send": {"type": "integer", "index": 18, "name": "tweets_send", "comment": null}, "unfollows": {"type": "integer", "index": 19, "name": "unfollows", "comment": null}, "url_clicks": {"type": "integer", "index": 20, "name": "url_clicks", "comment": null}, "video_15_s_views": {"type": "integer", "index": 21, "name": "video_15_s_views", "comment": null}, "video_3_s_100_pct_views": {"type": "integer", "index": 22, "name": "video_3_s_100_pct_views", "comment": null}, "video_6_s_views": {"type": "integer", "index": 23, "name": "video_6_s_views", "comment": null}, "video_content_starts": {"type": "integer", "index": 24, "name": "video_content_starts", "comment": null}, "video_cta_clicks": {"type": "integer", "index": 25, "name": "video_cta_clicks", "comment": null}, "video_total_views": {"type": "integer", "index": 26, "name": "video_total_views", "comment": null}, "video_views_100": {"type": "integer", "index": 27, "name": "video_views_100", "comment": null}, "video_views_25": {"type": "integer", "index": 28, "name": "video_views_25", "comment": null}, "video_views_50": {"type": "integer", "index": 29, "name": "video_views_50", "comment": null}, "video_views_75": {"type": "integer", "index": 30, "name": "video_views_75", "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.twitter_organic_source.twitter_organic.organic_tweet_report"}, "source.twitter_organic_source.twitter_organic.tweet": {"metadata": {"type": "BASE TABLE", "schema": "zz_dbt_catherine_fb_pages", "name": "twitter_organic_tweet_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "bigint", "index": 1, "name": "id", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 2, "name": "_fivetran_synced", "comment": null}, "account_id": {"type": "text", "index": 3, "name": "account_id", "comment": null}, "card_uri": {"type": "text", "index": 4, "name": "card_uri", "comment": null}, "coordinates_coordinates": {"type": "integer", "index": 5, "name": "coordinates_coordinates", "comment": null}, "coordinates_type": {"type": "integer", "index": 6, "name": "coordinates_type", "comment": null}, "created_at": {"type": "timestamp without time zone", "index": 7, "name": "created_at", "comment": null}, "favorite_count": {"type": "integer", "index": 8, "name": "favorite_count", "comment": null}, "favorited": {"type": "boolean", "index": 9, "name": "favorited", "comment": null}, "followers": {"type": "integer", "index": 10, "name": "followers", "comment": null}, "geo_coordinates": {"type": "integer", "index": 11, "name": "geo_coordinates", "comment": null}, "geo_type": {"type": "integer", "index": 12, "name": "geo_type", "comment": null}, "in_reply_to_screen_name": {"type": "text", "index": 13, "name": "in_reply_to_screen_name", "comment": null}, "in_reply_to_status_id": {"type": "integer", "index": 14, "name": "in_reply_to_status_id", "comment": null}, "in_reply_to_user_id": {"type": "integer", "index": 15, "name": "in_reply_to_user_id", "comment": null}, "lang": {"type": "text", "index": 16, "name": "lang", "comment": null}, "media_key": {"type": "integer", "index": 17, "name": "media_key", "comment": null}, "retweet_count": {"type": "integer", "index": 18, "name": "retweet_count", "comment": null}, "retweeted": {"type": "boolean", "index": 19, "name": "retweeted", "comment": null}, "truncated": {"type": "boolean", "index": 20, "name": "truncated", "comment": null}, "tweet_type": {"type": "text", "index": 21, "name": "tweet_type", "comment": null}, "user_id": {"type": "integer", "index": 22, "name": "user_id", "comment": null}, "source": {"type": "text", "index": 23, "name": "source", "comment": null}, "full_test": {"type": "text", "index": 24, "name": "full_test", "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.twitter_organic_source.twitter_organic.tweet"}, "source.twitter_organic_source.twitter_organic.twitter_user_history": {"metadata": {"type": "BASE TABLE", "schema": "zz_dbt_catherine_fb_pages", "name": "twitter_organic_twitter_user_history_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "integer", "index": 1, "name": "id", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 2, "name": "_fivetran_synced", "comment": null}, "contributors_enabled": {"type": "boolean", "index": 3, "name": "contributors_enabled", "comment": null}, "created_at": {"type": "timestamp without time zone", "index": 4, "name": "created_at", "comment": null}, "default_profile": {"type": "boolean", "index": 5, "name": "default_profile", "comment": null}, "default_profile_image": {"type": "boolean", "index": 6, "name": "default_profile_image", "comment": null}, "description": {"type": "text", "index": 7, "name": "description", "comment": null}, "favourites_count": {"type": "integer", "index": 8, "name": "favourites_count", "comment": null}, "followers_count": {"type": "integer", "index": 9, "name": "followers_count", "comment": null}, "friends_count": {"type": "integer", "index": 10, "name": "friends_count", "comment": null}, "geo_enabled": {"type": "boolean", "index": 11, "name": "geo_enabled", "comment": null}, "is_translation_enabled": {"type": "boolean", "index": 12, "name": "is_translation_enabled", "comment": null}, "is_translator": {"type": "boolean", "index": 13, "name": "is_translator", "comment": null}, "lang": {"type": "integer", "index": 14, "name": "lang", "comment": null}, "listed_count": {"type": "integer", "index": 15, "name": "listed_count", "comment": null}, "location": {"type": "text", "index": 16, "name": "location", "comment": null}, "name": {"type": "text", "index": 17, "name": "name", "comment": null}, "profile_background_image_url": {"type": "text", "index": 18, "name": "profile_background_image_url", "comment": null}, "profile_background_image_url_https": {"type": "text", "index": 19, "name": "profile_background_image_url_https", "comment": null}, "profile_background_tile": {"type": "boolean", "index": 20, "name": "profile_background_tile", "comment": null}, "profile_banner_url": {"type": "text", "index": 21, "name": "profile_banner_url", "comment": null}, "profile_image_url": {"type": "text", "index": 22, "name": "profile_image_url", "comment": null}, "profile_image_url_https": {"type": "text", "index": 23, "name": "profile_image_url_https", "comment": null}, "profile_use_background_image": {"type": "boolean", "index": 24, "name": "profile_use_background_image", "comment": null}, "protected_user": {"type": "boolean", "index": 25, "name": "protected_user", "comment": null}, "screen_name": {"type": "text", "index": 26, "name": "screen_name", "comment": null}, "statuses_count": {"type": "integer", "index": 27, "name": "statuses_count", "comment": null}, "time_zone": {"type": "integer", "index": 28, "name": "time_zone", "comment": null}, "url": {"type": "text", "index": 29, "name": "url", "comment": null}, "utc_offset": {"type": "integer", "index": 30, "name": "utc_offset", "comment": null}, "verified": {"type": "boolean", "index": 31, "name": "verified", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.twitter_organic_source.twitter_organic.twitter_user_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.5", "generated_at": "2024-08-20T15:04:49.095403Z", "invocation_id": "4be557f1-9699-4946-affa-374127b8a827", "env": {}}, "nodes": {"seed.social_media_rollup_integration_tests.account_history": {"metadata": {"type": "BASE TABLE", "schema": "social_media_rollup_integration_tests_1", "name": "account_history", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "text", "index": 1, "name": "id", "comment": null}, "updated_at": {"type": "timestamp without time zone", "index": 2, "name": "updated_at", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "approval_status": {"type": "text", "index": 4, "name": "approval_status", "comment": null}, "business_id": {"type": "integer", "index": 5, "name": "business_id", "comment": null}, "business_name": {"type": "integer", "index": 6, "name": "business_name", "comment": null}, "created_at": {"type": "timestamp without time zone", "index": 7, "name": "created_at", "comment": null}, "deleted": {"type": "boolean", "index": 8, "name": "deleted", "comment": null}, "industry_type": {"type": "integer", "index": 9, "name": "industry_type", "comment": null}, "name": {"type": "text", "index": 10, "name": "name", "comment": null}, "salt": {"type": "integer", "index": 11, "name": "salt", "comment": null}, "timezone": {"type": "text", "index": 12, "name": "timezone", "comment": null}, "timezone_switch_at": {"type": "timestamp without time zone", "index": 13, "name": "timezone_switch_at", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.social_media_rollup_integration_tests.account_history"}, "seed.social_media_rollup_integration_tests.facebook_pages_daily_page_metrics_total_data": {"metadata": {"type": "BASE TABLE", "schema": "social_media_rollup_integration_tests_1", "name": "facebook_pages_daily_page_metrics_total_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"date": {"type": "timestamp without time zone", "index": 1, "name": "date", "comment": null}, "page_id": {"type": "bigint", "index": 2, "name": "page_id", "comment": null}, "_fivetran_synced": {"type": "text", "index": 3, "name": "_fivetran_synced", "comment": null}, "page_actions_post_reactions_anger_total": {"type": "integer", "index": 4, "name": "page_actions_post_reactions_anger_total", "comment": null}, "page_actions_post_reactions_haha_total": {"type": "integer", "index": 5, "name": "page_actions_post_reactions_haha_total", "comment": null}, "page_actions_post_reactions_like_total": {"type": "integer", "index": 6, "name": "page_actions_post_reactions_like_total", "comment": null}, "page_actions_post_reactions_love_total": {"type": "integer", "index": 7, "name": "page_actions_post_reactions_love_total", "comment": null}, "page_actions_post_reactions_sorry_total": {"type": "integer", "index": 8, "name": "page_actions_post_reactions_sorry_total", "comment": null}, "page_actions_post_reactions_total": {"type": "integer", "index": 9, "name": "page_actions_post_reactions_total", "comment": null}, "page_actions_post_reactions_wow_total": {"type": "integer", "index": 10, "name": "page_actions_post_reactions_wow_total", "comment": null}, "page_fan_adds": {"type": "integer", "index": 11, "name": "page_fan_adds", "comment": null}, "page_fan_removes": {"type": "integer", "index": 12, "name": "page_fan_removes", "comment": null}, "page_fans": {"type": "integer", "index": 13, "name": "page_fans", "comment": null}, "page_impressions": {"type": "integer", "index": 14, "name": "page_impressions", "comment": null}, "page_impressions_nonviral": {"type": "integer", "index": 15, "name": "page_impressions_nonviral", "comment": null}, "page_impressions_organic": {"type": "integer", "index": 16, "name": "page_impressions_organic", "comment": null}, "page_impressions_paid": {"type": "integer", "index": 17, "name": "page_impressions_paid", "comment": null}, "page_impressions_viral": {"type": "integer", "index": 18, "name": "page_impressions_viral", "comment": null}, "page_negative_feedback": {"type": "integer", "index": 19, "name": "page_negative_feedback", "comment": null}, "page_places_checkin_total": {"type": "integer", "index": 20, "name": "page_places_checkin_total", "comment": null}, "page_post_engagements": {"type": "integer", "index": 21, "name": "page_post_engagements", "comment": null}, "page_posts_impressions": {"type": "integer", "index": 22, "name": "page_posts_impressions", "comment": null}, "page_posts_impressions_nonviral": {"type": "integer", "index": 23, "name": "page_posts_impressions_nonviral", "comment": null}, "page_posts_impressions_organic": {"type": "integer", "index": 24, "name": "page_posts_impressions_organic", "comment": null}, "page_posts_impressions_paid": {"type": "integer", "index": 25, "name": "page_posts_impressions_paid", "comment": null}, "page_posts_impressions_viral": {"type": "integer", "index": 26, "name": "page_posts_impressions_viral", "comment": null}, "page_total_actions": {"type": "integer", "index": 27, "name": "page_total_actions", "comment": null}, "page_video_complete_views_30_s": {"type": "integer", "index": 28, "name": "page_video_complete_views_30_s", "comment": null}, "page_video_complete_views_30_s_autoplayed": {"type": "integer", "index": 29, "name": "page_video_complete_views_30_s_autoplayed", "comment": null}, "page_video_complete_views_30_s_click_to_play": {"type": "integer", "index": 30, "name": "page_video_complete_views_30_s_click_to_play", "comment": null}, "page_video_complete_views_30_s_organic": {"type": "integer", "index": 31, "name": "page_video_complete_views_30_s_organic", "comment": null}, "page_video_complete_views_30_s_paid": {"type": "integer", "index": 32, "name": "page_video_complete_views_30_s_paid", "comment": null}, "page_video_complete_views_30_s_repeat_views": {"type": "integer", "index": 33, "name": "page_video_complete_views_30_s_repeat_views", "comment": null}, "page_video_repeat_views": {"type": "integer", "index": 34, "name": "page_video_repeat_views", "comment": null}, "page_video_view_time": {"type": "integer", "index": 35, "name": "page_video_view_time", "comment": null}, "page_video_views": {"type": "integer", "index": 36, "name": "page_video_views", "comment": null}, "page_video_views_10_s": {"type": "integer", "index": 37, "name": "page_video_views_10_s", "comment": null}, "page_video_views_10_s_autoplayed": {"type": "integer", "index": 38, "name": "page_video_views_10_s_autoplayed", "comment": null}, "page_video_views_10_s_click_to_play": {"type": "integer", "index": 39, "name": "page_video_views_10_s_click_to_play", "comment": null}, "page_video_views_10_s_organic": {"type": "integer", "index": 40, "name": "page_video_views_10_s_organic", "comment": null}, "page_video_views_10_s_paid": {"type": "integer", "index": 41, "name": "page_video_views_10_s_paid", "comment": null}, "page_video_views_10_s_repeat": {"type": "integer", "index": 42, "name": "page_video_views_10_s_repeat", "comment": null}, "page_video_views_autoplayed": {"type": "integer", "index": 43, "name": "page_video_views_autoplayed", "comment": null}, "page_video_views_click_to_play": {"type": "integer", "index": 44, "name": "page_video_views_click_to_play", "comment": null}, "page_video_views_organic": {"type": "integer", "index": 45, "name": "page_video_views_organic", "comment": null}, "page_video_views_paid": {"type": "integer", "index": 46, "name": "page_video_views_paid", "comment": null}, "page_views_total": {"type": "integer", "index": 47, "name": "page_views_total", "comment": null}, "page_fans_online_per_day": {"type": "integer", "index": 48, "name": "page_fans_online_per_day", "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.social_media_rollup_integration_tests.facebook_pages_daily_page_metrics_total_data"}, "seed.social_media_rollup_integration_tests.facebook_pages_lifetime_post_metrics_total_data": {"metadata": {"type": "BASE TABLE", "schema": "social_media_rollup_integration_tests_1", "name": "facebook_pages_lifetime_post_metrics_total_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"date": {"type": "timestamp without time zone", "index": 1, "name": "date", "comment": null}, "post_id": {"type": "character varying", "index": 2, "name": "post_id", "comment": null}, "_fivetran_synced": {"type": "text", "index": 3, "name": "_fivetran_synced", "comment": null}, "post_clicks": {"type": "integer", "index": 4, "name": "post_clicks", "comment": null}, "post_engaged_fan": {"type": "integer", "index": 5, "name": "post_engaged_fan", "comment": null}, "post_engaged_users": {"type": "integer", "index": 6, "name": "post_engaged_users", "comment": null}, "post_impressions": {"type": "integer", "index": 7, "name": "post_impressions", "comment": null}, "post_impressions_fan": {"type": "integer", "index": 8, "name": "post_impressions_fan", "comment": null}, "post_impressions_nonviral": {"type": "integer", "index": 9, "name": "post_impressions_nonviral", "comment": null}, "post_impressions_organic": {"type": "integer", "index": 10, "name": "post_impressions_organic", "comment": null}, "post_impressions_paid": {"type": "integer", "index": 11, "name": "post_impressions_paid", "comment": null}, "post_impressions_viral": {"type": "integer", "index": 12, "name": "post_impressions_viral", "comment": null}, "post_negative_feedback": {"type": "integer", "index": 13, "name": "post_negative_feedback", "comment": null}, "post_reactions_anger_total": {"type": "integer", "index": 14, "name": "post_reactions_anger_total", "comment": null}, "post_reactions_haha_total": {"type": "integer", "index": 15, "name": "post_reactions_haha_total", "comment": null}, "post_reactions_like_total": {"type": "integer", "index": 16, "name": "post_reactions_like_total", "comment": null}, "post_reactions_love_total": {"type": "integer", "index": 17, "name": "post_reactions_love_total", "comment": null}, "post_reactions_sorry_total": {"type": "integer", "index": 18, "name": "post_reactions_sorry_total", "comment": null}, "post_reactions_wow_total": {"type": "integer", "index": 19, "name": "post_reactions_wow_total", "comment": null}, "post_video_avg_time_watched": {"type": "integer", "index": 20, "name": "post_video_avg_time_watched", "comment": null}, "post_video_complete_views_30_s_autoplayed": {"type": "integer", "index": 21, "name": "post_video_complete_views_30_s_autoplayed", "comment": null}, "post_video_complete_views_30_s_clicked_to_play": {"type": "integer", "index": 22, "name": "post_video_complete_views_30_s_clicked_to_play", "comment": null}, "post_video_complete_views_30_s_organic": {"type": "integer", "index": 23, "name": "post_video_complete_views_30_s_organic", "comment": null}, "post_video_complete_views_30_s_paid": {"type": "integer", "index": 24, "name": "post_video_complete_views_30_s_paid", "comment": null}, "post_video_complete_views_organic": {"type": "integer", "index": 25, "name": "post_video_complete_views_organic", "comment": null}, "post_video_complete_views_paid": {"type": "integer", "index": 26, "name": "post_video_complete_views_paid", "comment": null}, "post_video_view_time": {"type": "integer", "index": 27, "name": "post_video_view_time", "comment": null}, "post_video_view_time_organic": {"type": "integer", "index": 28, "name": "post_video_view_time_organic", "comment": null}, "post_video_views": {"type": "integer", "index": 29, "name": "post_video_views", "comment": null}, "post_video_views_10_s": {"type": "integer", "index": 30, "name": "post_video_views_10_s", "comment": null}, "post_video_views_10_s_autoplayed": {"type": "integer", "index": 31, "name": "post_video_views_10_s_autoplayed", "comment": null}, "post_video_views_10_s_clicked_to_play": {"type": "integer", "index": 32, "name": "post_video_views_10_s_clicked_to_play", "comment": null}, "post_video_views_10_s_organic": {"type": "integer", "index": 33, "name": "post_video_views_10_s_organic", "comment": null}, "post_video_views_10_s_paid": {"type": "integer", "index": 34, "name": "post_video_views_10_s_paid", "comment": null}, "post_video_views_10_s_sound_on": {"type": "integer", "index": 35, "name": "post_video_views_10_s_sound_on", "comment": null}, "post_video_views_autoplayed": {"type": "integer", "index": 36, "name": "post_video_views_autoplayed", "comment": null}, "post_video_views_clicked_to_play": {"type": "integer", "index": 37, "name": "post_video_views_clicked_to_play", "comment": null}, "post_video_views_organic": {"type": "integer", "index": 38, "name": "post_video_views_organic", "comment": null}, "post_video_views_paid": {"type": "integer", "index": 39, "name": "post_video_views_paid", "comment": null}, "post_video_views_sound_on": {"type": "integer", "index": 40, "name": "post_video_views_sound_on", "comment": null}, "post_video_length": {"type": "integer", "index": 41, "name": "post_video_length", "comment": null}, "post_video_views_15_s": {"type": "integer", "index": 42, "name": "post_video_views_15_s", "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.social_media_rollup_integration_tests.facebook_pages_lifetime_post_metrics_total_data"}, "seed.social_media_rollup_integration_tests.facebook_pages_page_data": {"metadata": {"type": "BASE TABLE", "schema": "social_media_rollup_integration_tests_1", "name": "facebook_pages_page_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "bigint", "index": 1, "name": "id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 2, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "text", "index": 3, "name": "_fivetran_synced", "comment": null}, "affiliation": {"type": "integer", "index": 4, "name": "affiliation", "comment": null}, "app_id": {"type": "integer", "index": 5, "name": "app_id", "comment": null}, "artists_we_like": {"type": "integer", "index": 6, "name": "artists_we_like", "comment": null}, "attire": {"type": "integer", "index": 7, "name": "attire", "comment": null}, "awards": {"type": "integer", "index": 8, "name": "awards", "comment": null}, "band_interests": {"type": "integer", "index": 9, "name": "band_interests", "comment": null}, "band_members": {"type": "integer", "index": 10, "name": "band_members", "comment": null}, "bio": {"type": "integer", "index": 11, "name": "bio", "comment": null}, "birthday": {"type": "integer", "index": 12, "name": "birthday", "comment": null}, "booking_agent": {"type": "integer", "index": 13, "name": "booking_agent", "comment": null}, "built": {"type": "integer", "index": 14, "name": "built", "comment": null}, "can_checkin": {"type": "boolean", "index": 15, "name": "can_checkin", "comment": null}, "can_post": {"type": "boolean", "index": 16, "name": "can_post", "comment": null}, "category": {"type": "text", "index": 17, "name": "category", "comment": null}, "category_list": {"type": "text", "index": 18, "name": "category_list", "comment": null}, "checkins": {"type": "integer", "index": 19, "name": "checkins", "comment": null}, "company_overview": {"type": "integer", "index": 20, "name": "company_overview", "comment": null}, "culinary_team": {"type": "integer", "index": 21, "name": "culinary_team", "comment": null}, "current_location": {"type": "integer", "index": 22, "name": "current_location", "comment": null}, "description": {"type": "text", "index": 23, "name": "description", "comment": null}, "directed_by": {"type": "integer", "index": 24, "name": "directed_by", "comment": null}, "display_subtext": {"type": "text", "index": 25, "name": "display_subtext", "comment": null}, "emails": {"type": "text", "index": 26, "name": "emails", "comment": null}, "fan_count": {"type": "integer", "index": 27, "name": "fan_count", "comment": null}, "features": {"type": "integer", "index": 28, "name": "features", "comment": null}, "food_styles": {"type": "integer", "index": 29, "name": "food_styles", "comment": null}, "founded": {"type": "integer", "index": 30, "name": "founded", "comment": null}, "general_info": {"type": "integer", "index": 31, "name": "general_info", "comment": null}, "general_manager": {"type": "integer", "index": 32, "name": "general_manager", "comment": null}, "genre": {"type": "integer", "index": 33, "name": "genre", "comment": null}, "global_brand_page_name": {"type": "text", "index": 34, "name": "global_brand_page_name", "comment": null}, "has_added_app": {"type": "integer", "index": 35, "name": "has_added_app", "comment": null}, "has_whatsapp_number": {"type": "integer", "index": 36, "name": "has_whatsapp_number", "comment": null}, "hometown": {"type": "integer", "index": 37, "name": "hometown", "comment": null}, "impressum": {"type": "integer", "index": 38, "name": "impressum", "comment": null}, "influences": {"type": "integer", "index": 39, "name": "influences", "comment": null}, "is_always_open": {"type": "boolean", "index": 40, "name": "is_always_open", "comment": null}, "is_chain": {"type": "integer", "index": 41, "name": "is_chain", "comment": null}, "is_community_page": {"type": "boolean", "index": 42, "name": "is_community_page", "comment": null}, "is_eligible_for_branded_content": {"type": "boolean", "index": 43, "name": "is_eligible_for_branded_content", "comment": null}, "is_messenger_bot_get_started_enabled": {"type": "boolean", "index": 44, "name": "is_messenger_bot_get_started_enabled", "comment": null}, "is_messenger_platform_bot": {"type": "boolean", "index": 45, "name": "is_messenger_platform_bot", "comment": null}, "is_owned": {"type": "boolean", "index": 46, "name": "is_owned", "comment": null}, "is_permanently_closed": {"type": "boolean", "index": 47, "name": "is_permanently_closed", "comment": null}, "is_published": {"type": "boolean", "index": 48, "name": "is_published", "comment": null}, "is_unclaimed": {"type": "boolean", "index": 49, "name": "is_unclaimed", "comment": null}, "members": {"type": "integer", "index": 50, "name": "members", "comment": null}, "mission": {"type": "integer", "index": 51, "name": "mission", "comment": null}, "mpg": {"type": "integer", "index": 52, "name": "mpg", "comment": null}, "name": {"type": "text", "index": 53, "name": "name", "comment": null}, "network": {"type": "integer", "index": 54, "name": "network", "comment": null}, "new_like_count": {"type": "integer", "index": 55, "name": "new_like_count", "comment": null}, "overall_star_rating": {"type": "integer", "index": 56, "name": "overall_star_rating", "comment": null}, "personal_info": {"type": "integer", "index": 57, "name": "personal_info", "comment": null}, "personal_interests": {"type": "integer", "index": 58, "name": "personal_interests", "comment": null}, "pharma_safety_info": {"type": "integer", "index": 59, "name": "pharma_safety_info", "comment": null}, "phone": {"type": "integer", "index": 60, "name": "phone", "comment": null}, "place_type": {"type": "text", "index": 61, "name": "place_type", "comment": null}, "plot_outline": {"type": "integer", "index": 62, "name": "plot_outline", "comment": null}, "press_contact": {"type": "integer", "index": 63, "name": "press_contact", "comment": null}, "price_range": {"type": "text", "index": 64, "name": "price_range", "comment": null}, "produced_by": {"type": "integer", "index": 65, "name": "produced_by", "comment": null}, "products": {"type": "integer", "index": 66, "name": "products", "comment": null}, "promotion_eligible": {"type": "boolean", "index": 67, "name": "promotion_eligible", "comment": null}, "promotion_ineligible_reason": {"type": "text", "index": 68, "name": "promotion_ineligible_reason", "comment": null}, "public_transit": {"type": "integer", "index": 69, "name": "public_transit", "comment": null}, "rating_count": {"type": "integer", "index": 70, "name": "rating_count", "comment": null}, "record_label": {"type": "integer", "index": 71, "name": "record_label", "comment": null}, "release_date": {"type": "integer", "index": 72, "name": "release_date", "comment": null}, "schedule": {"type": "integer", "index": 73, "name": "schedule", "comment": null}, "screenplay_by": {"type": "integer", "index": 74, "name": "screenplay_by", "comment": null}, "season": {"type": "integer", "index": 75, "name": "season", "comment": null}, "single_line_address": {"type": "text", "index": 76, "name": "single_line_address", "comment": null}, "starring": {"type": "integer", "index": 77, "name": "starring", "comment": null}, "store_number": {"type": "integer", "index": 78, "name": "store_number", "comment": null}, "studio": {"type": "integer", "index": 79, "name": "studio", "comment": null}, "talking_about_count": {"type": "integer", "index": 80, "name": "talking_about_count", "comment": null}, "username": {"type": "text", "index": 81, "name": "username", "comment": null}, "website": {"type": "text", "index": 82, "name": "website", "comment": null}, "were_here_count": {"type": "integer", "index": 83, "name": "were_here_count", "comment": null}, "whatsapp_number": {"type": "integer", "index": 84, "name": "whatsapp_number", "comment": null}, "written_by": {"type": "integer", "index": 85, "name": "written_by", "comment": null}, "has_transitioned_to_new_page_experience": {"type": "boolean", "index": 86, "name": "has_transitioned_to_new_page_experience", "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.social_media_rollup_integration_tests.facebook_pages_page_data"}, "seed.social_media_rollup_integration_tests.facebook_pages_post_history_data": {"metadata": {"type": "BASE TABLE", "schema": "social_media_rollup_integration_tests_1", "name": "facebook_pages_post_history_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "character varying", "index": 1, "name": "id", "comment": null}, "updated_time": {"type": "timestamp without time zone", "index": 2, "name": "updated_time", "comment": null}, "_fivetran_synced": {"type": "text", "index": 3, "name": "_fivetran_synced", "comment": null}, "allowed_advertising_objects": {"type": "integer", "index": 4, "name": "allowed_advertising_objects", "comment": null}, "created_time": {"type": "timestamp without time zone", "index": 5, "name": "created_time", "comment": null}, "is_eligible_for_promotion": {"type": "boolean", "index": 6, "name": "is_eligible_for_promotion", "comment": null}, "is_hidden": {"type": "boolean", "index": 7, "name": "is_hidden", "comment": null}, "is_instagram_eligible": {"type": "boolean", "index": 8, "name": "is_instagram_eligible", "comment": null}, "is_published": {"type": "boolean", "index": 9, "name": "is_published", "comment": null}, "page_id": {"type": "bigint", "index": 10, "name": "page_id", "comment": null}, "parent_id": {"type": "integer", "index": 11, "name": "parent_id", "comment": null}, "privacy_allow": {"type": "integer", "index": 12, "name": "privacy_allow", "comment": null}, "privacy_deny": {"type": "integer", "index": 13, "name": "privacy_deny", "comment": null}, "privacy_description": {"type": "text", "index": 14, "name": "privacy_description", "comment": null}, "privacy_friends": {"type": "integer", "index": 15, "name": "privacy_friends", "comment": null}, "privacy_value": {"type": "text", "index": 16, "name": "privacy_value", "comment": null}, "promotable_id": {"type": "character varying", "index": 17, "name": "promotable_id", "comment": null}, "share_count": {"type": "integer", "index": 18, "name": "share_count", "comment": null}, "status_type": {"type": "text", "index": 19, "name": "status_type", "comment": null}, "message": {"type": "text", "index": 20, "name": "message", "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.social_media_rollup_integration_tests.facebook_pages_post_history_data"}, "seed.social_media_rollup_integration_tests.instagram_business_media_history_data": {"metadata": {"type": "BASE TABLE", "schema": "social_media_rollup_integration_tests_1", "name": "instagram_business_media_history_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"_fivetran_id": {"type": "text", "index": 1, "name": "_fivetran_id", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 2, "name": "_fivetran_synced", "comment": null}, "caption": {"type": "integer", "index": 3, "name": "caption", "comment": null}, "carousel_album_id": {"type": "bigint", "index": 4, "name": "carousel_album_id", "comment": null}, "created_time": {"type": "timestamp without time zone", "index": 5, "name": "created_time", "comment": null}, "id": {"type": "bigint", "index": 6, "name": "id", "comment": null}, "ig_id": {"type": "bigint", "index": 7, "name": "ig_id", "comment": null}, "is_comment_enabled": {"type": "boolean", "index": 8, "name": "is_comment_enabled", "comment": null}, "is_story": {"type": "boolean", "index": 9, "name": "is_story", "comment": null}, "media_type": {"type": "text", "index": 10, "name": "media_type", "comment": null}, "media_url": {"type": "text", "index": 11, "name": "media_url", "comment": null}, "permalink": {"type": "text", "index": 12, "name": "permalink", "comment": null}, "shortcode": {"type": "text", "index": 13, "name": "shortcode", "comment": null}, "thumbnail_url": {"type": "integer", "index": 14, "name": "thumbnail_url", "comment": null}, "user_id": {"type": "bigint", "index": 15, "name": "user_id", "comment": null}, "username": {"type": "text", "index": 16, "name": "username", "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.social_media_rollup_integration_tests.instagram_business_media_history_data"}, "seed.social_media_rollup_integration_tests.instagram_business_media_insights_data": {"metadata": {"type": "BASE TABLE", "schema": "social_media_rollup_integration_tests_1", "name": "instagram_business_media_insights_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"_fivetran_id": {"type": "text", "index": 1, "name": "_fivetran_id", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 2, "name": "_fivetran_synced", "comment": null}, "carousel_album_engagement": {"type": "integer", "index": 3, "name": "carousel_album_engagement", "comment": null}, "carousel_album_impressions": {"type": "integer", "index": 4, "name": "carousel_album_impressions", "comment": null}, "carousel_album_reach": {"type": "integer", "index": 5, "name": "carousel_album_reach", "comment": null}, "carousel_album_saved": {"type": "integer", "index": 6, "name": "carousel_album_saved", "comment": null}, "carousel_album_video_views": {"type": "integer", "index": 7, "name": "carousel_album_video_views", "comment": null}, "comment_count": {"type": "integer", "index": 8, "name": "comment_count", "comment": null}, "id": {"type": "bigint", "index": 9, "name": "id", "comment": null}, "like_count": {"type": "integer", "index": 10, "name": "like_count", "comment": null}, "story_exits": {"type": "integer", "index": 11, "name": "story_exits", "comment": null}, "story_impressions": {"type": "integer", "index": 12, "name": "story_impressions", "comment": null}, "story_reach": {"type": "integer", "index": 13, "name": "story_reach", "comment": null}, "story_replies": {"type": "integer", "index": 14, "name": "story_replies", "comment": null}, "story_taps_back": {"type": "integer", "index": 15, "name": "story_taps_back", "comment": null}, "story_taps_forward": {"type": "integer", "index": 16, "name": "story_taps_forward", "comment": null}, "video_photo_engagement": {"type": "integer", "index": 17, "name": "video_photo_engagement", "comment": null}, "video_photo_impressions": {"type": "integer", "index": 18, "name": "video_photo_impressions", "comment": null}, "video_photo_reach": {"type": "integer", "index": 19, "name": "video_photo_reach", "comment": null}, "video_photo_saved": {"type": "integer", "index": 20, "name": "video_photo_saved", "comment": null}, "video_views": {"type": "integer", "index": 21, "name": "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.social_media_rollup_integration_tests.instagram_business_media_insights_data"}, "seed.social_media_rollup_integration_tests.instagram_business_user_history_data": {"metadata": {"type": "BASE TABLE", "schema": "social_media_rollup_integration_tests_1", "name": "instagram_business_user_history_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"_fivetran_id": {"type": "text", "index": 1, "name": "_fivetran_id", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 2, "name": "_fivetran_synced", "comment": null}, "followers_count": {"type": "integer", "index": 3, "name": "followers_count", "comment": null}, "follows_count": {"type": "integer", "index": 4, "name": "follows_count", "comment": null}, "id": {"type": "bigint", "index": 5, "name": "id", "comment": null}, "ig_id": {"type": "bigint", "index": 6, "name": "ig_id", "comment": null}, "media_count": {"type": "integer", "index": 7, "name": "media_count", "comment": null}, "name": {"type": "text", "index": 8, "name": "name", "comment": null}, "username": {"type": "text", "index": 9, "name": "username", "comment": null}, "website": {"type": "integer", "index": 10, "name": "website", "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.social_media_rollup_integration_tests.instagram_business_user_history_data"}, "seed.social_media_rollup_integration_tests.linkedin_pages_organization_data": {"metadata": {"type": "BASE TABLE", "schema": "social_media_rollup_integration_tests_1", "name": "linkedin_pages_organization_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "integer", "index": 1, "name": "id", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 2, "name": "_fivetran_synced", "comment": null}, "cover_photo_v_2_crop_info_height": {"type": "integer", "index": 3, "name": "cover_photo_v_2_crop_info_height", "comment": null}, "cover_photo_v_2_crop_info_width": {"type": "integer", "index": 4, "name": "cover_photo_v_2_crop_info_width", "comment": null}, "cover_photo_v_2_crop_info_x": {"type": "integer", "index": 5, "name": "cover_photo_v_2_crop_info_x", "comment": null}, "cover_photo_v_2_crop_info_y": {"type": "integer", "index": 6, "name": "cover_photo_v_2_crop_info_y", "comment": null}, "cover_photo_v_2_cropped": {"type": "text", "index": 7, "name": "cover_photo_v_2_cropped", "comment": null}, "cover_photo_v_2_original": {"type": "text", "index": 8, "name": "cover_photo_v_2_original", "comment": null}, "default_locale_country": {"type": "text", "index": 9, "name": "default_locale_country", "comment": null}, "default_locale_language": {"type": "text", "index": 10, "name": "default_locale_language", "comment": null}, "description_preferred_locale_country": {"type": "text", "index": 11, "name": "description_preferred_locale_country", "comment": null}, "description_preferred_locale_language": {"type": "text", "index": 12, "name": "description_preferred_locale_language", "comment": null}, "founded_on_day": {"type": "integer", "index": 13, "name": "founded_on_day", "comment": null}, "founded_on_month": {"type": "integer", "index": 14, "name": "founded_on_month", "comment": null}, "founded_on_year": {"type": "integer", "index": 15, "name": "founded_on_year", "comment": null}, "logo_v_2_crop_info_height": {"type": "integer", "index": 16, "name": "logo_v_2_crop_info_height", "comment": null}, "logo_v_2_crop_info_width": {"type": "integer", "index": 17, "name": "logo_v_2_crop_info_width", "comment": null}, "logo_v_2_crop_info_x": {"type": "integer", "index": 18, "name": "logo_v_2_crop_info_x", "comment": null}, "logo_v_2_crop_info_y": {"type": "integer", "index": 19, "name": "logo_v_2_crop_info_y", "comment": null}, "logo_v_2_cropped": {"type": "text", "index": 20, "name": "logo_v_2_cropped", "comment": null}, "logo_v_2_original": {"type": "text", "index": 21, "name": "logo_v_2_original", "comment": null}, "name_preferred_locale_country": {"type": "text", "index": 22, "name": "name_preferred_locale_country", "comment": null}, "name_preferred_locale_language": {"type": "text", "index": 23, "name": "name_preferred_locale_language", "comment": null}, "organization_status": {"type": "text", "index": 24, "name": "organization_status", "comment": null}, "organization_type": {"type": "text", "index": 25, "name": "organization_type", "comment": null}, "overview_photo_v_2_crop_info_height": {"type": "integer", "index": 26, "name": "overview_photo_v_2_crop_info_height", "comment": null}, "overview_photo_v_2_crop_info_width": {"type": "integer", "index": 27, "name": "overview_photo_v_2_crop_info_width", "comment": null}, "overview_photo_v_2_crop_info_x": {"type": "integer", "index": 28, "name": "overview_photo_v_2_crop_info_x", "comment": null}, "overview_photo_v_2_crop_info_y": {"type": "integer", "index": 29, "name": "overview_photo_v_2_crop_info_y", "comment": null}, "overview_photo_v_2_cropped": {"type": "integer", "index": 30, "name": "overview_photo_v_2_cropped", "comment": null}, "overview_photo_v_2_original": {"type": "integer", "index": 31, "name": "overview_photo_v_2_original", "comment": null}, "parent_relationship_parent_id": {"type": "integer", "index": 32, "name": "parent_relationship_parent_id", "comment": null}, "parent_relationship_status": {"type": "integer", "index": 33, "name": "parent_relationship_status", "comment": null}, "parent_relationship_type": {"type": "integer", "index": 34, "name": "parent_relationship_type", "comment": null}, "primary_organization_type": {"type": "text", "index": 35, "name": "primary_organization_type", "comment": null}, "school_attributes_hierarchy_classification": {"type": "integer", "index": 36, "name": "school_attributes_hierarchy_classification", "comment": null}, "school_attributes_legacy_school": {"type": "integer", "index": 37, "name": "school_attributes_legacy_school", "comment": null}, "school_attributes_type": {"type": "integer", "index": 38, "name": "school_attributes_type", "comment": null}, "school_attributes_year_level": {"type": "integer", "index": 39, "name": "school_attributes_year_level", "comment": null}, "staff_count_range": {"type": "integer", "index": 40, "name": "staff_count_range", "comment": null}, "version_tag": {"type": "integer", "index": 41, "name": "version_tag", "comment": null}, "website_preferred_locale_country": {"type": "text", "index": 42, "name": "website_preferred_locale_country", "comment": null}, "website_preferred_locale_language": {"type": "text", "index": 43, "name": "website_preferred_locale_language", "comment": null}, "description_localized": {"type": "text", "index": 44, "name": "description_localized", "comment": null}, "localized_description": {"type": "text", "index": 45, "name": "localized_description", "comment": null}, "localized_name": {"type": "text", "index": 46, "name": "localized_name", "comment": null}, "localized_website": {"type": "text", "index": 47, "name": "localized_website", "comment": null}, "name_localized": {"type": "text", "index": 48, "name": "name_localized", "comment": null}, "vanity_name": {"type": "text", "index": 49, "name": "vanity_name", "comment": null}, "website_localized": {"type": "text", "index": 50, "name": "website_localized", "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.social_media_rollup_integration_tests.linkedin_pages_organization_data"}, "seed.social_media_rollup_integration_tests.linkedin_pages_organization_ugc_post_data": {"metadata": {"type": "BASE TABLE", "schema": "social_media_rollup_integration_tests_1", "name": "linkedin_pages_organization_ugc_post_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"organiation_id": {"type": "integer", "index": 1, "name": "organiation_id", "comment": null}, "ugc_post_id": {"type": "text", "index": 2, "name": "ugc_post_id", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.social_media_rollup_integration_tests.linkedin_pages_organization_ugc_post_data"}, "seed.social_media_rollup_integration_tests.linkedin_pages_post_content_data": {"metadata": {"type": "BASE TABLE", "schema": "social_media_rollup_integration_tests_1", "name": "linkedin_pages_post_content_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"_fivetran_synced": {"type": "text", "index": 1, "name": "_fivetran_synced", "comment": null}, "_fivetran_id": {"type": "text", "index": 2, "name": "_fivetran_id", "comment": null}, "post_id": {"type": "text", "index": 3, "name": "post_id", "comment": null}, "article_description": {"type": "integer", "index": 4, "name": "article_description", "comment": null}, "article_source": {"type": "integer", "index": 5, "name": "article_source", "comment": null}, "article_thumbnail": {"type": "integer", "index": 6, "name": "article_thumbnail", "comment": null}, "article_thumbnail_alt_text": {"type": "integer", "index": 7, "name": "article_thumbnail_alt_text", "comment": null}, "article_title": {"type": "integer", "index": 8, "name": "article_title", "comment": null}, "carousel_id": {"type": "integer", "index": 9, "name": "carousel_id", "comment": null}, "media_alt_text": {"type": "integer", "index": 10, "name": "media_alt_text", "comment": null}, "media_id": {"type": "text", "index": 11, "name": "media_id", "comment": null}, "media_title": {"type": "text", "index": 12, "name": "media_title", "comment": null}, "multi_image_alt_text": {"type": "integer", "index": 13, "name": "multi_image_alt_text", "comment": null}, "poll_question": {"type": "text", "index": 14, "name": "poll_question", "comment": null}, "poll_settings_duration": {"type": "text", "index": 15, "name": "poll_settings_duration", "comment": null}, "poll_settings_is_voter_visible_to_author": {"type": "boolean", "index": 16, "name": "poll_settings_is_voter_visible_to_author", "comment": null}, "poll_settings_vote_selection_type": {"type": "text", "index": 17, "name": "poll_settings_vote_selection_type", "comment": null}, "poll_unique_voters_count": {"type": "integer", "index": 18, "name": "poll_unique_voters_count", "comment": null}, "type": {"type": "text", "index": 19, "name": "type", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.social_media_rollup_integration_tests.linkedin_pages_post_content_data"}, "seed.social_media_rollup_integration_tests.linkedin_pages_share_statistic_data": {"metadata": {"type": "BASE TABLE", "schema": "social_media_rollup_integration_tests_1", "name": "linkedin_pages_share_statistic_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"_fivetran_id": {"type": "text", "index": 1, "name": "_fivetran_id", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 2, "name": "_fivetran_synced", "comment": null}, "_organization_entity_urn": {"type": "text", "index": 3, "name": "_organization_entity_urn", "comment": null}, "_share_entity_urn": {"type": "text", "index": 4, "name": "_share_entity_urn", "comment": null}, "click_count": {"type": "integer", "index": 5, "name": "click_count", "comment": null}, "comment_count": {"type": "integer", "index": 6, "name": "comment_count", "comment": null}, "engagement": {"type": "double precision", "index": 7, "name": "engagement", "comment": null}, "impression_count": {"type": "integer", "index": 8, "name": "impression_count", "comment": null}, "like_count": {"type": "integer", "index": 9, "name": "like_count", "comment": null}, "share_count": {"type": "integer", "index": 10, "name": "share_count", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.social_media_rollup_integration_tests.linkedin_pages_share_statistic_data"}, "seed.social_media_rollup_integration_tests.linkedin_pages_ugc_post_history_data": {"metadata": {"type": "BASE TABLE", "schema": "social_media_rollup_integration_tests_1", "name": "linkedin_pages_ugc_post_history_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"_fivetran_synced": {"type": "text", "index": 1, "name": "_fivetran_synced", "comment": null}, "author": {"type": "text", "index": 2, "name": "author", "comment": null}, "commentary": {"type": "text", "index": 3, "name": "commentary", "comment": null}, "container_entity": {"type": "integer", "index": 4, "name": "container_entity", "comment": null}, "created_actor": {"type": "integer", "index": 5, "name": "created_actor", "comment": null}, "created_time": {"type": "text", "index": 6, "name": "created_time", "comment": null}, "distribution_external_distribution_channels": {"type": "text", "index": 7, "name": "distribution_external_distribution_channels", "comment": null}, "distribution_feed_distribution": {"type": "text", "index": 8, "name": "distribution_feed_distribution", "comment": null}, "first_published_at": {"type": "text", "index": 9, "name": "first_published_at", "comment": null}, "id": {"type": "text", "index": 10, "name": "id", "comment": null}, "last_modified_actor": {"type": "integer", "index": 11, "name": "last_modified_actor", "comment": null}, "last_modified_time": {"type": "text", "index": 12, "name": "last_modified_time", "comment": null}, "lifecycle_state": {"type": "text", "index": 13, "name": "lifecycle_state", "comment": null}, "response_context_parent": {"type": "text", "index": 14, "name": "response_context_parent", "comment": null}, "response_context_root": {"type": "text", "index": 15, "name": "response_context_root", "comment": null}, "visibility": {"type": "text", "index": 16, "name": "visibility", "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.social_media_rollup_integration_tests.linkedin_pages_ugc_post_history_data"}, "seed.social_media_rollup_integration_tests.linkedin_pages_ugc_post_share_statistic_data": {"metadata": {"type": "BASE TABLE", "schema": "social_media_rollup_integration_tests_1", "name": "linkedin_pages_ugc_post_share_statistic_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"share_statistic_id": {"type": "text", "index": 1, "name": "share_statistic_id", "comment": null}, "ugc_post_id": {"type": "bigint", "index": 2, "name": "ugc_post_id", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.social_media_rollup_integration_tests.linkedin_pages_ugc_post_share_statistic_data"}, "seed.social_media_rollup_integration_tests.organic_tweet_report": {"metadata": {"type": "BASE TABLE", "schema": "social_media_rollup_integration_tests_1", "name": "organic_tweet_report", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"account_id": {"type": "text", "index": 1, "name": "account_id", "comment": null}, "date": {"type": "timestamp without time zone", "index": 2, "name": "date", "comment": null}, "organic_tweet_id": {"type": "bigint", "index": 3, "name": "organic_tweet_id", "comment": null}, "placement": {"type": "text", "index": 4, "name": "placement", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 5, "name": "_fivetran_synced", "comment": null}, "app_clicks": {"type": "integer", "index": 6, "name": "app_clicks", "comment": null}, "card_engagements": {"type": "integer", "index": 7, "name": "card_engagements", "comment": null}, "carousel_swipes": {"type": "integer", "index": 8, "name": "carousel_swipes", "comment": null}, "clicks": {"type": "integer", "index": 9, "name": "clicks", "comment": null}, "engagements": {"type": "integer", "index": 10, "name": "engagements", "comment": null}, "follows": {"type": "integer", "index": 11, "name": "follows", "comment": null}, "impressions": {"type": "integer", "index": 12, "name": "impressions", "comment": null}, "likes": {"type": "integer", "index": 13, "name": "likes", "comment": null}, "poll_card_vote": {"type": "integer", "index": 14, "name": "poll_card_vote", "comment": null}, "qualified_impressions": {"type": "integer", "index": 15, "name": "qualified_impressions", "comment": null}, "replies": {"type": "integer", "index": 16, "name": "replies", "comment": null}, "retweets": {"type": "integer", "index": 17, "name": "retweets", "comment": null}, "tweets_send": {"type": "integer", "index": 18, "name": "tweets_send", "comment": null}, "unfollows": {"type": "integer", "index": 19, "name": "unfollows", "comment": null}, "url_clicks": {"type": "integer", "index": 20, "name": "url_clicks", "comment": null}, "video_15_s_views": {"type": "integer", "index": 21, "name": "video_15_s_views", "comment": null}, "video_3_s_100_pct_views": {"type": "integer", "index": 22, "name": "video_3_s_100_pct_views", "comment": null}, "video_6_s_views": {"type": "integer", "index": 23, "name": "video_6_s_views", "comment": null}, "video_content_starts": {"type": "integer", "index": 24, "name": "video_content_starts", "comment": null}, "video_cta_clicks": {"type": "integer", "index": 25, "name": "video_cta_clicks", "comment": null}, "video_total_views": {"type": "integer", "index": 26, "name": "video_total_views", "comment": null}, "video_views_100": {"type": "integer", "index": 27, "name": "video_views_100", "comment": null}, "video_views_25": {"type": "integer", "index": 28, "name": "video_views_25", "comment": null}, "video_views_50": {"type": "integer", "index": 29, "name": "video_views_50", "comment": null}, "video_views_75": {"type": "integer", "index": 30, "name": "video_views_75", "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.social_media_rollup_integration_tests.organic_tweet_report"}, "seed.social_media_rollup_integration_tests.tweet": {"metadata": {"type": "BASE TABLE", "schema": "social_media_rollup_integration_tests_1", "name": "tweet", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "bigint", "index": 1, "name": "id", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 2, "name": "_fivetran_synced", "comment": null}, "account_id": {"type": "text", "index": 3, "name": "account_id", "comment": null}, "card_uri": {"type": "text", "index": 4, "name": "card_uri", "comment": null}, "coordinates_coordinates": {"type": "integer", "index": 5, "name": "coordinates_coordinates", "comment": null}, "coordinates_type": {"type": "integer", "index": 6, "name": "coordinates_type", "comment": null}, "created_at": {"type": "timestamp without time zone", "index": 7, "name": "created_at", "comment": null}, "favorite_count": {"type": "integer", "index": 8, "name": "favorite_count", "comment": null}, "favorited": {"type": "boolean", "index": 9, "name": "favorited", "comment": null}, "followers": {"type": "integer", "index": 10, "name": "followers", "comment": null}, "geo_coordinates": {"type": "integer", "index": 11, "name": "geo_coordinates", "comment": null}, "geo_type": {"type": "integer", "index": 12, "name": "geo_type", "comment": null}, "in_reply_to_screen_name": {"type": "text", "index": 13, "name": "in_reply_to_screen_name", "comment": null}, "in_reply_to_status_id": {"type": "integer", "index": 14, "name": "in_reply_to_status_id", "comment": null}, "in_reply_to_user_id": {"type": "integer", "index": 15, "name": "in_reply_to_user_id", "comment": null}, "lang": {"type": "text", "index": 16, "name": "lang", "comment": null}, "media_key": {"type": "integer", "index": 17, "name": "media_key", "comment": null}, "retweet_count": {"type": "integer", "index": 18, "name": "retweet_count", "comment": null}, "retweeted": {"type": "boolean", "index": 19, "name": "retweeted", "comment": null}, "truncated": {"type": "boolean", "index": 20, "name": "truncated", "comment": null}, "tweet_type": {"type": "text", "index": 21, "name": "tweet_type", "comment": null}, "user_id": {"type": "integer", "index": 22, "name": "user_id", "comment": null}, "source": {"type": "text", "index": 23, "name": "source", "comment": null}, "full_test": {"type": "text", "index": 24, "name": "full_test", "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.social_media_rollup_integration_tests.tweet"}, "seed.social_media_rollup_integration_tests.twitter_user_history": {"metadata": {"type": "BASE TABLE", "schema": "social_media_rollup_integration_tests_1", "name": "twitter_user_history", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "integer", "index": 1, "name": "id", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 2, "name": "_fivetran_synced", "comment": null}, "contributors_enabled": {"type": "boolean", "index": 3, "name": "contributors_enabled", "comment": null}, "created_at": {"type": "timestamp without time zone", "index": 4, "name": "created_at", "comment": null}, "default_profile": {"type": "boolean", "index": 5, "name": "default_profile", "comment": null}, "default_profile_image": {"type": "boolean", "index": 6, "name": "default_profile_image", "comment": null}, "description": {"type": "text", "index": 7, "name": "description", "comment": null}, "favourites_count": {"type": "integer", "index": 8, "name": "favourites_count", "comment": null}, "followers_count": {"type": "integer", "index": 9, "name": "followers_count", "comment": null}, "friends_count": {"type": "integer", "index": 10, "name": "friends_count", "comment": null}, "geo_enabled": {"type": "boolean", "index": 11, "name": "geo_enabled", "comment": null}, "is_translation_enabled": {"type": "boolean", "index": 12, "name": "is_translation_enabled", "comment": null}, "is_translator": {"type": "boolean", "index": 13, "name": "is_translator", "comment": null}, "lang": {"type": "integer", "index": 14, "name": "lang", "comment": null}, "listed_count": {"type": "integer", "index": 15, "name": "listed_count", "comment": null}, "location": {"type": "text", "index": 16, "name": "location", "comment": null}, "name": {"type": "text", "index": 17, "name": "name", "comment": null}, "profile_background_image_url": {"type": "text", "index": 18, "name": "profile_background_image_url", "comment": null}, "profile_background_image_url_https": {"type": "text", "index": 19, "name": "profile_background_image_url_https", "comment": null}, "profile_background_tile": {"type": "boolean", "index": 20, "name": "profile_background_tile", "comment": null}, "profile_banner_url": {"type": "text", "index": 21, "name": "profile_banner_url", "comment": null}, "profile_image_url": {"type": "text", "index": 22, "name": "profile_image_url", "comment": null}, "profile_image_url_https": {"type": "text", "index": 23, "name": "profile_image_url_https", "comment": null}, "profile_use_background_image": {"type": "boolean", "index": 24, "name": "profile_use_background_image", "comment": null}, "protected_user": {"type": "boolean", "index": 25, "name": "protected_user", "comment": null}, "screen_name": {"type": "text", "index": 26, "name": "screen_name", "comment": null}, "statuses_count": {"type": "integer", "index": 27, "name": "statuses_count", "comment": null}, "time_zone": {"type": "integer", "index": 28, "name": "time_zone", "comment": null}, "url": {"type": "text", "index": 29, "name": "url", "comment": null}, "utc_offset": {"type": "integer", "index": 30, "name": "utc_offset", "comment": null}, "verified": {"type": "boolean", "index": 31, "name": "verified", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "seed.social_media_rollup_integration_tests.twitter_user_history"}, "model.facebook_pages.facebook_pages__pages_report": {"metadata": {"type": "BASE TABLE", "schema": "social_media_rollup_integration_tests_1_social_media_dev", "name": "facebook_pages__pages_report", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"date_day": {"type": "timestamp without time zone", "index": 1, "name": "date_day", "comment": null}, "page_id": {"type": "bigint", "index": 2, "name": "page_id", "comment": null}, "page_name": {"type": "text", "index": 3, "name": "page_name", "comment": null}, "actions_post_reactions_total": {"type": "integer", "index": 4, "name": "actions_post_reactions_total", "comment": null}, "fan_adds": {"type": "integer", "index": 5, "name": "fan_adds", "comment": null}, "fan_removes": {"type": "integer", "index": 6, "name": "fan_removes", "comment": null}, "impressions": {"type": "integer", "index": 7, "name": "impressions", "comment": null}, "post_engagements": {"type": "integer", "index": 8, "name": "post_engagements", "comment": null}, "posts_impressions": {"type": "integer", "index": 9, "name": "posts_impressions", "comment": null}, "video_complete_views_30s": {"type": "integer", "index": 10, "name": "video_complete_views_30s", "comment": null}, "video_views": {"type": "integer", "index": 11, "name": "video_views", "comment": null}, "video_views_10s": {"type": "integer", "index": 12, "name": "video_views_10s", "comment": null}, "views_total": {"type": "integer", "index": 13, "name": "views_total", "comment": null}, "source_relation": {"type": "text", "index": 14, "name": "source_relation", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.facebook_pages.facebook_pages__pages_report"}, "model.facebook_pages.facebook_pages__posts_report": {"metadata": {"type": "BASE TABLE", "schema": "social_media_rollup_integration_tests_1_social_media_dev", "name": "facebook_pages__posts_report", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"created_timestamp": {"type": "timestamp without time zone", "index": 1, "name": "created_timestamp", "comment": null}, "post_id": {"type": "character varying", "index": 2, "name": "post_id", "comment": null}, "post_message": {"type": "text", "index": 3, "name": "post_message", "comment": null}, "post_url": {"type": "text", "index": 4, "name": "post_url", "comment": null}, "page_id": {"type": "bigint", "index": 5, "name": "page_id", "comment": null}, "page_name": {"type": "text", "index": 6, "name": "page_name", "comment": null}, "date_day": {"type": "timestamp without time zone", "index": 7, "name": "date_day", "comment": null}, "clicks": {"type": "integer", "index": 8, "name": "clicks", "comment": null}, "impressions": {"type": "integer", "index": 9, "name": "impressions", "comment": null}, "video_avg_time_watched": {"type": "numeric", "index": 10, "name": "video_avg_time_watched", "comment": null}, "video_view_time": {"type": "numeric", "index": 11, "name": "video_view_time", "comment": null}, "video_views": {"type": "integer", "index": 12, "name": "video_views", "comment": null}, "video_views_10s": {"type": "integer", "index": 13, "name": "video_views_10s", "comment": null}, "video_views_15s": {"type": "integer", "index": 14, "name": "video_views_15s", "comment": null}, "likes": {"type": "integer", "index": 15, "name": "likes", "comment": null}, "source_relation": {"type": "text", "index": 16, "name": "source_relation", "comment": null}, "is_most_recent_record": {"type": "boolean", "index": 17, "name": "is_most_recent_record", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.facebook_pages.facebook_pages__posts_report"}, "model.instagram_business.instagram_business__posts": {"metadata": {"type": "BASE TABLE", "schema": "social_media_rollup_integration_tests_1_social_media_dev", "name": "instagram_business__posts", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"account_name": {"type": "text", "index": 1, "name": "account_name", "comment": null}, "user_id": {"type": "bigint", "index": 2, "name": "user_id", "comment": null}, "post_caption": {"type": "integer", "index": 3, "name": "post_caption", "comment": null}, "created_timestamp": {"type": "timestamp without time zone", "index": 4, "name": "created_timestamp", "comment": null}, "post_id": {"type": "bigint", "index": 5, "name": "post_id", "comment": null}, "is_comment_enabled": {"type": "boolean", "index": 6, "name": "is_comment_enabled", "comment": null}, "is_story": {"type": "boolean", "index": 7, "name": "is_story", "comment": null}, "media_type": {"type": "text", "index": 8, "name": "media_type", "comment": null}, "media_url": {"type": "text", "index": 9, "name": "media_url", "comment": null}, "post_url": {"type": "text", "index": 10, "name": "post_url", "comment": null}, "shortcode": {"type": "text", "index": 11, "name": "shortcode", "comment": null}, "thumbnail_url": {"type": "integer", "index": 12, "name": "thumbnail_url", "comment": null}, "username": {"type": "text", "index": 13, "name": "username", "comment": null}, "carousel_album_engagement": {"type": "integer", "index": 14, "name": "carousel_album_engagement", "comment": null}, "carousel_album_impressions": {"type": "integer", "index": 15, "name": "carousel_album_impressions", "comment": null}, "carousel_album_reach": {"type": "integer", "index": 16, "name": "carousel_album_reach", "comment": null}, "carousel_album_saved": {"type": "integer", "index": 17, "name": "carousel_album_saved", "comment": null}, "carousel_album_video_views": {"type": "integer", "index": 18, "name": "carousel_album_video_views", "comment": null}, "comment_count": {"type": "integer", "index": 19, "name": "comment_count", "comment": null}, "like_count": {"type": "integer", "index": 20, "name": "like_count", "comment": null}, "story_exits": {"type": "integer", "index": 21, "name": "story_exits", "comment": null}, "story_impressions": {"type": "integer", "index": 22, "name": "story_impressions", "comment": null}, "story_reach": {"type": "integer", "index": 23, "name": "story_reach", "comment": null}, "story_replies": {"type": "integer", "index": 24, "name": "story_replies", "comment": null}, "story_taps_back": {"type": "integer", "index": 25, "name": "story_taps_back", "comment": null}, "story_taps_forward": {"type": "integer", "index": 26, "name": "story_taps_forward", "comment": null}, "video_photo_engagement": {"type": "integer", "index": 27, "name": "video_photo_engagement", "comment": null}, "video_photo_impressions": {"type": "integer", "index": 28, "name": "video_photo_impressions", "comment": null}, "video_photo_reach": {"type": "integer", "index": 29, "name": "video_photo_reach", "comment": null}, "video_photo_saved": {"type": "integer", "index": 30, "name": "video_photo_saved", "comment": null}, "video_views": {"type": "integer", "index": 31, "name": "video_views", "comment": null}, "reel_comments": {"type": "integer", "index": 32, "name": "reel_comments", "comment": null}, "reel_likes": {"type": "integer", "index": 33, "name": "reel_likes", "comment": null}, "reel_plays": {"type": "integer", "index": 34, "name": "reel_plays", "comment": null}, "reel_reach": {"type": "integer", "index": 35, "name": "reel_reach", "comment": null}, "reel_shares": {"type": "integer", "index": 36, "name": "reel_shares", "comment": null}, "reel_total_interactions": {"type": "integer", "index": 37, "name": "reel_total_interactions", "comment": null}, "source_relation": {"type": "text", "index": 38, "name": "source_relation", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.instagram_business.instagram_business__posts"}, "model.facebook_pages.int_facebook_pages__lastest_post": {"metadata": {"type": "BASE TABLE", "schema": "social_media_rollup_integration_tests_1_social_media_dev", "name": "int_facebook_pages__lastest_post", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"_fivetran_synced": {"type": "text", "index": 1, "name": "_fivetran_synced", "comment": null}, "allowed_advertising_objects": {"type": "integer", "index": 2, "name": "allowed_advertising_objects", "comment": null}, "created_timestamp": {"type": "timestamp without time zone", "index": 3, "name": "created_timestamp", "comment": null}, "post_id": {"type": "character varying", "index": 4, "name": "post_id", "comment": null}, "is_eligible_for_promotion": {"type": "boolean", "index": 5, "name": "is_eligible_for_promotion", "comment": null}, "is_hidden": {"type": "boolean", "index": 6, "name": "is_hidden", "comment": null}, "is_instagram_eligible": {"type": "boolean", "index": 7, "name": "is_instagram_eligible", "comment": null}, "is_published": {"type": "boolean", "index": 8, "name": "is_published", "comment": null}, "post_message": {"type": "text", "index": 9, "name": "post_message", "comment": null}, "page_id": {"type": "bigint", "index": 10, "name": "page_id", "comment": null}, "parent_id": {"type": "integer", "index": 11, "name": "parent_id", "comment": null}, "privacy_allow": {"type": "integer", "index": 12, "name": "privacy_allow", "comment": null}, "privacy_deny": {"type": "integer", "index": 13, "name": "privacy_deny", "comment": null}, "privacy_description": {"type": "text", "index": 14, "name": "privacy_description", "comment": null}, "privacy_friends": {"type": "integer", "index": 15, "name": "privacy_friends", "comment": null}, "privacy_value": {"type": "text", "index": 16, "name": "privacy_value", "comment": null}, "promotable_id": {"type": "character varying", "index": 17, "name": "promotable_id", "comment": null}, "share_count": {"type": "integer", "index": 18, "name": "share_count", "comment": null}, "status_type": {"type": "text", "index": 19, "name": "status_type", "comment": null}, "updated_timestamp": {"type": "timestamp without time zone", "index": 20, "name": "updated_timestamp", "comment": null}, "post_url": {"type": "text", "index": 21, "name": "post_url", "comment": null}, "source_relation": {"type": "text", "index": 22, "name": "source_relation", "comment": null}, "is_most_recent_record": {"type": "boolean", "index": 23, "name": "is_most_recent_record", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.facebook_pages.int_facebook_pages__lastest_post"}, "model.linkedin_pages.int_linkedin_pages__latest_post": {"metadata": {"type": "BASE TABLE", "schema": "social_media_rollup_integration_tests_1_social_media_dev", "name": "int_linkedin_pages__latest_post", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"_fivetran_synced": {"type": "timestamp without time zone", "index": 1, "name": "_fivetran_synced", "comment": null}, "share_statistic_id": {"type": "text", "index": 2, "name": "share_statistic_id", "comment": null}, "ugc_post_id": {"type": "text", "index": 3, "name": "ugc_post_id", "comment": null}, "source_relation": {"type": "text", "index": 4, "name": "source_relation", "comment": null}, "is_most_recent_record": {"type": "boolean", "index": 5, "name": "is_most_recent_record", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.linkedin_pages.int_linkedin_pages__latest_post"}, "model.linkedin_pages.int_linkedin_pages__latest_post_history": {"metadata": {"type": "BASE TABLE", "schema": "social_media_rollup_integration_tests_1_social_media_dev", "name": "int_linkedin_pages__latest_post_history", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"_fivetran_synced": {"type": "text", "index": 1, "name": "_fivetran_synced", "comment": null}, "post_author": {"type": "text", "index": 2, "name": "post_author", "comment": null}, "commentary": {"type": "text", "index": 3, "name": "commentary", "comment": null}, "created_actor": {"type": "integer", "index": 4, "name": "created_actor", "comment": null}, "created_timestamp": {"type": "text", "index": 5, "name": "created_timestamp", "comment": null}, "first_published_timestamp": {"type": "text", "index": 6, "name": "first_published_timestamp", "comment": null}, "ugc_post_id": {"type": "text", "index": 7, "name": "ugc_post_id", "comment": null}, "ugc_post_urn": {"type": "text", "index": 8, "name": "ugc_post_urn", "comment": null}, "post_url": {"type": "text", "index": 9, "name": "post_url", "comment": null}, "last_modified_actor": {"type": "integer", "index": 10, "name": "last_modified_actor", "comment": null}, "last_modified_timestamp": {"type": "text", "index": 11, "name": "last_modified_timestamp", "comment": null}, "lifecycle_state": {"type": "text", "index": 12, "name": "lifecycle_state", "comment": null}, "visibility": {"type": "text", "index": 13, "name": "visibility", "comment": null}, "source_relation": {"type": "text", "index": 14, "name": "source_relation", "comment": null}, "is_most_recent_record": {"type": "boolean", "index": 15, "name": "is_most_recent_record", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.linkedin_pages.int_linkedin_pages__latest_post_history"}, "model.twitter_organic.int_twitter_organic__latest_account": {"metadata": {"type": "BASE TABLE", "schema": "social_media_rollup_integration_tests_1_social_media_dev", "name": "int_twitter_organic__latest_account", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"_fivetran_synced": {"type": "timestamp without time zone", "index": 1, "name": "_fivetran_synced", "comment": null}, "business_id": {"type": "integer", "index": 2, "name": "business_id", "comment": null}, "business_name": {"type": "integer", "index": 3, "name": "business_name", "comment": null}, "created_timestamp": {"type": "timestamp without time zone", "index": 4, "name": "created_timestamp", "comment": null}, "is_deleted": {"type": "boolean", "index": 5, "name": "is_deleted", "comment": null}, "account_id": {"type": "text", "index": 6, "name": "account_id", "comment": null}, "industry_type": {"type": "integer", "index": 7, "name": "industry_type", "comment": null}, "account_name": {"type": "text", "index": 8, "name": "account_name", "comment": null}, "timezone": {"type": "text", "index": 9, "name": "timezone", "comment": null}, "updated_timestamp": {"type": "timestamp without time zone", "index": 10, "name": "updated_timestamp", "comment": null}, "source_relation": {"type": "text", "index": 11, "name": "source_relation", "comment": null}, "is_most_recent_record": {"type": "boolean", "index": 12, "name": "is_most_recent_record", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.twitter_organic.int_twitter_organic__latest_account"}, "model.twitter_organic.int_twitter_organic__latest_user": {"metadata": {"type": "BASE TABLE", "schema": "social_media_rollup_integration_tests_1_social_media_dev", "name": "int_twitter_organic__latest_user", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"_fivetran_synced": {"type": "timestamp without time zone", "index": 1, "name": "_fivetran_synced", "comment": null}, "created_timestamp": {"type": "timestamp without time zone", "index": 2, "name": "created_timestamp", "comment": null}, "user_description": {"type": "text", "index": 3, "name": "user_description", "comment": null}, "followers_count": {"type": "integer", "index": 4, "name": "followers_count", "comment": null}, "user_id": {"type": "bigint", "index": 5, "name": "user_id", "comment": null}, "user_location": {"type": "text", "index": 6, "name": "user_location", "comment": null}, "user_name": {"type": "text", "index": 7, "name": "user_name", "comment": null}, "user_screen_name": {"type": "text", "index": 8, "name": "user_screen_name", "comment": null}, "source_relation": {"type": "text", "index": 9, "name": "source_relation", "comment": null}, "is_most_recent_record": {"type": "boolean", "index": 10, "name": "is_most_recent_record", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.twitter_organic.int_twitter_organic__latest_user"}, "model.linkedin_pages.linkedin_pages__posts": {"metadata": {"type": "BASE TABLE", "schema": "social_media_rollup_integration_tests_1_social_media_dev", "name": "linkedin_pages__posts", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"ugc_post_id": {"type": "text", "index": 1, "name": "ugc_post_id", "comment": null}, "post_author": {"type": "text", "index": 2, "name": "post_author", "comment": null}, "post_url": {"type": "text", "index": 3, "name": "post_url", "comment": null}, "created_timestamp": {"type": "text", "index": 4, "name": "created_timestamp", "comment": null}, "first_published_timestamp": {"type": "text", "index": 5, "name": "first_published_timestamp", "comment": null}, "lifecycle_state": {"type": "text", "index": 6, "name": "lifecycle_state", "comment": null}, "commentary": {"type": "text", "index": 7, "name": "commentary", "comment": null}, "organization_id": {"type": "integer", "index": 8, "name": "organization_id", "comment": null}, "post_title": {"type": "text", "index": 9, "name": "post_title", "comment": null}, "post_type": {"type": "text", "index": 10, "name": "post_type", "comment": null}, "organization_name": {"type": "text", "index": 11, "name": "organization_name", "comment": null}, "click_count": {"type": "integer", "index": 12, "name": "click_count", "comment": null}, "comment_count": {"type": "integer", "index": 13, "name": "comment_count", "comment": null}, "impression_count": {"type": "integer", "index": 14, "name": "impression_count", "comment": null}, "like_count": {"type": "integer", "index": 15, "name": "like_count", "comment": null}, "share_count": {"type": "integer", "index": 16, "name": "share_count", "comment": null}, "source_relation": {"type": "text", "index": 17, "name": "source_relation", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.linkedin_pages.linkedin_pages__posts"}, "model.social_media_reporting.social_media_reporting__facebook_posts_reporting": {"metadata": {"type": "BASE TABLE", "schema": "social_media_rollup_integration_tests_1_social_media_dev", "name": "social_media_reporting__facebook_posts_reporting", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"created_timestamp": {"type": "timestamp without time zone", "index": 1, "name": "created_timestamp", "comment": null}, "post_id": {"type": "text", "index": 2, "name": "post_id", "comment": null}, "post_message": {"type": "text", "index": 3, "name": "post_message", "comment": null}, "post_url": {"type": "text", "index": 4, "name": "post_url", "comment": null}, "page_id": {"type": "bigint", "index": 5, "name": "page_id", "comment": null}, "page_name": {"type": "text", "index": 6, "name": "page_name", "comment": null}, "source_relation": {"type": "text", "index": 7, "name": "source_relation", "comment": null}, "platform": {"type": "text", "index": 8, "name": "platform", "comment": null}, "clicks": {"type": "bigint", "index": 9, "name": "clicks", "comment": null}, "impressions": {"type": "bigint", "index": 10, "name": "impressions", "comment": null}, "likes": {"type": "bigint", "index": 11, "name": "likes", "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.social_media_reporting.social_media_reporting__facebook_posts_reporting"}, "model.social_media_reporting.social_media_reporting__instagram_posts_reporting": {"metadata": {"type": "BASE TABLE", "schema": "social_media_rollup_integration_tests_1_social_media_dev", "name": "social_media_reporting__instagram_posts_reporting", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"page_name": {"type": "text", "index": 1, "name": "page_name", "comment": null}, "page_id": {"type": "bigint", "index": 2, "name": "page_id", "comment": null}, "post_message": {"type": "integer", "index": 3, "name": "post_message", "comment": null}, "created_timestamp": {"type": "timestamp without time zone", "index": 4, "name": "created_timestamp", "comment": null}, "post_id": {"type": "text", "index": 5, "name": "post_id", "comment": null}, "post_url": {"type": "text", "index": 6, "name": "post_url", "comment": null}, "source_relation": {"type": "text", "index": 7, "name": "source_relation", "comment": null}, "platform": {"type": "text", "index": 8, "name": "platform", "comment": null}, "comments": {"type": "bigint", "index": 9, "name": "comments", "comment": null}, "likes": {"type": "bigint", "index": 10, "name": "likes", "comment": null}, "impressions": {"type": "bigint", "index": 11, "name": "impressions", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.social_media_reporting.social_media_reporting__instagram_posts_reporting"}, "model.social_media_reporting.social_media_reporting__linkedin_posts_reporting": {"metadata": {"type": "BASE TABLE", "schema": "social_media_rollup_integration_tests_1_social_media_dev", "name": "social_media_reporting__linkedin_posts_reporting", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"page_id": {"type": "integer", "index": 1, "name": "page_id", "comment": null}, "page_name": {"type": "text", "index": 2, "name": "page_name", "comment": null}, "post_id": {"type": "text", "index": 3, "name": "post_id", "comment": null}, "created_timestamp": {"type": "text", "index": 4, "name": "created_timestamp", "comment": null}, "post_url": {"type": "text", "index": 5, "name": "post_url", "comment": null}, "source_relation": {"type": "text", "index": 6, "name": "source_relation", "comment": null}, "platform": {"type": "text", "index": 7, "name": "platform", "comment": null}, "post_message": {"type": "text", "index": 8, "name": "post_message", "comment": null}, "clicks": {"type": "bigint", "index": 9, "name": "clicks", "comment": null}, "comments": {"type": "bigint", "index": 10, "name": "comments", "comment": null}, "impressions": {"type": "bigint", "index": 11, "name": "impressions", "comment": null}, "likes": {"type": "bigint", "index": 12, "name": "likes", "comment": null}, "shares": {"type": "bigint", "index": 13, "name": "shares", "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.social_media_reporting.social_media_reporting__linkedin_posts_reporting"}, "model.social_media_reporting.social_media_reporting__rollup_report": {"metadata": {"type": "BASE TABLE", "schema": "social_media_rollup_integration_tests_1_social_media_dev", "name": "social_media_reporting__rollup_report", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"_dbt_source_relation": {"type": "text", "index": 1, "name": "_dbt_source_relation", "comment": null}, "created_timestamp": {"type": "timestamp without time zone", "index": 2, "name": "created_timestamp", "comment": null}, "post_id": {"type": "text", "index": 3, "name": "post_id", "comment": null}, "post_message": {"type": "text", "index": 4, "name": "post_message", "comment": null}, "page_id": {"type": "text", "index": 5, "name": "page_id", "comment": null}, "page_name": {"type": "text", "index": 6, "name": "page_name", "comment": null}, "post_url": {"type": "text", "index": 7, "name": "post_url", "comment": null}, "source_relation": {"type": "text", "index": 8, "name": "source_relation", "comment": null}, "platform": {"type": "text", "index": 9, "name": "platform", "comment": null}, "clicks": {"type": "numeric", "index": 10, "name": "clicks", "comment": null}, "impressions": {"type": "numeric", "index": 11, "name": "impressions", "comment": null}, "likes": {"type": "numeric", "index": 12, "name": "likes", "comment": null}, "shares": {"type": "numeric", "index": 13, "name": "shares", "comment": null}, "comments": {"type": "numeric", "index": 14, "name": "comments", "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.social_media_reporting.social_media_reporting__rollup_report"}, "model.social_media_reporting.social_media_reporting__twitter_posts_reporting": {"metadata": {"type": "BASE TABLE", "schema": "social_media_rollup_integration_tests_1_social_media_dev", "name": "social_media_reporting__twitter_posts_reporting", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"created_timestamp": {"type": "timestamp without time zone", "index": 1, "name": "created_timestamp", "comment": null}, "post_id": {"type": "text", "index": 2, "name": "post_id", "comment": null}, "post_message": {"type": "text", "index": 3, "name": "post_message", "comment": null}, "page_id": {"type": "text", "index": 4, "name": "page_id", "comment": null}, "page_name": {"type": "text", "index": 5, "name": "page_name", "comment": null}, "post_url": {"type": "text", "index": 6, "name": "post_url", "comment": null}, "source_relation": {"type": "text", "index": 7, "name": "source_relation", "comment": null}, "platform": {"type": "text", "index": 8, "name": "platform", "comment": null}, "clicks": {"type": "numeric", "index": 9, "name": "clicks", "comment": null}, "impressions": {"type": "numeric", "index": 10, "name": "impressions", "comment": null}, "likes": {"type": "numeric", "index": 11, "name": "likes", "comment": null}, "shares": {"type": "numeric", "index": 12, "name": "shares", "comment": null}, "comments": {"type": "numeric", "index": 13, "name": "comments", "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.social_media_reporting.social_media_reporting__twitter_posts_reporting"}, "model.facebook_pages_source.stg_facebook_pages__daily_page_metrics_total": {"metadata": {"type": "BASE TABLE", "schema": "social_media_rollup_integration_tests_1_social_media_dev", "name": "stg_facebook_pages__daily_page_metrics_total", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"_fivetran_synced": {"type": "text", "index": 1, "name": "_fivetran_synced", "comment": null}, "date_day": {"type": "timestamp without time zone", "index": 2, "name": "date_day", "comment": null}, "page_id": {"type": "bigint", "index": 3, "name": "page_id", "comment": null}, "actions_post_reactions_anger_total": {"type": "integer", "index": 4, "name": "actions_post_reactions_anger_total", "comment": null}, "actions_post_reactions_haha_total": {"type": "integer", "index": 5, "name": "actions_post_reactions_haha_total", "comment": null}, "actions_post_reactions_like_total": {"type": "integer", "index": 6, "name": "actions_post_reactions_like_total", "comment": null}, "actions_post_reactions_love_total": {"type": "integer", "index": 7, "name": "actions_post_reactions_love_total", "comment": null}, "actions_post_reactions_sorry_total": {"type": "integer", "index": 8, "name": "actions_post_reactions_sorry_total", "comment": null}, "actions_post_reactions_wow_total": {"type": "integer", "index": 9, "name": "actions_post_reactions_wow_total", "comment": null}, "actions_post_reactions_total": {"type": "integer", "index": 10, "name": "actions_post_reactions_total", "comment": null}, "fan_adds": {"type": "integer", "index": 11, "name": "fan_adds", "comment": null}, "fan_removes": {"type": "integer", "index": 12, "name": "fan_removes", "comment": null}, "fans": {"type": "integer", "index": 13, "name": "fans", "comment": null}, "fans_online_per_day": {"type": "integer", "index": 14, "name": "fans_online_per_day", "comment": null}, "impressions": {"type": "integer", "index": 15, "name": "impressions", "comment": null}, "impressions_nonviral": {"type": "integer", "index": 16, "name": "impressions_nonviral", "comment": null}, "impressions_organic": {"type": "integer", "index": 17, "name": "impressions_organic", "comment": null}, "impressions_paid": {"type": "integer", "index": 18, "name": "impressions_paid", "comment": null}, "impressions_viral": {"type": "integer", "index": 19, "name": "impressions_viral", "comment": null}, "negative_feedback": {"type": "integer", "index": 20, "name": "negative_feedback", "comment": null}, "places_checkin_total": {"type": "integer", "index": 21, "name": "places_checkin_total", "comment": null}, "post_engagements": {"type": "integer", "index": 22, "name": "post_engagements", "comment": null}, "posts_impressions": {"type": "integer", "index": 23, "name": "posts_impressions", "comment": null}, "posts_impressions_nonviral": {"type": "integer", "index": 24, "name": "posts_impressions_nonviral", "comment": null}, "posts_impressions_organic": {"type": "integer", "index": 25, "name": "posts_impressions_organic", "comment": null}, "posts_impressions_paid": {"type": "integer", "index": 26, "name": "posts_impressions_paid", "comment": null}, "posts_impressions_viral": {"type": "integer", "index": 27, "name": "posts_impressions_viral", "comment": null}, "total_actions": {"type": "integer", "index": 28, "name": "total_actions", "comment": null}, "video_complete_views_30s": {"type": "integer", "index": 29, "name": "video_complete_views_30s", "comment": null}, "video_complete_views_30s_autoplayed": {"type": "integer", "index": 30, "name": "video_complete_views_30s_autoplayed", "comment": null}, "video_complete_views_30s_click_to_play": {"type": "integer", "index": 31, "name": "video_complete_views_30s_click_to_play", "comment": null}, "video_complete_views_30s_organic": {"type": "integer", "index": 32, "name": "video_complete_views_30s_organic", "comment": null}, "video_complete_views_30s_paid": {"type": "integer", "index": 33, "name": "video_complete_views_30s_paid", "comment": null}, "video_complete_views_30s_repeat_views": {"type": "integer", "index": 34, "name": "video_complete_views_30s_repeat_views", "comment": null}, "video_repeat_views": {"type": "integer", "index": 35, "name": "video_repeat_views", "comment": null}, "video_view_time": {"type": "numeric", "index": 36, "name": "video_view_time", "comment": null}, "video_views": {"type": "integer", "index": 37, "name": "video_views", "comment": null}, "video_views_10s": {"type": "integer", "index": 38, "name": "video_views_10s", "comment": null}, "video_views_10s_autoplayed": {"type": "integer", "index": 39, "name": "video_views_10s_autoplayed", "comment": null}, "video_views_10s_click_to_play": {"type": "integer", "index": 40, "name": "video_views_10s_click_to_play", "comment": null}, "video_views_10s_organic": {"type": "integer", "index": 41, "name": "video_views_10s_organic", "comment": null}, "video_views_10s_paid": {"type": "integer", "index": 42, "name": "video_views_10s_paid", "comment": null}, "video_views_10s_repeat": {"type": "integer", "index": 43, "name": "video_views_10s_repeat", "comment": null}, "video_views_autoplayed": {"type": "integer", "index": 44, "name": "video_views_autoplayed", "comment": null}, "video_views_click_to_play": {"type": "integer", "index": 45, "name": "video_views_click_to_play", "comment": null}, "video_views_organic": {"type": "integer", "index": 46, "name": "video_views_organic", "comment": null}, "video_views_paid": {"type": "integer", "index": 47, "name": "video_views_paid", "comment": null}, "views_total": {"type": "integer", "index": 48, "name": "views_total", "comment": null}, "source_relation": {"type": "text", "index": 49, "name": "source_relation", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.facebook_pages_source.stg_facebook_pages__daily_page_metrics_total"}, "model.facebook_pages_source.stg_facebook_pages__daily_page_metrics_total_tmp": {"metadata": {"type": "BASE TABLE", "schema": "social_media_rollup_integration_tests_1_social_media_dev", "name": "stg_facebook_pages__daily_page_metrics_total_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"date": {"type": "timestamp without time zone", "index": 1, "name": "date", "comment": null}, "page_id": {"type": "bigint", "index": 2, "name": "page_id", "comment": null}, "_fivetran_synced": {"type": "text", "index": 3, "name": "_fivetran_synced", "comment": null}, "page_actions_post_reactions_anger_total": {"type": "integer", "index": 4, "name": "page_actions_post_reactions_anger_total", "comment": null}, "page_actions_post_reactions_haha_total": {"type": "integer", "index": 5, "name": "page_actions_post_reactions_haha_total", "comment": null}, "page_actions_post_reactions_like_total": {"type": "integer", "index": 6, "name": "page_actions_post_reactions_like_total", "comment": null}, "page_actions_post_reactions_love_total": {"type": "integer", "index": 7, "name": "page_actions_post_reactions_love_total", "comment": null}, "page_actions_post_reactions_sorry_total": {"type": "integer", "index": 8, "name": "page_actions_post_reactions_sorry_total", "comment": null}, "page_actions_post_reactions_total": {"type": "integer", "index": 9, "name": "page_actions_post_reactions_total", "comment": null}, "page_actions_post_reactions_wow_total": {"type": "integer", "index": 10, "name": "page_actions_post_reactions_wow_total", "comment": null}, "page_fan_adds": {"type": "integer", "index": 11, "name": "page_fan_adds", "comment": null}, "page_fan_removes": {"type": "integer", "index": 12, "name": "page_fan_removes", "comment": null}, "page_fans": {"type": "integer", "index": 13, "name": "page_fans", "comment": null}, "page_impressions": {"type": "integer", "index": 14, "name": "page_impressions", "comment": null}, "page_impressions_nonviral": {"type": "integer", "index": 15, "name": "page_impressions_nonviral", "comment": null}, "page_impressions_organic": {"type": "integer", "index": 16, "name": "page_impressions_organic", "comment": null}, "page_impressions_paid": {"type": "integer", "index": 17, "name": "page_impressions_paid", "comment": null}, "page_impressions_viral": {"type": "integer", "index": 18, "name": "page_impressions_viral", "comment": null}, "page_negative_feedback": {"type": "integer", "index": 19, "name": "page_negative_feedback", "comment": null}, "page_places_checkin_total": {"type": "integer", "index": 20, "name": "page_places_checkin_total", "comment": null}, "page_post_engagements": {"type": "integer", "index": 21, "name": "page_post_engagements", "comment": null}, "page_posts_impressions": {"type": "integer", "index": 22, "name": "page_posts_impressions", "comment": null}, "page_posts_impressions_nonviral": {"type": "integer", "index": 23, "name": "page_posts_impressions_nonviral", "comment": null}, "page_posts_impressions_organic": {"type": "integer", "index": 24, "name": "page_posts_impressions_organic", "comment": null}, "page_posts_impressions_paid": {"type": "integer", "index": 25, "name": "page_posts_impressions_paid", "comment": null}, "page_posts_impressions_viral": {"type": "integer", "index": 26, "name": "page_posts_impressions_viral", "comment": null}, "page_total_actions": {"type": "integer", "index": 27, "name": "page_total_actions", "comment": null}, "page_video_complete_views_30_s": {"type": "integer", "index": 28, "name": "page_video_complete_views_30_s", "comment": null}, "page_video_complete_views_30_s_autoplayed": {"type": "integer", "index": 29, "name": "page_video_complete_views_30_s_autoplayed", "comment": null}, "page_video_complete_views_30_s_click_to_play": {"type": "integer", "index": 30, "name": "page_video_complete_views_30_s_click_to_play", "comment": null}, "page_video_complete_views_30_s_organic": {"type": "integer", "index": 31, "name": "page_video_complete_views_30_s_organic", "comment": null}, "page_video_complete_views_30_s_paid": {"type": "integer", "index": 32, "name": "page_video_complete_views_30_s_paid", "comment": null}, "page_video_complete_views_30_s_repeat_views": {"type": "integer", "index": 33, "name": "page_video_complete_views_30_s_repeat_views", "comment": null}, "page_video_repeat_views": {"type": "integer", "index": 34, "name": "page_video_repeat_views", "comment": null}, "page_video_view_time": {"type": "integer", "index": 35, "name": "page_video_view_time", "comment": null}, "page_video_views": {"type": "integer", "index": 36, "name": "page_video_views", "comment": null}, "page_video_views_10_s": {"type": "integer", "index": 37, "name": "page_video_views_10_s", "comment": null}, "page_video_views_10_s_autoplayed": {"type": "integer", "index": 38, "name": "page_video_views_10_s_autoplayed", "comment": null}, "page_video_views_10_s_click_to_play": {"type": "integer", "index": 39, "name": "page_video_views_10_s_click_to_play", "comment": null}, "page_video_views_10_s_organic": {"type": "integer", "index": 40, "name": "page_video_views_10_s_organic", "comment": null}, "page_video_views_10_s_paid": {"type": "integer", "index": 41, "name": "page_video_views_10_s_paid", "comment": null}, "page_video_views_10_s_repeat": {"type": "integer", "index": 42, "name": "page_video_views_10_s_repeat", "comment": null}, "page_video_views_autoplayed": {"type": "integer", "index": 43, "name": "page_video_views_autoplayed", "comment": null}, "page_video_views_click_to_play": {"type": "integer", "index": 44, "name": "page_video_views_click_to_play", "comment": null}, "page_video_views_organic": {"type": "integer", "index": 45, "name": "page_video_views_organic", "comment": null}, "page_video_views_paid": {"type": "integer", "index": 46, "name": "page_video_views_paid", "comment": null}, "page_views_total": {"type": "integer", "index": 47, "name": "page_views_total", "comment": null}, "page_fans_online_per_day": {"type": "integer", "index": 48, "name": "page_fans_online_per_day", "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.facebook_pages_source.stg_facebook_pages__daily_page_metrics_total_tmp"}, "model.facebook_pages_source.stg_facebook_pages__lifetime_post_metrics_total": {"metadata": {"type": "BASE TABLE", "schema": "social_media_rollup_integration_tests_1_social_media_dev", "name": "stg_facebook_pages__lifetime_post_metrics_total", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"_fivetran_synced": {"type": "text", "index": 1, "name": "_fivetran_synced", "comment": null}, "date_day": {"type": "timestamp without time zone", "index": 2, "name": "date_day", "comment": null}, "post_id": {"type": "character varying", "index": 3, "name": "post_id", "comment": null}, "clicks": {"type": "integer", "index": 4, "name": "clicks", "comment": null}, "impressions": {"type": "integer", "index": 5, "name": "impressions", "comment": null}, "impressions_fan": {"type": "integer", "index": 6, "name": "impressions_fan", "comment": null}, "impressions_nonviral": {"type": "integer", "index": 7, "name": "impressions_nonviral", "comment": null}, "impressions_organic": {"type": "integer", "index": 8, "name": "impressions_organic", "comment": null}, "impressions_paid": {"type": "integer", "index": 9, "name": "impressions_paid", "comment": null}, "impressions_viral": {"type": "integer", "index": 10, "name": "impressions_viral", "comment": null}, "negative_feedback": {"type": "integer", "index": 11, "name": "negative_feedback", "comment": null}, "reactions_anger_total": {"type": "integer", "index": 12, "name": "reactions_anger_total", "comment": null}, "reactions_haha_total": {"type": "integer", "index": 13, "name": "reactions_haha_total", "comment": null}, "reactions_like_total": {"type": "integer", "index": 14, "name": "reactions_like_total", "comment": null}, "reactions_love_total": {"type": "integer", "index": 15, "name": "reactions_love_total", "comment": null}, "reactions_sorry_total": {"type": "integer", "index": 16, "name": "reactions_sorry_total", "comment": null}, "reactions_wow_total": {"type": "integer", "index": 17, "name": "reactions_wow_total", "comment": null}, "video_avg_time_watched": {"type": "numeric", "index": 18, "name": "video_avg_time_watched", "comment": null}, "video_complete_views_30s_autoplayed": {"type": "integer", "index": 19, "name": "video_complete_views_30s_autoplayed", "comment": null}, "video_complete_views_30s_clicked_to_play": {"type": "integer", "index": 20, "name": "video_complete_views_30s_clicked_to_play", "comment": null}, "video_complete_views_30s_organic": {"type": "integer", "index": 21, "name": "video_complete_views_30s_organic", "comment": null}, "video_complete_views_30s_paid": {"type": "integer", "index": 22, "name": "video_complete_views_30s_paid", "comment": null}, "video_complete_views_organic": {"type": "integer", "index": 23, "name": "video_complete_views_organic", "comment": null}, "video_complete_views_paid": {"type": "integer", "index": 24, "name": "video_complete_views_paid", "comment": null}, "video_length": {"type": "numeric", "index": 25, "name": "video_length", "comment": null}, "video_view_time": {"type": "numeric", "index": 26, "name": "video_view_time", "comment": null}, "video_view_time_organic": {"type": "numeric", "index": 27, "name": "video_view_time_organic", "comment": null}, "video_views": {"type": "integer", "index": 28, "name": "video_views", "comment": null}, "video_views_10s": {"type": "integer", "index": 29, "name": "video_views_10s", "comment": null}, "video_views_10s_autoplayed": {"type": "integer", "index": 30, "name": "video_views_10s_autoplayed", "comment": null}, "video_views_10s_clicked_to_play": {"type": "integer", "index": 31, "name": "video_views_10s_clicked_to_play", "comment": null}, "video_views_10s_organic": {"type": "integer", "index": 32, "name": "video_views_10s_organic", "comment": null}, "video_views_10_s_paid": {"type": "integer", "index": 33, "name": "video_views_10_s_paid", "comment": null}, "video_views_10s_sound_on": {"type": "integer", "index": 34, "name": "video_views_10s_sound_on", "comment": null}, "video_views_15s": {"type": "integer", "index": 35, "name": "video_views_15s", "comment": null}, "video_views_autoplayed": {"type": "integer", "index": 36, "name": "video_views_autoplayed", "comment": null}, "video_views_clicked_to_play": {"type": "integer", "index": 37, "name": "video_views_clicked_to_play", "comment": null}, "video_views_organic": {"type": "integer", "index": 38, "name": "video_views_organic", "comment": null}, "video_views_paid": {"type": "integer", "index": 39, "name": "video_views_paid", "comment": null}, "video_views_sound_on": {"type": "integer", "index": 40, "name": "video_views_sound_on", "comment": null}, "source_relation": {"type": "text", "index": 41, "name": "source_relation", "comment": null}, "is_most_recent_record": {"type": "boolean", "index": 42, "name": "is_most_recent_record", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.facebook_pages_source.stg_facebook_pages__lifetime_post_metrics_total"}, "model.facebook_pages_source.stg_facebook_pages__lifetime_post_metrics_total_tmp": {"metadata": {"type": "BASE TABLE", "schema": "social_media_rollup_integration_tests_1_social_media_dev", "name": "stg_facebook_pages__lifetime_post_metrics_total_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"date": {"type": "timestamp without time zone", "index": 1, "name": "date", "comment": null}, "post_id": {"type": "character varying", "index": 2, "name": "post_id", "comment": null}, "_fivetran_synced": {"type": "text", "index": 3, "name": "_fivetran_synced", "comment": null}, "post_clicks": {"type": "integer", "index": 4, "name": "post_clicks", "comment": null}, "post_engaged_fan": {"type": "integer", "index": 5, "name": "post_engaged_fan", "comment": null}, "post_engaged_users": {"type": "integer", "index": 6, "name": "post_engaged_users", "comment": null}, "post_impressions": {"type": "integer", "index": 7, "name": "post_impressions", "comment": null}, "post_impressions_fan": {"type": "integer", "index": 8, "name": "post_impressions_fan", "comment": null}, "post_impressions_nonviral": {"type": "integer", "index": 9, "name": "post_impressions_nonviral", "comment": null}, "post_impressions_organic": {"type": "integer", "index": 10, "name": "post_impressions_organic", "comment": null}, "post_impressions_paid": {"type": "integer", "index": 11, "name": "post_impressions_paid", "comment": null}, "post_impressions_viral": {"type": "integer", "index": 12, "name": "post_impressions_viral", "comment": null}, "post_negative_feedback": {"type": "integer", "index": 13, "name": "post_negative_feedback", "comment": null}, "post_reactions_anger_total": {"type": "integer", "index": 14, "name": "post_reactions_anger_total", "comment": null}, "post_reactions_haha_total": {"type": "integer", "index": 15, "name": "post_reactions_haha_total", "comment": null}, "post_reactions_like_total": {"type": "integer", "index": 16, "name": "post_reactions_like_total", "comment": null}, "post_reactions_love_total": {"type": "integer", "index": 17, "name": "post_reactions_love_total", "comment": null}, "post_reactions_sorry_total": {"type": "integer", "index": 18, "name": "post_reactions_sorry_total", "comment": null}, "post_reactions_wow_total": {"type": "integer", "index": 19, "name": "post_reactions_wow_total", "comment": null}, "post_video_avg_time_watched": {"type": "integer", "index": 20, "name": "post_video_avg_time_watched", "comment": null}, "post_video_complete_views_30_s_autoplayed": {"type": "integer", "index": 21, "name": "post_video_complete_views_30_s_autoplayed", "comment": null}, "post_video_complete_views_30_s_clicked_to_play": {"type": "integer", "index": 22, "name": "post_video_complete_views_30_s_clicked_to_play", "comment": null}, "post_video_complete_views_30_s_organic": {"type": "integer", "index": 23, "name": "post_video_complete_views_30_s_organic", "comment": null}, "post_video_complete_views_30_s_paid": {"type": "integer", "index": 24, "name": "post_video_complete_views_30_s_paid", "comment": null}, "post_video_complete_views_organic": {"type": "integer", "index": 25, "name": "post_video_complete_views_organic", "comment": null}, "post_video_complete_views_paid": {"type": "integer", "index": 26, "name": "post_video_complete_views_paid", "comment": null}, "post_video_view_time": {"type": "integer", "index": 27, "name": "post_video_view_time", "comment": null}, "post_video_view_time_organic": {"type": "integer", "index": 28, "name": "post_video_view_time_organic", "comment": null}, "post_video_views": {"type": "integer", "index": 29, "name": "post_video_views", "comment": null}, "post_video_views_10_s": {"type": "integer", "index": 30, "name": "post_video_views_10_s", "comment": null}, "post_video_views_10_s_autoplayed": {"type": "integer", "index": 31, "name": "post_video_views_10_s_autoplayed", "comment": null}, "post_video_views_10_s_clicked_to_play": {"type": "integer", "index": 32, "name": "post_video_views_10_s_clicked_to_play", "comment": null}, "post_video_views_10_s_organic": {"type": "integer", "index": 33, "name": "post_video_views_10_s_organic", "comment": null}, "post_video_views_10_s_paid": {"type": "integer", "index": 34, "name": "post_video_views_10_s_paid", "comment": null}, "post_video_views_10_s_sound_on": {"type": "integer", "index": 35, "name": "post_video_views_10_s_sound_on", "comment": null}, "post_video_views_autoplayed": {"type": "integer", "index": 36, "name": "post_video_views_autoplayed", "comment": null}, "post_video_views_clicked_to_play": {"type": "integer", "index": 37, "name": "post_video_views_clicked_to_play", "comment": null}, "post_video_views_organic": {"type": "integer", "index": 38, "name": "post_video_views_organic", "comment": null}, "post_video_views_paid": {"type": "integer", "index": 39, "name": "post_video_views_paid", "comment": null}, "post_video_views_sound_on": {"type": "integer", "index": 40, "name": "post_video_views_sound_on", "comment": null}, "post_video_length": {"type": "integer", "index": 41, "name": "post_video_length", "comment": null}, "post_video_views_15_s": {"type": "integer", "index": 42, "name": "post_video_views_15_s", "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.facebook_pages_source.stg_facebook_pages__lifetime_post_metrics_total_tmp"}, "model.facebook_pages_source.stg_facebook_pages__page": {"metadata": {"type": "BASE TABLE", "schema": "social_media_rollup_integration_tests_1_social_media_dev", "name": "stg_facebook_pages__page", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"_fivetran_deleted": {"type": "boolean", "index": 1, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "text", "index": 2, "name": "_fivetran_synced", "comment": null}, "affiliation": {"type": "integer", "index": 3, "name": "affiliation", "comment": null}, "app_id": {"type": "integer", "index": 4, "name": "app_id", "comment": null}, "artists_we_like": {"type": "integer", "index": 5, "name": "artists_we_like", "comment": null}, "attire": {"type": "integer", "index": 6, "name": "attire", "comment": null}, "awards": {"type": "integer", "index": 7, "name": "awards", "comment": null}, "band_interests": {"type": "integer", "index": 8, "name": "band_interests", "comment": null}, "band_members": {"type": "integer", "index": 9, "name": "band_members", "comment": null}, "bio": {"type": "integer", "index": 10, "name": "bio", "comment": null}, "birthday": {"type": "integer", "index": 11, "name": "birthday", "comment": null}, "booking_agent": {"type": "integer", "index": 12, "name": "booking_agent", "comment": null}, "built": {"type": "integer", "index": 13, "name": "built", "comment": null}, "can_checkin": {"type": "boolean", "index": 14, "name": "can_checkin", "comment": null}, "can_post": {"type": "boolean", "index": 15, "name": "can_post", "comment": null}, "category": {"type": "text", "index": 16, "name": "category", "comment": null}, "category_list": {"type": "text", "index": 17, "name": "category_list", "comment": null}, "checkins": {"type": "integer", "index": 18, "name": "checkins", "comment": null}, "company_overview": {"type": "integer", "index": 19, "name": "company_overview", "comment": null}, "culinary_team": {"type": "integer", "index": 20, "name": "culinary_team", "comment": null}, "current_location": {"type": "integer", "index": 21, "name": "current_location", "comment": null}, "page_description": {"type": "text", "index": 22, "name": "page_description", "comment": null}, "directed_by": {"type": "integer", "index": 23, "name": "directed_by", "comment": null}, "display_subtext": {"type": "text", "index": 24, "name": "display_subtext", "comment": null}, "emails": {"type": "text", "index": 25, "name": "emails", "comment": null}, "fan_count": {"type": "integer", "index": 26, "name": "fan_count", "comment": null}, "features": {"type": "integer", "index": 27, "name": "features", "comment": null}, "food_styles": {"type": "integer", "index": 28, "name": "food_styles", "comment": null}, "founded": {"type": "integer", "index": 29, "name": "founded", "comment": null}, "general_info": {"type": "integer", "index": 30, "name": "general_info", "comment": null}, "general_manager": {"type": "integer", "index": 31, "name": "general_manager", "comment": null}, "genre": {"type": "integer", "index": 32, "name": "genre", "comment": null}, "global_brand_page_name": {"type": "text", "index": 33, "name": "global_brand_page_name", "comment": null}, "has_added_app": {"type": "integer", "index": 34, "name": "has_added_app", "comment": null}, "has_transitioned_to_new_page_experience": {"type": "boolean", "index": 35, "name": "has_transitioned_to_new_page_experience", "comment": null}, "has_whatsapp_number": {"type": "integer", "index": 36, "name": "has_whatsapp_number", "comment": null}, "hometown": {"type": "integer", "index": 37, "name": "hometown", "comment": null}, "page_id": {"type": "bigint", "index": 38, "name": "page_id", "comment": null}, "impressum": {"type": "integer", "index": 39, "name": "impressum", "comment": null}, "influences": {"type": "integer", "index": 40, "name": "influences", "comment": null}, "is_always_open": {"type": "boolean", "index": 41, "name": "is_always_open", "comment": null}, "is_chain": {"type": "integer", "index": 42, "name": "is_chain", "comment": null}, "is_community_page": {"type": "boolean", "index": 43, "name": "is_community_page", "comment": null}, "is_eligible_for_branded_content": {"type": "boolean", "index": 44, "name": "is_eligible_for_branded_content", "comment": null}, "is_messenger_bot_get_started_enabled": {"type": "boolean", "index": 45, "name": "is_messenger_bot_get_started_enabled", "comment": null}, "is_messenger_platform_bot": {"type": "boolean", "index": 46, "name": "is_messenger_platform_bot", "comment": null}, "is_owned": {"type": "boolean", "index": 47, "name": "is_owned", "comment": null}, "is_permanently_closed": {"type": "boolean", "index": 48, "name": "is_permanently_closed", "comment": null}, "is_published": {"type": "boolean", "index": 49, "name": "is_published", "comment": null}, "is_unclaimed": {"type": "boolean", "index": 50, "name": "is_unclaimed", "comment": null}, "members": {"type": "integer", "index": 51, "name": "members", "comment": null}, "mission": {"type": "integer", "index": 52, "name": "mission", "comment": null}, "mpg": {"type": "integer", "index": 53, "name": "mpg", "comment": null}, "page_name": {"type": "text", "index": 54, "name": "page_name", "comment": null}, "network": {"type": "integer", "index": 55, "name": "network", "comment": null}, "new_like_count": {"type": "integer", "index": 56, "name": "new_like_count", "comment": null}, "overall_star_rating": {"type": "integer", "index": 57, "name": "overall_star_rating", "comment": null}, "personal_info": {"type": "integer", "index": 58, "name": "personal_info", "comment": null}, "personal_interests": {"type": "integer", "index": 59, "name": "personal_interests", "comment": null}, "pharma_safety_info": {"type": "integer", "index": 60, "name": "pharma_safety_info", "comment": null}, "phone": {"type": "integer", "index": 61, "name": "phone", "comment": null}, "place_type": {"type": "text", "index": 62, "name": "place_type", "comment": null}, "plot_outline": {"type": "integer", "index": 63, "name": "plot_outline", "comment": null}, "press_contact": {"type": "integer", "index": 64, "name": "press_contact", "comment": null}, "price_range": {"type": "text", "index": 65, "name": "price_range", "comment": null}, "produced_by": {"type": "integer", "index": 66, "name": "produced_by", "comment": null}, "products": {"type": "integer", "index": 67, "name": "products", "comment": null}, "promotion_eligible": {"type": "boolean", "index": 68, "name": "promotion_eligible", "comment": null}, "promotion_ineligible_reason": {"type": "text", "index": 69, "name": "promotion_ineligible_reason", "comment": null}, "public_transit": {"type": "integer", "index": 70, "name": "public_transit", "comment": null}, "rating_count": {"type": "integer", "index": 71, "name": "rating_count", "comment": null}, "record_label": {"type": "integer", "index": 72, "name": "record_label", "comment": null}, "release_date": {"type": "integer", "index": 73, "name": "release_date", "comment": null}, "schedule": {"type": "integer", "index": 74, "name": "schedule", "comment": null}, "screenplay_by": {"type": "integer", "index": 75, "name": "screenplay_by", "comment": null}, "season": {"type": "integer", "index": 76, "name": "season", "comment": null}, "single_line_address": {"type": "text", "index": 77, "name": "single_line_address", "comment": null}, "starring": {"type": "integer", "index": 78, "name": "starring", "comment": null}, "store_number": {"type": "integer", "index": 79, "name": "store_number", "comment": null}, "studio": {"type": "integer", "index": 80, "name": "studio", "comment": null}, "talking_about_count": {"type": "integer", "index": 81, "name": "talking_about_count", "comment": null}, "username": {"type": "text", "index": 82, "name": "username", "comment": null}, "website": {"type": "text", "index": 83, "name": "website", "comment": null}, "were_here_count": {"type": "integer", "index": 84, "name": "were_here_count", "comment": null}, "whatsapp_number": {"type": "integer", "index": 85, "name": "whatsapp_number", "comment": null}, "written_by": {"type": "integer", "index": 86, "name": "written_by", "comment": null}, "source_relation": {"type": "text", "index": 87, "name": "source_relation", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.facebook_pages_source.stg_facebook_pages__page"}, "model.facebook_pages_source.stg_facebook_pages__page_tmp": {"metadata": {"type": "BASE TABLE", "schema": "social_media_rollup_integration_tests_1_social_media_dev", "name": "stg_facebook_pages__page_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "bigint", "index": 1, "name": "id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 2, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "text", "index": 3, "name": "_fivetran_synced", "comment": null}, "affiliation": {"type": "integer", "index": 4, "name": "affiliation", "comment": null}, "app_id": {"type": "integer", "index": 5, "name": "app_id", "comment": null}, "artists_we_like": {"type": "integer", "index": 6, "name": "artists_we_like", "comment": null}, "attire": {"type": "integer", "index": 7, "name": "attire", "comment": null}, "awards": {"type": "integer", "index": 8, "name": "awards", "comment": null}, "band_interests": {"type": "integer", "index": 9, "name": "band_interests", "comment": null}, "band_members": {"type": "integer", "index": 10, "name": "band_members", "comment": null}, "bio": {"type": "integer", "index": 11, "name": "bio", "comment": null}, "birthday": {"type": "integer", "index": 12, "name": "birthday", "comment": null}, "booking_agent": {"type": "integer", "index": 13, "name": "booking_agent", "comment": null}, "built": {"type": "integer", "index": 14, "name": "built", "comment": null}, "can_checkin": {"type": "boolean", "index": 15, "name": "can_checkin", "comment": null}, "can_post": {"type": "boolean", "index": 16, "name": "can_post", "comment": null}, "category": {"type": "text", "index": 17, "name": "category", "comment": null}, "category_list": {"type": "text", "index": 18, "name": "category_list", "comment": null}, "checkins": {"type": "integer", "index": 19, "name": "checkins", "comment": null}, "company_overview": {"type": "integer", "index": 20, "name": "company_overview", "comment": null}, "culinary_team": {"type": "integer", "index": 21, "name": "culinary_team", "comment": null}, "current_location": {"type": "integer", "index": 22, "name": "current_location", "comment": null}, "description": {"type": "text", "index": 23, "name": "description", "comment": null}, "directed_by": {"type": "integer", "index": 24, "name": "directed_by", "comment": null}, "display_subtext": {"type": "text", "index": 25, "name": "display_subtext", "comment": null}, "emails": {"type": "text", "index": 26, "name": "emails", "comment": null}, "fan_count": {"type": "integer", "index": 27, "name": "fan_count", "comment": null}, "features": {"type": "integer", "index": 28, "name": "features", "comment": null}, "food_styles": {"type": "integer", "index": 29, "name": "food_styles", "comment": null}, "founded": {"type": "integer", "index": 30, "name": "founded", "comment": null}, "general_info": {"type": "integer", "index": 31, "name": "general_info", "comment": null}, "general_manager": {"type": "integer", "index": 32, "name": "general_manager", "comment": null}, "genre": {"type": "integer", "index": 33, "name": "genre", "comment": null}, "global_brand_page_name": {"type": "text", "index": 34, "name": "global_brand_page_name", "comment": null}, "has_added_app": {"type": "integer", "index": 35, "name": "has_added_app", "comment": null}, "has_whatsapp_number": {"type": "integer", "index": 36, "name": "has_whatsapp_number", "comment": null}, "hometown": {"type": "integer", "index": 37, "name": "hometown", "comment": null}, "impressum": {"type": "integer", "index": 38, "name": "impressum", "comment": null}, "influences": {"type": "integer", "index": 39, "name": "influences", "comment": null}, "is_always_open": {"type": "boolean", "index": 40, "name": "is_always_open", "comment": null}, "is_chain": {"type": "integer", "index": 41, "name": "is_chain", "comment": null}, "is_community_page": {"type": "boolean", "index": 42, "name": "is_community_page", "comment": null}, "is_eligible_for_branded_content": {"type": "boolean", "index": 43, "name": "is_eligible_for_branded_content", "comment": null}, "is_messenger_bot_get_started_enabled": {"type": "boolean", "index": 44, "name": "is_messenger_bot_get_started_enabled", "comment": null}, "is_messenger_platform_bot": {"type": "boolean", "index": 45, "name": "is_messenger_platform_bot", "comment": null}, "is_owned": {"type": "boolean", "index": 46, "name": "is_owned", "comment": null}, "is_permanently_closed": {"type": "boolean", "index": 47, "name": "is_permanently_closed", "comment": null}, "is_published": {"type": "boolean", "index": 48, "name": "is_published", "comment": null}, "is_unclaimed": {"type": "boolean", "index": 49, "name": "is_unclaimed", "comment": null}, "members": {"type": "integer", "index": 50, "name": "members", "comment": null}, "mission": {"type": "integer", "index": 51, "name": "mission", "comment": null}, "mpg": {"type": "integer", "index": 52, "name": "mpg", "comment": null}, "name": {"type": "text", "index": 53, "name": "name", "comment": null}, "network": {"type": "integer", "index": 54, "name": "network", "comment": null}, "new_like_count": {"type": "integer", "index": 55, "name": "new_like_count", "comment": null}, "overall_star_rating": {"type": "integer", "index": 56, "name": "overall_star_rating", "comment": null}, "personal_info": {"type": "integer", "index": 57, "name": "personal_info", "comment": null}, "personal_interests": {"type": "integer", "index": 58, "name": "personal_interests", "comment": null}, "pharma_safety_info": {"type": "integer", "index": 59, "name": "pharma_safety_info", "comment": null}, "phone": {"type": "integer", "index": 60, "name": "phone", "comment": null}, "place_type": {"type": "text", "index": 61, "name": "place_type", "comment": null}, "plot_outline": {"type": "integer", "index": 62, "name": "plot_outline", "comment": null}, "press_contact": {"type": "integer", "index": 63, "name": "press_contact", "comment": null}, "price_range": {"type": "text", "index": 64, "name": "price_range", "comment": null}, "produced_by": {"type": "integer", "index": 65, "name": "produced_by", "comment": null}, "products": {"type": "integer", "index": 66, "name": "products", "comment": null}, "promotion_eligible": {"type": "boolean", "index": 67, "name": "promotion_eligible", "comment": null}, "promotion_ineligible_reason": {"type": "text", "index": 68, "name": "promotion_ineligible_reason", "comment": null}, "public_transit": {"type": "integer", "index": 69, "name": "public_transit", "comment": null}, "rating_count": {"type": "integer", "index": 70, "name": "rating_count", "comment": null}, "record_label": {"type": "integer", "index": 71, "name": "record_label", "comment": null}, "release_date": {"type": "integer", "index": 72, "name": "release_date", "comment": null}, "schedule": {"type": "integer", "index": 73, "name": "schedule", "comment": null}, "screenplay_by": {"type": "integer", "index": 74, "name": "screenplay_by", "comment": null}, "season": {"type": "integer", "index": 75, "name": "season", "comment": null}, "single_line_address": {"type": "text", "index": 76, "name": "single_line_address", "comment": null}, "starring": {"type": "integer", "index": 77, "name": "starring", "comment": null}, "store_number": {"type": "integer", "index": 78, "name": "store_number", "comment": null}, "studio": {"type": "integer", "index": 79, "name": "studio", "comment": null}, "talking_about_count": {"type": "integer", "index": 80, "name": "talking_about_count", "comment": null}, "username": {"type": "text", "index": 81, "name": "username", "comment": null}, "website": {"type": "text", "index": 82, "name": "website", "comment": null}, "were_here_count": {"type": "integer", "index": 83, "name": "were_here_count", "comment": null}, "whatsapp_number": {"type": "integer", "index": 84, "name": "whatsapp_number", "comment": null}, "written_by": {"type": "integer", "index": 85, "name": "written_by", "comment": null}, "has_transitioned_to_new_page_experience": {"type": "boolean", "index": 86, "name": "has_transitioned_to_new_page_experience", "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.facebook_pages_source.stg_facebook_pages__page_tmp"}, "model.facebook_pages_source.stg_facebook_pages__post_history": {"metadata": {"type": "BASE TABLE", "schema": "social_media_rollup_integration_tests_1_social_media_dev", "name": "stg_facebook_pages__post_history", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"_fivetran_synced": {"type": "text", "index": 1, "name": "_fivetran_synced", "comment": null}, "allowed_advertising_objects": {"type": "integer", "index": 2, "name": "allowed_advertising_objects", "comment": null}, "created_timestamp": {"type": "timestamp without time zone", "index": 3, "name": "created_timestamp", "comment": null}, "post_id": {"type": "character varying", "index": 4, "name": "post_id", "comment": null}, "is_eligible_for_promotion": {"type": "boolean", "index": 5, "name": "is_eligible_for_promotion", "comment": null}, "is_hidden": {"type": "boolean", "index": 6, "name": "is_hidden", "comment": null}, "is_instagram_eligible": {"type": "boolean", "index": 7, "name": "is_instagram_eligible", "comment": null}, "is_published": {"type": "boolean", "index": 8, "name": "is_published", "comment": null}, "post_message": {"type": "text", "index": 9, "name": "post_message", "comment": null}, "page_id": {"type": "bigint", "index": 10, "name": "page_id", "comment": null}, "parent_id": {"type": "integer", "index": 11, "name": "parent_id", "comment": null}, "privacy_allow": {"type": "integer", "index": 12, "name": "privacy_allow", "comment": null}, "privacy_deny": {"type": "integer", "index": 13, "name": "privacy_deny", "comment": null}, "privacy_description": {"type": "text", "index": 14, "name": "privacy_description", "comment": null}, "privacy_friends": {"type": "integer", "index": 15, "name": "privacy_friends", "comment": null}, "privacy_value": {"type": "text", "index": 16, "name": "privacy_value", "comment": null}, "promotable_id": {"type": "character varying", "index": 17, "name": "promotable_id", "comment": null}, "share_count": {"type": "integer", "index": 18, "name": "share_count", "comment": null}, "status_type": {"type": "text", "index": 19, "name": "status_type", "comment": null}, "updated_timestamp": {"type": "timestamp without time zone", "index": 20, "name": "updated_timestamp", "comment": null}, "post_url": {"type": "text", "index": 21, "name": "post_url", "comment": null}, "source_relation": {"type": "text", "index": 22, "name": "source_relation", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.facebook_pages_source.stg_facebook_pages__post_history"}, "model.facebook_pages_source.stg_facebook_pages__post_history_tmp": {"metadata": {"type": "BASE TABLE", "schema": "social_media_rollup_integration_tests_1_social_media_dev", "name": "stg_facebook_pages__post_history_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "character varying", "index": 1, "name": "id", "comment": null}, "updated_time": {"type": "timestamp without time zone", "index": 2, "name": "updated_time", "comment": null}, "_fivetran_synced": {"type": "text", "index": 3, "name": "_fivetran_synced", "comment": null}, "allowed_advertising_objects": {"type": "integer", "index": 4, "name": "allowed_advertising_objects", "comment": null}, "created_time": {"type": "timestamp without time zone", "index": 5, "name": "created_time", "comment": null}, "is_eligible_for_promotion": {"type": "boolean", "index": 6, "name": "is_eligible_for_promotion", "comment": null}, "is_hidden": {"type": "boolean", "index": 7, "name": "is_hidden", "comment": null}, "is_instagram_eligible": {"type": "boolean", "index": 8, "name": "is_instagram_eligible", "comment": null}, "is_published": {"type": "boolean", "index": 9, "name": "is_published", "comment": null}, "page_id": {"type": "bigint", "index": 10, "name": "page_id", "comment": null}, "parent_id": {"type": "integer", "index": 11, "name": "parent_id", "comment": null}, "privacy_allow": {"type": "integer", "index": 12, "name": "privacy_allow", "comment": null}, "privacy_deny": {"type": "integer", "index": 13, "name": "privacy_deny", "comment": null}, "privacy_description": {"type": "text", "index": 14, "name": "privacy_description", "comment": null}, "privacy_friends": {"type": "integer", "index": 15, "name": "privacy_friends", "comment": null}, "privacy_value": {"type": "text", "index": 16, "name": "privacy_value", "comment": null}, "promotable_id": {"type": "character varying", "index": 17, "name": "promotable_id", "comment": null}, "share_count": {"type": "integer", "index": 18, "name": "share_count", "comment": null}, "status_type": {"type": "text", "index": 19, "name": "status_type", "comment": null}, "message": {"type": "text", "index": 20, "name": "message", "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.facebook_pages_source.stg_facebook_pages__post_history_tmp"}, "model.instagram_business_source.stg_instagram_business__media_history": {"metadata": {"type": "BASE TABLE", "schema": "social_media_rollup_integration_tests_1_social_media_dev", "name": "stg_instagram_business__media_history", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"_fivetran_id": {"type": "text", "index": 1, "name": "_fivetran_id", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 2, "name": "_fivetran_synced", "comment": null}, "post_caption": {"type": "integer", "index": 3, "name": "post_caption", "comment": null}, "carousel_album_id": {"type": "bigint", "index": 4, "name": "carousel_album_id", "comment": null}, "created_timestamp": {"type": "timestamp without time zone", "index": 5, "name": "created_timestamp", "comment": null}, "post_id": {"type": "bigint", "index": 6, "name": "post_id", "comment": null}, "ig_id": {"type": "bigint", "index": 7, "name": "ig_id", "comment": null}, "is_comment_enabled": {"type": "boolean", "index": 8, "name": "is_comment_enabled", "comment": null}, "is_story": {"type": "boolean", "index": 9, "name": "is_story", "comment": null}, "media_type": {"type": "text", "index": 10, "name": "media_type", "comment": null}, "media_url": {"type": "text", "index": 11, "name": "media_url", "comment": null}, "post_url": {"type": "text", "index": 12, "name": "post_url", "comment": null}, "shortcode": {"type": "text", "index": 13, "name": "shortcode", "comment": null}, "thumbnail_url": {"type": "integer", "index": 14, "name": "thumbnail_url", "comment": null}, "user_id": {"type": "bigint", "index": 15, "name": "user_id", "comment": null}, "username": {"type": "text", "index": 16, "name": "username", "comment": null}, "source_relation": {"type": "text", "index": 17, "name": "source_relation", "comment": null}, "is_most_recent_record": {"type": "boolean", "index": 18, "name": "is_most_recent_record", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.instagram_business_source.stg_instagram_business__media_history"}, "model.instagram_business_source.stg_instagram_business__media_history_tmp": {"metadata": {"type": "BASE TABLE", "schema": "social_media_rollup_integration_tests_1_social_media_dev", "name": "stg_instagram_business__media_history_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"_fivetran_id": {"type": "text", "index": 1, "name": "_fivetran_id", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 2, "name": "_fivetran_synced", "comment": null}, "caption": {"type": "integer", "index": 3, "name": "caption", "comment": null}, "carousel_album_id": {"type": "bigint", "index": 4, "name": "carousel_album_id", "comment": null}, "created_time": {"type": "timestamp without time zone", "index": 5, "name": "created_time", "comment": null}, "id": {"type": "bigint", "index": 6, "name": "id", "comment": null}, "ig_id": {"type": "bigint", "index": 7, "name": "ig_id", "comment": null}, "is_comment_enabled": {"type": "boolean", "index": 8, "name": "is_comment_enabled", "comment": null}, "is_story": {"type": "boolean", "index": 9, "name": "is_story", "comment": null}, "media_type": {"type": "text", "index": 10, "name": "media_type", "comment": null}, "media_url": {"type": "text", "index": 11, "name": "media_url", "comment": null}, "permalink": {"type": "text", "index": 12, "name": "permalink", "comment": null}, "shortcode": {"type": "text", "index": 13, "name": "shortcode", "comment": null}, "thumbnail_url": {"type": "integer", "index": 14, "name": "thumbnail_url", "comment": null}, "user_id": {"type": "bigint", "index": 15, "name": "user_id", "comment": null}, "username": {"type": "text", "index": 16, "name": "username", "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.instagram_business_source.stg_instagram_business__media_history_tmp"}, "model.instagram_business_source.stg_instagram_business__media_insights": {"metadata": {"type": "BASE TABLE", "schema": "social_media_rollup_integration_tests_1_social_media_dev", "name": "stg_instagram_business__media_insights", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"_fivetran_id": {"type": "text", "index": 1, "name": "_fivetran_id", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 2, "name": "_fivetran_synced", "comment": null}, "carousel_album_engagement": {"type": "integer", "index": 3, "name": "carousel_album_engagement", "comment": null}, "carousel_album_impressions": {"type": "integer", "index": 4, "name": "carousel_album_impressions", "comment": null}, "carousel_album_reach": {"type": "integer", "index": 5, "name": "carousel_album_reach", "comment": null}, "carousel_album_saved": {"type": "integer", "index": 6, "name": "carousel_album_saved", "comment": null}, "carousel_album_video_views": {"type": "integer", "index": 7, "name": "carousel_album_video_views", "comment": null}, "comment_count": {"type": "integer", "index": 8, "name": "comment_count", "comment": null}, "post_id": {"type": "bigint", "index": 9, "name": "post_id", "comment": null}, "like_count": {"type": "integer", "index": 10, "name": "like_count", "comment": null}, "story_exits": {"type": "integer", "index": 11, "name": "story_exits", "comment": null}, "story_impressions": {"type": "integer", "index": 12, "name": "story_impressions", "comment": null}, "story_reach": {"type": "integer", "index": 13, "name": "story_reach", "comment": null}, "story_replies": {"type": "integer", "index": 14, "name": "story_replies", "comment": null}, "story_taps_back": {"type": "integer", "index": 15, "name": "story_taps_back", "comment": null}, "story_taps_forward": {"type": "integer", "index": 16, "name": "story_taps_forward", "comment": null}, "video_photo_engagement": {"type": "integer", "index": 17, "name": "video_photo_engagement", "comment": null}, "video_photo_impressions": {"type": "integer", "index": 18, "name": "video_photo_impressions", "comment": null}, "video_photo_reach": {"type": "integer", "index": 19, "name": "video_photo_reach", "comment": null}, "video_photo_saved": {"type": "integer", "index": 20, "name": "video_photo_saved", "comment": null}, "video_views": {"type": "integer", "index": 21, "name": "video_views", "comment": null}, "reel_comments": {"type": "integer", "index": 22, "name": "reel_comments", "comment": null}, "reel_likes": {"type": "integer", "index": 23, "name": "reel_likes", "comment": null}, "reel_plays": {"type": "integer", "index": 24, "name": "reel_plays", "comment": null}, "reel_reach": {"type": "integer", "index": 25, "name": "reel_reach", "comment": null}, "reel_shares": {"type": "integer", "index": 26, "name": "reel_shares", "comment": null}, "reel_total_interactions": {"type": "integer", "index": 27, "name": "reel_total_interactions", "comment": null}, "source_relation": {"type": "text", "index": 28, "name": "source_relation", "comment": null}, "is_most_recent_record": {"type": "boolean", "index": 29, "name": "is_most_recent_record", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.instagram_business_source.stg_instagram_business__media_insights"}, "model.instagram_business_source.stg_instagram_business__media_insights_tmp": {"metadata": {"type": "BASE TABLE", "schema": "social_media_rollup_integration_tests_1_social_media_dev", "name": "stg_instagram_business__media_insights_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"_fivetran_id": {"type": "text", "index": 1, "name": "_fivetran_id", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 2, "name": "_fivetran_synced", "comment": null}, "carousel_album_engagement": {"type": "integer", "index": 3, "name": "carousel_album_engagement", "comment": null}, "carousel_album_impressions": {"type": "integer", "index": 4, "name": "carousel_album_impressions", "comment": null}, "carousel_album_reach": {"type": "integer", "index": 5, "name": "carousel_album_reach", "comment": null}, "carousel_album_saved": {"type": "integer", "index": 6, "name": "carousel_album_saved", "comment": null}, "carousel_album_video_views": {"type": "integer", "index": 7, "name": "carousel_album_video_views", "comment": null}, "comment_count": {"type": "integer", "index": 8, "name": "comment_count", "comment": null}, "id": {"type": "bigint", "index": 9, "name": "id", "comment": null}, "like_count": {"type": "integer", "index": 10, "name": "like_count", "comment": null}, "story_exits": {"type": "integer", "index": 11, "name": "story_exits", "comment": null}, "story_impressions": {"type": "integer", "index": 12, "name": "story_impressions", "comment": null}, "story_reach": {"type": "integer", "index": 13, "name": "story_reach", "comment": null}, "story_replies": {"type": "integer", "index": 14, "name": "story_replies", "comment": null}, "story_taps_back": {"type": "integer", "index": 15, "name": "story_taps_back", "comment": null}, "story_taps_forward": {"type": "integer", "index": 16, "name": "story_taps_forward", "comment": null}, "video_photo_engagement": {"type": "integer", "index": 17, "name": "video_photo_engagement", "comment": null}, "video_photo_impressions": {"type": "integer", "index": 18, "name": "video_photo_impressions", "comment": null}, "video_photo_reach": {"type": "integer", "index": 19, "name": "video_photo_reach", "comment": null}, "video_photo_saved": {"type": "integer", "index": 20, "name": "video_photo_saved", "comment": null}, "video_views": {"type": "integer", "index": 21, "name": "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.instagram_business_source.stg_instagram_business__media_insights_tmp"}, "model.instagram_business_source.stg_instagram_business__user_history": {"metadata": {"type": "BASE TABLE", "schema": "social_media_rollup_integration_tests_1_social_media_dev", "name": "stg_instagram_business__user_history", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"_fivetran_id": {"type": "text", "index": 1, "name": "_fivetran_id", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 2, "name": "_fivetran_synced", "comment": null}, "followers_count": {"type": "integer", "index": 3, "name": "followers_count", "comment": null}, "follows_count": {"type": "integer", "index": 4, "name": "follows_count", "comment": null}, "user_id": {"type": "bigint", "index": 5, "name": "user_id", "comment": null}, "ig_id": {"type": "bigint", "index": 6, "name": "ig_id", "comment": null}, "media_count": {"type": "integer", "index": 7, "name": "media_count", "comment": null}, "account_name": {"type": "text", "index": 8, "name": "account_name", "comment": null}, "username": {"type": "text", "index": 9, "name": "username", "comment": null}, "website": {"type": "integer", "index": 10, "name": "website", "comment": null}, "source_relation": {"type": "text", "index": 11, "name": "source_relation", "comment": null}, "is_most_recent_record": {"type": "boolean", "index": 12, "name": "is_most_recent_record", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.instagram_business_source.stg_instagram_business__user_history"}, "model.instagram_business_source.stg_instagram_business__user_history_tmp": {"metadata": {"type": "BASE TABLE", "schema": "social_media_rollup_integration_tests_1_social_media_dev", "name": "stg_instagram_business__user_history_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"_fivetran_id": {"type": "text", "index": 1, "name": "_fivetran_id", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 2, "name": "_fivetran_synced", "comment": null}, "followers_count": {"type": "integer", "index": 3, "name": "followers_count", "comment": null}, "follows_count": {"type": "integer", "index": 4, "name": "follows_count", "comment": null}, "id": {"type": "bigint", "index": 5, "name": "id", "comment": null}, "ig_id": {"type": "bigint", "index": 6, "name": "ig_id", "comment": null}, "media_count": {"type": "integer", "index": 7, "name": "media_count", "comment": null}, "name": {"type": "text", "index": 8, "name": "name", "comment": null}, "username": {"type": "text", "index": 9, "name": "username", "comment": null}, "website": {"type": "integer", "index": 10, "name": "website", "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.instagram_business_source.stg_instagram_business__user_history_tmp"}, "model.linkedin_pages_source.stg_linkedin_pages__organization": {"metadata": {"type": "BASE TABLE", "schema": "social_media_rollup_integration_tests_1_social_media_dev", "name": "stg_linkedin_pages__organization", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"organization_id": {"type": "integer", "index": 1, "name": "organization_id", "comment": null}, "organization_name": {"type": "text", "index": 2, "name": "organization_name", "comment": null}, "source_relation": {"type": "text", "index": 3, "name": "source_relation", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.linkedin_pages_source.stg_linkedin_pages__organization"}, "model.linkedin_pages_source.stg_linkedin_pages__organization_tmp": {"metadata": {"type": "BASE TABLE", "schema": "social_media_rollup_integration_tests_1_social_media_dev", "name": "stg_linkedin_pages__organization_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "integer", "index": 1, "name": "id", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 2, "name": "_fivetran_synced", "comment": null}, "cover_photo_v_2_crop_info_height": {"type": "integer", "index": 3, "name": "cover_photo_v_2_crop_info_height", "comment": null}, "cover_photo_v_2_crop_info_width": {"type": "integer", "index": 4, "name": "cover_photo_v_2_crop_info_width", "comment": null}, "cover_photo_v_2_crop_info_x": {"type": "integer", "index": 5, "name": "cover_photo_v_2_crop_info_x", "comment": null}, "cover_photo_v_2_crop_info_y": {"type": "integer", "index": 6, "name": "cover_photo_v_2_crop_info_y", "comment": null}, "cover_photo_v_2_cropped": {"type": "text", "index": 7, "name": "cover_photo_v_2_cropped", "comment": null}, "cover_photo_v_2_original": {"type": "text", "index": 8, "name": "cover_photo_v_2_original", "comment": null}, "default_locale_country": {"type": "text", "index": 9, "name": "default_locale_country", "comment": null}, "default_locale_language": {"type": "text", "index": 10, "name": "default_locale_language", "comment": null}, "description_preferred_locale_country": {"type": "text", "index": 11, "name": "description_preferred_locale_country", "comment": null}, "description_preferred_locale_language": {"type": "text", "index": 12, "name": "description_preferred_locale_language", "comment": null}, "founded_on_day": {"type": "integer", "index": 13, "name": "founded_on_day", "comment": null}, "founded_on_month": {"type": "integer", "index": 14, "name": "founded_on_month", "comment": null}, "founded_on_year": {"type": "integer", "index": 15, "name": "founded_on_year", "comment": null}, "logo_v_2_crop_info_height": {"type": "integer", "index": 16, "name": "logo_v_2_crop_info_height", "comment": null}, "logo_v_2_crop_info_width": {"type": "integer", "index": 17, "name": "logo_v_2_crop_info_width", "comment": null}, "logo_v_2_crop_info_x": {"type": "integer", "index": 18, "name": "logo_v_2_crop_info_x", "comment": null}, "logo_v_2_crop_info_y": {"type": "integer", "index": 19, "name": "logo_v_2_crop_info_y", "comment": null}, "logo_v_2_cropped": {"type": "text", "index": 20, "name": "logo_v_2_cropped", "comment": null}, "logo_v_2_original": {"type": "text", "index": 21, "name": "logo_v_2_original", "comment": null}, "name_preferred_locale_country": {"type": "text", "index": 22, "name": "name_preferred_locale_country", "comment": null}, "name_preferred_locale_language": {"type": "text", "index": 23, "name": "name_preferred_locale_language", "comment": null}, "organization_status": {"type": "text", "index": 24, "name": "organization_status", "comment": null}, "organization_type": {"type": "text", "index": 25, "name": "organization_type", "comment": null}, "overview_photo_v_2_crop_info_height": {"type": "integer", "index": 26, "name": "overview_photo_v_2_crop_info_height", "comment": null}, "overview_photo_v_2_crop_info_width": {"type": "integer", "index": 27, "name": "overview_photo_v_2_crop_info_width", "comment": null}, "overview_photo_v_2_crop_info_x": {"type": "integer", "index": 28, "name": "overview_photo_v_2_crop_info_x", "comment": null}, "overview_photo_v_2_crop_info_y": {"type": "integer", "index": 29, "name": "overview_photo_v_2_crop_info_y", "comment": null}, "overview_photo_v_2_cropped": {"type": "integer", "index": 30, "name": "overview_photo_v_2_cropped", "comment": null}, "overview_photo_v_2_original": {"type": "integer", "index": 31, "name": "overview_photo_v_2_original", "comment": null}, "parent_relationship_parent_id": {"type": "integer", "index": 32, "name": "parent_relationship_parent_id", "comment": null}, "parent_relationship_status": {"type": "integer", "index": 33, "name": "parent_relationship_status", "comment": null}, "parent_relationship_type": {"type": "integer", "index": 34, "name": "parent_relationship_type", "comment": null}, "primary_organization_type": {"type": "text", "index": 35, "name": "primary_organization_type", "comment": null}, "school_attributes_hierarchy_classification": {"type": "integer", "index": 36, "name": "school_attributes_hierarchy_classification", "comment": null}, "school_attributes_legacy_school": {"type": "integer", "index": 37, "name": "school_attributes_legacy_school", "comment": null}, "school_attributes_type": {"type": "integer", "index": 38, "name": "school_attributes_type", "comment": null}, "school_attributes_year_level": {"type": "integer", "index": 39, "name": "school_attributes_year_level", "comment": null}, "staff_count_range": {"type": "integer", "index": 40, "name": "staff_count_range", "comment": null}, "version_tag": {"type": "integer", "index": 41, "name": "version_tag", "comment": null}, "website_preferred_locale_country": {"type": "text", "index": 42, "name": "website_preferred_locale_country", "comment": null}, "website_preferred_locale_language": {"type": "text", "index": 43, "name": "website_preferred_locale_language", "comment": null}, "description_localized": {"type": "text", "index": 44, "name": "description_localized", "comment": null}, "localized_description": {"type": "text", "index": 45, "name": "localized_description", "comment": null}, "localized_name": {"type": "text", "index": 46, "name": "localized_name", "comment": null}, "localized_website": {"type": "text", "index": 47, "name": "localized_website", "comment": null}, "name_localized": {"type": "text", "index": 48, "name": "name_localized", "comment": null}, "vanity_name": {"type": "text", "index": 49, "name": "vanity_name", "comment": null}, "website_localized": {"type": "text", "index": 50, "name": "website_localized", "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_pages_source.stg_linkedin_pages__organization_tmp"}, "model.linkedin_pages_source.stg_linkedin_pages__organization_ugc_post": {"metadata": {"type": "BASE TABLE", "schema": "social_media_rollup_integration_tests_1_social_media_dev", "name": "stg_linkedin_pages__organization_ugc_post", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"_fivetran_synced": {"type": "timestamp without time zone", "index": 1, "name": "_fivetran_synced", "comment": null}, "organization_id": {"type": "integer", "index": 2, "name": "organization_id", "comment": null}, "ugc_post_id": {"type": "text", "index": 3, "name": "ugc_post_id", "comment": null}, "source_relation": {"type": "text", "index": 4, "name": "source_relation", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.linkedin_pages_source.stg_linkedin_pages__organization_ugc_post"}, "model.linkedin_pages_source.stg_linkedin_pages__organization_ugc_post_tmp": {"metadata": {"type": "BASE TABLE", "schema": "social_media_rollup_integration_tests_1_social_media_dev", "name": "stg_linkedin_pages__organization_ugc_post_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"organiation_id": {"type": "integer", "index": 1, "name": "organiation_id", "comment": null}, "ugc_post_id": {"type": "text", "index": 2, "name": "ugc_post_id", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.linkedin_pages_source.stg_linkedin_pages__organization_ugc_post_tmp"}, "model.linkedin_pages_source.stg_linkedin_pages__post_content": {"metadata": {"type": "BASE TABLE", "schema": "social_media_rollup_integration_tests_1_social_media_dev", "name": "stg_linkedin_pages__post_content", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"_fivetran_id": {"type": "text", "index": 1, "name": "_fivetran_id", "comment": null}, "_fivetran_synced": {"type": "text", "index": 2, "name": "_fivetran_synced", "comment": null}, "ugc_post_urn": {"type": "text", "index": 3, "name": "ugc_post_urn", "comment": null}, "article_description": {"type": "integer", "index": 4, "name": "article_description", "comment": null}, "article_source": {"type": "integer", "index": 5, "name": "article_source", "comment": null}, "article_thumbnail": {"type": "integer", "index": 6, "name": "article_thumbnail", "comment": null}, "article_thumbnail_alt_text": {"type": "integer", "index": 7, "name": "article_thumbnail_alt_text", "comment": null}, "article_title": {"type": "text", "index": 8, "name": "article_title", "comment": null}, "carousel_id": {"type": "integer", "index": 9, "name": "carousel_id", "comment": null}, "media_alt_text": {"type": "integer", "index": 10, "name": "media_alt_text", "comment": null}, "media_id": {"type": "text", "index": 11, "name": "media_id", "comment": null}, "media_title": {"type": "text", "index": 12, "name": "media_title", "comment": null}, "multi_image_alt_text": {"type": "integer", "index": 13, "name": "multi_image_alt_text", "comment": null}, "poll_question": {"type": "text", "index": 14, "name": "poll_question", "comment": null}, "poll_settings_duration": {"type": "text", "index": 15, "name": "poll_settings_duration", "comment": null}, "poll_settings_is_voter_visible_to_author": {"type": "boolean", "index": 16, "name": "poll_settings_is_voter_visible_to_author", "comment": null}, "poll_settings_vote_selection_type": {"type": "text", "index": 17, "name": "poll_settings_vote_selection_type", "comment": null}, "poll_unique_voters_count": {"type": "integer", "index": 18, "name": "poll_unique_voters_count", "comment": null}, "post_type": {"type": "text", "index": 19, "name": "post_type", "comment": null}, "source_relation": {"type": "text", "index": 20, "name": "source_relation", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.linkedin_pages_source.stg_linkedin_pages__post_content"}, "model.linkedin_pages_source.stg_linkedin_pages__post_content_tmp": {"metadata": {"type": "BASE TABLE", "schema": "social_media_rollup_integration_tests_1_social_media_dev", "name": "stg_linkedin_pages__post_content_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"_fivetran_synced": {"type": "text", "index": 1, "name": "_fivetran_synced", "comment": null}, "_fivetran_id": {"type": "text", "index": 2, "name": "_fivetran_id", "comment": null}, "post_id": {"type": "text", "index": 3, "name": "post_id", "comment": null}, "article_description": {"type": "integer", "index": 4, "name": "article_description", "comment": null}, "article_source": {"type": "integer", "index": 5, "name": "article_source", "comment": null}, "article_thumbnail": {"type": "integer", "index": 6, "name": "article_thumbnail", "comment": null}, "article_thumbnail_alt_text": {"type": "integer", "index": 7, "name": "article_thumbnail_alt_text", "comment": null}, "article_title": {"type": "integer", "index": 8, "name": "article_title", "comment": null}, "carousel_id": {"type": "integer", "index": 9, "name": "carousel_id", "comment": null}, "media_alt_text": {"type": "integer", "index": 10, "name": "media_alt_text", "comment": null}, "media_id": {"type": "text", "index": 11, "name": "media_id", "comment": null}, "media_title": {"type": "text", "index": 12, "name": "media_title", "comment": null}, "multi_image_alt_text": {"type": "integer", "index": 13, "name": "multi_image_alt_text", "comment": null}, "poll_question": {"type": "text", "index": 14, "name": "poll_question", "comment": null}, "poll_settings_duration": {"type": "text", "index": 15, "name": "poll_settings_duration", "comment": null}, "poll_settings_is_voter_visible_to_author": {"type": "boolean", "index": 16, "name": "poll_settings_is_voter_visible_to_author", "comment": null}, "poll_settings_vote_selection_type": {"type": "text", "index": 17, "name": "poll_settings_vote_selection_type", "comment": null}, "poll_unique_voters_count": {"type": "integer", "index": 18, "name": "poll_unique_voters_count", "comment": null}, "type": {"type": "text", "index": 19, "name": "type", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.linkedin_pages_source.stg_linkedin_pages__post_content_tmp"}, "model.linkedin_pages_source.stg_linkedin_pages__share_statistic": {"metadata": {"type": "BASE TABLE", "schema": "social_media_rollup_integration_tests_1_social_media_dev", "name": "stg_linkedin_pages__share_statistic", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"share_statistic_id": {"type": "text", "index": 1, "name": "share_statistic_id", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 2, "name": "_fivetran_synced", "comment": null}, "organization_entity_urn": {"type": "text", "index": 3, "name": "organization_entity_urn", "comment": null}, "share_entity_urn": {"type": "text", "index": 4, "name": "share_entity_urn", "comment": null}, "click_count": {"type": "integer", "index": 5, "name": "click_count", "comment": null}, "comment_count": {"type": "integer", "index": 6, "name": "comment_count", "comment": null}, "engagement": {"type": "double precision", "index": 7, "name": "engagement", "comment": null}, "impression_count": {"type": "integer", "index": 8, "name": "impression_count", "comment": null}, "like_count": {"type": "integer", "index": 9, "name": "like_count", "comment": null}, "share_count": {"type": "integer", "index": 10, "name": "share_count", "comment": null}, "source_relation": {"type": "text", "index": 11, "name": "source_relation", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.linkedin_pages_source.stg_linkedin_pages__share_statistic"}, "model.linkedin_pages_source.stg_linkedin_pages__share_statistic_tmp": {"metadata": {"type": "BASE TABLE", "schema": "social_media_rollup_integration_tests_1_social_media_dev", "name": "stg_linkedin_pages__share_statistic_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"_fivetran_id": {"type": "text", "index": 1, "name": "_fivetran_id", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 2, "name": "_fivetran_synced", "comment": null}, "_organization_entity_urn": {"type": "text", "index": 3, "name": "_organization_entity_urn", "comment": null}, "_share_entity_urn": {"type": "text", "index": 4, "name": "_share_entity_urn", "comment": null}, "click_count": {"type": "integer", "index": 5, "name": "click_count", "comment": null}, "comment_count": {"type": "integer", "index": 6, "name": "comment_count", "comment": null}, "engagement": {"type": "double precision", "index": 7, "name": "engagement", "comment": null}, "impression_count": {"type": "integer", "index": 8, "name": "impression_count", "comment": null}, "like_count": {"type": "integer", "index": 9, "name": "like_count", "comment": null}, "share_count": {"type": "integer", "index": 10, "name": "share_count", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.linkedin_pages_source.stg_linkedin_pages__share_statistic_tmp"}, "model.linkedin_pages_source.stg_linkedin_pages__ugc_post_history": {"metadata": {"type": "BASE TABLE", "schema": "social_media_rollup_integration_tests_1_social_media_dev", "name": "stg_linkedin_pages__ugc_post_history", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"_fivetran_synced": {"type": "text", "index": 1, "name": "_fivetran_synced", "comment": null}, "post_author": {"type": "text", "index": 2, "name": "post_author", "comment": null}, "commentary": {"type": "text", "index": 3, "name": "commentary", "comment": null}, "created_actor": {"type": "integer", "index": 4, "name": "created_actor", "comment": null}, "created_timestamp": {"type": "text", "index": 5, "name": "created_timestamp", "comment": null}, "first_published_timestamp": {"type": "text", "index": 6, "name": "first_published_timestamp", "comment": null}, "ugc_post_id": {"type": "text", "index": 7, "name": "ugc_post_id", "comment": null}, "ugc_post_urn": {"type": "text", "index": 8, "name": "ugc_post_urn", "comment": null}, "post_url": {"type": "text", "index": 9, "name": "post_url", "comment": null}, "last_modified_actor": {"type": "integer", "index": 10, "name": "last_modified_actor", "comment": null}, "last_modified_timestamp": {"type": "text", "index": 11, "name": "last_modified_timestamp", "comment": null}, "lifecycle_state": {"type": "text", "index": 12, "name": "lifecycle_state", "comment": null}, "visibility": {"type": "text", "index": 13, "name": "visibility", "comment": null}, "source_relation": {"type": "text", "index": 14, "name": "source_relation", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.linkedin_pages_source.stg_linkedin_pages__ugc_post_history"}, "model.linkedin_pages_source.stg_linkedin_pages__ugc_post_history_tmp": {"metadata": {"type": "BASE TABLE", "schema": "social_media_rollup_integration_tests_1_social_media_dev", "name": "stg_linkedin_pages__ugc_post_history_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"_fivetran_synced": {"type": "text", "index": 1, "name": "_fivetran_synced", "comment": null}, "author": {"type": "text", "index": 2, "name": "author", "comment": null}, "commentary": {"type": "text", "index": 3, "name": "commentary", "comment": null}, "container_entity": {"type": "integer", "index": 4, "name": "container_entity", "comment": null}, "created_actor": {"type": "integer", "index": 5, "name": "created_actor", "comment": null}, "created_time": {"type": "text", "index": 6, "name": "created_time", "comment": null}, "distribution_external_distribution_channels": {"type": "text", "index": 7, "name": "distribution_external_distribution_channels", "comment": null}, "distribution_feed_distribution": {"type": "text", "index": 8, "name": "distribution_feed_distribution", "comment": null}, "first_published_at": {"type": "text", "index": 9, "name": "first_published_at", "comment": null}, "id": {"type": "text", "index": 10, "name": "id", "comment": null}, "last_modified_actor": {"type": "integer", "index": 11, "name": "last_modified_actor", "comment": null}, "last_modified_time": {"type": "text", "index": 12, "name": "last_modified_time", "comment": null}, "lifecycle_state": {"type": "text", "index": 13, "name": "lifecycle_state", "comment": null}, "response_context_parent": {"type": "text", "index": 14, "name": "response_context_parent", "comment": null}, "response_context_root": {"type": "text", "index": 15, "name": "response_context_root", "comment": null}, "visibility": {"type": "text", "index": 16, "name": "visibility", "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_pages_source.stg_linkedin_pages__ugc_post_history_tmp"}, "model.linkedin_pages_source.stg_linkedin_pages__ugc_post_share_statistic": {"metadata": {"type": "BASE TABLE", "schema": "social_media_rollup_integration_tests_1_social_media_dev", "name": "stg_linkedin_pages__ugc_post_share_statistic", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"_fivetran_synced": {"type": "timestamp without time zone", "index": 1, "name": "_fivetran_synced", "comment": null}, "share_statistic_id": {"type": "text", "index": 2, "name": "share_statistic_id", "comment": null}, "ugc_post_id": {"type": "text", "index": 3, "name": "ugc_post_id", "comment": null}, "source_relation": {"type": "text", "index": 4, "name": "source_relation", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.linkedin_pages_source.stg_linkedin_pages__ugc_post_share_statistic"}, "model.linkedin_pages_source.stg_linkedin_pages__ugc_post_share_statistic_tmp": {"metadata": {"type": "BASE TABLE", "schema": "social_media_rollup_integration_tests_1_social_media_dev", "name": "stg_linkedin_pages__ugc_post_share_statistic_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"share_statistic_id": {"type": "text", "index": 1, "name": "share_statistic_id", "comment": null}, "ugc_post_id": {"type": "bigint", "index": 2, "name": "ugc_post_id", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.linkedin_pages_source.stg_linkedin_pages__ugc_post_share_statistic_tmp"}, "model.twitter_organic_source.stg_twitter_organic__account_history": {"metadata": {"type": "VIEW", "schema": "social_media_rollup_integration_tests_1_social_media_dev", "name": "stg_twitter_organic__account_history", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"_fivetran_synced": {"type": "timestamp without time zone", "index": 1, "name": "_fivetran_synced", "comment": null}, "business_id": {"type": "integer", "index": 2, "name": "business_id", "comment": null}, "business_name": {"type": "integer", "index": 3, "name": "business_name", "comment": null}, "created_timestamp": {"type": "timestamp without time zone", "index": 4, "name": "created_timestamp", "comment": null}, "is_deleted": {"type": "boolean", "index": 5, "name": "is_deleted", "comment": null}, "account_id": {"type": "text", "index": 6, "name": "account_id", "comment": null}, "industry_type": {"type": "integer", "index": 7, "name": "industry_type", "comment": null}, "account_name": {"type": "text", "index": 8, "name": "account_name", "comment": null}, "timezone": {"type": "text", "index": 9, "name": "timezone", "comment": null}, "updated_timestamp": {"type": "timestamp without time zone", "index": 10, "name": "updated_timestamp", "comment": null}, "source_relation": {"type": "text", "index": 11, "name": "source_relation", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.twitter_organic_source.stg_twitter_organic__account_history"}, "model.twitter_organic_source.stg_twitter_organic__account_history_tmp": {"metadata": {"type": "BASE TABLE", "schema": "social_media_rollup_integration_tests_1_social_media_dev", "name": "stg_twitter_organic__account_history_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "text", "index": 1, "name": "id", "comment": null}, "updated_at": {"type": "timestamp without time zone", "index": 2, "name": "updated_at", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "approval_status": {"type": "text", "index": 4, "name": "approval_status", "comment": null}, "business_id": {"type": "integer", "index": 5, "name": "business_id", "comment": null}, "business_name": {"type": "integer", "index": 6, "name": "business_name", "comment": null}, "created_at": {"type": "timestamp without time zone", "index": 7, "name": "created_at", "comment": null}, "deleted": {"type": "boolean", "index": 8, "name": "deleted", "comment": null}, "industry_type": {"type": "integer", "index": 9, "name": "industry_type", "comment": null}, "name": {"type": "text", "index": 10, "name": "name", "comment": null}, "salt": {"type": "integer", "index": 11, "name": "salt", "comment": null}, "timezone": {"type": "text", "index": 12, "name": "timezone", "comment": null}, "timezone_switch_at": {"type": "timestamp without time zone", "index": 13, "name": "timezone_switch_at", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.twitter_organic_source.stg_twitter_organic__account_history_tmp"}, "model.twitter_organic_source.stg_twitter_organic__organic_tweet_report": {"metadata": {"type": "VIEW", "schema": "social_media_rollup_integration_tests_1_social_media_dev", "name": "stg_twitter_organic__organic_tweet_report", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"_fivetran_synced": {"type": "timestamp without time zone", "index": 1, "name": "_fivetran_synced", "comment": null}, "account_id": {"type": "text", "index": 2, "name": "account_id", "comment": null}, "app_clicks": {"type": "integer", "index": 3, "name": "app_clicks", "comment": null}, "card_engagements": {"type": "integer", "index": 4, "name": "card_engagements", "comment": null}, "carousel_swipes": {"type": "integer", "index": 5, "name": "carousel_swipes", "comment": null}, "clicks": {"type": "integer", "index": 6, "name": "clicks", "comment": null}, "date_day": {"type": "timestamp without time zone", "index": 7, "name": "date_day", "comment": null}, "engagements": {"type": "integer", "index": 8, "name": "engagements", "comment": null}, "follows": {"type": "integer", "index": 9, "name": "follows", "comment": null}, "impressions": {"type": "integer", "index": 10, "name": "impressions", "comment": null}, "likes": {"type": "integer", "index": 11, "name": "likes", "comment": null}, "organic_tweet_id": {"type": "bigint", "index": 12, "name": "organic_tweet_id", "comment": null}, "placement": {"type": "text", "index": 13, "name": "placement", "comment": null}, "poll_card_vote": {"type": "integer", "index": 14, "name": "poll_card_vote", "comment": null}, "qualified_impressions": {"type": "integer", "index": 15, "name": "qualified_impressions", "comment": null}, "replies": {"type": "integer", "index": 16, "name": "replies", "comment": null}, "retweets": {"type": "integer", "index": 17, "name": "retweets", "comment": null}, "tweets_send": {"type": "integer", "index": 18, "name": "tweets_send", "comment": null}, "unfollows": {"type": "integer", "index": 19, "name": "unfollows", "comment": null}, "url_clicks": {"type": "integer", "index": 20, "name": "url_clicks", "comment": null}, "video_15_s_views": {"type": "integer", "index": 21, "name": "video_15_s_views", "comment": null}, "video_3_s_100_pct_views": {"type": "integer", "index": 22, "name": "video_3_s_100_pct_views", "comment": null}, "video_6_s_views": {"type": "integer", "index": 23, "name": "video_6_s_views", "comment": null}, "video_content_starts": {"type": "integer", "index": 24, "name": "video_content_starts", "comment": null}, "video_cta_clicks": {"type": "integer", "index": 25, "name": "video_cta_clicks", "comment": null}, "video_total_views": {"type": "integer", "index": 26, "name": "video_total_views", "comment": null}, "video_views_100": {"type": "integer", "index": 27, "name": "video_views_100", "comment": null}, "video_views_25": {"type": "integer", "index": 28, "name": "video_views_25", "comment": null}, "video_views_50": {"type": "integer", "index": 29, "name": "video_views_50", "comment": null}, "video_views_75": {"type": "integer", "index": 30, "name": "video_views_75", "comment": null}, "source_relation": {"type": "text", "index": 31, "name": "source_relation", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.twitter_organic_source.stg_twitter_organic__organic_tweet_report"}, "model.twitter_organic_source.stg_twitter_organic__organic_tweet_report_tmp": {"metadata": {"type": "BASE TABLE", "schema": "social_media_rollup_integration_tests_1_social_media_dev", "name": "stg_twitter_organic__organic_tweet_report_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"account_id": {"type": "text", "index": 1, "name": "account_id", "comment": null}, "date": {"type": "timestamp without time zone", "index": 2, "name": "date", "comment": null}, "organic_tweet_id": {"type": "bigint", "index": 3, "name": "organic_tweet_id", "comment": null}, "placement": {"type": "text", "index": 4, "name": "placement", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 5, "name": "_fivetran_synced", "comment": null}, "app_clicks": {"type": "integer", "index": 6, "name": "app_clicks", "comment": null}, "card_engagements": {"type": "integer", "index": 7, "name": "card_engagements", "comment": null}, "carousel_swipes": {"type": "integer", "index": 8, "name": "carousel_swipes", "comment": null}, "clicks": {"type": "integer", "index": 9, "name": "clicks", "comment": null}, "engagements": {"type": "integer", "index": 10, "name": "engagements", "comment": null}, "follows": {"type": "integer", "index": 11, "name": "follows", "comment": null}, "impressions": {"type": "integer", "index": 12, "name": "impressions", "comment": null}, "likes": {"type": "integer", "index": 13, "name": "likes", "comment": null}, "poll_card_vote": {"type": "integer", "index": 14, "name": "poll_card_vote", "comment": null}, "qualified_impressions": {"type": "integer", "index": 15, "name": "qualified_impressions", "comment": null}, "replies": {"type": "integer", "index": 16, "name": "replies", "comment": null}, "retweets": {"type": "integer", "index": 17, "name": "retweets", "comment": null}, "tweets_send": {"type": "integer", "index": 18, "name": "tweets_send", "comment": null}, "unfollows": {"type": "integer", "index": 19, "name": "unfollows", "comment": null}, "url_clicks": {"type": "integer", "index": 20, "name": "url_clicks", "comment": null}, "video_15_s_views": {"type": "integer", "index": 21, "name": "video_15_s_views", "comment": null}, "video_3_s_100_pct_views": {"type": "integer", "index": 22, "name": "video_3_s_100_pct_views", "comment": null}, "video_6_s_views": {"type": "integer", "index": 23, "name": "video_6_s_views", "comment": null}, "video_content_starts": {"type": "integer", "index": 24, "name": "video_content_starts", "comment": null}, "video_cta_clicks": {"type": "integer", "index": 25, "name": "video_cta_clicks", "comment": null}, "video_total_views": {"type": "integer", "index": 26, "name": "video_total_views", "comment": null}, "video_views_100": {"type": "integer", "index": 27, "name": "video_views_100", "comment": null}, "video_views_25": {"type": "integer", "index": 28, "name": "video_views_25", "comment": null}, "video_views_50": {"type": "integer", "index": 29, "name": "video_views_50", "comment": null}, "video_views_75": {"type": "integer", "index": 30, "name": "video_views_75", "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.twitter_organic_source.stg_twitter_organic__organic_tweet_report_tmp"}, "model.twitter_organic_source.stg_twitter_organic__tweet": {"metadata": {"type": "VIEW", "schema": "social_media_rollup_integration_tests_1_social_media_dev", "name": "stg_twitter_organic__tweet", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"_fivetran_synced": {"type": "timestamp without time zone", "index": 1, "name": "_fivetran_synced", "comment": null}, "account_id": {"type": "text", "index": 2, "name": "account_id", "comment": null}, "card_uri": {"type": "text", "index": 3, "name": "card_uri", "comment": null}, "coordinates_coordinates": {"type": "integer", "index": 4, "name": "coordinates_coordinates", "comment": null}, "coordinates_type": {"type": "integer", "index": 5, "name": "coordinates_type", "comment": null}, "created_timestamp": {"type": "timestamp without time zone", "index": 6, "name": "created_timestamp", "comment": null}, "favorite_count": {"type": "integer", "index": 7, "name": "favorite_count", "comment": null}, "favorited": {"type": "boolean", "index": 8, "name": "favorited", "comment": null}, "followers": {"type": "integer", "index": 9, "name": "followers", "comment": null}, "tweet_text": {"type": "text", "index": 10, "name": "tweet_text", "comment": null}, "geo_coordinates": {"type": "integer", "index": 11, "name": "geo_coordinates", "comment": null}, "geo_type": {"type": "integer", "index": 12, "name": "geo_type", "comment": null}, "organic_tweet_id": {"type": "bigint", "index": 13, "name": "organic_tweet_id", "comment": null}, "post_url": {"type": "text", "index": 14, "name": "post_url", "comment": null}, "in_reply_to_screen_name": {"type": "text", "index": 15, "name": "in_reply_to_screen_name", "comment": null}, "in_reply_to_status_id": {"type": "integer", "index": 16, "name": "in_reply_to_status_id", "comment": null}, "in_reply_to_user_id": {"type": "integer", "index": 17, "name": "in_reply_to_user_id", "comment": null}, "language": {"type": "text", "index": 18, "name": "language", "comment": null}, "media_key": {"type": "integer", "index": 19, "name": "media_key", "comment": null}, "retweet_count": {"type": "integer", "index": 20, "name": "retweet_count", "comment": null}, "retweeted": {"type": "boolean", "index": 21, "name": "retweeted", "comment": null}, "source": {"type": "text", "index": 22, "name": "source", "comment": null}, "truncated": {"type": "boolean", "index": 23, "name": "truncated", "comment": null}, "tweet_type": {"type": "text", "index": 24, "name": "tweet_type", "comment": null}, "user_id": {"type": "bigint", "index": 25, "name": "user_id", "comment": null}, "source_relation": {"type": "text", "index": 26, "name": "source_relation", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.twitter_organic_source.stg_twitter_organic__tweet"}, "model.twitter_organic_source.stg_twitter_organic__tweet_tmp": {"metadata": {"type": "BASE TABLE", "schema": "social_media_rollup_integration_tests_1_social_media_dev", "name": "stg_twitter_organic__tweet_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "bigint", "index": 1, "name": "id", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 2, "name": "_fivetran_synced", "comment": null}, "account_id": {"type": "text", "index": 3, "name": "account_id", "comment": null}, "card_uri": {"type": "text", "index": 4, "name": "card_uri", "comment": null}, "coordinates_coordinates": {"type": "integer", "index": 5, "name": "coordinates_coordinates", "comment": null}, "coordinates_type": {"type": "integer", "index": 6, "name": "coordinates_type", "comment": null}, "created_at": {"type": "timestamp without time zone", "index": 7, "name": "created_at", "comment": null}, "favorite_count": {"type": "integer", "index": 8, "name": "favorite_count", "comment": null}, "favorited": {"type": "boolean", "index": 9, "name": "favorited", "comment": null}, "followers": {"type": "integer", "index": 10, "name": "followers", "comment": null}, "geo_coordinates": {"type": "integer", "index": 11, "name": "geo_coordinates", "comment": null}, "geo_type": {"type": "integer", "index": 12, "name": "geo_type", "comment": null}, "in_reply_to_screen_name": {"type": "text", "index": 13, "name": "in_reply_to_screen_name", "comment": null}, "in_reply_to_status_id": {"type": "integer", "index": 14, "name": "in_reply_to_status_id", "comment": null}, "in_reply_to_user_id": {"type": "integer", "index": 15, "name": "in_reply_to_user_id", "comment": null}, "lang": {"type": "text", "index": 16, "name": "lang", "comment": null}, "media_key": {"type": "integer", "index": 17, "name": "media_key", "comment": null}, "retweet_count": {"type": "integer", "index": 18, "name": "retweet_count", "comment": null}, "retweeted": {"type": "boolean", "index": 19, "name": "retweeted", "comment": null}, "truncated": {"type": "boolean", "index": 20, "name": "truncated", "comment": null}, "tweet_type": {"type": "text", "index": 21, "name": "tweet_type", "comment": null}, "user_id": {"type": "integer", "index": 22, "name": "user_id", "comment": null}, "source": {"type": "text", "index": 23, "name": "source", "comment": null}, "full_test": {"type": "text", "index": 24, "name": "full_test", "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.twitter_organic_source.stg_twitter_organic__tweet_tmp"}, "model.twitter_organic_source.stg_twitter_organic__twitter_user_history": {"metadata": {"type": "VIEW", "schema": "social_media_rollup_integration_tests_1_social_media_dev", "name": "stg_twitter_organic__twitter_user_history", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"_fivetran_synced": {"type": "timestamp without time zone", "index": 1, "name": "_fivetran_synced", "comment": null}, "created_timestamp": {"type": "timestamp without time zone", "index": 2, "name": "created_timestamp", "comment": null}, "user_description": {"type": "text", "index": 3, "name": "user_description", "comment": null}, "followers_count": {"type": "integer", "index": 4, "name": "followers_count", "comment": null}, "user_id": {"type": "bigint", "index": 5, "name": "user_id", "comment": null}, "user_location": {"type": "text", "index": 6, "name": "user_location", "comment": null}, "user_name": {"type": "text", "index": 7, "name": "user_name", "comment": null}, "user_screen_name": {"type": "text", "index": 8, "name": "user_screen_name", "comment": null}, "source_relation": {"type": "text", "index": 9, "name": "source_relation", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.twitter_organic_source.stg_twitter_organic__twitter_user_history"}, "model.twitter_organic_source.stg_twitter_organic__twitter_user_history_tmp": {"metadata": {"type": "BASE TABLE", "schema": "social_media_rollup_integration_tests_1_social_media_dev", "name": "stg_twitter_organic__twitter_user_history_tmp", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "integer", "index": 1, "name": "id", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 2, "name": "_fivetran_synced", "comment": null}, "contributors_enabled": {"type": "boolean", "index": 3, "name": "contributors_enabled", "comment": null}, "created_at": {"type": "timestamp without time zone", "index": 4, "name": "created_at", "comment": null}, "default_profile": {"type": "boolean", "index": 5, "name": "default_profile", "comment": null}, "default_profile_image": {"type": "boolean", "index": 6, "name": "default_profile_image", "comment": null}, "description": {"type": "text", "index": 7, "name": "description", "comment": null}, "favourites_count": {"type": "integer", "index": 8, "name": "favourites_count", "comment": null}, "followers_count": {"type": "integer", "index": 9, "name": "followers_count", "comment": null}, "friends_count": {"type": "integer", "index": 10, "name": "friends_count", "comment": null}, "geo_enabled": {"type": "boolean", "index": 11, "name": "geo_enabled", "comment": null}, "is_translation_enabled": {"type": "boolean", "index": 12, "name": "is_translation_enabled", "comment": null}, "is_translator": {"type": "boolean", "index": 13, "name": "is_translator", "comment": null}, "lang": {"type": "integer", "index": 14, "name": "lang", "comment": null}, "listed_count": {"type": "integer", "index": 15, "name": "listed_count", "comment": null}, "location": {"type": "text", "index": 16, "name": "location", "comment": null}, "name": {"type": "text", "index": 17, "name": "name", "comment": null}, "profile_background_image_url": {"type": "text", "index": 18, "name": "profile_background_image_url", "comment": null}, "profile_background_image_url_https": {"type": "text", "index": 19, "name": "profile_background_image_url_https", "comment": null}, "profile_background_tile": {"type": "boolean", "index": 20, "name": "profile_background_tile", "comment": null}, "profile_banner_url": {"type": "text", "index": 21, "name": "profile_banner_url", "comment": null}, "profile_image_url": {"type": "text", "index": 22, "name": "profile_image_url", "comment": null}, "profile_image_url_https": {"type": "text", "index": 23, "name": "profile_image_url_https", "comment": null}, "profile_use_background_image": {"type": "boolean", "index": 24, "name": "profile_use_background_image", "comment": null}, "protected_user": {"type": "boolean", "index": 25, "name": "protected_user", "comment": null}, "screen_name": {"type": "text", "index": 26, "name": "screen_name", "comment": null}, "statuses_count": {"type": "integer", "index": 27, "name": "statuses_count", "comment": null}, "time_zone": {"type": "integer", "index": 28, "name": "time_zone", "comment": null}, "url": {"type": "text", "index": 29, "name": "url", "comment": null}, "utc_offset": {"type": "integer", "index": 30, "name": "utc_offset", "comment": null}, "verified": {"type": "boolean", "index": 31, "name": "verified", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "model.twitter_organic_source.stg_twitter_organic__twitter_user_history_tmp"}, "model.twitter_organic.twitter_organic__tweets": {"metadata": {"type": "BASE TABLE", "schema": "social_media_rollup_integration_tests_1_social_media_dev", "name": "twitter_organic__tweets", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"date_day": {"type": "timestamp without time zone", "index": 1, "name": "date_day", "comment": null}, "organic_tweet_id": {"type": "bigint", "index": 2, "name": "organic_tweet_id", "comment": null}, "created_timestamp": {"type": "timestamp without time zone", "index": 3, "name": "created_timestamp", "comment": null}, "tweet_text": {"type": "text", "index": 4, "name": "tweet_text", "comment": null}, "account_id": {"type": "text", "index": 5, "name": "account_id", "comment": null}, "post_url": {"type": "text", "index": 6, "name": "post_url", "comment": null}, "account_name": {"type": "text", "index": 7, "name": "account_name", "comment": null}, "user_id": {"type": "bigint", "index": 8, "name": "user_id", "comment": null}, "user_name": {"type": "text", "index": 9, "name": "user_name", "comment": null}, "source_relation": {"type": "text", "index": 10, "name": "source_relation", "comment": null}, "app_clicks": {"type": "bigint", "index": 11, "name": "app_clicks", "comment": null}, "card_engagements": {"type": "bigint", "index": 12, "name": "card_engagements", "comment": null}, "carousel_swipes": {"type": "bigint", "index": 13, "name": "carousel_swipes", "comment": null}, "clicks": {"type": "bigint", "index": 14, "name": "clicks", "comment": null}, "engagements": {"type": "bigint", "index": 15, "name": "engagements", "comment": null}, "follows": {"type": "bigint", "index": 16, "name": "follows", "comment": null}, "impressions": {"type": "bigint", "index": 17, "name": "impressions", "comment": null}, "likes": {"type": "bigint", "index": 18, "name": "likes", "comment": null}, "poll_card_vote": {"type": "bigint", "index": 19, "name": "poll_card_vote", "comment": null}, "qualified_impressions": {"type": "bigint", "index": 20, "name": "qualified_impressions", "comment": null}, "replies": {"type": "bigint", "index": 21, "name": "replies", "comment": null}, "retweets": {"type": "bigint", "index": 22, "name": "retweets", "comment": null}, "unfollows": {"type": "bigint", "index": 23, "name": "unfollows", "comment": null}, "url_clicks": {"type": "bigint", "index": 24, "name": "url_clicks", "comment": null}, "video_15_s_views": {"type": "bigint", "index": 25, "name": "video_15_s_views", "comment": null}, "video_3_s_100_pct_views": {"type": "bigint", "index": 26, "name": "video_3_s_100_pct_views", "comment": null}, "video_6_s_views": {"type": "bigint", "index": 27, "name": "video_6_s_views", "comment": null}, "video_content_starts": {"type": "bigint", "index": 28, "name": "video_content_starts", "comment": null}, "video_cta_clicks": {"type": "bigint", "index": 29, "name": "video_cta_clicks", "comment": null}, "video_total_views": {"type": "bigint", "index": 30, "name": "video_total_views", "comment": null}, "video_views_100": {"type": "bigint", "index": 31, "name": "video_views_100", "comment": null}, "video_views_25": {"type": "bigint", "index": 32, "name": "video_views_25", "comment": null}, "video_views_50": {"type": "bigint", "index": 33, "name": "video_views_50", "comment": null}, "video_views_75": {"type": "bigint", "index": 34, "name": "video_views_75", "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.twitter_organic.twitter_organic__tweets"}}, "sources": {"source.twitter_organic_source.twitter.account_history": {"metadata": {"type": "BASE TABLE", "schema": "social_media_rollup_integration_tests_1", "name": "account_history", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "text", "index": 1, "name": "id", "comment": null}, "updated_at": {"type": "timestamp without time zone", "index": 2, "name": "updated_at", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}, "approval_status": {"type": "text", "index": 4, "name": "approval_status", "comment": null}, "business_id": {"type": "integer", "index": 5, "name": "business_id", "comment": null}, "business_name": {"type": "integer", "index": 6, "name": "business_name", "comment": null}, "created_at": {"type": "timestamp without time zone", "index": 7, "name": "created_at", "comment": null}, "deleted": {"type": "boolean", "index": 8, "name": "deleted", "comment": null}, "industry_type": {"type": "integer", "index": 9, "name": "industry_type", "comment": null}, "name": {"type": "text", "index": 10, "name": "name", "comment": null}, "salt": {"type": "integer", "index": 11, "name": "salt", "comment": null}, "timezone": {"type": "text", "index": 12, "name": "timezone", "comment": null}, "timezone_switch_at": {"type": "timestamp without time zone", "index": 13, "name": "timezone_switch_at", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.twitter_organic_source.twitter.account_history"}, "source.facebook_pages_source.facebook_pages.daily_page_metrics_total": {"metadata": {"type": "BASE TABLE", "schema": "social_media_rollup_integration_tests_1", "name": "facebook_pages_daily_page_metrics_total_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"date": {"type": "timestamp without time zone", "index": 1, "name": "date", "comment": null}, "page_id": {"type": "bigint", "index": 2, "name": "page_id", "comment": null}, "_fivetran_synced": {"type": "text", "index": 3, "name": "_fivetran_synced", "comment": null}, "page_actions_post_reactions_anger_total": {"type": "integer", "index": 4, "name": "page_actions_post_reactions_anger_total", "comment": null}, "page_actions_post_reactions_haha_total": {"type": "integer", "index": 5, "name": "page_actions_post_reactions_haha_total", "comment": null}, "page_actions_post_reactions_like_total": {"type": "integer", "index": 6, "name": "page_actions_post_reactions_like_total", "comment": null}, "page_actions_post_reactions_love_total": {"type": "integer", "index": 7, "name": "page_actions_post_reactions_love_total", "comment": null}, "page_actions_post_reactions_sorry_total": {"type": "integer", "index": 8, "name": "page_actions_post_reactions_sorry_total", "comment": null}, "page_actions_post_reactions_total": {"type": "integer", "index": 9, "name": "page_actions_post_reactions_total", "comment": null}, "page_actions_post_reactions_wow_total": {"type": "integer", "index": 10, "name": "page_actions_post_reactions_wow_total", "comment": null}, "page_fan_adds": {"type": "integer", "index": 11, "name": "page_fan_adds", "comment": null}, "page_fan_removes": {"type": "integer", "index": 12, "name": "page_fan_removes", "comment": null}, "page_fans": {"type": "integer", "index": 13, "name": "page_fans", "comment": null}, "page_impressions": {"type": "integer", "index": 14, "name": "page_impressions", "comment": null}, "page_impressions_nonviral": {"type": "integer", "index": 15, "name": "page_impressions_nonviral", "comment": null}, "page_impressions_organic": {"type": "integer", "index": 16, "name": "page_impressions_organic", "comment": null}, "page_impressions_paid": {"type": "integer", "index": 17, "name": "page_impressions_paid", "comment": null}, "page_impressions_viral": {"type": "integer", "index": 18, "name": "page_impressions_viral", "comment": null}, "page_negative_feedback": {"type": "integer", "index": 19, "name": "page_negative_feedback", "comment": null}, "page_places_checkin_total": {"type": "integer", "index": 20, "name": "page_places_checkin_total", "comment": null}, "page_post_engagements": {"type": "integer", "index": 21, "name": "page_post_engagements", "comment": null}, "page_posts_impressions": {"type": "integer", "index": 22, "name": "page_posts_impressions", "comment": null}, "page_posts_impressions_nonviral": {"type": "integer", "index": 23, "name": "page_posts_impressions_nonviral", "comment": null}, "page_posts_impressions_organic": {"type": "integer", "index": 24, "name": "page_posts_impressions_organic", "comment": null}, "page_posts_impressions_paid": {"type": "integer", "index": 25, "name": "page_posts_impressions_paid", "comment": null}, "page_posts_impressions_viral": {"type": "integer", "index": 26, "name": "page_posts_impressions_viral", "comment": null}, "page_total_actions": {"type": "integer", "index": 27, "name": "page_total_actions", "comment": null}, "page_video_complete_views_30_s": {"type": "integer", "index": 28, "name": "page_video_complete_views_30_s", "comment": null}, "page_video_complete_views_30_s_autoplayed": {"type": "integer", "index": 29, "name": "page_video_complete_views_30_s_autoplayed", "comment": null}, "page_video_complete_views_30_s_click_to_play": {"type": "integer", "index": 30, "name": "page_video_complete_views_30_s_click_to_play", "comment": null}, "page_video_complete_views_30_s_organic": {"type": "integer", "index": 31, "name": "page_video_complete_views_30_s_organic", "comment": null}, "page_video_complete_views_30_s_paid": {"type": "integer", "index": 32, "name": "page_video_complete_views_30_s_paid", "comment": null}, "page_video_complete_views_30_s_repeat_views": {"type": "integer", "index": 33, "name": "page_video_complete_views_30_s_repeat_views", "comment": null}, "page_video_repeat_views": {"type": "integer", "index": 34, "name": "page_video_repeat_views", "comment": null}, "page_video_view_time": {"type": "integer", "index": 35, "name": "page_video_view_time", "comment": null}, "page_video_views": {"type": "integer", "index": 36, "name": "page_video_views", "comment": null}, "page_video_views_10_s": {"type": "integer", "index": 37, "name": "page_video_views_10_s", "comment": null}, "page_video_views_10_s_autoplayed": {"type": "integer", "index": 38, "name": "page_video_views_10_s_autoplayed", "comment": null}, "page_video_views_10_s_click_to_play": {"type": "integer", "index": 39, "name": "page_video_views_10_s_click_to_play", "comment": null}, "page_video_views_10_s_organic": {"type": "integer", "index": 40, "name": "page_video_views_10_s_organic", "comment": null}, "page_video_views_10_s_paid": {"type": "integer", "index": 41, "name": "page_video_views_10_s_paid", "comment": null}, "page_video_views_10_s_repeat": {"type": "integer", "index": 42, "name": "page_video_views_10_s_repeat", "comment": null}, "page_video_views_autoplayed": {"type": "integer", "index": 43, "name": "page_video_views_autoplayed", "comment": null}, "page_video_views_click_to_play": {"type": "integer", "index": 44, "name": "page_video_views_click_to_play", "comment": null}, "page_video_views_organic": {"type": "integer", "index": 45, "name": "page_video_views_organic", "comment": null}, "page_video_views_paid": {"type": "integer", "index": 46, "name": "page_video_views_paid", "comment": null}, "page_views_total": {"type": "integer", "index": 47, "name": "page_views_total", "comment": null}, "page_fans_online_per_day": {"type": "integer", "index": 48, "name": "page_fans_online_per_day", "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.facebook_pages_source.facebook_pages.daily_page_metrics_total"}, "source.facebook_pages_source.facebook_pages.lifetime_post_metrics_total": {"metadata": {"type": "BASE TABLE", "schema": "social_media_rollup_integration_tests_1", "name": "facebook_pages_lifetime_post_metrics_total_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"date": {"type": "timestamp without time zone", "index": 1, "name": "date", "comment": null}, "post_id": {"type": "character varying", "index": 2, "name": "post_id", "comment": null}, "_fivetran_synced": {"type": "text", "index": 3, "name": "_fivetran_synced", "comment": null}, "post_clicks": {"type": "integer", "index": 4, "name": "post_clicks", "comment": null}, "post_engaged_fan": {"type": "integer", "index": 5, "name": "post_engaged_fan", "comment": null}, "post_engaged_users": {"type": "integer", "index": 6, "name": "post_engaged_users", "comment": null}, "post_impressions": {"type": "integer", "index": 7, "name": "post_impressions", "comment": null}, "post_impressions_fan": {"type": "integer", "index": 8, "name": "post_impressions_fan", "comment": null}, "post_impressions_nonviral": {"type": "integer", "index": 9, "name": "post_impressions_nonviral", "comment": null}, "post_impressions_organic": {"type": "integer", "index": 10, "name": "post_impressions_organic", "comment": null}, "post_impressions_paid": {"type": "integer", "index": 11, "name": "post_impressions_paid", "comment": null}, "post_impressions_viral": {"type": "integer", "index": 12, "name": "post_impressions_viral", "comment": null}, "post_negative_feedback": {"type": "integer", "index": 13, "name": "post_negative_feedback", "comment": null}, "post_reactions_anger_total": {"type": "integer", "index": 14, "name": "post_reactions_anger_total", "comment": null}, "post_reactions_haha_total": {"type": "integer", "index": 15, "name": "post_reactions_haha_total", "comment": null}, "post_reactions_like_total": {"type": "integer", "index": 16, "name": "post_reactions_like_total", "comment": null}, "post_reactions_love_total": {"type": "integer", "index": 17, "name": "post_reactions_love_total", "comment": null}, "post_reactions_sorry_total": {"type": "integer", "index": 18, "name": "post_reactions_sorry_total", "comment": null}, "post_reactions_wow_total": {"type": "integer", "index": 19, "name": "post_reactions_wow_total", "comment": null}, "post_video_avg_time_watched": {"type": "integer", "index": 20, "name": "post_video_avg_time_watched", "comment": null}, "post_video_complete_views_30_s_autoplayed": {"type": "integer", "index": 21, "name": "post_video_complete_views_30_s_autoplayed", "comment": null}, "post_video_complete_views_30_s_clicked_to_play": {"type": "integer", "index": 22, "name": "post_video_complete_views_30_s_clicked_to_play", "comment": null}, "post_video_complete_views_30_s_organic": {"type": "integer", "index": 23, "name": "post_video_complete_views_30_s_organic", "comment": null}, "post_video_complete_views_30_s_paid": {"type": "integer", "index": 24, "name": "post_video_complete_views_30_s_paid", "comment": null}, "post_video_complete_views_organic": {"type": "integer", "index": 25, "name": "post_video_complete_views_organic", "comment": null}, "post_video_complete_views_paid": {"type": "integer", "index": 26, "name": "post_video_complete_views_paid", "comment": null}, "post_video_view_time": {"type": "integer", "index": 27, "name": "post_video_view_time", "comment": null}, "post_video_view_time_organic": {"type": "integer", "index": 28, "name": "post_video_view_time_organic", "comment": null}, "post_video_views": {"type": "integer", "index": 29, "name": "post_video_views", "comment": null}, "post_video_views_10_s": {"type": "integer", "index": 30, "name": "post_video_views_10_s", "comment": null}, "post_video_views_10_s_autoplayed": {"type": "integer", "index": 31, "name": "post_video_views_10_s_autoplayed", "comment": null}, "post_video_views_10_s_clicked_to_play": {"type": "integer", "index": 32, "name": "post_video_views_10_s_clicked_to_play", "comment": null}, "post_video_views_10_s_organic": {"type": "integer", "index": 33, "name": "post_video_views_10_s_organic", "comment": null}, "post_video_views_10_s_paid": {"type": "integer", "index": 34, "name": "post_video_views_10_s_paid", "comment": null}, "post_video_views_10_s_sound_on": {"type": "integer", "index": 35, "name": "post_video_views_10_s_sound_on", "comment": null}, "post_video_views_autoplayed": {"type": "integer", "index": 36, "name": "post_video_views_autoplayed", "comment": null}, "post_video_views_clicked_to_play": {"type": "integer", "index": 37, "name": "post_video_views_clicked_to_play", "comment": null}, "post_video_views_organic": {"type": "integer", "index": 38, "name": "post_video_views_organic", "comment": null}, "post_video_views_paid": {"type": "integer", "index": 39, "name": "post_video_views_paid", "comment": null}, "post_video_views_sound_on": {"type": "integer", "index": 40, "name": "post_video_views_sound_on", "comment": null}, "post_video_length": {"type": "integer", "index": 41, "name": "post_video_length", "comment": null}, "post_video_views_15_s": {"type": "integer", "index": 42, "name": "post_video_views_15_s", "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.facebook_pages_source.facebook_pages.lifetime_post_metrics_total"}, "source.facebook_pages_source.facebook_pages.page": {"metadata": {"type": "BASE TABLE", "schema": "social_media_rollup_integration_tests_1", "name": "facebook_pages_page_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "bigint", "index": 1, "name": "id", "comment": null}, "_fivetran_deleted": {"type": "boolean", "index": 2, "name": "_fivetran_deleted", "comment": null}, "_fivetran_synced": {"type": "text", "index": 3, "name": "_fivetran_synced", "comment": null}, "affiliation": {"type": "integer", "index": 4, "name": "affiliation", "comment": null}, "app_id": {"type": "integer", "index": 5, "name": "app_id", "comment": null}, "artists_we_like": {"type": "integer", "index": 6, "name": "artists_we_like", "comment": null}, "attire": {"type": "integer", "index": 7, "name": "attire", "comment": null}, "awards": {"type": "integer", "index": 8, "name": "awards", "comment": null}, "band_interests": {"type": "integer", "index": 9, "name": "band_interests", "comment": null}, "band_members": {"type": "integer", "index": 10, "name": "band_members", "comment": null}, "bio": {"type": "integer", "index": 11, "name": "bio", "comment": null}, "birthday": {"type": "integer", "index": 12, "name": "birthday", "comment": null}, "booking_agent": {"type": "integer", "index": 13, "name": "booking_agent", "comment": null}, "built": {"type": "integer", "index": 14, "name": "built", "comment": null}, "can_checkin": {"type": "boolean", "index": 15, "name": "can_checkin", "comment": null}, "can_post": {"type": "boolean", "index": 16, "name": "can_post", "comment": null}, "category": {"type": "text", "index": 17, "name": "category", "comment": null}, "category_list": {"type": "text", "index": 18, "name": "category_list", "comment": null}, "checkins": {"type": "integer", "index": 19, "name": "checkins", "comment": null}, "company_overview": {"type": "integer", "index": 20, "name": "company_overview", "comment": null}, "culinary_team": {"type": "integer", "index": 21, "name": "culinary_team", "comment": null}, "current_location": {"type": "integer", "index": 22, "name": "current_location", "comment": null}, "description": {"type": "text", "index": 23, "name": "description", "comment": null}, "directed_by": {"type": "integer", "index": 24, "name": "directed_by", "comment": null}, "display_subtext": {"type": "text", "index": 25, "name": "display_subtext", "comment": null}, "emails": {"type": "text", "index": 26, "name": "emails", "comment": null}, "fan_count": {"type": "integer", "index": 27, "name": "fan_count", "comment": null}, "features": {"type": "integer", "index": 28, "name": "features", "comment": null}, "food_styles": {"type": "integer", "index": 29, "name": "food_styles", "comment": null}, "founded": {"type": "integer", "index": 30, "name": "founded", "comment": null}, "general_info": {"type": "integer", "index": 31, "name": "general_info", "comment": null}, "general_manager": {"type": "integer", "index": 32, "name": "general_manager", "comment": null}, "genre": {"type": "integer", "index": 33, "name": "genre", "comment": null}, "global_brand_page_name": {"type": "text", "index": 34, "name": "global_brand_page_name", "comment": null}, "has_added_app": {"type": "integer", "index": 35, "name": "has_added_app", "comment": null}, "has_whatsapp_number": {"type": "integer", "index": 36, "name": "has_whatsapp_number", "comment": null}, "hometown": {"type": "integer", "index": 37, "name": "hometown", "comment": null}, "impressum": {"type": "integer", "index": 38, "name": "impressum", "comment": null}, "influences": {"type": "integer", "index": 39, "name": "influences", "comment": null}, "is_always_open": {"type": "boolean", "index": 40, "name": "is_always_open", "comment": null}, "is_chain": {"type": "integer", "index": 41, "name": "is_chain", "comment": null}, "is_community_page": {"type": "boolean", "index": 42, "name": "is_community_page", "comment": null}, "is_eligible_for_branded_content": {"type": "boolean", "index": 43, "name": "is_eligible_for_branded_content", "comment": null}, "is_messenger_bot_get_started_enabled": {"type": "boolean", "index": 44, "name": "is_messenger_bot_get_started_enabled", "comment": null}, "is_messenger_platform_bot": {"type": "boolean", "index": 45, "name": "is_messenger_platform_bot", "comment": null}, "is_owned": {"type": "boolean", "index": 46, "name": "is_owned", "comment": null}, "is_permanently_closed": {"type": "boolean", "index": 47, "name": "is_permanently_closed", "comment": null}, "is_published": {"type": "boolean", "index": 48, "name": "is_published", "comment": null}, "is_unclaimed": {"type": "boolean", "index": 49, "name": "is_unclaimed", "comment": null}, "members": {"type": "integer", "index": 50, "name": "members", "comment": null}, "mission": {"type": "integer", "index": 51, "name": "mission", "comment": null}, "mpg": {"type": "integer", "index": 52, "name": "mpg", "comment": null}, "name": {"type": "text", "index": 53, "name": "name", "comment": null}, "network": {"type": "integer", "index": 54, "name": "network", "comment": null}, "new_like_count": {"type": "integer", "index": 55, "name": "new_like_count", "comment": null}, "overall_star_rating": {"type": "integer", "index": 56, "name": "overall_star_rating", "comment": null}, "personal_info": {"type": "integer", "index": 57, "name": "personal_info", "comment": null}, "personal_interests": {"type": "integer", "index": 58, "name": "personal_interests", "comment": null}, "pharma_safety_info": {"type": "integer", "index": 59, "name": "pharma_safety_info", "comment": null}, "phone": {"type": "integer", "index": 60, "name": "phone", "comment": null}, "place_type": {"type": "text", "index": 61, "name": "place_type", "comment": null}, "plot_outline": {"type": "integer", "index": 62, "name": "plot_outline", "comment": null}, "press_contact": {"type": "integer", "index": 63, "name": "press_contact", "comment": null}, "price_range": {"type": "text", "index": 64, "name": "price_range", "comment": null}, "produced_by": {"type": "integer", "index": 65, "name": "produced_by", "comment": null}, "products": {"type": "integer", "index": 66, "name": "products", "comment": null}, "promotion_eligible": {"type": "boolean", "index": 67, "name": "promotion_eligible", "comment": null}, "promotion_ineligible_reason": {"type": "text", "index": 68, "name": "promotion_ineligible_reason", "comment": null}, "public_transit": {"type": "integer", "index": 69, "name": "public_transit", "comment": null}, "rating_count": {"type": "integer", "index": 70, "name": "rating_count", "comment": null}, "record_label": {"type": "integer", "index": 71, "name": "record_label", "comment": null}, "release_date": {"type": "integer", "index": 72, "name": "release_date", "comment": null}, "schedule": {"type": "integer", "index": 73, "name": "schedule", "comment": null}, "screenplay_by": {"type": "integer", "index": 74, "name": "screenplay_by", "comment": null}, "season": {"type": "integer", "index": 75, "name": "season", "comment": null}, "single_line_address": {"type": "text", "index": 76, "name": "single_line_address", "comment": null}, "starring": {"type": "integer", "index": 77, "name": "starring", "comment": null}, "store_number": {"type": "integer", "index": 78, "name": "store_number", "comment": null}, "studio": {"type": "integer", "index": 79, "name": "studio", "comment": null}, "talking_about_count": {"type": "integer", "index": 80, "name": "talking_about_count", "comment": null}, "username": {"type": "text", "index": 81, "name": "username", "comment": null}, "website": {"type": "text", "index": 82, "name": "website", "comment": null}, "were_here_count": {"type": "integer", "index": 83, "name": "were_here_count", "comment": null}, "whatsapp_number": {"type": "integer", "index": 84, "name": "whatsapp_number", "comment": null}, "written_by": {"type": "integer", "index": 85, "name": "written_by", "comment": null}, "has_transitioned_to_new_page_experience": {"type": "boolean", "index": 86, "name": "has_transitioned_to_new_page_experience", "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.facebook_pages_source.facebook_pages.page"}, "source.facebook_pages_source.facebook_pages.post_history": {"metadata": {"type": "BASE TABLE", "schema": "social_media_rollup_integration_tests_1", "name": "facebook_pages_post_history_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "character varying", "index": 1, "name": "id", "comment": null}, "updated_time": {"type": "timestamp without time zone", "index": 2, "name": "updated_time", "comment": null}, "_fivetran_synced": {"type": "text", "index": 3, "name": "_fivetran_synced", "comment": null}, "allowed_advertising_objects": {"type": "integer", "index": 4, "name": "allowed_advertising_objects", "comment": null}, "created_time": {"type": "timestamp without time zone", "index": 5, "name": "created_time", "comment": null}, "is_eligible_for_promotion": {"type": "boolean", "index": 6, "name": "is_eligible_for_promotion", "comment": null}, "is_hidden": {"type": "boolean", "index": 7, "name": "is_hidden", "comment": null}, "is_instagram_eligible": {"type": "boolean", "index": 8, "name": "is_instagram_eligible", "comment": null}, "is_published": {"type": "boolean", "index": 9, "name": "is_published", "comment": null}, "page_id": {"type": "bigint", "index": 10, "name": "page_id", "comment": null}, "parent_id": {"type": "integer", "index": 11, "name": "parent_id", "comment": null}, "privacy_allow": {"type": "integer", "index": 12, "name": "privacy_allow", "comment": null}, "privacy_deny": {"type": "integer", "index": 13, "name": "privacy_deny", "comment": null}, "privacy_description": {"type": "text", "index": 14, "name": "privacy_description", "comment": null}, "privacy_friends": {"type": "integer", "index": 15, "name": "privacy_friends", "comment": null}, "privacy_value": {"type": "text", "index": 16, "name": "privacy_value", "comment": null}, "promotable_id": {"type": "character varying", "index": 17, "name": "promotable_id", "comment": null}, "share_count": {"type": "integer", "index": 18, "name": "share_count", "comment": null}, "status_type": {"type": "text", "index": 19, "name": "status_type", "comment": null}, "message": {"type": "text", "index": 20, "name": "message", "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.facebook_pages_source.facebook_pages.post_history"}, "source.instagram_business_source.instagram_business.media_history": {"metadata": {"type": "BASE TABLE", "schema": "social_media_rollup_integration_tests_1", "name": "instagram_business_media_history_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"_fivetran_id": {"type": "text", "index": 1, "name": "_fivetran_id", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 2, "name": "_fivetran_synced", "comment": null}, "caption": {"type": "integer", "index": 3, "name": "caption", "comment": null}, "carousel_album_id": {"type": "bigint", "index": 4, "name": "carousel_album_id", "comment": null}, "created_time": {"type": "timestamp without time zone", "index": 5, "name": "created_time", "comment": null}, "id": {"type": "bigint", "index": 6, "name": "id", "comment": null}, "ig_id": {"type": "bigint", "index": 7, "name": "ig_id", "comment": null}, "is_comment_enabled": {"type": "boolean", "index": 8, "name": "is_comment_enabled", "comment": null}, "is_story": {"type": "boolean", "index": 9, "name": "is_story", "comment": null}, "media_type": {"type": "text", "index": 10, "name": "media_type", "comment": null}, "media_url": {"type": "text", "index": 11, "name": "media_url", "comment": null}, "permalink": {"type": "text", "index": 12, "name": "permalink", "comment": null}, "shortcode": {"type": "text", "index": 13, "name": "shortcode", "comment": null}, "thumbnail_url": {"type": "integer", "index": 14, "name": "thumbnail_url", "comment": null}, "user_id": {"type": "bigint", "index": 15, "name": "user_id", "comment": null}, "username": {"type": "text", "index": 16, "name": "username", "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.instagram_business_source.instagram_business.media_history"}, "source.instagram_business_source.instagram_business.media_insights": {"metadata": {"type": "BASE TABLE", "schema": "social_media_rollup_integration_tests_1", "name": "instagram_business_media_insights_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"_fivetran_id": {"type": "text", "index": 1, "name": "_fivetran_id", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 2, "name": "_fivetran_synced", "comment": null}, "carousel_album_engagement": {"type": "integer", "index": 3, "name": "carousel_album_engagement", "comment": null}, "carousel_album_impressions": {"type": "integer", "index": 4, "name": "carousel_album_impressions", "comment": null}, "carousel_album_reach": {"type": "integer", "index": 5, "name": "carousel_album_reach", "comment": null}, "carousel_album_saved": {"type": "integer", "index": 6, "name": "carousel_album_saved", "comment": null}, "carousel_album_video_views": {"type": "integer", "index": 7, "name": "carousel_album_video_views", "comment": null}, "comment_count": {"type": "integer", "index": 8, "name": "comment_count", "comment": null}, "id": {"type": "bigint", "index": 9, "name": "id", "comment": null}, "like_count": {"type": "integer", "index": 10, "name": "like_count", "comment": null}, "story_exits": {"type": "integer", "index": 11, "name": "story_exits", "comment": null}, "story_impressions": {"type": "integer", "index": 12, "name": "story_impressions", "comment": null}, "story_reach": {"type": "integer", "index": 13, "name": "story_reach", "comment": null}, "story_replies": {"type": "integer", "index": 14, "name": "story_replies", "comment": null}, "story_taps_back": {"type": "integer", "index": 15, "name": "story_taps_back", "comment": null}, "story_taps_forward": {"type": "integer", "index": 16, "name": "story_taps_forward", "comment": null}, "video_photo_engagement": {"type": "integer", "index": 17, "name": "video_photo_engagement", "comment": null}, "video_photo_impressions": {"type": "integer", "index": 18, "name": "video_photo_impressions", "comment": null}, "video_photo_reach": {"type": "integer", "index": 19, "name": "video_photo_reach", "comment": null}, "video_photo_saved": {"type": "integer", "index": 20, "name": "video_photo_saved", "comment": null}, "video_views": {"type": "integer", "index": 21, "name": "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.instagram_business_source.instagram_business.media_insights"}, "source.instagram_business_source.instagram_business.user_history": {"metadata": {"type": "BASE TABLE", "schema": "social_media_rollup_integration_tests_1", "name": "instagram_business_user_history_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"_fivetran_id": {"type": "text", "index": 1, "name": "_fivetran_id", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 2, "name": "_fivetran_synced", "comment": null}, "followers_count": {"type": "integer", "index": 3, "name": "followers_count", "comment": null}, "follows_count": {"type": "integer", "index": 4, "name": "follows_count", "comment": null}, "id": {"type": "bigint", "index": 5, "name": "id", "comment": null}, "ig_id": {"type": "bigint", "index": 6, "name": "ig_id", "comment": null}, "media_count": {"type": "integer", "index": 7, "name": "media_count", "comment": null}, "name": {"type": "text", "index": 8, "name": "name", "comment": null}, "username": {"type": "text", "index": 9, "name": "username", "comment": null}, "website": {"type": "integer", "index": 10, "name": "website", "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.instagram_business_source.instagram_business.user_history"}, "source.linkedin_pages_source.linkedin_pages.organization": {"metadata": {"type": "BASE TABLE", "schema": "social_media_rollup_integration_tests_1", "name": "linkedin_pages_organization_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "integer", "index": 1, "name": "id", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 2, "name": "_fivetran_synced", "comment": null}, "cover_photo_v_2_crop_info_height": {"type": "integer", "index": 3, "name": "cover_photo_v_2_crop_info_height", "comment": null}, "cover_photo_v_2_crop_info_width": {"type": "integer", "index": 4, "name": "cover_photo_v_2_crop_info_width", "comment": null}, "cover_photo_v_2_crop_info_x": {"type": "integer", "index": 5, "name": "cover_photo_v_2_crop_info_x", "comment": null}, "cover_photo_v_2_crop_info_y": {"type": "integer", "index": 6, "name": "cover_photo_v_2_crop_info_y", "comment": null}, "cover_photo_v_2_cropped": {"type": "text", "index": 7, "name": "cover_photo_v_2_cropped", "comment": null}, "cover_photo_v_2_original": {"type": "text", "index": 8, "name": "cover_photo_v_2_original", "comment": null}, "default_locale_country": {"type": "text", "index": 9, "name": "default_locale_country", "comment": null}, "default_locale_language": {"type": "text", "index": 10, "name": "default_locale_language", "comment": null}, "description_preferred_locale_country": {"type": "text", "index": 11, "name": "description_preferred_locale_country", "comment": null}, "description_preferred_locale_language": {"type": "text", "index": 12, "name": "description_preferred_locale_language", "comment": null}, "founded_on_day": {"type": "integer", "index": 13, "name": "founded_on_day", "comment": null}, "founded_on_month": {"type": "integer", "index": 14, "name": "founded_on_month", "comment": null}, "founded_on_year": {"type": "integer", "index": 15, "name": "founded_on_year", "comment": null}, "logo_v_2_crop_info_height": {"type": "integer", "index": 16, "name": "logo_v_2_crop_info_height", "comment": null}, "logo_v_2_crop_info_width": {"type": "integer", "index": 17, "name": "logo_v_2_crop_info_width", "comment": null}, "logo_v_2_crop_info_x": {"type": "integer", "index": 18, "name": "logo_v_2_crop_info_x", "comment": null}, "logo_v_2_crop_info_y": {"type": "integer", "index": 19, "name": "logo_v_2_crop_info_y", "comment": null}, "logo_v_2_cropped": {"type": "text", "index": 20, "name": "logo_v_2_cropped", "comment": null}, "logo_v_2_original": {"type": "text", "index": 21, "name": "logo_v_2_original", "comment": null}, "name_preferred_locale_country": {"type": "text", "index": 22, "name": "name_preferred_locale_country", "comment": null}, "name_preferred_locale_language": {"type": "text", "index": 23, "name": "name_preferred_locale_language", "comment": null}, "organization_status": {"type": "text", "index": 24, "name": "organization_status", "comment": null}, "organization_type": {"type": "text", "index": 25, "name": "organization_type", "comment": null}, "overview_photo_v_2_crop_info_height": {"type": "integer", "index": 26, "name": "overview_photo_v_2_crop_info_height", "comment": null}, "overview_photo_v_2_crop_info_width": {"type": "integer", "index": 27, "name": "overview_photo_v_2_crop_info_width", "comment": null}, "overview_photo_v_2_crop_info_x": {"type": "integer", "index": 28, "name": "overview_photo_v_2_crop_info_x", "comment": null}, "overview_photo_v_2_crop_info_y": {"type": "integer", "index": 29, "name": "overview_photo_v_2_crop_info_y", "comment": null}, "overview_photo_v_2_cropped": {"type": "integer", "index": 30, "name": "overview_photo_v_2_cropped", "comment": null}, "overview_photo_v_2_original": {"type": "integer", "index": 31, "name": "overview_photo_v_2_original", "comment": null}, "parent_relationship_parent_id": {"type": "integer", "index": 32, "name": "parent_relationship_parent_id", "comment": null}, "parent_relationship_status": {"type": "integer", "index": 33, "name": "parent_relationship_status", "comment": null}, "parent_relationship_type": {"type": "integer", "index": 34, "name": "parent_relationship_type", "comment": null}, "primary_organization_type": {"type": "text", "index": 35, "name": "primary_organization_type", "comment": null}, "school_attributes_hierarchy_classification": {"type": "integer", "index": 36, "name": "school_attributes_hierarchy_classification", "comment": null}, "school_attributes_legacy_school": {"type": "integer", "index": 37, "name": "school_attributes_legacy_school", "comment": null}, "school_attributes_type": {"type": "integer", "index": 38, "name": "school_attributes_type", "comment": null}, "school_attributes_year_level": {"type": "integer", "index": 39, "name": "school_attributes_year_level", "comment": null}, "staff_count_range": {"type": "integer", "index": 40, "name": "staff_count_range", "comment": null}, "version_tag": {"type": "integer", "index": 41, "name": "version_tag", "comment": null}, "website_preferred_locale_country": {"type": "text", "index": 42, "name": "website_preferred_locale_country", "comment": null}, "website_preferred_locale_language": {"type": "text", "index": 43, "name": "website_preferred_locale_language", "comment": null}, "description_localized": {"type": "text", "index": 44, "name": "description_localized", "comment": null}, "localized_description": {"type": "text", "index": 45, "name": "localized_description", "comment": null}, "localized_name": {"type": "text", "index": 46, "name": "localized_name", "comment": null}, "localized_website": {"type": "text", "index": 47, "name": "localized_website", "comment": null}, "name_localized": {"type": "text", "index": 48, "name": "name_localized", "comment": null}, "vanity_name": {"type": "text", "index": 49, "name": "vanity_name", "comment": null}, "website_localized": {"type": "text", "index": 50, "name": "website_localized", "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_pages_source.linkedin_pages.organization"}, "source.linkedin_pages_source.linkedin_pages.organization_ugc_post": {"metadata": {"type": "BASE TABLE", "schema": "social_media_rollup_integration_tests_1", "name": "linkedin_pages_organization_ugc_post_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"organiation_id": {"type": "integer", "index": 1, "name": "organiation_id", "comment": null}, "ugc_post_id": {"type": "text", "index": 2, "name": "ugc_post_id", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.linkedin_pages_source.linkedin_pages.organization_ugc_post"}, "source.linkedin_pages_source.linkedin_pages.post_content": {"metadata": {"type": "BASE TABLE", "schema": "social_media_rollup_integration_tests_1", "name": "linkedin_pages_post_content_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"_fivetran_synced": {"type": "text", "index": 1, "name": "_fivetran_synced", "comment": null}, "_fivetran_id": {"type": "text", "index": 2, "name": "_fivetran_id", "comment": null}, "post_id": {"type": "text", "index": 3, "name": "post_id", "comment": null}, "article_description": {"type": "integer", "index": 4, "name": "article_description", "comment": null}, "article_source": {"type": "integer", "index": 5, "name": "article_source", "comment": null}, "article_thumbnail": {"type": "integer", "index": 6, "name": "article_thumbnail", "comment": null}, "article_thumbnail_alt_text": {"type": "integer", "index": 7, "name": "article_thumbnail_alt_text", "comment": null}, "article_title": {"type": "integer", "index": 8, "name": "article_title", "comment": null}, "carousel_id": {"type": "integer", "index": 9, "name": "carousel_id", "comment": null}, "media_alt_text": {"type": "integer", "index": 10, "name": "media_alt_text", "comment": null}, "media_id": {"type": "text", "index": 11, "name": "media_id", "comment": null}, "media_title": {"type": "text", "index": 12, "name": "media_title", "comment": null}, "multi_image_alt_text": {"type": "integer", "index": 13, "name": "multi_image_alt_text", "comment": null}, "poll_question": {"type": "text", "index": 14, "name": "poll_question", "comment": null}, "poll_settings_duration": {"type": "text", "index": 15, "name": "poll_settings_duration", "comment": null}, "poll_settings_is_voter_visible_to_author": {"type": "boolean", "index": 16, "name": "poll_settings_is_voter_visible_to_author", "comment": null}, "poll_settings_vote_selection_type": {"type": "text", "index": 17, "name": "poll_settings_vote_selection_type", "comment": null}, "poll_unique_voters_count": {"type": "integer", "index": 18, "name": "poll_unique_voters_count", "comment": null}, "type": {"type": "text", "index": 19, "name": "type", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.linkedin_pages_source.linkedin_pages.post_content"}, "source.linkedin_pages_source.linkedin_pages.share_statistic": {"metadata": {"type": "BASE TABLE", "schema": "social_media_rollup_integration_tests_1", "name": "linkedin_pages_share_statistic_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"_fivetran_id": {"type": "text", "index": 1, "name": "_fivetran_id", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 2, "name": "_fivetran_synced", "comment": null}, "_organization_entity_urn": {"type": "text", "index": 3, "name": "_organization_entity_urn", "comment": null}, "_share_entity_urn": {"type": "text", "index": 4, "name": "_share_entity_urn", "comment": null}, "click_count": {"type": "integer", "index": 5, "name": "click_count", "comment": null}, "comment_count": {"type": "integer", "index": 6, "name": "comment_count", "comment": null}, "engagement": {"type": "double precision", "index": 7, "name": "engagement", "comment": null}, "impression_count": {"type": "integer", "index": 8, "name": "impression_count", "comment": null}, "like_count": {"type": "integer", "index": 9, "name": "like_count", "comment": null}, "share_count": {"type": "integer", "index": 10, "name": "share_count", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.linkedin_pages_source.linkedin_pages.share_statistic"}, "source.linkedin_pages_source.linkedin_pages.ugc_post_history": {"metadata": {"type": "BASE TABLE", "schema": "social_media_rollup_integration_tests_1", "name": "linkedin_pages_ugc_post_history_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"_fivetran_synced": {"type": "text", "index": 1, "name": "_fivetran_synced", "comment": null}, "author": {"type": "text", "index": 2, "name": "author", "comment": null}, "commentary": {"type": "text", "index": 3, "name": "commentary", "comment": null}, "container_entity": {"type": "integer", "index": 4, "name": "container_entity", "comment": null}, "created_actor": {"type": "integer", "index": 5, "name": "created_actor", "comment": null}, "created_time": {"type": "text", "index": 6, "name": "created_time", "comment": null}, "distribution_external_distribution_channels": {"type": "text", "index": 7, "name": "distribution_external_distribution_channels", "comment": null}, "distribution_feed_distribution": {"type": "text", "index": 8, "name": "distribution_feed_distribution", "comment": null}, "first_published_at": {"type": "text", "index": 9, "name": "first_published_at", "comment": null}, "id": {"type": "text", "index": 10, "name": "id", "comment": null}, "last_modified_actor": {"type": "integer", "index": 11, "name": "last_modified_actor", "comment": null}, "last_modified_time": {"type": "text", "index": 12, "name": "last_modified_time", "comment": null}, "lifecycle_state": {"type": "text", "index": 13, "name": "lifecycle_state", "comment": null}, "response_context_parent": {"type": "text", "index": 14, "name": "response_context_parent", "comment": null}, "response_context_root": {"type": "text", "index": 15, "name": "response_context_root", "comment": null}, "visibility": {"type": "text", "index": 16, "name": "visibility", "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_pages_source.linkedin_pages.ugc_post_history"}, "source.linkedin_pages_source.linkedin_pages.ugc_post_share_statistic": {"metadata": {"type": "BASE TABLE", "schema": "social_media_rollup_integration_tests_1", "name": "linkedin_pages_ugc_post_share_statistic_data", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"share_statistic_id": {"type": "text", "index": 1, "name": "share_statistic_id", "comment": null}, "ugc_post_id": {"type": "bigint", "index": 2, "name": "ugc_post_id", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 3, "name": "_fivetran_synced", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.linkedin_pages_source.linkedin_pages.ugc_post_share_statistic"}, "source.twitter_organic_source.twitter.organic_tweet_report": {"metadata": {"type": "BASE TABLE", "schema": "social_media_rollup_integration_tests_1", "name": "organic_tweet_report", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"account_id": {"type": "text", "index": 1, "name": "account_id", "comment": null}, "date": {"type": "timestamp without time zone", "index": 2, "name": "date", "comment": null}, "organic_tweet_id": {"type": "bigint", "index": 3, "name": "organic_tweet_id", "comment": null}, "placement": {"type": "text", "index": 4, "name": "placement", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 5, "name": "_fivetran_synced", "comment": null}, "app_clicks": {"type": "integer", "index": 6, "name": "app_clicks", "comment": null}, "card_engagements": {"type": "integer", "index": 7, "name": "card_engagements", "comment": null}, "carousel_swipes": {"type": "integer", "index": 8, "name": "carousel_swipes", "comment": null}, "clicks": {"type": "integer", "index": 9, "name": "clicks", "comment": null}, "engagements": {"type": "integer", "index": 10, "name": "engagements", "comment": null}, "follows": {"type": "integer", "index": 11, "name": "follows", "comment": null}, "impressions": {"type": "integer", "index": 12, "name": "impressions", "comment": null}, "likes": {"type": "integer", "index": 13, "name": "likes", "comment": null}, "poll_card_vote": {"type": "integer", "index": 14, "name": "poll_card_vote", "comment": null}, "qualified_impressions": {"type": "integer", "index": 15, "name": "qualified_impressions", "comment": null}, "replies": {"type": "integer", "index": 16, "name": "replies", "comment": null}, "retweets": {"type": "integer", "index": 17, "name": "retweets", "comment": null}, "tweets_send": {"type": "integer", "index": 18, "name": "tweets_send", "comment": null}, "unfollows": {"type": "integer", "index": 19, "name": "unfollows", "comment": null}, "url_clicks": {"type": "integer", "index": 20, "name": "url_clicks", "comment": null}, "video_15_s_views": {"type": "integer", "index": 21, "name": "video_15_s_views", "comment": null}, "video_3_s_100_pct_views": {"type": "integer", "index": 22, "name": "video_3_s_100_pct_views", "comment": null}, "video_6_s_views": {"type": "integer", "index": 23, "name": "video_6_s_views", "comment": null}, "video_content_starts": {"type": "integer", "index": 24, "name": "video_content_starts", "comment": null}, "video_cta_clicks": {"type": "integer", "index": 25, "name": "video_cta_clicks", "comment": null}, "video_total_views": {"type": "integer", "index": 26, "name": "video_total_views", "comment": null}, "video_views_100": {"type": "integer", "index": 27, "name": "video_views_100", "comment": null}, "video_views_25": {"type": "integer", "index": 28, "name": "video_views_25", "comment": null}, "video_views_50": {"type": "integer", "index": 29, "name": "video_views_50", "comment": null}, "video_views_75": {"type": "integer", "index": 30, "name": "video_views_75", "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.twitter_organic_source.twitter.organic_tweet_report"}, "source.twitter_organic_source.twitter.tweet": {"metadata": {"type": "BASE TABLE", "schema": "social_media_rollup_integration_tests_1", "name": "tweet", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "bigint", "index": 1, "name": "id", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 2, "name": "_fivetran_synced", "comment": null}, "account_id": {"type": "text", "index": 3, "name": "account_id", "comment": null}, "card_uri": {"type": "text", "index": 4, "name": "card_uri", "comment": null}, "coordinates_coordinates": {"type": "integer", "index": 5, "name": "coordinates_coordinates", "comment": null}, "coordinates_type": {"type": "integer", "index": 6, "name": "coordinates_type", "comment": null}, "created_at": {"type": "timestamp without time zone", "index": 7, "name": "created_at", "comment": null}, "favorite_count": {"type": "integer", "index": 8, "name": "favorite_count", "comment": null}, "favorited": {"type": "boolean", "index": 9, "name": "favorited", "comment": null}, "followers": {"type": "integer", "index": 10, "name": "followers", "comment": null}, "geo_coordinates": {"type": "integer", "index": 11, "name": "geo_coordinates", "comment": null}, "geo_type": {"type": "integer", "index": 12, "name": "geo_type", "comment": null}, "in_reply_to_screen_name": {"type": "text", "index": 13, "name": "in_reply_to_screen_name", "comment": null}, "in_reply_to_status_id": {"type": "integer", "index": 14, "name": "in_reply_to_status_id", "comment": null}, "in_reply_to_user_id": {"type": "integer", "index": 15, "name": "in_reply_to_user_id", "comment": null}, "lang": {"type": "text", "index": 16, "name": "lang", "comment": null}, "media_key": {"type": "integer", "index": 17, "name": "media_key", "comment": null}, "retweet_count": {"type": "integer", "index": 18, "name": "retweet_count", "comment": null}, "retweeted": {"type": "boolean", "index": 19, "name": "retweeted", "comment": null}, "truncated": {"type": "boolean", "index": 20, "name": "truncated", "comment": null}, "tweet_type": {"type": "text", "index": 21, "name": "tweet_type", "comment": null}, "user_id": {"type": "integer", "index": 22, "name": "user_id", "comment": null}, "source": {"type": "text", "index": 23, "name": "source", "comment": null}, "full_test": {"type": "text", "index": 24, "name": "full_test", "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.twitter_organic_source.twitter.tweet"}, "source.twitter_organic_source.twitter.twitter_user_history": {"metadata": {"type": "BASE TABLE", "schema": "social_media_rollup_integration_tests_1", "name": "twitter_user_history", "database": "postgres", "comment": null, "owner": "pguser"}, "columns": {"id": {"type": "integer", "index": 1, "name": "id", "comment": null}, "_fivetran_synced": {"type": "timestamp without time zone", "index": 2, "name": "_fivetran_synced", "comment": null}, "contributors_enabled": {"type": "boolean", "index": 3, "name": "contributors_enabled", "comment": null}, "created_at": {"type": "timestamp without time zone", "index": 4, "name": "created_at", "comment": null}, "default_profile": {"type": "boolean", "index": 5, "name": "default_profile", "comment": null}, "default_profile_image": {"type": "boolean", "index": 6, "name": "default_profile_image", "comment": null}, "description": {"type": "text", "index": 7, "name": "description", "comment": null}, "favourites_count": {"type": "integer", "index": 8, "name": "favourites_count", "comment": null}, "followers_count": {"type": "integer", "index": 9, "name": "followers_count", "comment": null}, "friends_count": {"type": "integer", "index": 10, "name": "friends_count", "comment": null}, "geo_enabled": {"type": "boolean", "index": 11, "name": "geo_enabled", "comment": null}, "is_translation_enabled": {"type": "boolean", "index": 12, "name": "is_translation_enabled", "comment": null}, "is_translator": {"type": "boolean", "index": 13, "name": "is_translator", "comment": null}, "lang": {"type": "integer", "index": 14, "name": "lang", "comment": null}, "listed_count": {"type": "integer", "index": 15, "name": "listed_count", "comment": null}, "location": {"type": "text", "index": 16, "name": "location", "comment": null}, "name": {"type": "text", "index": 17, "name": "name", "comment": null}, "profile_background_image_url": {"type": "text", "index": 18, "name": "profile_background_image_url", "comment": null}, "profile_background_image_url_https": {"type": "text", "index": 19, "name": "profile_background_image_url_https", "comment": null}, "profile_background_tile": {"type": "boolean", "index": 20, "name": "profile_background_tile", "comment": null}, "profile_banner_url": {"type": "text", "index": 21, "name": "profile_banner_url", "comment": null}, "profile_image_url": {"type": "text", "index": 22, "name": "profile_image_url", "comment": null}, "profile_image_url_https": {"type": "text", "index": 23, "name": "profile_image_url_https", "comment": null}, "profile_use_background_image": {"type": "boolean", "index": 24, "name": "profile_use_background_image", "comment": null}, "protected_user": {"type": "boolean", "index": 25, "name": "protected_user", "comment": null}, "screen_name": {"type": "text", "index": 26, "name": "screen_name", "comment": null}, "statuses_count": {"type": "integer", "index": 27, "name": "statuses_count", "comment": null}, "time_zone": {"type": "integer", "index": 28, "name": "time_zone", "comment": null}, "url": {"type": "text", "index": 29, "name": "url", "comment": null}, "utc_offset": {"type": "integer", "index": 30, "name": "utc_offset", "comment": null}, "verified": {"type": "boolean", "index": 31, "name": "verified", "comment": null}}, "stats": {"has_stats": {"id": "has_stats", "label": "Has Stats?", "value": false, "include": false, "description": "Indicates whether there are statistics for this table"}}, "unique_id": "source.twitter_organic_source.twitter.twitter_user_history"}}, "errors": null} \ No newline at end of file diff --git a/docs/index.html b/docs/index.html index 0130d83..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